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

39335 行
989 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. "mustelid"
  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"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  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: ["mustelid"]
  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. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. }
  1651. //species
  1652. function getSpeciesInfo(speciesList) {
  1653. let result = new Set();
  1654. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1655. result.add(entry)
  1656. });
  1657. return Array.from(result);
  1658. };
  1659. function getSpeciesInfoHelper(species) {
  1660. if (!speciesData[species]) {
  1661. console.warn(species + " doesn't exist");
  1662. return [];
  1663. }
  1664. if (speciesData[species].parents) {
  1665. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1666. } else {
  1667. return [species];
  1668. }
  1669. }
  1670. characterMakers.push(() => makeCharacter(
  1671. {
  1672. name: "Fen",
  1673. species: ["crux"],
  1674. description: {
  1675. title: "Bio",
  1676. text: "Very furry. Sheds on everything."
  1677. },
  1678. tags: [
  1679. "anthro",
  1680. "goo"
  1681. ]
  1682. },
  1683. {
  1684. back: {
  1685. height: math.unit(2.2428, "meter"),
  1686. weight: math.unit(124.738, "kg"),
  1687. name: "Back",
  1688. image: {
  1689. source: "./media/characters/fen/back.svg",
  1690. extra: 2024 / 1867,
  1691. bottom: 13 / 2037
  1692. },
  1693. info: {
  1694. description: {
  1695. mode: "append",
  1696. text: "\n\nHe is not currently looking at you."
  1697. }
  1698. }
  1699. },
  1700. full: {
  1701. height: math.unit(1.34, "meter"),
  1702. weight: math.unit(225, "kg"),
  1703. name: "Full",
  1704. image: {
  1705. source: "./media/characters/fen/full.svg"
  1706. },
  1707. info: {
  1708. description: {
  1709. mode: "append",
  1710. text: "\n\nMunch."
  1711. }
  1712. }
  1713. },
  1714. kneeling: {
  1715. height: math.unit(5.4, "feet"),
  1716. weight: math.unit(124.738, "kg"),
  1717. name: "Kneeling",
  1718. image: {
  1719. source: "./media/characters/fen/kneeling.svg",
  1720. extra: 563 / 507
  1721. }
  1722. },
  1723. goo: {
  1724. height: math.unit(2.8, "feet"),
  1725. weight: math.unit(125, "kg"),
  1726. capacity: math.unit(1, "people"),
  1727. name: "Goo",
  1728. image: {
  1729. source: "./media/characters/fen/goo.svg",
  1730. bottom: 116 / 613
  1731. }
  1732. },
  1733. lounging: {
  1734. height: math.unit(6.5, "feet"),
  1735. weight: math.unit(125, "kg"),
  1736. name: "Lounging",
  1737. image: {
  1738. source: "./media/characters/fen/lounging.svg"
  1739. }
  1740. },
  1741. },
  1742. [
  1743. {
  1744. name: "Normal",
  1745. height: math.unit(2.2428, "meter")
  1746. },
  1747. {
  1748. name: "Big",
  1749. height: math.unit(12, "feet")
  1750. },
  1751. {
  1752. name: "Minimacro",
  1753. height: math.unit(40, "feet"),
  1754. default: true,
  1755. info: {
  1756. description: {
  1757. mode: "append",
  1758. text: "\n\nTOO DAMN BIG"
  1759. }
  1760. }
  1761. },
  1762. {
  1763. name: "Macro",
  1764. height: math.unit(100, "feet"),
  1765. info: {
  1766. description: {
  1767. mode: "append",
  1768. text: "\n\nTOO DAMN BIG"
  1769. }
  1770. }
  1771. },
  1772. {
  1773. name: "Macro+",
  1774. height: math.unit(300, "feet")
  1775. },
  1776. {
  1777. name: "Megamacro",
  1778. height: math.unit(2, "miles")
  1779. }
  1780. ]
  1781. ))
  1782. characterMakers.push(() => makeCharacter(
  1783. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1784. {
  1785. front: {
  1786. height: math.unit(183, "cm"),
  1787. weight: math.unit(80, "kg"),
  1788. name: "Front",
  1789. image: {
  1790. source: "./media/characters/sofia-fluttertail/front.svg",
  1791. bottom: 0.01,
  1792. extra: 2154 / 2081
  1793. }
  1794. },
  1795. frontAlt: {
  1796. height: math.unit(183, "cm"),
  1797. weight: math.unit(80, "kg"),
  1798. name: "Front (alt)",
  1799. image: {
  1800. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1801. }
  1802. },
  1803. back: {
  1804. height: math.unit(183, "cm"),
  1805. weight: math.unit(80, "kg"),
  1806. name: "Back",
  1807. image: {
  1808. source: "./media/characters/sofia-fluttertail/back.svg"
  1809. }
  1810. },
  1811. kneeling: {
  1812. height: math.unit(125, "cm"),
  1813. weight: math.unit(80, "kg"),
  1814. name: "Kneeling",
  1815. image: {
  1816. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1817. extra: 1033 / 977,
  1818. bottom: 23.7 / 1057
  1819. }
  1820. },
  1821. maw: {
  1822. height: math.unit(183 / 5, "cm"),
  1823. name: "Maw",
  1824. image: {
  1825. source: "./media/characters/sofia-fluttertail/maw.svg"
  1826. }
  1827. },
  1828. mawcloseup: {
  1829. height: math.unit(183 / 5 * 0.41, "cm"),
  1830. name: "Maw (Closeup)",
  1831. image: {
  1832. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1833. }
  1834. },
  1835. paws: {
  1836. height: math.unit(1.17, "feet"),
  1837. name: "Paws",
  1838. image: {
  1839. source: "./media/characters/sofia-fluttertail/paws.svg",
  1840. extra: 851 / 851,
  1841. bottom: 17 / 868
  1842. }
  1843. },
  1844. },
  1845. [
  1846. {
  1847. name: "Normal",
  1848. height: math.unit(1.83, "meter")
  1849. },
  1850. {
  1851. name: "Size Thief",
  1852. height: math.unit(18, "feet")
  1853. },
  1854. {
  1855. name: "50 Foot Collie",
  1856. height: math.unit(50, "feet")
  1857. },
  1858. {
  1859. name: "Macro",
  1860. height: math.unit(96, "feet"),
  1861. default: true
  1862. },
  1863. {
  1864. name: "Megamerger",
  1865. height: math.unit(650, "feet")
  1866. },
  1867. ]
  1868. ))
  1869. characterMakers.push(() => makeCharacter(
  1870. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1871. {
  1872. front: {
  1873. height: math.unit(7, "feet"),
  1874. weight: math.unit(100, "kg"),
  1875. name: "Front",
  1876. image: {
  1877. source: "./media/characters/march/front.svg",
  1878. extra: 1,
  1879. bottom: 0.015
  1880. }
  1881. },
  1882. foot: {
  1883. height: math.unit(0.9, "feet"),
  1884. name: "Foot",
  1885. image: {
  1886. source: "./media/characters/march/foot.svg"
  1887. }
  1888. },
  1889. },
  1890. [
  1891. {
  1892. name: "Normal",
  1893. height: math.unit(7.9, "feet")
  1894. },
  1895. {
  1896. name: "Macro",
  1897. height: math.unit(220, "meters")
  1898. },
  1899. {
  1900. name: "Megamacro",
  1901. height: math.unit(2.98, "km"),
  1902. default: true
  1903. },
  1904. {
  1905. name: "Gigamacro",
  1906. height: math.unit(15963, "km")
  1907. },
  1908. {
  1909. name: "Teramacro",
  1910. height: math.unit(2980000000, "km")
  1911. },
  1912. {
  1913. name: "Examacro",
  1914. height: math.unit(250, "parsecs")
  1915. },
  1916. ]
  1917. ))
  1918. characterMakers.push(() => makeCharacter(
  1919. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1920. {
  1921. front: {
  1922. height: math.unit(6, "feet"),
  1923. weight: math.unit(60, "kg"),
  1924. name: "Front",
  1925. image: {
  1926. source: "./media/characters/noir/front.svg",
  1927. extra: 1,
  1928. bottom: 0.032
  1929. }
  1930. },
  1931. },
  1932. [
  1933. {
  1934. name: "Normal",
  1935. height: math.unit(6.6, "feet")
  1936. },
  1937. {
  1938. name: "Macro",
  1939. height: math.unit(500, "feet")
  1940. },
  1941. {
  1942. name: "Megamacro",
  1943. height: math.unit(2.5, "km"),
  1944. default: true
  1945. },
  1946. {
  1947. name: "Gigamacro",
  1948. height: math.unit(22500, "km")
  1949. },
  1950. {
  1951. name: "Teramacro",
  1952. height: math.unit(2500000000, "km")
  1953. },
  1954. {
  1955. name: "Examacro",
  1956. height: math.unit(200, "parsecs")
  1957. },
  1958. ]
  1959. ))
  1960. characterMakers.push(() => makeCharacter(
  1961. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1962. {
  1963. front: {
  1964. height: math.unit(7, "feet"),
  1965. weight: math.unit(100, "kg"),
  1966. name: "Front",
  1967. image: {
  1968. source: "./media/characters/okuri/front.svg",
  1969. extra: 1,
  1970. bottom: 0.037
  1971. }
  1972. },
  1973. back: {
  1974. height: math.unit(7, "feet"),
  1975. weight: math.unit(100, "kg"),
  1976. name: "Back",
  1977. image: {
  1978. source: "./media/characters/okuri/back.svg",
  1979. extra: 1,
  1980. bottom: 0.007
  1981. }
  1982. },
  1983. },
  1984. [
  1985. {
  1986. name: "Megamacro",
  1987. height: math.unit(100, "miles"),
  1988. default: true
  1989. },
  1990. ]
  1991. ))
  1992. characterMakers.push(() => makeCharacter(
  1993. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1994. {
  1995. front: {
  1996. height: math.unit(7, "feet"),
  1997. weight: math.unit(100, "kg"),
  1998. name: "Front",
  1999. image: {
  2000. source: "./media/characters/manny/front.svg",
  2001. extra: 1,
  2002. bottom: 0.06
  2003. }
  2004. },
  2005. back: {
  2006. height: math.unit(7, "feet"),
  2007. weight: math.unit(100, "kg"),
  2008. name: "Back",
  2009. image: {
  2010. source: "./media/characters/manny/back.svg",
  2011. extra: 1,
  2012. bottom: 0.014
  2013. }
  2014. },
  2015. },
  2016. [
  2017. {
  2018. name: "Normal",
  2019. height: math.unit(7, "feet"),
  2020. },
  2021. {
  2022. name: "Macro",
  2023. height: math.unit(78, "feet"),
  2024. default: true
  2025. },
  2026. {
  2027. name: "Macro+",
  2028. height: math.unit(300, "meters")
  2029. },
  2030. {
  2031. name: "Macro++",
  2032. height: math.unit(2400, "meters")
  2033. },
  2034. {
  2035. name: "Megamacro",
  2036. height: math.unit(5167, "meters")
  2037. },
  2038. {
  2039. name: "Gigamacro",
  2040. height: math.unit(41769, "miles")
  2041. },
  2042. ]
  2043. ))
  2044. characterMakers.push(() => makeCharacter(
  2045. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2046. {
  2047. front: {
  2048. height: math.unit(7, "feet"),
  2049. weight: math.unit(100, "kg"),
  2050. name: "Front",
  2051. image: {
  2052. source: "./media/characters/adake/front-1.svg"
  2053. }
  2054. },
  2055. frontAlt: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(100, "kg"),
  2058. name: "Front (Alt)",
  2059. image: {
  2060. source: "./media/characters/adake/front-2.svg",
  2061. extra: 1,
  2062. bottom: 0.01
  2063. }
  2064. },
  2065. back: {
  2066. height: math.unit(7, "feet"),
  2067. weight: math.unit(100, "kg"),
  2068. name: "Back",
  2069. image: {
  2070. source: "./media/characters/adake/back.svg",
  2071. }
  2072. },
  2073. kneel: {
  2074. height: math.unit(5.385, "feet"),
  2075. weight: math.unit(100, "kg"),
  2076. name: "Kneeling",
  2077. image: {
  2078. source: "./media/characters/adake/kneel.svg",
  2079. bottom: 0.052
  2080. }
  2081. },
  2082. },
  2083. [
  2084. {
  2085. name: "Normal",
  2086. height: math.unit(7, "feet"),
  2087. },
  2088. {
  2089. name: "Macro",
  2090. height: math.unit(78, "feet"),
  2091. default: true
  2092. },
  2093. {
  2094. name: "Macro+",
  2095. height: math.unit(300, "meters")
  2096. },
  2097. {
  2098. name: "Macro++",
  2099. height: math.unit(2400, "meters")
  2100. },
  2101. {
  2102. name: "Megamacro",
  2103. height: math.unit(5167, "meters")
  2104. },
  2105. {
  2106. name: "Gigamacro",
  2107. height: math.unit(41769, "miles")
  2108. },
  2109. ]
  2110. ))
  2111. characterMakers.push(() => makeCharacter(
  2112. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2113. {
  2114. front: {
  2115. height: math.unit(1.65, "meters"),
  2116. weight: math.unit(50, "kg"),
  2117. name: "Front",
  2118. image: {
  2119. source: "./media/characters/elijah/front.svg",
  2120. extra: 858 / 830,
  2121. bottom: 95.5 / 953.8559
  2122. }
  2123. },
  2124. back: {
  2125. height: math.unit(1.65, "meters"),
  2126. weight: math.unit(50, "kg"),
  2127. name: "Back",
  2128. image: {
  2129. source: "./media/characters/elijah/back.svg",
  2130. extra: 895 / 850,
  2131. bottom: 5.3 / 897.956
  2132. }
  2133. },
  2134. frontNsfw: {
  2135. height: math.unit(1.65, "meters"),
  2136. weight: math.unit(50, "kg"),
  2137. name: "Front (NSFW)",
  2138. image: {
  2139. source: "./media/characters/elijah/front-nsfw.svg",
  2140. extra: 858 / 830,
  2141. bottom: 95.5 / 953.8559
  2142. }
  2143. },
  2144. backNsfw: {
  2145. height: math.unit(1.65, "meters"),
  2146. weight: math.unit(50, "kg"),
  2147. name: "Back (NSFW)",
  2148. image: {
  2149. source: "./media/characters/elijah/back-nsfw.svg",
  2150. extra: 895 / 850,
  2151. bottom: 5.3 / 897.956
  2152. }
  2153. },
  2154. dick: {
  2155. height: math.unit(1, "feet"),
  2156. name: "Dick",
  2157. image: {
  2158. source: "./media/characters/elijah/dick.svg"
  2159. }
  2160. },
  2161. beakOpen: {
  2162. height: math.unit(1.25, "feet"),
  2163. name: "Beak (Open)",
  2164. image: {
  2165. source: "./media/characters/elijah/beak-open.svg"
  2166. }
  2167. },
  2168. beakShut: {
  2169. height: math.unit(1.25, "feet"),
  2170. name: "Beak (Shut)",
  2171. image: {
  2172. source: "./media/characters/elijah/beak-shut.svg"
  2173. }
  2174. },
  2175. footFlexing: {
  2176. height: math.unit(1.61, "feet"),
  2177. name: "Foot (Flexing)",
  2178. image: {
  2179. source: "./media/characters/elijah/foot-flexing.svg"
  2180. }
  2181. },
  2182. footStepping: {
  2183. height: math.unit(1.44, "feet"),
  2184. name: "Foot (Stepping)",
  2185. image: {
  2186. source: "./media/characters/elijah/foot-stepping.svg"
  2187. }
  2188. },
  2189. plantigradeLeg: {
  2190. height: math.unit(2.34, "feet"),
  2191. name: "Plantigrade Leg",
  2192. image: {
  2193. source: "./media/characters/elijah/plantigrade-leg.svg"
  2194. }
  2195. },
  2196. plantigradeFootLeft: {
  2197. height: math.unit(0.9, "feet"),
  2198. name: "Plantigrade Foot (Left)",
  2199. image: {
  2200. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2201. }
  2202. },
  2203. plantigradeFootRight: {
  2204. height: math.unit(0.9, "feet"),
  2205. name: "Plantigrade Foot (Right)",
  2206. image: {
  2207. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2208. }
  2209. },
  2210. },
  2211. [
  2212. {
  2213. name: "Normal",
  2214. height: math.unit(1.65, "meters")
  2215. },
  2216. {
  2217. name: "Macro",
  2218. height: math.unit(55, "meters"),
  2219. default: true
  2220. },
  2221. {
  2222. name: "Macro+",
  2223. height: math.unit(105, "meters")
  2224. },
  2225. ]
  2226. ))
  2227. characterMakers.push(() => makeCharacter(
  2228. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2229. {
  2230. front: {
  2231. height: math.unit(11, "feet"),
  2232. weight: math.unit(320, "kg"),
  2233. name: "Front",
  2234. image: {
  2235. source: "./media/characters/rai/front.svg",
  2236. extra: 1802/1696,
  2237. bottom: 68/1870
  2238. }
  2239. },
  2240. frontDressed: {
  2241. height: math.unit(11, "feet"),
  2242. weight: math.unit(320, "kg"),
  2243. name: "Front (Dressed)",
  2244. image: {
  2245. source: "./media/characters/rai/front-dressed.svg",
  2246. extra: 1802/1696,
  2247. bottom: 68/1870
  2248. }
  2249. },
  2250. side: {
  2251. height: math.unit(11, "feet"),
  2252. weight: math.unit(320, "kg"),
  2253. name: "Side",
  2254. image: {
  2255. source: "./media/characters/rai/side.svg",
  2256. extra: 1789/1710,
  2257. bottom: 115/1904
  2258. }
  2259. },
  2260. back: {
  2261. height: math.unit(11, "feet"),
  2262. weight: math.unit(320, "kg"),
  2263. name: "Back",
  2264. image: {
  2265. source: "./media/characters/rai/back.svg",
  2266. extra: 1770/1707,
  2267. bottom: 28/1798
  2268. }
  2269. },
  2270. feral: {
  2271. height: math.unit(11, "feet"),
  2272. weight: math.unit(640, "kg"),
  2273. name: "Feral",
  2274. image: {
  2275. source: "./media/characters/rai/feral.svg",
  2276. extra: 1035/642,
  2277. bottom: 86/1121
  2278. }
  2279. },
  2280. dragon: {
  2281. height: math.unit(23, "feet"),
  2282. weight: math.unit(50000, "lb"),
  2283. name: "Dragon",
  2284. image: {
  2285. source: "./media/characters/rai/dragon.svg",
  2286. extra: 2498 / 2030,
  2287. bottom: 85.2 / 2584
  2288. }
  2289. },
  2290. maw: {
  2291. height: math.unit(6 / 3.81416, "feet"),
  2292. name: "Maw",
  2293. image: {
  2294. source: "./media/characters/rai/maw.svg"
  2295. }
  2296. },
  2297. },
  2298. [
  2299. {
  2300. name: "Normal",
  2301. height: math.unit(11, "feet")
  2302. },
  2303. {
  2304. name: "Macro",
  2305. height: math.unit(302, "feet"),
  2306. default: true
  2307. },
  2308. ]
  2309. ))
  2310. characterMakers.push(() => makeCharacter(
  2311. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2312. {
  2313. frontDressed: {
  2314. height: math.unit(216, "feet"),
  2315. weight: math.unit(7000000, "lb"),
  2316. name: "Front (Dressed)",
  2317. image: {
  2318. source: "./media/characters/jazzy/front-dressed.svg",
  2319. extra: 2738 / 2651,
  2320. bottom: 41.8 / 2786
  2321. }
  2322. },
  2323. backDressed: {
  2324. height: math.unit(216, "feet"),
  2325. weight: math.unit(7000000, "lb"),
  2326. name: "Back (Dressed)",
  2327. image: {
  2328. source: "./media/characters/jazzy/back-dressed.svg",
  2329. extra: 2775 / 2673,
  2330. bottom: 36.8 / 2817
  2331. }
  2332. },
  2333. front: {
  2334. height: math.unit(216, "feet"),
  2335. weight: math.unit(7000000, "lb"),
  2336. name: "Front",
  2337. image: {
  2338. source: "./media/characters/jazzy/front.svg",
  2339. extra: 2738 / 2651,
  2340. bottom: 41.8 / 2786
  2341. }
  2342. },
  2343. back: {
  2344. height: math.unit(216, "feet"),
  2345. weight: math.unit(7000000, "lb"),
  2346. name: "Back",
  2347. image: {
  2348. source: "./media/characters/jazzy/back.svg",
  2349. extra: 2775 / 2673,
  2350. bottom: 36.8 / 2817
  2351. }
  2352. },
  2353. maw: {
  2354. height: math.unit(20, "feet"),
  2355. name: "Maw",
  2356. image: {
  2357. source: "./media/characters/jazzy/maw.svg"
  2358. }
  2359. },
  2360. paws: {
  2361. height: math.unit(27.5, "feet"),
  2362. name: "Paws",
  2363. image: {
  2364. source: "./media/characters/jazzy/paws.svg"
  2365. }
  2366. },
  2367. eye: {
  2368. height: math.unit(4.4, "feet"),
  2369. name: "Eye",
  2370. image: {
  2371. source: "./media/characters/jazzy/eye.svg"
  2372. }
  2373. },
  2374. droneOffense: {
  2375. height: math.unit(9.5, "inches"),
  2376. name: "Drone (Offense)",
  2377. image: {
  2378. source: "./media/characters/jazzy/drone-offense.svg"
  2379. }
  2380. },
  2381. droneRecon: {
  2382. height: math.unit(9.5, "inches"),
  2383. name: "Drone (Recon)",
  2384. image: {
  2385. source: "./media/characters/jazzy/drone-recon.svg"
  2386. }
  2387. },
  2388. droneDefense: {
  2389. height: math.unit(9.5, "inches"),
  2390. name: "Drone (Defense)",
  2391. image: {
  2392. source: "./media/characters/jazzy/drone-defense.svg"
  2393. }
  2394. },
  2395. },
  2396. [
  2397. {
  2398. name: "Macro",
  2399. height: math.unit(216, "feet"),
  2400. default: true
  2401. },
  2402. ]
  2403. ))
  2404. characterMakers.push(() => makeCharacter(
  2405. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2406. {
  2407. front: {
  2408. height: math.unit(9 + 6/12, "feet"),
  2409. weight: math.unit(700, "lb"),
  2410. name: "Front",
  2411. image: {
  2412. source: "./media/characters/flamm/front.svg",
  2413. extra: 1751/1632,
  2414. bottom: 46/1797
  2415. }
  2416. },
  2417. buff: {
  2418. height: math.unit(9 + 6/12, "feet"),
  2419. weight: math.unit(950, "lb"),
  2420. name: "Buff",
  2421. image: {
  2422. source: "./media/characters/flamm/buff.svg",
  2423. extra: 3018/2874,
  2424. bottom: 221/3239
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(9.5, "feet")
  2432. },
  2433. {
  2434. name: "Macro",
  2435. height: math.unit(200, "feet"),
  2436. default: true
  2437. },
  2438. ]
  2439. ))
  2440. characterMakers.push(() => makeCharacter(
  2441. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2442. {
  2443. front: {
  2444. height: math.unit(5 + 3/12, "feet"),
  2445. weight: math.unit(60, "kg"),
  2446. name: "Front",
  2447. image: {
  2448. source: "./media/characters/zephiro/front.svg",
  2449. extra: 2309 / 2162,
  2450. bottom: 0.069
  2451. }
  2452. },
  2453. side: {
  2454. height: math.unit(5 + 3/12, "feet"),
  2455. weight: math.unit(60, "kg"),
  2456. name: "Side",
  2457. image: {
  2458. source: "./media/characters/zephiro/side.svg",
  2459. extra: 2403 / 2279,
  2460. bottom: 0.015
  2461. }
  2462. },
  2463. back: {
  2464. height: math.unit(5 + 3/12, "feet"),
  2465. weight: math.unit(60, "kg"),
  2466. name: "Back",
  2467. image: {
  2468. source: "./media/characters/zephiro/back.svg",
  2469. extra: 2373 / 2244,
  2470. bottom: 0.013
  2471. }
  2472. },
  2473. hand: {
  2474. height: math.unit(0.68, "feet"),
  2475. name: "Hand",
  2476. image: {
  2477. source: "./media/characters/zephiro/hand.svg"
  2478. }
  2479. },
  2480. paw: {
  2481. height: math.unit(1, "feet"),
  2482. name: "Paw",
  2483. image: {
  2484. source: "./media/characters/zephiro/paw.svg"
  2485. }
  2486. },
  2487. beans: {
  2488. height: math.unit(0.93, "feet"),
  2489. name: "Beans",
  2490. image: {
  2491. source: "./media/characters/zephiro/beans.svg"
  2492. }
  2493. },
  2494. },
  2495. [
  2496. {
  2497. name: "Micro",
  2498. height: math.unit(3, "inches")
  2499. },
  2500. {
  2501. name: "Normal",
  2502. height: math.unit(5 + 3 / 12, "feet"),
  2503. default: true
  2504. },
  2505. {
  2506. name: "Macro",
  2507. height: math.unit(118, "feet")
  2508. },
  2509. ]
  2510. ))
  2511. characterMakers.push(() => makeCharacter(
  2512. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2513. {
  2514. front: {
  2515. height: math.unit(5, "feet"),
  2516. weight: math.unit(90, "kg"),
  2517. name: "Front",
  2518. image: {
  2519. source: "./media/characters/fory/front.svg",
  2520. extra: 2862 / 2674,
  2521. bottom: 180 / 3043.8
  2522. }
  2523. },
  2524. back: {
  2525. height: math.unit(5, "feet"),
  2526. weight: math.unit(90, "kg"),
  2527. name: "Back",
  2528. image: {
  2529. source: "./media/characters/fory/back.svg",
  2530. extra: 2962 / 2791,
  2531. bottom: 106 / 3071.8
  2532. }
  2533. },
  2534. foot: {
  2535. height: math.unit(2.14, "feet"),
  2536. name: "Foot",
  2537. image: {
  2538. source: "./media/characters/fory/foot.svg"
  2539. }
  2540. },
  2541. },
  2542. [
  2543. {
  2544. name: "Normal",
  2545. height: math.unit(5, "feet")
  2546. },
  2547. {
  2548. name: "Macro",
  2549. height: math.unit(50, "feet"),
  2550. default: true
  2551. },
  2552. {
  2553. name: "Megamacro",
  2554. height: math.unit(10, "miles")
  2555. },
  2556. {
  2557. name: "Gigamacro",
  2558. height: math.unit(5, "earths")
  2559. },
  2560. ]
  2561. ))
  2562. characterMakers.push(() => makeCharacter(
  2563. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2564. {
  2565. front: {
  2566. height: math.unit(7, "feet"),
  2567. weight: math.unit(90, "kg"),
  2568. name: "Front",
  2569. image: {
  2570. source: "./media/characters/kurrikage/front.svg",
  2571. extra: 1,
  2572. bottom: 0.035
  2573. }
  2574. },
  2575. back: {
  2576. height: math.unit(7, "feet"),
  2577. weight: math.unit(90, "lb"),
  2578. name: "Back",
  2579. image: {
  2580. source: "./media/characters/kurrikage/back.svg"
  2581. }
  2582. },
  2583. paw: {
  2584. height: math.unit(1.5, "feet"),
  2585. name: "Paw",
  2586. image: {
  2587. source: "./media/characters/kurrikage/paw.svg"
  2588. }
  2589. },
  2590. staff: {
  2591. height: math.unit(6.7, "feet"),
  2592. name: "Staff",
  2593. image: {
  2594. source: "./media/characters/kurrikage/staff.svg"
  2595. }
  2596. },
  2597. peek: {
  2598. height: math.unit(1.05, "feet"),
  2599. name: "Peeking",
  2600. image: {
  2601. source: "./media/characters/kurrikage/peek.svg",
  2602. bottom: 0.08
  2603. }
  2604. },
  2605. },
  2606. [
  2607. {
  2608. name: "Normal",
  2609. height: math.unit(12, "feet"),
  2610. default: true
  2611. },
  2612. {
  2613. name: "Big",
  2614. height: math.unit(20, "feet")
  2615. },
  2616. {
  2617. name: "Macro",
  2618. height: math.unit(500, "feet")
  2619. },
  2620. {
  2621. name: "Megamacro",
  2622. height: math.unit(20, "miles")
  2623. },
  2624. ]
  2625. ))
  2626. characterMakers.push(() => makeCharacter(
  2627. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2628. {
  2629. front: {
  2630. height: math.unit(6, "feet"),
  2631. weight: math.unit(75, "kg"),
  2632. name: "Front",
  2633. image: {
  2634. source: "./media/characters/shingo/front.svg",
  2635. extra: 706/681,
  2636. bottom: 11/717
  2637. }
  2638. },
  2639. frontAlt: {
  2640. height: math.unit(6, "feet"),
  2641. weight: math.unit(75, "kg"),
  2642. name: "Front (Alt)",
  2643. image: {
  2644. source: "./media/characters/shingo/front-alt.svg",
  2645. extra: 3511 / 3338,
  2646. bottom: 0.005
  2647. }
  2648. },
  2649. paw: {
  2650. height: math.unit(1, "feet"),
  2651. name: "Paw",
  2652. image: {
  2653. source: "./media/characters/shingo/paw.svg"
  2654. }
  2655. },
  2656. },
  2657. [
  2658. {
  2659. name: "Micro",
  2660. height: math.unit(4, "inches")
  2661. },
  2662. {
  2663. name: "Normal",
  2664. height: math.unit(6, "feet"),
  2665. default: true
  2666. },
  2667. {
  2668. name: "Macro",
  2669. height: math.unit(108, "feet")
  2670. },
  2671. {
  2672. name: "Macro+",
  2673. height: math.unit(1500, "feet")
  2674. },
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2679. {
  2680. side: {
  2681. height: math.unit(6, "feet"),
  2682. weight: math.unit(75, "kg"),
  2683. name: "Side",
  2684. image: {
  2685. source: "./media/characters/aigey/side.svg"
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(200, "feet"),
  2693. default: true
  2694. },
  2695. {
  2696. name: "Megamacro",
  2697. height: math.unit(100, "miles")
  2698. },
  2699. ]
  2700. )
  2701. )
  2702. characterMakers.push(() => makeCharacter(
  2703. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2704. {
  2705. front: {
  2706. height: math.unit(5 + 5 / 12, "feet"),
  2707. weight: math.unit(75, "kg"),
  2708. name: "Front",
  2709. image: {
  2710. source: "./media/characters/natasha/front.svg",
  2711. extra: 859 / 824,
  2712. bottom: 23 / 879.6
  2713. }
  2714. },
  2715. frontNsfw: {
  2716. height: math.unit(5 + 5 / 12, "feet"),
  2717. weight: math.unit(75, "kg"),
  2718. name: "Front (NSFW)",
  2719. image: {
  2720. source: "./media/characters/natasha/front-nsfw.svg",
  2721. extra: 859 / 824,
  2722. bottom: 23 / 879.6
  2723. }
  2724. },
  2725. frontErect: {
  2726. height: math.unit(5 + 5 / 12, "feet"),
  2727. weight: math.unit(75, "kg"),
  2728. name: "Front (Erect)",
  2729. image: {
  2730. source: "./media/characters/natasha/front-erect.svg",
  2731. extra: 859 / 824,
  2732. bottom: 23 / 879.6
  2733. }
  2734. },
  2735. back: {
  2736. height: math.unit(5 + 5 / 12, "feet"),
  2737. weight: math.unit(75, "kg"),
  2738. name: "Back",
  2739. image: {
  2740. source: "./media/characters/natasha/back.svg",
  2741. extra: 887.9 / 852.6,
  2742. bottom: 9.7 / 896.4
  2743. }
  2744. },
  2745. backAlt: {
  2746. height: math.unit(5 + 5 / 12, "feet"),
  2747. weight: math.unit(75, "kg"),
  2748. name: "Back (Alt)",
  2749. image: {
  2750. source: "./media/characters/natasha/back-alt.svg",
  2751. extra: 1236.7 / 1192,
  2752. bottom: 22.3 / 1258.2
  2753. }
  2754. },
  2755. dick: {
  2756. height: math.unit(1.772, "feet"),
  2757. name: "Dick",
  2758. image: {
  2759. source: "./media/characters/natasha/dick.svg"
  2760. }
  2761. },
  2762. paw: {
  2763. height: math.unit(0.250, "meters"),
  2764. name: "Paw",
  2765. image: {
  2766. source: "./media/characters/natasha/paw.svg"
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(5 + 5 / 12, "feet")
  2774. },
  2775. {
  2776. name: "Large",
  2777. height: math.unit(12, "feet")
  2778. },
  2779. {
  2780. name: "Macro",
  2781. height: math.unit(100, "feet"),
  2782. default: true
  2783. },
  2784. {
  2785. name: "Macro+",
  2786. height: math.unit(260, "feet")
  2787. },
  2788. {
  2789. name: "Macro++",
  2790. height: math.unit(1, "mile")
  2791. },
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(6, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/malik/front.svg"
  2803. }
  2804. },
  2805. side: {
  2806. height: math.unit(6, "feet"),
  2807. weight: math.unit(75, "kg"),
  2808. name: "Side",
  2809. image: {
  2810. source: "./media/characters/malik/side.svg",
  2811. extra: 1.1539
  2812. }
  2813. },
  2814. back: {
  2815. height: math.unit(6, "feet"),
  2816. weight: math.unit(75, "kg"),
  2817. name: "Back",
  2818. image: {
  2819. source: "./media/characters/malik/back.svg"
  2820. }
  2821. },
  2822. },
  2823. [
  2824. {
  2825. name: "Macro",
  2826. height: math.unit(156, "feet"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Macro+",
  2831. height: math.unit(1188, "feet")
  2832. },
  2833. ]
  2834. ))
  2835. characterMakers.push(() => makeCharacter(
  2836. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2837. {
  2838. front: {
  2839. height: math.unit(6, "feet"),
  2840. weight: math.unit(75, "kg"),
  2841. name: "Front",
  2842. image: {
  2843. source: "./media/characters/sefer/front.svg",
  2844. extra: 848 / 659,
  2845. bottom: 28.3 / 876.442
  2846. }
  2847. },
  2848. back: {
  2849. height: math.unit(6, "feet"),
  2850. weight: math.unit(75, "kg"),
  2851. name: "Back",
  2852. image: {
  2853. source: "./media/characters/sefer/back.svg",
  2854. extra: 864 / 695,
  2855. bottom: 10 / 871
  2856. }
  2857. },
  2858. frontDressed: {
  2859. height: math.unit(6, "feet"),
  2860. weight: math.unit(75, "kg"),
  2861. name: "Front (Dressed)",
  2862. image: {
  2863. source: "./media/characters/sefer/front-dressed.svg",
  2864. extra: 839 / 653,
  2865. bottom: 37.6 / 878
  2866. }
  2867. },
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(6, "feet"),
  2873. default: true
  2874. },
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2879. {
  2880. body: {
  2881. height: math.unit(2.2428, "meter"),
  2882. weight: math.unit(124.738, "kg"),
  2883. name: "Body",
  2884. image: {
  2885. extra: 1225 / 1050,
  2886. source: "./media/characters/north/front.svg"
  2887. }
  2888. }
  2889. },
  2890. [
  2891. {
  2892. name: "Micro",
  2893. height: math.unit(4, "inches")
  2894. },
  2895. {
  2896. name: "Macro",
  2897. height: math.unit(63, "meters")
  2898. },
  2899. {
  2900. name: "Megamacro",
  2901. height: math.unit(101, "miles"),
  2902. default: true
  2903. }
  2904. ]
  2905. ))
  2906. characterMakers.push(() => makeCharacter(
  2907. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2908. {
  2909. angled: {
  2910. height: math.unit(4, "meter"),
  2911. weight: math.unit(150, "kg"),
  2912. name: "Angled",
  2913. image: {
  2914. source: "./media/characters/talan/angled-sfw.svg",
  2915. bottom: 29 / 3734
  2916. }
  2917. },
  2918. angledNsfw: {
  2919. height: math.unit(4, "meter"),
  2920. weight: math.unit(150, "kg"),
  2921. name: "Angled (NSFW)",
  2922. image: {
  2923. source: "./media/characters/talan/angled-nsfw.svg",
  2924. bottom: 29 / 3734
  2925. }
  2926. },
  2927. frontNsfw: {
  2928. height: math.unit(4, "meter"),
  2929. weight: math.unit(150, "kg"),
  2930. name: "Front (NSFW)",
  2931. image: {
  2932. source: "./media/characters/talan/front-nsfw.svg",
  2933. bottom: 29 / 3734
  2934. }
  2935. },
  2936. sideNsfw: {
  2937. height: math.unit(4, "meter"),
  2938. weight: math.unit(150, "kg"),
  2939. name: "Side (NSFW)",
  2940. image: {
  2941. source: "./media/characters/talan/side-nsfw.svg",
  2942. bottom: 29 / 3734
  2943. }
  2944. },
  2945. back: {
  2946. height: math.unit(4, "meter"),
  2947. weight: math.unit(150, "kg"),
  2948. name: "Back",
  2949. image: {
  2950. source: "./media/characters/talan/back.svg"
  2951. }
  2952. },
  2953. dickBottom: {
  2954. height: math.unit(0.621, "meter"),
  2955. name: "Dick (Bottom)",
  2956. image: {
  2957. source: "./media/characters/talan/dick-bottom.svg"
  2958. }
  2959. },
  2960. dickTop: {
  2961. height: math.unit(0.621, "meter"),
  2962. name: "Dick (Top)",
  2963. image: {
  2964. source: "./media/characters/talan/dick-top.svg"
  2965. }
  2966. },
  2967. dickSide: {
  2968. height: math.unit(0.305, "meter"),
  2969. name: "Dick (Side)",
  2970. image: {
  2971. source: "./media/characters/talan/dick-side.svg"
  2972. }
  2973. },
  2974. dickFront: {
  2975. height: math.unit(0.305, "meter"),
  2976. name: "Dick (Front)",
  2977. image: {
  2978. source: "./media/characters/talan/dick-front.svg"
  2979. }
  2980. },
  2981. },
  2982. [
  2983. {
  2984. name: "Normal",
  2985. height: math.unit(4, "meters")
  2986. },
  2987. {
  2988. name: "Macro",
  2989. height: math.unit(100, "meters")
  2990. },
  2991. {
  2992. name: "Megamacro",
  2993. height: math.unit(2, "miles"),
  2994. default: true
  2995. },
  2996. {
  2997. name: "Gigamacro",
  2998. height: math.unit(5000, "miles")
  2999. },
  3000. {
  3001. name: "Teramacro",
  3002. height: math.unit(100, "parsecs")
  3003. }
  3004. ]
  3005. ))
  3006. characterMakers.push(() => makeCharacter(
  3007. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3008. {
  3009. front: {
  3010. height: math.unit(2, "meter"),
  3011. weight: math.unit(90, "kg"),
  3012. name: "Front",
  3013. image: {
  3014. source: "./media/characters/gael'rathus/front.svg"
  3015. }
  3016. },
  3017. frontAlt: {
  3018. height: math.unit(2, "meter"),
  3019. weight: math.unit(90, "kg"),
  3020. name: "Front (alt)",
  3021. image: {
  3022. source: "./media/characters/gael'rathus/front-alt.svg"
  3023. }
  3024. },
  3025. frontAlt2: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(90, "kg"),
  3028. name: "Front (alt 2)",
  3029. image: {
  3030. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3031. }
  3032. }
  3033. },
  3034. [
  3035. {
  3036. name: "Normal",
  3037. height: math.unit(9, "feet"),
  3038. default: true
  3039. },
  3040. {
  3041. name: "Large",
  3042. height: math.unit(25, "feet")
  3043. },
  3044. {
  3045. name: "Macro",
  3046. height: math.unit(0.25, "miles")
  3047. },
  3048. {
  3049. name: "Megamacro",
  3050. height: math.unit(10, "miles")
  3051. }
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3056. {
  3057. side: {
  3058. height: math.unit(2, "meter"),
  3059. weight: math.unit(140, "kg"),
  3060. name: "Side",
  3061. image: {
  3062. source: "./media/characters/sosha/side.svg",
  3063. bottom: 0.042
  3064. }
  3065. },
  3066. },
  3067. [
  3068. {
  3069. name: "Normal",
  3070. height: math.unit(12, "feet"),
  3071. default: true
  3072. }
  3073. ]
  3074. ))
  3075. characterMakers.push(() => makeCharacter(
  3076. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3077. {
  3078. side: {
  3079. height: math.unit(5 + 5 / 12, "feet"),
  3080. weight: math.unit(170, "kg"),
  3081. name: "Side",
  3082. image: {
  3083. source: "./media/characters/runnola/side.svg",
  3084. extra: 741 / 448,
  3085. bottom: 0.05
  3086. }
  3087. },
  3088. },
  3089. [
  3090. {
  3091. name: "Small",
  3092. height: math.unit(3, "feet")
  3093. },
  3094. {
  3095. name: "Normal",
  3096. height: math.unit(5 + 5 / 12, "feet"),
  3097. default: true
  3098. },
  3099. {
  3100. name: "Big",
  3101. height: math.unit(10, "feet")
  3102. },
  3103. ]
  3104. ))
  3105. characterMakers.push(() => makeCharacter(
  3106. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3107. {
  3108. front: {
  3109. height: math.unit(2, "meter"),
  3110. weight: math.unit(50, "kg"),
  3111. name: "Front",
  3112. image: {
  3113. source: "./media/characters/kurribird/front.svg",
  3114. bottom: 0.015
  3115. }
  3116. },
  3117. frontAlt: {
  3118. height: math.unit(1.5, "meter"),
  3119. weight: math.unit(50, "kg"),
  3120. name: "Front (Alt)",
  3121. image: {
  3122. source: "./media/characters/kurribird/front-alt.svg",
  3123. extra: 1.45
  3124. }
  3125. },
  3126. },
  3127. [
  3128. {
  3129. name: "Normal",
  3130. height: math.unit(7, "feet")
  3131. },
  3132. {
  3133. name: "Big",
  3134. height: math.unit(12, "feet"),
  3135. default: true
  3136. },
  3137. {
  3138. name: "Macro",
  3139. height: math.unit(1500, "feet")
  3140. },
  3141. {
  3142. name: "Megamacro",
  3143. height: math.unit(2, "miles")
  3144. }
  3145. ]
  3146. ))
  3147. characterMakers.push(() => makeCharacter(
  3148. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3149. {
  3150. front: {
  3151. height: math.unit(2, "meter"),
  3152. weight: math.unit(80, "kg"),
  3153. name: "Front",
  3154. image: {
  3155. source: "./media/characters/elbial/front.svg",
  3156. extra: 1643 / 1556,
  3157. bottom: 60.2 / 1696
  3158. }
  3159. },
  3160. side: {
  3161. height: math.unit(2, "meter"),
  3162. weight: math.unit(80, "kg"),
  3163. name: "Side",
  3164. image: {
  3165. source: "./media/characters/elbial/side.svg",
  3166. extra: 1630 / 1565,
  3167. bottom: 71.5 / 1697
  3168. }
  3169. },
  3170. back: {
  3171. height: math.unit(2, "meter"),
  3172. weight: math.unit(80, "kg"),
  3173. name: "Back",
  3174. image: {
  3175. source: "./media/characters/elbial/back.svg",
  3176. extra: 1668 / 1595,
  3177. bottom: 5.6 / 1672
  3178. }
  3179. },
  3180. frontDressed: {
  3181. height: math.unit(2, "meter"),
  3182. weight: math.unit(80, "kg"),
  3183. name: "Front (Dressed)",
  3184. image: {
  3185. source: "./media/characters/elbial/front-dressed.svg",
  3186. extra: 1653 / 1584,
  3187. bottom: 57 / 1708
  3188. }
  3189. },
  3190. genitals: {
  3191. height: math.unit(2 / 3.367, "meter"),
  3192. name: "Genitals",
  3193. image: {
  3194. source: "./media/characters/elbial/genitals.svg"
  3195. }
  3196. },
  3197. },
  3198. [
  3199. {
  3200. name: "Large",
  3201. height: math.unit(100, "feet")
  3202. },
  3203. {
  3204. name: "Macro",
  3205. height: math.unit(500, "feet"),
  3206. default: true
  3207. },
  3208. {
  3209. name: "Megamacro",
  3210. height: math.unit(10, "miles")
  3211. },
  3212. {
  3213. name: "Gigamacro",
  3214. height: math.unit(25000, "miles")
  3215. },
  3216. {
  3217. name: "Full-Size",
  3218. height: math.unit(8000000, "gigaparsecs")
  3219. }
  3220. ]
  3221. ))
  3222. characterMakers.push(() => makeCharacter(
  3223. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3224. {
  3225. front: {
  3226. height: math.unit(2, "meter"),
  3227. weight: math.unit(60, "kg"),
  3228. name: "Front",
  3229. image: {
  3230. source: "./media/characters/noah/front.svg"
  3231. }
  3232. },
  3233. talons: {
  3234. height: math.unit(0.315, "meter"),
  3235. name: "Talons",
  3236. image: {
  3237. source: "./media/characters/noah/talons.svg"
  3238. }
  3239. }
  3240. },
  3241. [
  3242. {
  3243. name: "Large",
  3244. height: math.unit(50, "feet")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(750, "feet"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Megamacro",
  3253. height: math.unit(50, "miles")
  3254. },
  3255. {
  3256. name: "Gigamacro",
  3257. height: math.unit(100000, "miles")
  3258. },
  3259. {
  3260. name: "Full-Size",
  3261. height: math.unit(3000000000, "miles")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(80, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/natalya/front.svg"
  3274. }
  3275. },
  3276. back: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(80, "kg"),
  3279. name: "Back",
  3280. image: {
  3281. source: "./media/characters/natalya/back.svg"
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(150, "feet"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Megamacro",
  3293. height: math.unit(5, "miles")
  3294. },
  3295. {
  3296. name: "Full-Size",
  3297. height: math.unit(600, "kiloparsecs")
  3298. }
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(2, "meter"),
  3306. weight: math.unit(50, "kg"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/erestrebah/front.svg",
  3310. extra: 208 / 193,
  3311. bottom: 0.055
  3312. }
  3313. },
  3314. back: {
  3315. height: math.unit(2, "meter"),
  3316. weight: math.unit(50, "kg"),
  3317. name: "Back",
  3318. image: {
  3319. source: "./media/characters/erestrebah/back.svg",
  3320. extra: 1.3
  3321. }
  3322. }
  3323. },
  3324. [
  3325. {
  3326. name: "Normal",
  3327. height: math.unit(10, "feet")
  3328. },
  3329. {
  3330. name: "Large",
  3331. height: math.unit(50, "feet"),
  3332. default: true
  3333. },
  3334. {
  3335. name: "Macro",
  3336. height: math.unit(300, "feet")
  3337. },
  3338. {
  3339. name: "Macro+",
  3340. height: math.unit(750, "feet")
  3341. },
  3342. {
  3343. name: "Megamacro",
  3344. height: math.unit(3, "miles")
  3345. }
  3346. ]
  3347. ))
  3348. characterMakers.push(() => makeCharacter(
  3349. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3350. {
  3351. front: {
  3352. height: math.unit(2, "meter"),
  3353. weight: math.unit(80, "kg"),
  3354. name: "Front",
  3355. image: {
  3356. source: "./media/characters/jennifer/front.svg",
  3357. bottom: 0.11,
  3358. extra: 1.16
  3359. }
  3360. },
  3361. frontAlt: {
  3362. height: math.unit(2, "meter"),
  3363. weight: math.unit(80, "kg"),
  3364. name: "Front (Alt)",
  3365. image: {
  3366. source: "./media/characters/jennifer/front-alt.svg"
  3367. }
  3368. }
  3369. },
  3370. [
  3371. {
  3372. name: "Canon Height",
  3373. height: math.unit(120, "feet"),
  3374. default: true
  3375. },
  3376. {
  3377. name: "Macro+",
  3378. height: math.unit(300, "feet")
  3379. },
  3380. {
  3381. name: "Megamacro",
  3382. height: math.unit(20000, "feet")
  3383. }
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3388. {
  3389. front: {
  3390. height: math.unit(2, "meter"),
  3391. weight: math.unit(50, "kg"),
  3392. name: "Front",
  3393. image: {
  3394. source: "./media/characters/kalista/front.svg",
  3395. extra: 1947 / 1700,
  3396. bottom: 76.6 / 1412.98
  3397. }
  3398. },
  3399. back: {
  3400. height: math.unit(2, "meter"),
  3401. weight: math.unit(50, "kg"),
  3402. name: "Back",
  3403. image: {
  3404. source: "./media/characters/kalista/back.svg",
  3405. extra: 1366 / 1156,
  3406. bottom: 33.9 / 1362.78
  3407. }
  3408. }
  3409. },
  3410. [
  3411. {
  3412. name: "Uncomfortably Small",
  3413. height: math.unit(10, "feet")
  3414. },
  3415. {
  3416. name: "Small",
  3417. height: math.unit(30, "feet")
  3418. },
  3419. {
  3420. name: "Macro",
  3421. height: math.unit(100, "feet"),
  3422. default: true
  3423. },
  3424. {
  3425. name: "Macro+",
  3426. height: math.unit(2000, "feet")
  3427. },
  3428. {
  3429. name: "True Form",
  3430. height: math.unit(8924, "miles")
  3431. }
  3432. ]
  3433. ))
  3434. characterMakers.push(() => makeCharacter(
  3435. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3436. {
  3437. front: {
  3438. height: math.unit(2, "meter"),
  3439. weight: math.unit(120, "kg"),
  3440. name: "Front",
  3441. image: {
  3442. source: "./media/characters/ggv/front.svg"
  3443. }
  3444. },
  3445. side: {
  3446. height: math.unit(2, "meter"),
  3447. weight: math.unit(120, "kg"),
  3448. name: "Side",
  3449. image: {
  3450. source: "./media/characters/ggv/side.svg"
  3451. }
  3452. }
  3453. },
  3454. [
  3455. {
  3456. name: "Extremely Puny",
  3457. height: math.unit(9 + 5 / 12, "feet")
  3458. },
  3459. {
  3460. name: "Horribly Small",
  3461. height: math.unit(47.7, "miles"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Reasonably Sized",
  3466. height: math.unit(25000, "parsecs")
  3467. },
  3468. {
  3469. name: "Slightly Uncompressed",
  3470. height: math.unit(7.77e31, "parsecs")
  3471. },
  3472. {
  3473. name: "Omniversal",
  3474. height: math.unit(1e300, "meters")
  3475. },
  3476. ]
  3477. ))
  3478. characterMakers.push(() => makeCharacter(
  3479. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3480. {
  3481. front: {
  3482. height: math.unit(2, "meter"),
  3483. weight: math.unit(75, "lb"),
  3484. name: "Front",
  3485. image: {
  3486. source: "./media/characters/napalm/front.svg"
  3487. }
  3488. },
  3489. back: {
  3490. height: math.unit(2, "meter"),
  3491. weight: math.unit(75, "lb"),
  3492. name: "Back",
  3493. image: {
  3494. source: "./media/characters/napalm/back.svg"
  3495. }
  3496. }
  3497. },
  3498. [
  3499. {
  3500. name: "Standard",
  3501. height: math.unit(55, "feet"),
  3502. default: true
  3503. }
  3504. ]
  3505. ))
  3506. characterMakers.push(() => makeCharacter(
  3507. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3508. {
  3509. front: {
  3510. height: math.unit(7 + 5 / 6, "feet"),
  3511. weight: math.unit(325, "lb"),
  3512. name: "Front",
  3513. image: {
  3514. source: "./media/characters/asana/front.svg",
  3515. extra: 1133 / 1060,
  3516. bottom: 15.2 / 1148.6
  3517. }
  3518. },
  3519. back: {
  3520. height: math.unit(7 + 5 / 6, "feet"),
  3521. weight: math.unit(325, "lb"),
  3522. name: "Back",
  3523. image: {
  3524. source: "./media/characters/asana/back.svg",
  3525. extra: 1114 / 1043,
  3526. bottom: 5 / 1120
  3527. }
  3528. },
  3529. dressedDark: {
  3530. height: math.unit(7 + 5 / 6, "feet"),
  3531. weight: math.unit(325, "lb"),
  3532. name: "Dressed (Dark)",
  3533. image: {
  3534. source: "./media/characters/asana/dressed-dark.svg",
  3535. extra: 1133 / 1060,
  3536. bottom: 15.2 / 1148.6
  3537. }
  3538. },
  3539. dressedLight: {
  3540. height: math.unit(7 + 5 / 6, "feet"),
  3541. weight: math.unit(325, "lb"),
  3542. name: "Dressed (Light)",
  3543. image: {
  3544. source: "./media/characters/asana/dressed-light.svg",
  3545. extra: 1133 / 1060,
  3546. bottom: 15.2 / 1148.6
  3547. }
  3548. },
  3549. },
  3550. [
  3551. {
  3552. name: "Standard",
  3553. height: math.unit(7 + 5 / 6, "feet"),
  3554. default: true
  3555. },
  3556. {
  3557. name: "Large",
  3558. height: math.unit(10, "meters")
  3559. },
  3560. {
  3561. name: "Macro",
  3562. height: math.unit(2500, "meters")
  3563. },
  3564. {
  3565. name: "Megamacro",
  3566. height: math.unit(5e6, "meters")
  3567. },
  3568. {
  3569. name: "Examacro",
  3570. height: math.unit(5e12, "lightyears")
  3571. },
  3572. {
  3573. name: "Max Size",
  3574. height: math.unit(1e31, "lightyears")
  3575. }
  3576. ]
  3577. ))
  3578. characterMakers.push(() => makeCharacter(
  3579. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3580. {
  3581. front: {
  3582. height: math.unit(2, "meter"),
  3583. weight: math.unit(60, "kg"),
  3584. name: "Front",
  3585. image: {
  3586. source: "./media/characters/ebony/front.svg",
  3587. bottom: 0.03,
  3588. extra: 1045 / 810 + 0.03
  3589. }
  3590. },
  3591. side: {
  3592. height: math.unit(2, "meter"),
  3593. weight: math.unit(60, "kg"),
  3594. name: "Side",
  3595. image: {
  3596. source: "./media/characters/ebony/side.svg",
  3597. bottom: 0.03,
  3598. extra: 1045 / 810 + 0.03
  3599. }
  3600. },
  3601. back: {
  3602. height: math.unit(2, "meter"),
  3603. weight: math.unit(60, "kg"),
  3604. name: "Back",
  3605. image: {
  3606. source: "./media/characters/ebony/back.svg",
  3607. bottom: 0.01,
  3608. extra: 1045 / 810 + 0.01
  3609. }
  3610. },
  3611. },
  3612. [
  3613. // TODO check why I did this lol
  3614. {
  3615. name: "Standard",
  3616. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3617. default: true
  3618. },
  3619. {
  3620. name: "Macro",
  3621. height: math.unit(200, "feet")
  3622. },
  3623. {
  3624. name: "Gigamacro",
  3625. height: math.unit(13000, "km")
  3626. }
  3627. ]
  3628. ))
  3629. characterMakers.push(() => makeCharacter(
  3630. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3631. {
  3632. front: {
  3633. height: math.unit(6, "feet"),
  3634. weight: math.unit(175, "lb"),
  3635. name: "Front",
  3636. image: {
  3637. source: "./media/characters/mountain/front.svg",
  3638. extra: 972 / 955,
  3639. bottom: 64 / 1036.6
  3640. }
  3641. },
  3642. back: {
  3643. height: math.unit(6, "feet"),
  3644. weight: math.unit(175, "lb"),
  3645. name: "Back",
  3646. image: {
  3647. source: "./media/characters/mountain/back.svg",
  3648. extra: 970 / 950,
  3649. bottom: 28.25 / 999
  3650. }
  3651. },
  3652. },
  3653. [
  3654. {
  3655. name: "Large",
  3656. height: math.unit(20, "meters")
  3657. },
  3658. {
  3659. name: "Macro",
  3660. height: math.unit(300, "meters")
  3661. },
  3662. {
  3663. name: "Gigamacro",
  3664. height: math.unit(10000, "km"),
  3665. default: true
  3666. },
  3667. {
  3668. name: "Examacro",
  3669. height: math.unit(10e9, "lightyears")
  3670. }
  3671. ]
  3672. ))
  3673. characterMakers.push(() => makeCharacter(
  3674. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3675. {
  3676. front: {
  3677. height: math.unit(8, "feet"),
  3678. weight: math.unit(500, "lb"),
  3679. name: "Front",
  3680. image: {
  3681. source: "./media/characters/rick/front.svg"
  3682. }
  3683. }
  3684. },
  3685. [
  3686. {
  3687. name: "Normal",
  3688. height: math.unit(8, "feet"),
  3689. default: true
  3690. },
  3691. {
  3692. name: "Macro",
  3693. height: math.unit(5, "km")
  3694. }
  3695. ]
  3696. ))
  3697. characterMakers.push(() => makeCharacter(
  3698. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3699. {
  3700. front: {
  3701. height: math.unit(8, "feet"),
  3702. weight: math.unit(120, "lb"),
  3703. name: "Front",
  3704. image: {
  3705. source: "./media/characters/ona/front.svg"
  3706. }
  3707. },
  3708. frontAlt: {
  3709. height: math.unit(8, "feet"),
  3710. weight: math.unit(120, "lb"),
  3711. name: "Front (Alt)",
  3712. image: {
  3713. source: "./media/characters/ona/front-alt.svg"
  3714. }
  3715. },
  3716. back: {
  3717. height: math.unit(8, "feet"),
  3718. weight: math.unit(120, "lb"),
  3719. name: "Back",
  3720. image: {
  3721. source: "./media/characters/ona/back.svg"
  3722. }
  3723. },
  3724. foot: {
  3725. height: math.unit(1.1, "feet"),
  3726. name: "Foot",
  3727. image: {
  3728. source: "./media/characters/ona/foot.svg"
  3729. }
  3730. }
  3731. },
  3732. [
  3733. {
  3734. name: "Megamacro",
  3735. height: math.unit(70, "km"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "Gigamacro",
  3740. height: math.unit(681818, "miles")
  3741. },
  3742. {
  3743. name: "Examacro",
  3744. height: math.unit(3800000, "lightyears")
  3745. },
  3746. ]
  3747. ))
  3748. characterMakers.push(() => makeCharacter(
  3749. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3750. {
  3751. front: {
  3752. height: math.unit(12, "feet"),
  3753. weight: math.unit(3000, "lb"),
  3754. name: "Front",
  3755. image: {
  3756. source: "./media/characters/mech/front.svg",
  3757. extra: 2900 / 2770,
  3758. bottom: 110 / 3010
  3759. }
  3760. },
  3761. back: {
  3762. height: math.unit(12, "feet"),
  3763. weight: math.unit(3000, "lb"),
  3764. name: "Back",
  3765. image: {
  3766. source: "./media/characters/mech/back.svg",
  3767. extra: 3011 / 2890,
  3768. bottom: 94 / 3105
  3769. }
  3770. },
  3771. maw: {
  3772. height: math.unit(3.07, "feet"),
  3773. name: "Maw",
  3774. image: {
  3775. source: "./media/characters/mech/maw.svg"
  3776. }
  3777. },
  3778. head: {
  3779. height: math.unit(2.82, "feet"),
  3780. name: "Head",
  3781. image: {
  3782. source: "./media/characters/mech/head.svg"
  3783. }
  3784. },
  3785. dick: {
  3786. height: math.unit(1.43, "feet"),
  3787. name: "Dick",
  3788. image: {
  3789. source: "./media/characters/mech/dick.svg"
  3790. }
  3791. },
  3792. },
  3793. [
  3794. {
  3795. name: "Normal",
  3796. height: math.unit(12, "feet")
  3797. },
  3798. {
  3799. name: "Macro",
  3800. height: math.unit(300, "feet"),
  3801. default: true
  3802. },
  3803. {
  3804. name: "Macro+",
  3805. height: math.unit(1500, "feet")
  3806. },
  3807. ]
  3808. ))
  3809. characterMakers.push(() => makeCharacter(
  3810. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3811. {
  3812. front: {
  3813. height: math.unit(1.3, "meter"),
  3814. weight: math.unit(30, "kg"),
  3815. name: "Front",
  3816. image: {
  3817. source: "./media/characters/gregory/front.svg",
  3818. }
  3819. }
  3820. },
  3821. [
  3822. {
  3823. name: "Normal",
  3824. height: math.unit(1.3, "meter"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Macro",
  3829. height: math.unit(20, "meter")
  3830. }
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(2.8, "meter"),
  3838. weight: math.unit(200, "kg"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/elory/front.svg",
  3842. }
  3843. }
  3844. },
  3845. [
  3846. {
  3847. name: "Normal",
  3848. height: math.unit(2.8, "meter"),
  3849. default: true
  3850. },
  3851. {
  3852. name: "Macro",
  3853. height: math.unit(38, "meter")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(470, "feet"),
  3862. weight: math.unit(924, "tons"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/angelpatamon/front.svg",
  3866. }
  3867. }
  3868. },
  3869. [
  3870. {
  3871. name: "Normal",
  3872. height: math.unit(470, "feet"),
  3873. default: true
  3874. },
  3875. {
  3876. name: "Deity Size I",
  3877. height: math.unit(28651.2, "km")
  3878. },
  3879. {
  3880. name: "Deity Size II",
  3881. height: math.unit(171907.2, "km")
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3887. {
  3888. side: {
  3889. height: math.unit(7.2, "meter"),
  3890. weight: math.unit(8.2, "tons"),
  3891. name: "Side",
  3892. image: {
  3893. source: "./media/characters/cryae/side.svg",
  3894. extra: 3500 / 1500
  3895. }
  3896. }
  3897. },
  3898. [
  3899. {
  3900. name: "Normal",
  3901. height: math.unit(7.2, "meter"),
  3902. default: true
  3903. }
  3904. ]
  3905. ))
  3906. characterMakers.push(() => makeCharacter(
  3907. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3908. {
  3909. front: {
  3910. height: math.unit(6, "feet"),
  3911. weight: math.unit(175, "lb"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/xera/front.svg",
  3915. extra: 2377 / 1972,
  3916. bottom: 75.5 / 2452
  3917. }
  3918. },
  3919. side: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(175, "lb"),
  3922. name: "Side",
  3923. image: {
  3924. source: "./media/characters/xera/side.svg",
  3925. extra: 2345 / 2019,
  3926. bottom: 39.7 / 2384
  3927. }
  3928. },
  3929. back: {
  3930. height: math.unit(6, "feet"),
  3931. weight: math.unit(175, "lb"),
  3932. name: "Back",
  3933. image: {
  3934. source: "./media/characters/xera/back.svg",
  3935. extra: 2095 / 1984,
  3936. bottom: 67 / 2166
  3937. }
  3938. },
  3939. },
  3940. [
  3941. {
  3942. name: "Small",
  3943. height: math.unit(10, "feet")
  3944. },
  3945. {
  3946. name: "Macro",
  3947. height: math.unit(500, "meters"),
  3948. default: true
  3949. },
  3950. {
  3951. name: "Macro+",
  3952. height: math.unit(10, "km")
  3953. },
  3954. {
  3955. name: "Gigamacro",
  3956. height: math.unit(25000, "km")
  3957. },
  3958. {
  3959. name: "Teramacro",
  3960. height: math.unit(3e6, "km")
  3961. }
  3962. ]
  3963. ))
  3964. characterMakers.push(() => makeCharacter(
  3965. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3966. {
  3967. front: {
  3968. height: math.unit(6, "feet"),
  3969. weight: math.unit(175, "lb"),
  3970. name: "Front",
  3971. image: {
  3972. source: "./media/characters/nebula/front.svg",
  3973. extra: 2566 / 2362,
  3974. bottom: 81 / 2644
  3975. }
  3976. }
  3977. },
  3978. [
  3979. {
  3980. name: "Small",
  3981. height: math.unit(4.5, "meters")
  3982. },
  3983. {
  3984. name: "Macro",
  3985. height: math.unit(1500, "meters"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Megamacro",
  3990. height: math.unit(150, "km")
  3991. },
  3992. {
  3993. name: "Gigamacro",
  3994. height: math.unit(27000, "km")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(225, "lb"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/abysgar/front.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Small",
  4013. height: math.unit(4.5, "meters")
  4014. },
  4015. {
  4016. name: "Macro",
  4017. height: math.unit(1250, "meters"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Megamacro",
  4022. height: math.unit(125, "km")
  4023. },
  4024. {
  4025. name: "Gigamacro",
  4026. height: math.unit(26000, "km")
  4027. }
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4032. {
  4033. front: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(180, "lb"),
  4036. name: "Front",
  4037. image: {
  4038. source: "./media/characters/yakuz/front.svg"
  4039. }
  4040. }
  4041. },
  4042. [
  4043. {
  4044. name: "Small",
  4045. height: math.unit(5, "meters")
  4046. },
  4047. {
  4048. name: "Macro",
  4049. height: math.unit(1500, "meters"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Megamacro",
  4054. height: math.unit(200, "km")
  4055. },
  4056. {
  4057. name: "Gigamacro",
  4058. height: math.unit(100000, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/mirova/front.svg",
  4071. extra: 3334 / 3071,
  4072. bottom: 42 / 3375.6
  4073. }
  4074. }
  4075. },
  4076. [
  4077. {
  4078. name: "Small",
  4079. height: math.unit(5, "meters")
  4080. },
  4081. {
  4082. name: "Macro",
  4083. height: math.unit(900, "meters"),
  4084. default: true
  4085. },
  4086. {
  4087. name: "Megamacro",
  4088. height: math.unit(135, "km")
  4089. },
  4090. {
  4091. name: "Gigamacro",
  4092. height: math.unit(20000, "km")
  4093. }
  4094. ]
  4095. ))
  4096. characterMakers.push(() => makeCharacter(
  4097. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4098. {
  4099. side: {
  4100. height: math.unit(28.35, "feet"),
  4101. weight: math.unit(99.75, "tons"),
  4102. name: "Side",
  4103. image: {
  4104. source: "./media/characters/asana-mech/side.svg",
  4105. extra: 923 / 699,
  4106. bottom: 50 / 975
  4107. }
  4108. },
  4109. chaingun: {
  4110. height: math.unit(7, "feet"),
  4111. weight: math.unit(2400, "lb"),
  4112. name: "Chaingun",
  4113. image: {
  4114. source: "./media/characters/asana-mech/chaingun.svg"
  4115. }
  4116. },
  4117. laser: {
  4118. height: math.unit(7.12, "feet"),
  4119. weight: math.unit(2000, "lb"),
  4120. name: "Laser",
  4121. image: {
  4122. source: "./media/characters/asana-mech/laser.svg"
  4123. }
  4124. },
  4125. },
  4126. [
  4127. {
  4128. name: "Normal",
  4129. height: math.unit(28.35, "feet"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Macro",
  4134. height: math.unit(2500, "feet")
  4135. },
  4136. {
  4137. name: "Megamacro",
  4138. height: math.unit(25, "miles")
  4139. },
  4140. {
  4141. name: "Examacro",
  4142. height: math.unit(6e8, "lightyears")
  4143. },
  4144. ]
  4145. ))
  4146. characterMakers.push(() => makeCharacter(
  4147. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4148. {
  4149. front: {
  4150. height: math.unit(5, "meters"),
  4151. weight: math.unit(1000, "kg"),
  4152. name: "Front",
  4153. image: {
  4154. source: "./media/characters/asche/front.svg",
  4155. extra: 1258 / 1190,
  4156. bottom: 47 / 1305
  4157. }
  4158. },
  4159. frontUnderwear: {
  4160. height: math.unit(5, "meters"),
  4161. weight: math.unit(1000, "kg"),
  4162. name: "Front (Underwear)",
  4163. image: {
  4164. source: "./media/characters/asche/front-underwear.svg",
  4165. extra: 1258 / 1190,
  4166. bottom: 47 / 1305
  4167. }
  4168. },
  4169. frontDressed: {
  4170. height: math.unit(5, "meters"),
  4171. weight: math.unit(1000, "kg"),
  4172. name: "Front (Dressed)",
  4173. image: {
  4174. source: "./media/characters/asche/front-dressed.svg",
  4175. extra: 1258 / 1190,
  4176. bottom: 47 / 1305
  4177. }
  4178. },
  4179. frontArmor: {
  4180. height: math.unit(5, "meters"),
  4181. weight: math.unit(1000, "kg"),
  4182. name: "Front (Armored)",
  4183. image: {
  4184. source: "./media/characters/asche/front-armored.svg",
  4185. extra: 1374 / 1308,
  4186. bottom: 23 / 1397
  4187. }
  4188. },
  4189. mp724: {
  4190. height: math.unit(0.96, "meters"),
  4191. weight: math.unit(38, "kg"),
  4192. name: "H&K MP724",
  4193. image: {
  4194. source: "./media/characters/asche/h&k-mp724.svg"
  4195. }
  4196. },
  4197. side: {
  4198. height: math.unit(5, "meters"),
  4199. weight: math.unit(1000, "kg"),
  4200. name: "Side",
  4201. image: {
  4202. source: "./media/characters/asche/side.svg",
  4203. extra: 1717 / 1609,
  4204. bottom: 0.005
  4205. }
  4206. },
  4207. back: {
  4208. height: math.unit(5, "meters"),
  4209. weight: math.unit(1000, "kg"),
  4210. name: "Back",
  4211. image: {
  4212. source: "./media/characters/asche/back.svg",
  4213. extra: 1570 / 1501
  4214. }
  4215. },
  4216. },
  4217. [
  4218. {
  4219. name: "DEFCON 5",
  4220. height: math.unit(5, "meters")
  4221. },
  4222. {
  4223. name: "DEFCON 4",
  4224. height: math.unit(500, "meters"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "DEFCON 3",
  4229. height: math.unit(5, "km")
  4230. },
  4231. {
  4232. name: "DEFCON 2",
  4233. height: math.unit(500, "km")
  4234. },
  4235. {
  4236. name: "DEFCON 1",
  4237. height: math.unit(500000, "km")
  4238. },
  4239. {
  4240. name: "DEFCON 0",
  4241. height: math.unit(3, "gigaparsecs")
  4242. },
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4247. {
  4248. front: {
  4249. height: math.unit(2, "meters"),
  4250. weight: math.unit(76, "kg"),
  4251. name: "Front",
  4252. image: {
  4253. source: "./media/characters/gale/front.svg"
  4254. }
  4255. },
  4256. frontAlt1: {
  4257. height: math.unit(2, "meters"),
  4258. weight: math.unit(76, "kg"),
  4259. name: "Front (Alt 1)",
  4260. image: {
  4261. source: "./media/characters/gale/front-alt-1.svg"
  4262. }
  4263. },
  4264. frontAlt2: {
  4265. height: math.unit(2, "meters"),
  4266. weight: math.unit(76, "kg"),
  4267. name: "Front (Alt 2)",
  4268. image: {
  4269. source: "./media/characters/gale/front-alt-2.svg"
  4270. }
  4271. },
  4272. },
  4273. [
  4274. {
  4275. name: "Normal",
  4276. height: math.unit(7, "feet")
  4277. },
  4278. {
  4279. name: "Macro",
  4280. height: math.unit(150, "feet"),
  4281. default: true
  4282. },
  4283. {
  4284. name: "Macro+",
  4285. height: math.unit(300, "feet")
  4286. },
  4287. ]
  4288. ))
  4289. characterMakers.push(() => makeCharacter(
  4290. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4291. {
  4292. front: {
  4293. height: math.unit(2, "meters"),
  4294. weight: math.unit(76, "kg"),
  4295. name: "Front",
  4296. image: {
  4297. source: "./media/characters/draylen/front.svg"
  4298. }
  4299. }
  4300. },
  4301. [
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(150, "feet"),
  4305. default: true
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(7 + 9 / 12, "feet"),
  4314. weight: math.unit(379, "lbs"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/chez/front.svg"
  4318. }
  4319. },
  4320. side: {
  4321. height: math.unit(7 + 9 / 12, "feet"),
  4322. weight: math.unit(379, "lbs"),
  4323. name: "Side",
  4324. image: {
  4325. source: "./media/characters/chez/side.svg"
  4326. }
  4327. }
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(7 + 9 / 12, "feet"),
  4333. default: true
  4334. },
  4335. {
  4336. name: "God King",
  4337. height: math.unit(9750000, "meters")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(6, "feet"),
  4346. weight: math.unit(275, "lbs"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/kaylum/front.svg",
  4350. bottom: 0.01,
  4351. extra: 1166 / 1031
  4352. }
  4353. },
  4354. frontWingless: {
  4355. height: math.unit(6, "feet"),
  4356. weight: math.unit(275, "lbs"),
  4357. name: "Front (Wingless)",
  4358. image: {
  4359. source: "./media/characters/kaylum/front-wingless.svg",
  4360. bottom: 0.01,
  4361. extra: 1117 / 1031
  4362. }
  4363. }
  4364. },
  4365. [
  4366. {
  4367. name: "Normal",
  4368. height: math.unit(3.05, "meters")
  4369. },
  4370. {
  4371. name: "Master",
  4372. height: math.unit(5.5, "meters")
  4373. },
  4374. {
  4375. name: "Rampage",
  4376. height: math.unit(19, "meters")
  4377. },
  4378. {
  4379. name: "Macro Lite",
  4380. height: math.unit(37, "meters")
  4381. },
  4382. {
  4383. name: "Hyper Predator",
  4384. height: math.unit(61, "meters")
  4385. },
  4386. {
  4387. name: "Macro",
  4388. height: math.unit(138, "meters"),
  4389. default: true
  4390. }
  4391. ]
  4392. ))
  4393. characterMakers.push(() => makeCharacter(
  4394. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4395. {
  4396. front: {
  4397. height: math.unit(6, "feet"),
  4398. weight: math.unit(150, "lbs"),
  4399. name: "Front",
  4400. image: {
  4401. source: "./media/characters/geta/front.svg"
  4402. }
  4403. }
  4404. },
  4405. [
  4406. {
  4407. name: "Micro",
  4408. height: math.unit(3, "inches"),
  4409. default: true
  4410. },
  4411. {
  4412. name: "Normal",
  4413. height: math.unit(5 + 5 / 12, "feet")
  4414. }
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(6, "feet"),
  4422. weight: math.unit(300, "lbs"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/tyrnn/front.svg"
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Main Height",
  4432. height: math.unit(355, "feet"),
  4433. default: true
  4434. },
  4435. {
  4436. name: "Fave. Height",
  4437. height: math.unit(2400, "feet")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4443. {
  4444. front: {
  4445. height: math.unit(6, "feet"),
  4446. weight: math.unit(300, "lbs"),
  4447. name: "Front",
  4448. image: {
  4449. source: "./media/characters/appledectomy/front.svg"
  4450. }
  4451. }
  4452. },
  4453. [
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(2500, "feet")
  4457. },
  4458. {
  4459. name: "Megamacro",
  4460. height: math.unit(50, "miles"),
  4461. default: true
  4462. },
  4463. {
  4464. name: "Gigamacro",
  4465. height: math.unit(5000, "miles")
  4466. },
  4467. {
  4468. name: "Teramacro",
  4469. height: math.unit(250000, "miles")
  4470. },
  4471. ]
  4472. ))
  4473. characterMakers.push(() => makeCharacter(
  4474. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4475. {
  4476. front: {
  4477. height: math.unit(6, "feet"),
  4478. weight: math.unit(200, "lbs"),
  4479. name: "Front",
  4480. image: {
  4481. source: "./media/characters/vulpes/front.svg",
  4482. extra: 573 / 543,
  4483. bottom: 0.033
  4484. }
  4485. },
  4486. side: {
  4487. height: math.unit(6, "feet"),
  4488. weight: math.unit(200, "lbs"),
  4489. name: "Side",
  4490. image: {
  4491. source: "./media/characters/vulpes/side.svg",
  4492. extra: 577 / 549,
  4493. bottom: 11 / 588
  4494. }
  4495. },
  4496. back: {
  4497. height: math.unit(6, "feet"),
  4498. weight: math.unit(200, "lbs"),
  4499. name: "Back",
  4500. image: {
  4501. source: "./media/characters/vulpes/back.svg",
  4502. extra: 573 / 549,
  4503. bottom: 20 / 593
  4504. }
  4505. },
  4506. feet: {
  4507. height: math.unit(1.276, "feet"),
  4508. name: "Feet",
  4509. image: {
  4510. source: "./media/characters/vulpes/feet.svg"
  4511. }
  4512. },
  4513. maw: {
  4514. height: math.unit(1.18, "feet"),
  4515. name: "Maw",
  4516. image: {
  4517. source: "./media/characters/vulpes/maw.svg"
  4518. }
  4519. },
  4520. },
  4521. [
  4522. {
  4523. name: "Micro",
  4524. height: math.unit(2, "inches")
  4525. },
  4526. {
  4527. name: "Normal",
  4528. height: math.unit(6.3, "feet")
  4529. },
  4530. {
  4531. name: "Macro",
  4532. height: math.unit(850, "feet")
  4533. },
  4534. {
  4535. name: "Megamacro",
  4536. height: math.unit(7500, "feet"),
  4537. default: true
  4538. },
  4539. {
  4540. name: "Gigamacro",
  4541. height: math.unit(570000, "miles")
  4542. }
  4543. ]
  4544. ))
  4545. characterMakers.push(() => makeCharacter(
  4546. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4547. {
  4548. front: {
  4549. height: math.unit(6, "feet"),
  4550. weight: math.unit(210, "lbs"),
  4551. name: "Front",
  4552. image: {
  4553. source: "./media/characters/rain-fallen/front.svg"
  4554. }
  4555. },
  4556. side: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(210, "lbs"),
  4559. name: "Side",
  4560. image: {
  4561. source: "./media/characters/rain-fallen/side.svg"
  4562. }
  4563. },
  4564. back: {
  4565. height: math.unit(6, "feet"),
  4566. weight: math.unit(210, "lbs"),
  4567. name: "Back",
  4568. image: {
  4569. source: "./media/characters/rain-fallen/back.svg"
  4570. }
  4571. },
  4572. feral: {
  4573. height: math.unit(9, "feet"),
  4574. weight: math.unit(700, "lbs"),
  4575. name: "Feral",
  4576. image: {
  4577. source: "./media/characters/rain-fallen/feral.svg"
  4578. }
  4579. },
  4580. },
  4581. [
  4582. {
  4583. name: "Meddling with Mortals",
  4584. height: math.unit(8 + 8/12, "feet")
  4585. },
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(5, "meter")
  4589. },
  4590. {
  4591. name: "Macro",
  4592. height: math.unit(150, "meter"),
  4593. default: true
  4594. },
  4595. {
  4596. name: "Megamacro",
  4597. height: math.unit(278e6, "meter")
  4598. },
  4599. {
  4600. name: "Gigamacro",
  4601. height: math.unit(2e9, "meter")
  4602. },
  4603. {
  4604. name: "Teramacro",
  4605. height: math.unit(8e12, "meter")
  4606. },
  4607. {
  4608. name: "Devourer",
  4609. height: math.unit(14, "zettameters")
  4610. },
  4611. {
  4612. name: "Scarlet King",
  4613. height: math.unit(18, "yottameters")
  4614. },
  4615. {
  4616. name: "Void",
  4617. height: math.unit(1e88, "yottameters")
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4623. {
  4624. standing: {
  4625. height: math.unit(6, "feet"),
  4626. weight: math.unit(180, "lbs"),
  4627. name: "Standing",
  4628. image: {
  4629. source: "./media/characters/zaakira/standing.svg",
  4630. extra: 1599/1504,
  4631. bottom: 39/1638
  4632. }
  4633. },
  4634. laying: {
  4635. height: math.unit(3, "feet"),
  4636. weight: math.unit(180, "lbs"),
  4637. name: "Laying",
  4638. image: {
  4639. source: "./media/characters/zaakira/laying.svg"
  4640. }
  4641. },
  4642. },
  4643. [
  4644. {
  4645. name: "Normal",
  4646. height: math.unit(12, "feet")
  4647. },
  4648. {
  4649. name: "Macro",
  4650. height: math.unit(279, "feet"),
  4651. default: true
  4652. }
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4657. {
  4658. femSfw: {
  4659. height: math.unit(8, "feet"),
  4660. weight: math.unit(350, "lb"),
  4661. name: "Fem",
  4662. image: {
  4663. source: "./media/characters/sigvald/fem-sfw.svg",
  4664. extra: 182 / 164,
  4665. bottom: 8.7 / 190.5
  4666. }
  4667. },
  4668. femNsfw: {
  4669. height: math.unit(8, "feet"),
  4670. weight: math.unit(350, "lb"),
  4671. name: "Fem (NSFW)",
  4672. image: {
  4673. source: "./media/characters/sigvald/fem-nsfw.svg",
  4674. extra: 182 / 164,
  4675. bottom: 8.7 / 190.5
  4676. }
  4677. },
  4678. maleNsfw: {
  4679. height: math.unit(8, "feet"),
  4680. weight: math.unit(350, "lb"),
  4681. name: "Male (NSFW)",
  4682. image: {
  4683. source: "./media/characters/sigvald/male-nsfw.svg",
  4684. extra: 182 / 164,
  4685. bottom: 8.7 / 190.5
  4686. }
  4687. },
  4688. hermNsfw: {
  4689. height: math.unit(8, "feet"),
  4690. weight: math.unit(350, "lb"),
  4691. name: "Herm (NSFW)",
  4692. image: {
  4693. source: "./media/characters/sigvald/herm-nsfw.svg",
  4694. extra: 182 / 164,
  4695. bottom: 8.7 / 190.5
  4696. }
  4697. },
  4698. dick: {
  4699. height: math.unit(2.36, "feet"),
  4700. name: "Dick",
  4701. image: {
  4702. source: "./media/characters/sigvald/dick.svg"
  4703. }
  4704. },
  4705. eye: {
  4706. height: math.unit(0.31, "feet"),
  4707. name: "Eye",
  4708. image: {
  4709. source: "./media/characters/sigvald/eye.svg"
  4710. }
  4711. },
  4712. mouth: {
  4713. height: math.unit(0.92, "feet"),
  4714. name: "Mouth",
  4715. image: {
  4716. source: "./media/characters/sigvald/mouth.svg"
  4717. }
  4718. },
  4719. paws: {
  4720. height: math.unit(2.2, "feet"),
  4721. name: "Paws",
  4722. image: {
  4723. source: "./media/characters/sigvald/paws.svg"
  4724. }
  4725. }
  4726. },
  4727. [
  4728. {
  4729. name: "Normal",
  4730. height: math.unit(8, "feet")
  4731. },
  4732. {
  4733. name: "Large",
  4734. height: math.unit(12, "feet")
  4735. },
  4736. {
  4737. name: "Larger",
  4738. height: math.unit(20, "feet")
  4739. },
  4740. {
  4741. name: "Macro",
  4742. height: math.unit(150, "feet")
  4743. },
  4744. {
  4745. name: "Macro+",
  4746. height: math.unit(200, "feet"),
  4747. default: true
  4748. },
  4749. ]
  4750. ))
  4751. characterMakers.push(() => makeCharacter(
  4752. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4753. {
  4754. side: {
  4755. height: math.unit(12, "feet"),
  4756. weight: math.unit(2000, "kg"),
  4757. name: "Side",
  4758. image: {
  4759. source: "./media/characters/scott/side.svg",
  4760. extra: 754 / 724,
  4761. bottom: 0.069
  4762. }
  4763. },
  4764. upright: {
  4765. height: math.unit(12, "feet"),
  4766. weight: math.unit(2000, "kg"),
  4767. name: "Upright",
  4768. image: {
  4769. source: "./media/characters/scott/upright.svg",
  4770. extra: 3881 / 3722,
  4771. bottom: 0.05
  4772. }
  4773. },
  4774. },
  4775. [
  4776. {
  4777. name: "Normal",
  4778. height: math.unit(12, "feet"),
  4779. default: true
  4780. },
  4781. ]
  4782. ))
  4783. characterMakers.push(() => makeCharacter(
  4784. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4785. {
  4786. side: {
  4787. height: math.unit(8, "meters"),
  4788. weight: math.unit(84755, "lbs"),
  4789. name: "Side",
  4790. image: {
  4791. source: "./media/characters/tobias/side.svg",
  4792. extra: 1474 / 1096,
  4793. bottom: 38.9 / 1513.1235
  4794. }
  4795. },
  4796. },
  4797. [
  4798. {
  4799. name: "Normal",
  4800. height: math.unit(8, "meters"),
  4801. default: true
  4802. },
  4803. ]
  4804. ))
  4805. characterMakers.push(() => makeCharacter(
  4806. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4807. {
  4808. front: {
  4809. height: math.unit(5.5, "feet"),
  4810. weight: math.unit(400, "lbs"),
  4811. name: "Front",
  4812. image: {
  4813. source: "./media/characters/kieran/front.svg",
  4814. extra: 2694 / 2364,
  4815. bottom: 217 / 2908
  4816. }
  4817. },
  4818. side: {
  4819. height: math.unit(5.5, "feet"),
  4820. weight: math.unit(400, "lbs"),
  4821. name: "Side",
  4822. image: {
  4823. source: "./media/characters/kieran/side.svg",
  4824. extra: 875 / 777,
  4825. bottom: 84.6 / 959
  4826. }
  4827. },
  4828. },
  4829. [
  4830. {
  4831. name: "Normal",
  4832. height: math.unit(5.5, "feet"),
  4833. default: true
  4834. },
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4839. {
  4840. side: {
  4841. height: math.unit(2, "meters"),
  4842. weight: math.unit(70, "kg"),
  4843. name: "Side",
  4844. image: {
  4845. source: "./media/characters/sanya/side.svg",
  4846. bottom: 0.02,
  4847. extra: 1.02
  4848. }
  4849. },
  4850. },
  4851. [
  4852. {
  4853. name: "Small",
  4854. height: math.unit(2, "meters")
  4855. },
  4856. {
  4857. name: "Normal",
  4858. height: math.unit(3, "meters")
  4859. },
  4860. {
  4861. name: "Macro",
  4862. height: math.unit(16, "meters"),
  4863. default: true
  4864. },
  4865. ]
  4866. ))
  4867. characterMakers.push(() => makeCharacter(
  4868. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4869. {
  4870. front: {
  4871. height: math.unit(2, "meters"),
  4872. weight: math.unit(120, "kg"),
  4873. name: "Front",
  4874. image: {
  4875. source: "./media/characters/miranda/front.svg",
  4876. extra: 195 / 185,
  4877. bottom: 10.9 / 206.5
  4878. }
  4879. },
  4880. back: {
  4881. height: math.unit(2, "meters"),
  4882. weight: math.unit(120, "kg"),
  4883. name: "Back",
  4884. image: {
  4885. source: "./media/characters/miranda/back.svg",
  4886. extra: 201 / 193,
  4887. bottom: 2.3 / 203.7
  4888. }
  4889. },
  4890. },
  4891. [
  4892. {
  4893. name: "Normal",
  4894. height: math.unit(10, "feet"),
  4895. default: true
  4896. }
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "James", species: ["deer"], tags: ["anthro"] },
  4901. {
  4902. side: {
  4903. height: math.unit(2, "meters"),
  4904. weight: math.unit(100, "kg"),
  4905. name: "Front",
  4906. image: {
  4907. source: "./media/characters/james/front.svg",
  4908. extra: 10 / 8.5
  4909. }
  4910. },
  4911. },
  4912. [
  4913. {
  4914. name: "Normal",
  4915. height: math.unit(8.5, "feet"),
  4916. default: true
  4917. }
  4918. ]
  4919. ))
  4920. characterMakers.push(() => makeCharacter(
  4921. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4922. {
  4923. side: {
  4924. height: math.unit(9.5, "feet"),
  4925. weight: math.unit(2500, "lbs"),
  4926. name: "Side",
  4927. image: {
  4928. source: "./media/characters/heather/side.svg"
  4929. }
  4930. },
  4931. },
  4932. [
  4933. {
  4934. name: "Normal",
  4935. height: math.unit(9.5, "feet"),
  4936. default: true
  4937. }
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4942. {
  4943. side: {
  4944. height: math.unit(6.5, "feet"),
  4945. weight: math.unit(400, "lbs"),
  4946. name: "Side",
  4947. image: {
  4948. source: "./media/characters/lukas/side.svg",
  4949. extra: 7.25 / 6.5
  4950. }
  4951. },
  4952. },
  4953. [
  4954. {
  4955. name: "Normal",
  4956. height: math.unit(6.5, "feet"),
  4957. default: true
  4958. }
  4959. ]
  4960. ))
  4961. characterMakers.push(() => makeCharacter(
  4962. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4963. {
  4964. side: {
  4965. height: math.unit(5, "feet"),
  4966. weight: math.unit(3000, "lbs"),
  4967. name: "Side",
  4968. image: {
  4969. source: "./media/characters/louise/side.svg"
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(5, "feet"),
  4977. default: true
  4978. }
  4979. ]
  4980. ))
  4981. characterMakers.push(() => makeCharacter(
  4982. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4983. {
  4984. side: {
  4985. height: math.unit(6, "feet"),
  4986. weight: math.unit(150, "lbs"),
  4987. name: "Side",
  4988. image: {
  4989. source: "./media/characters/ramona/side.svg"
  4990. }
  4991. },
  4992. },
  4993. [
  4994. {
  4995. name: "Normal",
  4996. height: math.unit(5.3, "meters"),
  4997. default: true
  4998. },
  4999. {
  5000. name: "Macro",
  5001. height: math.unit(20, "stories")
  5002. },
  5003. {
  5004. name: "Macro+",
  5005. height: math.unit(50, "stories")
  5006. },
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5011. {
  5012. standing: {
  5013. height: math.unit(5.75, "feet"),
  5014. weight: math.unit(160, "lbs"),
  5015. name: "Standing",
  5016. image: {
  5017. source: "./media/characters/deerpuff/standing.svg",
  5018. extra: 682 / 624
  5019. }
  5020. },
  5021. sitting: {
  5022. height: math.unit(5.75 / 1.79, "feet"),
  5023. weight: math.unit(160, "lbs"),
  5024. name: "Sitting",
  5025. image: {
  5026. source: "./media/characters/deerpuff/sitting.svg",
  5027. bottom: 44 / 400,
  5028. extra: 1
  5029. }
  5030. },
  5031. taurLaying: {
  5032. height: math.unit(6, "feet"),
  5033. weight: math.unit(400, "lbs"),
  5034. name: "Taur (Laying)",
  5035. image: {
  5036. source: "./media/characters/deerpuff/taur-laying.svg"
  5037. }
  5038. },
  5039. },
  5040. [
  5041. {
  5042. name: "Puffball",
  5043. height: math.unit(6, "inches")
  5044. },
  5045. {
  5046. name: "Normalpuff",
  5047. height: math.unit(5.75, "feet")
  5048. },
  5049. {
  5050. name: "Macropuff",
  5051. height: math.unit(1500, "feet"),
  5052. default: true
  5053. },
  5054. {
  5055. name: "Megapuff",
  5056. height: math.unit(500, "miles")
  5057. },
  5058. {
  5059. name: "Gigapuff",
  5060. height: math.unit(250000, "miles")
  5061. },
  5062. {
  5063. name: "Omegapuff",
  5064. height: math.unit(1000, "lightyears")
  5065. },
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5070. {
  5071. stomping: {
  5072. height: math.unit(6, "feet"),
  5073. weight: math.unit(170, "lbs"),
  5074. name: "Stomping",
  5075. image: {
  5076. source: "./media/characters/vivian/stomping.svg"
  5077. }
  5078. },
  5079. sitting: {
  5080. height: math.unit(6 / 1.75, "feet"),
  5081. weight: math.unit(170, "lbs"),
  5082. name: "Sitting",
  5083. image: {
  5084. source: "./media/characters/vivian/sitting.svg",
  5085. bottom: 1 / 6.4,
  5086. extra: 1,
  5087. }
  5088. },
  5089. },
  5090. [
  5091. {
  5092. name: "Normal",
  5093. height: math.unit(7, "feet"),
  5094. default: true
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(10, "stories")
  5099. },
  5100. {
  5101. name: "Macro+",
  5102. height: math.unit(30, "stories")
  5103. },
  5104. {
  5105. name: "Megamacro",
  5106. height: math.unit(10, "miles")
  5107. },
  5108. {
  5109. name: "Megamacro+",
  5110. height: math.unit(2750000, "meters")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5116. {
  5117. front: {
  5118. height: math.unit(6, "feet"),
  5119. weight: math.unit(160, "lbs"),
  5120. name: "Front",
  5121. image: {
  5122. source: "./media/characters/prince/front.svg",
  5123. extra: 3400 / 3000
  5124. }
  5125. },
  5126. jumping: {
  5127. height: math.unit(6, "feet"),
  5128. weight: math.unit(160, "lbs"),
  5129. name: "Jumping",
  5130. image: {
  5131. source: "./media/characters/prince/jump.svg",
  5132. extra: 2555 / 2134
  5133. }
  5134. },
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(7.75, "feet"),
  5140. default: true
  5141. },
  5142. {
  5143. name: "Not cute",
  5144. height: math.unit(17, "feet")
  5145. },
  5146. {
  5147. name: "I said NOT",
  5148. height: math.unit(91, "feet")
  5149. },
  5150. {
  5151. name: "Please stop",
  5152. height: math.unit(560, "feet")
  5153. },
  5154. {
  5155. name: "What have you done",
  5156. height: math.unit(2200, "feet")
  5157. },
  5158. {
  5159. name: "Deer God",
  5160. height: math.unit(3.6, "miles")
  5161. },
  5162. ]
  5163. ))
  5164. characterMakers.push(() => makeCharacter(
  5165. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5166. {
  5167. standing: {
  5168. height: math.unit(6, "feet"),
  5169. weight: math.unit(300, "lbs"),
  5170. name: "Standing",
  5171. image: {
  5172. source: "./media/characters/psymon/standing.svg",
  5173. extra: 1888 / 1810,
  5174. bottom: 0.05
  5175. }
  5176. },
  5177. slithering: {
  5178. height: math.unit(6, "feet"),
  5179. weight: math.unit(300, "lbs"),
  5180. name: "Slithering",
  5181. image: {
  5182. source: "./media/characters/psymon/slithering.svg",
  5183. extra: 1330 / 1224
  5184. }
  5185. },
  5186. slitheringAlt: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(300, "lbs"),
  5189. name: "Slithering (Alt)",
  5190. image: {
  5191. source: "./media/characters/psymon/slithering-alt.svg",
  5192. extra: 1330 / 1224
  5193. }
  5194. },
  5195. },
  5196. [
  5197. {
  5198. name: "Normal",
  5199. height: math.unit(11.25, "feet"),
  5200. default: true
  5201. },
  5202. {
  5203. name: "Large",
  5204. height: math.unit(27, "feet")
  5205. },
  5206. {
  5207. name: "Giant",
  5208. height: math.unit(87, "feet")
  5209. },
  5210. {
  5211. name: "Macro",
  5212. height: math.unit(365, "feet")
  5213. },
  5214. {
  5215. name: "Megamacro",
  5216. height: math.unit(3, "miles")
  5217. },
  5218. {
  5219. name: "World Serpent",
  5220. height: math.unit(8000, "miles")
  5221. },
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5226. {
  5227. front: {
  5228. height: math.unit(6, "feet"),
  5229. weight: math.unit(180, "lbs"),
  5230. name: "Front",
  5231. image: {
  5232. source: "./media/characters/daimos/front.svg",
  5233. extra: 4160 / 3897,
  5234. bottom: 0.021
  5235. }
  5236. }
  5237. },
  5238. [
  5239. {
  5240. name: "Normal",
  5241. height: math.unit(8, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Big Dog",
  5246. height: math.unit(22, "feet")
  5247. },
  5248. {
  5249. name: "Macro",
  5250. height: math.unit(127, "feet")
  5251. },
  5252. {
  5253. name: "Megamacro",
  5254. height: math.unit(3600, "feet")
  5255. },
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5260. {
  5261. side: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(180, "lbs"),
  5264. name: "Side",
  5265. image: {
  5266. source: "./media/characters/blake/side.svg",
  5267. extra: 1212 / 1120,
  5268. bottom: 0.05
  5269. }
  5270. },
  5271. crouched: {
  5272. height: math.unit(6 * 0.57, "feet"),
  5273. weight: math.unit(180, "lbs"),
  5274. name: "Crouched",
  5275. image: {
  5276. source: "./media/characters/blake/crouched.svg",
  5277. extra: 840 / 587,
  5278. bottom: 0.04
  5279. }
  5280. },
  5281. bent: {
  5282. height: math.unit(6 * 0.75, "feet"),
  5283. weight: math.unit(180, "lbs"),
  5284. name: "Bent",
  5285. image: {
  5286. source: "./media/characters/blake/bent.svg",
  5287. extra: 592 / 544,
  5288. bottom: 0.035
  5289. }
  5290. },
  5291. },
  5292. [
  5293. {
  5294. name: "Normal",
  5295. height: math.unit(8 + 1 / 6, "feet"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Big Backside",
  5300. height: math.unit(37, "feet")
  5301. },
  5302. {
  5303. name: "Subway Shredder",
  5304. height: math.unit(72, "feet")
  5305. },
  5306. {
  5307. name: "City Carver",
  5308. height: math.unit(1675, "feet")
  5309. },
  5310. {
  5311. name: "Tectonic Tweaker",
  5312. height: math.unit(2300, "miles")
  5313. },
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5318. {
  5319. front: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(180, "lbs"),
  5322. name: "Front",
  5323. image: {
  5324. source: "./media/characters/guisetto/front.svg",
  5325. extra: 856 / 817,
  5326. bottom: 0.06
  5327. }
  5328. },
  5329. airborne: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(180, "lbs"),
  5332. name: "Airborne",
  5333. image: {
  5334. source: "./media/characters/guisetto/airborne.svg",
  5335. extra: 584 / 525
  5336. }
  5337. },
  5338. },
  5339. [
  5340. {
  5341. name: "Normal",
  5342. height: math.unit(10 + 11 / 12, "feet"),
  5343. default: true
  5344. },
  5345. {
  5346. name: "Large",
  5347. height: math.unit(35, "feet")
  5348. },
  5349. {
  5350. name: "Macro",
  5351. height: math.unit(475, "feet")
  5352. },
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5357. {
  5358. front: {
  5359. height: math.unit(6, "feet"),
  5360. weight: math.unit(180, "lbs"),
  5361. name: "Front",
  5362. image: {
  5363. source: "./media/characters/luxor/front.svg",
  5364. extra: 2940 / 2152
  5365. }
  5366. },
  5367. back: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(180, "lbs"),
  5370. name: "Back",
  5371. image: {
  5372. source: "./media/characters/luxor/back.svg",
  5373. extra: 1083 / 960
  5374. }
  5375. },
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(5 + 5 / 6, "feet"),
  5381. default: true
  5382. },
  5383. {
  5384. name: "Lamp",
  5385. height: math.unit(50, "feet")
  5386. },
  5387. {
  5388. name: "Lämp",
  5389. height: math.unit(300, "feet")
  5390. },
  5391. {
  5392. name: "The sun is a lamp",
  5393. height: math.unit(250000, "miles")
  5394. },
  5395. ]
  5396. ))
  5397. characterMakers.push(() => makeCharacter(
  5398. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5399. {
  5400. front: {
  5401. height: math.unit(6, "feet"),
  5402. weight: math.unit(50, "lbs"),
  5403. name: "Front",
  5404. image: {
  5405. source: "./media/characters/huoyan/front.svg"
  5406. }
  5407. },
  5408. side: {
  5409. height: math.unit(6, "feet"),
  5410. weight: math.unit(180, "lbs"),
  5411. name: "Side",
  5412. image: {
  5413. source: "./media/characters/huoyan/side.svg"
  5414. }
  5415. },
  5416. },
  5417. [
  5418. {
  5419. name: "Chef",
  5420. height: math.unit(9, "feet")
  5421. },
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(65, "feet"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Macro",
  5429. height: math.unit(780, "feet")
  5430. },
  5431. {
  5432. name: "Flaming Mountain",
  5433. height: math.unit(4.8, "miles")
  5434. },
  5435. {
  5436. name: "Celestial",
  5437. height: math.unit(765000, "miles")
  5438. },
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5443. {
  5444. front: {
  5445. height: math.unit(5 + 3 / 4, "feet"),
  5446. weight: math.unit(120, "lbs"),
  5447. name: "Front",
  5448. image: {
  5449. source: "./media/characters/tails/front.svg"
  5450. }
  5451. }
  5452. },
  5453. [
  5454. {
  5455. name: "Normal",
  5456. height: math.unit(5 + 3 / 4, "feet"),
  5457. default: true
  5458. }
  5459. ]
  5460. ))
  5461. characterMakers.push(() => makeCharacter(
  5462. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5463. {
  5464. front: {
  5465. height: math.unit(4, "feet"),
  5466. weight: math.unit(50, "lbs"),
  5467. name: "Front",
  5468. image: {
  5469. source: "./media/characters/rainy/front.svg"
  5470. }
  5471. }
  5472. },
  5473. [
  5474. {
  5475. name: "Macro",
  5476. height: math.unit(800, "feet"),
  5477. default: true
  5478. }
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5483. {
  5484. front: {
  5485. height: math.unit(6, "feet"),
  5486. weight: math.unit(150, "lbs"),
  5487. name: "Front",
  5488. image: {
  5489. source: "./media/characters/rainier/front.svg"
  5490. }
  5491. }
  5492. },
  5493. [
  5494. {
  5495. name: "Micro",
  5496. height: math.unit(2, "mm"),
  5497. default: true
  5498. }
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5503. {
  5504. front: {
  5505. height: math.unit(8 + 4/12, "feet"),
  5506. name: "Front",
  5507. image: {
  5508. source: "./media/characters/andy-renard/front.svg",
  5509. extra: 1839/1726,
  5510. bottom: 134/1973
  5511. }
  5512. },
  5513. back: {
  5514. height: math.unit(8 + 4/12, "feet"),
  5515. name: "Back",
  5516. image: {
  5517. source: "./media/characters/andy-renard/back.svg",
  5518. extra: 1838/1710,
  5519. bottom: 105/1943
  5520. }
  5521. },
  5522. },
  5523. [
  5524. {
  5525. name: "Tall",
  5526. height: math.unit(8 + 4/12, "feet")
  5527. },
  5528. {
  5529. name: "Mini Macro",
  5530. height: math.unit(15, "feet"),
  5531. default: true
  5532. },
  5533. {
  5534. name: "Macro",
  5535. height: math.unit(100, "feet")
  5536. },
  5537. {
  5538. name: "Mega Macro",
  5539. height: math.unit(1000, "feet")
  5540. },
  5541. {
  5542. name: "Giga Macro",
  5543. height: math.unit(10, "miles")
  5544. },
  5545. {
  5546. name: "God Macro",
  5547. height: math.unit(1, "multiverse")
  5548. },
  5549. ]
  5550. ))
  5551. characterMakers.push(() => makeCharacter(
  5552. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5553. {
  5554. front: {
  5555. height: math.unit(6, "feet"),
  5556. weight: math.unit(210, "lbs"),
  5557. name: "Front",
  5558. image: {
  5559. source: "./media/characters/cimmaron/front-sfw.svg",
  5560. extra: 701 / 676,
  5561. bottom: 0.046
  5562. }
  5563. },
  5564. back: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(210, "lbs"),
  5567. name: "Back",
  5568. image: {
  5569. source: "./media/characters/cimmaron/back-sfw.svg",
  5570. extra: 701 / 676,
  5571. bottom: 0.046
  5572. }
  5573. },
  5574. frontNsfw: {
  5575. height: math.unit(6, "feet"),
  5576. weight: math.unit(210, "lbs"),
  5577. name: "Front (NSFW)",
  5578. image: {
  5579. source: "./media/characters/cimmaron/front-nsfw.svg",
  5580. extra: 701 / 676,
  5581. bottom: 0.046
  5582. }
  5583. },
  5584. backNsfw: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(210, "lbs"),
  5587. name: "Back (NSFW)",
  5588. image: {
  5589. source: "./media/characters/cimmaron/back-nsfw.svg",
  5590. extra: 701 / 676,
  5591. bottom: 0.046
  5592. }
  5593. },
  5594. dick: {
  5595. height: math.unit(1.714, "feet"),
  5596. name: "Dick",
  5597. image: {
  5598. source: "./media/characters/cimmaron/dick.svg"
  5599. }
  5600. },
  5601. },
  5602. [
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(6, "feet"),
  5606. default: true
  5607. },
  5608. {
  5609. name: "Macro Mayor",
  5610. height: math.unit(350, "meters")
  5611. },
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5616. {
  5617. front: {
  5618. height: math.unit(6, "feet"),
  5619. weight: math.unit(200, "lbs"),
  5620. name: "Front",
  5621. image: {
  5622. source: "./media/characters/akari/front.svg",
  5623. extra: 962 / 901,
  5624. bottom: 0.04
  5625. }
  5626. }
  5627. },
  5628. [
  5629. {
  5630. name: "Micro",
  5631. height: math.unit(5, "inches"),
  5632. default: true
  5633. },
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(7, "feet")
  5637. },
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5642. {
  5643. front: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(140, "lbs"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/cynosura/front.svg",
  5649. extra: 896 / 847
  5650. }
  5651. },
  5652. back: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(140, "lbs"),
  5655. name: "Back",
  5656. image: {
  5657. source: "./media/characters/cynosura/back.svg",
  5658. extra: 1365 / 1250
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Micro",
  5665. height: math.unit(4, "inches")
  5666. },
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(5.75, "feet"),
  5670. default: true
  5671. },
  5672. {
  5673. name: "Tall",
  5674. height: math.unit(10, "feet")
  5675. },
  5676. {
  5677. name: "Big",
  5678. height: math.unit(20, "feet")
  5679. },
  5680. {
  5681. name: "Macro",
  5682. height: math.unit(50, "feet")
  5683. },
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5688. {
  5689. front: {
  5690. height: math.unit(13 + 2/12, "feet"),
  5691. weight: math.unit(800, "kg"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/gin/front.svg",
  5695. extra: 1312/1191,
  5696. bottom: 45/1357
  5697. }
  5698. },
  5699. mouth: {
  5700. height: math.unit(2.39 * 1.8, "feet"),
  5701. name: "Mouth",
  5702. image: {
  5703. source: "./media/characters/gin/mouth.svg"
  5704. }
  5705. },
  5706. hand: {
  5707. height: math.unit(1.57 * 2.19, "feet"),
  5708. name: "Hand",
  5709. image: {
  5710. source: "./media/characters/gin/hand.svg"
  5711. }
  5712. },
  5713. foot: {
  5714. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5715. name: "Foot",
  5716. image: {
  5717. source: "./media/characters/gin/foot.svg"
  5718. }
  5719. },
  5720. sole: {
  5721. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5722. name: "Sole",
  5723. image: {
  5724. source: "./media/characters/gin/sole.svg"
  5725. }
  5726. },
  5727. },
  5728. [
  5729. {
  5730. name: "Very Small",
  5731. height: math.unit(13 + 2 / 12, "feet")
  5732. },
  5733. {
  5734. name: "Micro",
  5735. height: math.unit(600, "miles")
  5736. },
  5737. {
  5738. name: "Regular",
  5739. height: math.unit(20, "earths"),
  5740. default: true
  5741. },
  5742. {
  5743. name: "Macro",
  5744. height: math.unit(2.2, "solarradii")
  5745. },
  5746. {
  5747. name: "Teramacro",
  5748. height: math.unit(1.2, "galaxies")
  5749. },
  5750. {
  5751. name: "Omegamacro",
  5752. height: math.unit(200, "universes")
  5753. },
  5754. ]
  5755. ))
  5756. characterMakers.push(() => makeCharacter(
  5757. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5758. {
  5759. front: {
  5760. height: math.unit(6 + 1 / 6, "feet"),
  5761. weight: math.unit(178, "lbs"),
  5762. name: "Front",
  5763. image: {
  5764. source: "./media/characters/guy/front.svg"
  5765. }
  5766. }
  5767. },
  5768. [
  5769. {
  5770. name: "Normal",
  5771. height: math.unit(6 + 1 / 6, "feet"),
  5772. default: true
  5773. },
  5774. {
  5775. name: "Large",
  5776. height: math.unit(25 + 7 / 12, "feet")
  5777. },
  5778. {
  5779. name: "Macro",
  5780. height: math.unit(60 + 9 / 12, "feet")
  5781. },
  5782. {
  5783. name: "Macro+",
  5784. height: math.unit(246, "feet")
  5785. },
  5786. {
  5787. name: "Macro++",
  5788. height: math.unit(878, "feet")
  5789. }
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5794. {
  5795. front: {
  5796. height: math.unit(9, "feet"),
  5797. weight: math.unit(800, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/tiberius/front.svg",
  5801. extra: 2295 / 2071
  5802. }
  5803. },
  5804. back: {
  5805. height: math.unit(9, "feet"),
  5806. weight: math.unit(800, "lbs"),
  5807. name: "Back",
  5808. image: {
  5809. source: "./media/characters/tiberius/back.svg",
  5810. extra: 2373 / 2160
  5811. }
  5812. },
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(9, "feet"),
  5818. default: true
  5819. }
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5824. {
  5825. front: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(600, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/surgo/front.svg",
  5831. extra: 3591 / 2227
  5832. }
  5833. },
  5834. back: {
  5835. height: math.unit(6, "feet"),
  5836. weight: math.unit(600, "lbs"),
  5837. name: "Back",
  5838. image: {
  5839. source: "./media/characters/surgo/back.svg",
  5840. extra: 3557 / 2228
  5841. }
  5842. },
  5843. laying: {
  5844. height: math.unit(6 * 0.85, "feet"),
  5845. weight: math.unit(600, "lbs"),
  5846. name: "Laying",
  5847. image: {
  5848. source: "./media/characters/surgo/laying.svg"
  5849. }
  5850. },
  5851. },
  5852. [
  5853. {
  5854. name: "Normal",
  5855. height: math.unit(6, "feet"),
  5856. default: true
  5857. }
  5858. ]
  5859. ))
  5860. characterMakers.push(() => makeCharacter(
  5861. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5862. {
  5863. side: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(150, "lbs"),
  5866. name: "Side",
  5867. image: {
  5868. source: "./media/characters/cibus/side.svg",
  5869. extra: 800 / 400
  5870. }
  5871. },
  5872. },
  5873. [
  5874. {
  5875. name: "Normal",
  5876. height: math.unit(6, "feet"),
  5877. default: true
  5878. }
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5883. {
  5884. front: {
  5885. height: math.unit(6, "feet"),
  5886. weight: math.unit(240, "lbs"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/nibbles/front.svg"
  5890. }
  5891. },
  5892. side: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(240, "lbs"),
  5895. name: "Side",
  5896. image: {
  5897. source: "./media/characters/nibbles/side.svg"
  5898. }
  5899. },
  5900. },
  5901. [
  5902. {
  5903. name: "Normal",
  5904. height: math.unit(9, "feet"),
  5905. default: true
  5906. }
  5907. ]
  5908. ))
  5909. characterMakers.push(() => makeCharacter(
  5910. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5911. {
  5912. side: {
  5913. height: math.unit(5 + 1 / 6, "feet"),
  5914. weight: math.unit(130, "lbs"),
  5915. name: "Side",
  5916. image: {
  5917. source: "./media/characters/rikky/side.svg",
  5918. extra: 851 / 801
  5919. }
  5920. },
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5 + 1 / 6, "feet")
  5926. },
  5927. {
  5928. name: "Macro",
  5929. height: math.unit(152, "feet"),
  5930. default: true
  5931. },
  5932. {
  5933. name: "Megamacro",
  5934. height: math.unit(7, "miles")
  5935. }
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5940. {
  5941. side: {
  5942. height: math.unit(370, "cm"),
  5943. weight: math.unit(350, "lbs"),
  5944. name: "Side",
  5945. image: {
  5946. source: "./media/characters/malfressa/side.svg"
  5947. }
  5948. },
  5949. walking: {
  5950. height: math.unit(370, "cm"),
  5951. weight: math.unit(350, "lbs"),
  5952. name: "Walking",
  5953. image: {
  5954. source: "./media/characters/malfressa/walking.svg"
  5955. }
  5956. },
  5957. feral: {
  5958. height: math.unit(2500, "cm"),
  5959. weight: math.unit(100000, "lbs"),
  5960. name: "Feral",
  5961. image: {
  5962. source: "./media/characters/malfressa/feral.svg",
  5963. extra: 2108 / 837,
  5964. bottom: 0.02
  5965. }
  5966. },
  5967. },
  5968. [
  5969. {
  5970. name: "Normal",
  5971. height: math.unit(370, "cm")
  5972. },
  5973. {
  5974. name: "Macro",
  5975. height: math.unit(300, "meters"),
  5976. default: true
  5977. }
  5978. ]
  5979. ))
  5980. characterMakers.push(() => makeCharacter(
  5981. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5982. {
  5983. front: {
  5984. height: math.unit(6, "feet"),
  5985. weight: math.unit(60, "kg"),
  5986. name: "Front",
  5987. image: {
  5988. source: "./media/characters/jaro/front.svg"
  5989. }
  5990. },
  5991. back: {
  5992. height: math.unit(6, "feet"),
  5993. weight: math.unit(60, "kg"),
  5994. name: "Back",
  5995. image: {
  5996. source: "./media/characters/jaro/back.svg"
  5997. }
  5998. },
  5999. },
  6000. [
  6001. {
  6002. name: "Micro",
  6003. height: math.unit(7, "inches")
  6004. },
  6005. {
  6006. name: "Normal",
  6007. height: math.unit(5.5, "feet"),
  6008. default: true
  6009. },
  6010. {
  6011. name: "Minimacro",
  6012. height: math.unit(20, "feet")
  6013. },
  6014. {
  6015. name: "Macro",
  6016. height: math.unit(200, "meters")
  6017. }
  6018. ]
  6019. ))
  6020. characterMakers.push(() => makeCharacter(
  6021. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6022. {
  6023. front: {
  6024. height: math.unit(6, "feet"),
  6025. weight: math.unit(195, "lb"),
  6026. name: "Front",
  6027. image: {
  6028. source: "./media/characters/rogue/front.svg"
  6029. }
  6030. },
  6031. },
  6032. [
  6033. {
  6034. name: "Macro",
  6035. height: math.unit(90, "feet"),
  6036. default: true
  6037. },
  6038. ]
  6039. ))
  6040. characterMakers.push(() => makeCharacter(
  6041. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6042. {
  6043. front: {
  6044. height: math.unit(5 + 8 / 12, "feet"),
  6045. weight: math.unit(140, "lb"),
  6046. name: "Front",
  6047. image: {
  6048. source: "./media/characters/piper/front.svg",
  6049. extra: 3948/3655,
  6050. bottom: 0/3948
  6051. }
  6052. },
  6053. },
  6054. [
  6055. {
  6056. name: "Micro",
  6057. height: math.unit(2, "inches")
  6058. },
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(5 + 8 / 12, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(250, "feet"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Megamacro",
  6070. height: math.unit(7, "miles")
  6071. },
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6076. {
  6077. front: {
  6078. height: math.unit(6, "feet"),
  6079. weight: math.unit(220, "lb"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/gemini/front.svg"
  6083. }
  6084. },
  6085. back: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(220, "lb"),
  6088. name: "Back",
  6089. image: {
  6090. source: "./media/characters/gemini/back.svg"
  6091. }
  6092. },
  6093. kneeling: {
  6094. height: math.unit(6 / 1.5, "feet"),
  6095. weight: math.unit(220, "lb"),
  6096. name: "Kneeling",
  6097. image: {
  6098. source: "./media/characters/gemini/kneeling.svg",
  6099. bottom: 0.02
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Macro",
  6106. height: math.unit(300, "meters"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Megamacro",
  6111. height: math.unit(6900, "meters")
  6112. },
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6117. {
  6118. anthro: {
  6119. height: math.unit(2.35, "meters"),
  6120. weight: math.unit(73, "kg"),
  6121. name: "Anthro",
  6122. image: {
  6123. source: "./media/characters/alicia/anthro.svg",
  6124. extra: 2571 / 2385,
  6125. bottom: 75 / 2648
  6126. }
  6127. },
  6128. paw: {
  6129. height: math.unit(1.32, "feet"),
  6130. name: "Paw",
  6131. image: {
  6132. source: "./media/characters/alicia/paw.svg"
  6133. }
  6134. },
  6135. feral: {
  6136. height: math.unit(1.69, "meters"),
  6137. weight: math.unit(73, "kg"),
  6138. name: "Feral",
  6139. image: {
  6140. source: "./media/characters/alicia/feral.svg",
  6141. extra: 2123 / 1715,
  6142. bottom: 222 / 2349
  6143. }
  6144. },
  6145. },
  6146. [
  6147. {
  6148. name: "Normal",
  6149. height: math.unit(2.35, "meters")
  6150. },
  6151. {
  6152. name: "Macro",
  6153. height: math.unit(60, "meters"),
  6154. default: true
  6155. },
  6156. {
  6157. name: "Megamacro",
  6158. height: math.unit(10000, "kilometers")
  6159. },
  6160. ]
  6161. ))
  6162. characterMakers.push(() => makeCharacter(
  6163. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6164. {
  6165. front: {
  6166. height: math.unit(7, "feet"),
  6167. weight: math.unit(250, "lbs"),
  6168. name: "Front",
  6169. image: {
  6170. source: "./media/characters/archy/front.svg"
  6171. }
  6172. }
  6173. },
  6174. [
  6175. {
  6176. name: "Micro",
  6177. height: math.unit(1, "inch")
  6178. },
  6179. {
  6180. name: "Shorty",
  6181. height: math.unit(5, "feet")
  6182. },
  6183. {
  6184. name: "Normal",
  6185. height: math.unit(7, "feet")
  6186. },
  6187. {
  6188. name: "Macro",
  6189. height: math.unit(600, "meters"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Megamacro",
  6194. height: math.unit(1, "mile")
  6195. },
  6196. ]
  6197. ))
  6198. characterMakers.push(() => makeCharacter(
  6199. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6200. {
  6201. front: {
  6202. height: math.unit(1.65, "meters"),
  6203. weight: math.unit(74, "kg"),
  6204. name: "Front",
  6205. image: {
  6206. source: "./media/characters/berri/front.svg",
  6207. extra: 857 / 837,
  6208. bottom: 18 / 877
  6209. }
  6210. },
  6211. bum: {
  6212. height: math.unit(1.46, "feet"),
  6213. name: "Bum",
  6214. image: {
  6215. source: "./media/characters/berri/bum.svg"
  6216. }
  6217. },
  6218. mouth: {
  6219. height: math.unit(0.44, "feet"),
  6220. name: "Mouth",
  6221. image: {
  6222. source: "./media/characters/berri/mouth.svg"
  6223. }
  6224. },
  6225. paw: {
  6226. height: math.unit(0.826, "feet"),
  6227. name: "Paw",
  6228. image: {
  6229. source: "./media/characters/berri/paw.svg"
  6230. }
  6231. },
  6232. },
  6233. [
  6234. {
  6235. name: "Normal",
  6236. height: math.unit(1.65, "meters")
  6237. },
  6238. {
  6239. name: "Macro",
  6240. height: math.unit(60, "m"),
  6241. default: true
  6242. },
  6243. {
  6244. name: "Megamacro",
  6245. height: math.unit(9.213, "km")
  6246. },
  6247. {
  6248. name: "Planet Eater",
  6249. height: math.unit(489, "megameters")
  6250. },
  6251. {
  6252. name: "Teramacro",
  6253. height: math.unit(2471635000000, "meters")
  6254. },
  6255. {
  6256. name: "Examacro",
  6257. height: math.unit(8.0624e+26, "meters")
  6258. }
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6263. {
  6264. front: {
  6265. height: math.unit(1.72, "meters"),
  6266. weight: math.unit(68, "kg"),
  6267. name: "Front",
  6268. image: {
  6269. source: "./media/characters/lexi/front.svg"
  6270. }
  6271. }
  6272. },
  6273. [
  6274. {
  6275. name: "Very Smol",
  6276. height: math.unit(10, "mm")
  6277. },
  6278. {
  6279. name: "Micro",
  6280. height: math.unit(6.8, "cm"),
  6281. default: true
  6282. },
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(1.72, "m")
  6286. }
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6291. {
  6292. front: {
  6293. height: math.unit(1.69, "meters"),
  6294. weight: math.unit(68, "kg"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/martin/front.svg",
  6298. extra: 596 / 581
  6299. }
  6300. }
  6301. },
  6302. [
  6303. {
  6304. name: "Micro",
  6305. height: math.unit(6.85, "cm"),
  6306. default: true
  6307. },
  6308. {
  6309. name: "Normal",
  6310. height: math.unit(1.69, "m")
  6311. }
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6316. {
  6317. front: {
  6318. height: math.unit(1.69, "meters"),
  6319. weight: math.unit(68, "kg"),
  6320. name: "Front",
  6321. image: {
  6322. source: "./media/characters/juno/front.svg"
  6323. }
  6324. }
  6325. },
  6326. [
  6327. {
  6328. name: "Micro",
  6329. height: math.unit(7, "cm")
  6330. },
  6331. {
  6332. name: "Normal",
  6333. height: math.unit(1.89, "m")
  6334. },
  6335. {
  6336. name: "Macro",
  6337. height: math.unit(353, "meters"),
  6338. default: true
  6339. }
  6340. ]
  6341. ))
  6342. characterMakers.push(() => makeCharacter(
  6343. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6344. {
  6345. front: {
  6346. height: math.unit(1.93, "meters"),
  6347. weight: math.unit(83, "kg"),
  6348. name: "Front",
  6349. image: {
  6350. source: "./media/characters/samantha/front.svg"
  6351. }
  6352. },
  6353. frontClothed: {
  6354. height: math.unit(1.93, "meters"),
  6355. weight: math.unit(83, "kg"),
  6356. name: "Front (Clothed)",
  6357. image: {
  6358. source: "./media/characters/samantha/front-clothed.svg"
  6359. }
  6360. },
  6361. back: {
  6362. height: math.unit(1.93, "meters"),
  6363. weight: math.unit(83, "kg"),
  6364. name: "Back",
  6365. image: {
  6366. source: "./media/characters/samantha/back.svg"
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(1.93, "m")
  6374. },
  6375. {
  6376. name: "Macro",
  6377. height: math.unit(74, "meters"),
  6378. default: true
  6379. },
  6380. {
  6381. name: "Macro+",
  6382. height: math.unit(223, "meters"),
  6383. },
  6384. {
  6385. name: "Megamacro",
  6386. height: math.unit(8381, "meters"),
  6387. },
  6388. {
  6389. name: "Megamacro+",
  6390. height: math.unit(12000, "kilometers")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(1.92, "meters"),
  6399. weight: math.unit(80, "kg"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/dr-clay/front.svg"
  6403. }
  6404. },
  6405. frontClothed: {
  6406. height: math.unit(1.92, "meters"),
  6407. weight: math.unit(80, "kg"),
  6408. name: "Front (Clothed)",
  6409. image: {
  6410. source: "./media/characters/dr-clay/front-clothed.svg"
  6411. }
  6412. }
  6413. },
  6414. [
  6415. {
  6416. name: "Normal",
  6417. height: math.unit(1.92, "m")
  6418. },
  6419. {
  6420. name: "Macro",
  6421. height: math.unit(214, "meters"),
  6422. default: true
  6423. },
  6424. {
  6425. name: "Macro+",
  6426. height: math.unit(12.237, "meters"),
  6427. },
  6428. {
  6429. name: "Megamacro",
  6430. height: math.unit(557, "megameters"),
  6431. },
  6432. {
  6433. name: "Unimaginable",
  6434. height: math.unit(120e9, "lightyears")
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6440. {
  6441. front: {
  6442. height: math.unit(2, "meters"),
  6443. weight: math.unit(80, "kg"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6447. }
  6448. }
  6449. },
  6450. [
  6451. {
  6452. name: "Teramacro",
  6453. height: math.unit(500000, "lightyears"),
  6454. default: true
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6460. {
  6461. front: {
  6462. height: math.unit(2, "meters"),
  6463. weight: math.unit(150, "kg"),
  6464. name: "Front",
  6465. image: {
  6466. source: "./media/characters/vemus/front.svg",
  6467. extra: 1074/936,
  6468. bottom: 23/1097
  6469. }
  6470. }
  6471. },
  6472. [
  6473. {
  6474. name: "Normal",
  6475. height: math.unit(3.75, "meters"),
  6476. default: true
  6477. },
  6478. {
  6479. name: "Big",
  6480. height: math.unit(8, "meters")
  6481. },
  6482. {
  6483. name: "Macro",
  6484. height: math.unit(100, "meters")
  6485. },
  6486. {
  6487. name: "Macro+",
  6488. height: math.unit(1500, "meters")
  6489. },
  6490. {
  6491. name: "Stellar",
  6492. height: math.unit(14e8, "meters")
  6493. },
  6494. ]
  6495. ))
  6496. characterMakers.push(() => makeCharacter(
  6497. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6498. {
  6499. front: {
  6500. height: math.unit(2, "meters"),
  6501. weight: math.unit(70, "kg"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/beherit/front.svg",
  6505. extra: 1408 / 1242
  6506. }
  6507. }
  6508. },
  6509. [
  6510. {
  6511. name: "Normal",
  6512. height: math.unit(6, "feet")
  6513. },
  6514. {
  6515. name: "Lorg",
  6516. height: math.unit(25, "feet"),
  6517. default: true
  6518. },
  6519. {
  6520. name: "Lorger",
  6521. height: math.unit(75, "feet")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(200, "meters")
  6526. },
  6527. ]
  6528. ))
  6529. characterMakers.push(() => makeCharacter(
  6530. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6531. {
  6532. front: {
  6533. height: math.unit(2, "meters"),
  6534. weight: math.unit(150, "kg"),
  6535. name: "Front",
  6536. image: {
  6537. source: "./media/characters/everett/front.svg",
  6538. extra: 2038 / 1737,
  6539. bottom: 0.03
  6540. }
  6541. },
  6542. paw: {
  6543. height: math.unit(2 / 3.6, "meters"),
  6544. name: "Paw",
  6545. image: {
  6546. source: "./media/characters/everett/paw.svg"
  6547. }
  6548. },
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(15, "feet"),
  6554. default: true
  6555. },
  6556. {
  6557. name: "Lorg",
  6558. height: math.unit(70, "feet"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Lorger",
  6563. height: math.unit(250, "feet")
  6564. },
  6565. {
  6566. name: "Macro",
  6567. height: math.unit(500, "meters")
  6568. },
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(2, "meters"),
  6576. weight: math.unit(86, "kg"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/rose/front.svg",
  6580. extra: 1785/1636,
  6581. bottom: 30/1815
  6582. }
  6583. },
  6584. frontSporty: {
  6585. height: math.unit(2, "meters"),
  6586. weight: math.unit(86, "kg"),
  6587. name: "Front (Sporty)",
  6588. image: {
  6589. source: "./media/characters/rose/front-sporty.svg",
  6590. extra: 350/335,
  6591. bottom: 10/360
  6592. }
  6593. },
  6594. frontAlt: {
  6595. height: math.unit(1.6, "meters"),
  6596. weight: math.unit(86, "kg"),
  6597. name: "Front (Alt)",
  6598. image: {
  6599. source: "./media/characters/rose/front-alt.svg",
  6600. extra: 299/283,
  6601. bottom: 3/302
  6602. }
  6603. },
  6604. plush: {
  6605. height: math.unit(2, "meters"),
  6606. weight: math.unit(86/3, "kg"),
  6607. name: "Plush",
  6608. image: {
  6609. source: "./media/characters/rose/plush.svg",
  6610. extra: 361/337,
  6611. bottom: 11/372
  6612. }
  6613. },
  6614. },
  6615. [
  6616. {
  6617. name: "True Micro",
  6618. height: math.unit(9, "cm")
  6619. },
  6620. {
  6621. name: "Micro",
  6622. height: math.unit(16, "cm")
  6623. },
  6624. {
  6625. name: "Normal",
  6626. height: math.unit(1.85, "meters"),
  6627. default: true
  6628. },
  6629. {
  6630. name: "Mini-Macro",
  6631. height: math.unit(5, "meters")
  6632. },
  6633. {
  6634. name: "Macro",
  6635. height: math.unit(15, "meters")
  6636. },
  6637. {
  6638. name: "True Macro",
  6639. height: math.unit(40, "meters")
  6640. },
  6641. {
  6642. name: "City Scale",
  6643. height: math.unit(1, "km")
  6644. },
  6645. ]
  6646. ))
  6647. characterMakers.push(() => makeCharacter(
  6648. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6649. {
  6650. front: {
  6651. height: math.unit(2, "meters"),
  6652. weight: math.unit(350, "lbs"),
  6653. name: "Front",
  6654. image: {
  6655. source: "./media/characters/regal/front.svg"
  6656. }
  6657. },
  6658. back: {
  6659. height: math.unit(2, "meters"),
  6660. weight: math.unit(350, "lbs"),
  6661. name: "Back",
  6662. image: {
  6663. source: "./media/characters/regal/back.svg"
  6664. }
  6665. },
  6666. },
  6667. [
  6668. {
  6669. name: "Macro",
  6670. height: math.unit(350, "feet"),
  6671. default: true
  6672. }
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(4 + 11 / 12, "feet"),
  6680. weight: math.unit(100, "lbs"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/opal/front.svg"
  6684. }
  6685. },
  6686. frontAlt: {
  6687. height: math.unit(4 + 11 / 12, "feet"),
  6688. weight: math.unit(100, "lbs"),
  6689. name: "Front (Alt)",
  6690. image: {
  6691. source: "./media/characters/opal/front-alt.svg"
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "Small",
  6698. height: math.unit(4 + 11 / 12, "feet")
  6699. },
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(20, "feet"),
  6703. default: true
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(120, "feet")
  6708. },
  6709. {
  6710. name: "Megamacro",
  6711. height: math.unit(80, "miles")
  6712. },
  6713. {
  6714. name: "True Size",
  6715. height: math.unit(100000, "lightyears")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(200, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/vector-wuff/front.svg"
  6728. }
  6729. }
  6730. },
  6731. [
  6732. {
  6733. name: "Normal",
  6734. height: math.unit(2.8, "meters")
  6735. },
  6736. {
  6737. name: "Macro",
  6738. height: math.unit(450, "meters"),
  6739. default: true
  6740. },
  6741. {
  6742. name: "Megamacro",
  6743. height: math.unit(15, "kilometers")
  6744. }
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(6, "feet"),
  6752. weight: math.unit(256, "lbs"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/dannik/front.svg"
  6756. }
  6757. }
  6758. },
  6759. [
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(69.57, "meters"),
  6763. default: true
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(6, "feet"),
  6772. weight: math.unit(120, "lbs"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/azura-saharah/front.svg"
  6776. }
  6777. },
  6778. back: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(120, "lbs"),
  6781. name: "Back",
  6782. image: {
  6783. source: "./media/characters/azura-saharah/back.svg"
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Macro",
  6790. height: math.unit(100, "feet"),
  6791. default: true
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6797. {
  6798. side: {
  6799. height: math.unit(5 + 4 / 12, "feet"),
  6800. weight: math.unit(163, "lbs"),
  6801. name: "Side",
  6802. image: {
  6803. source: "./media/characters/kennedy/side.svg"
  6804. }
  6805. }
  6806. },
  6807. [
  6808. {
  6809. name: "Standard Doggo",
  6810. height: math.unit(5 + 4 / 12, "feet")
  6811. },
  6812. {
  6813. name: "Big Doggo",
  6814. height: math.unit(25 + 3 / 12, "feet"),
  6815. default: true
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(6, "feet"),
  6824. weight: math.unit(90, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/odi-lunar/front.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Micro",
  6834. height: math.unit(3, "inches"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(5.5, "feet")
  6840. }
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6845. {
  6846. back: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(220, "lbs"),
  6849. name: "Back",
  6850. image: {
  6851. source: "./media/characters/mandake/back.svg"
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(7, "feet"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Macro",
  6863. height: math.unit(78, "feet")
  6864. },
  6865. {
  6866. name: "Macro+",
  6867. height: math.unit(300, "meters")
  6868. },
  6869. {
  6870. name: "Macro++",
  6871. height: math.unit(2400, "feet")
  6872. },
  6873. {
  6874. name: "Megamacro",
  6875. height: math.unit(5167, "meters")
  6876. },
  6877. {
  6878. name: "Gigamacro",
  6879. height: math.unit(41769, "miles")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(120, "lbs"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/yozey/front.svg"
  6892. }
  6893. },
  6894. frontAlt: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(120, "lbs"),
  6897. name: "Front (Alt)",
  6898. image: {
  6899. source: "./media/characters/yozey/front-alt.svg"
  6900. }
  6901. },
  6902. side: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(120, "lbs"),
  6905. name: "Side",
  6906. image: {
  6907. source: "./media/characters/yozey/side.svg"
  6908. }
  6909. },
  6910. },
  6911. [
  6912. {
  6913. name: "Micro",
  6914. height: math.unit(3, "inches"),
  6915. default: true
  6916. },
  6917. {
  6918. name: "Normal",
  6919. height: math.unit(6, "feet")
  6920. }
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(103, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/valeska-voss/front.svg"
  6932. }
  6933. }
  6934. },
  6935. [
  6936. {
  6937. name: "Mini-Sized Sub",
  6938. height: math.unit(3.1, "inches")
  6939. },
  6940. {
  6941. name: "Mid-Sized Sub",
  6942. height: math.unit(6.2, "inches")
  6943. },
  6944. {
  6945. name: "Full-Sized Sub",
  6946. height: math.unit(9.3, "inches")
  6947. },
  6948. {
  6949. name: "Normal",
  6950. height: math.unit(5 + 2 / 12, "foot"),
  6951. default: true
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(6, "feet"),
  6960. weight: math.unit(160, "lbs"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/gene-zeta/front.svg",
  6964. extra: 3006 / 2826,
  6965. bottom: 182 / 3188
  6966. }
  6967. }
  6968. },
  6969. [
  6970. {
  6971. name: "Micro",
  6972. height: math.unit(6, "inches")
  6973. },
  6974. {
  6975. name: "Normal",
  6976. height: math.unit(5 + 11 / 12, "foot"),
  6977. default: true
  6978. },
  6979. {
  6980. name: "Macro",
  6981. height: math.unit(140, "feet")
  6982. },
  6983. {
  6984. name: "Supercharged",
  6985. height: math.unit(2500, "feet")
  6986. },
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6991. {
  6992. front: {
  6993. height: math.unit(6, "feet"),
  6994. weight: math.unit(350, "lbs"),
  6995. name: "Front",
  6996. image: {
  6997. source: "./media/characters/razinox/front.svg",
  6998. extra: 1686 / 1548,
  6999. bottom: 28.2 / 1868
  7000. }
  7001. },
  7002. back: {
  7003. height: math.unit(6, "feet"),
  7004. weight: math.unit(350, "lbs"),
  7005. name: "Back",
  7006. image: {
  7007. source: "./media/characters/razinox/back.svg",
  7008. extra: 1660 / 1590,
  7009. bottom: 15 / 1665
  7010. }
  7011. },
  7012. },
  7013. [
  7014. {
  7015. name: "Normal",
  7016. height: math.unit(10 + 8 / 12, "foot")
  7017. },
  7018. {
  7019. name: "Minimacro",
  7020. height: math.unit(15, "foot")
  7021. },
  7022. {
  7023. name: "Macro",
  7024. height: math.unit(60, "foot"),
  7025. default: true
  7026. },
  7027. {
  7028. name: "Megamacro",
  7029. height: math.unit(5, "miles")
  7030. },
  7031. {
  7032. name: "Gigamacro",
  7033. height: math.unit(6000, "miles")
  7034. },
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7039. {
  7040. front: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(150, "lbs"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/cobalt/front.svg"
  7046. }
  7047. }
  7048. },
  7049. [
  7050. {
  7051. name: "Normal",
  7052. height: math.unit(8 + 1 / 12, "foot")
  7053. },
  7054. {
  7055. name: "Macro",
  7056. height: math.unit(111, "foot"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Supracosmic",
  7061. height: math.unit(1e42, "feet")
  7062. },
  7063. ]
  7064. ))
  7065. characterMakers.push(() => makeCharacter(
  7066. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7067. {
  7068. front: {
  7069. height: math.unit(6, "feet"),
  7070. weight: math.unit(140, "lbs"),
  7071. name: "Front",
  7072. image: {
  7073. source: "./media/characters/amanda/front.svg"
  7074. }
  7075. }
  7076. },
  7077. [
  7078. {
  7079. name: "Micro",
  7080. height: math.unit(5, "inches"),
  7081. default: true
  7082. },
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7087. {
  7088. front: {
  7089. height: math.unit(2.75, "meters"),
  7090. weight: math.unit(1200, "lb"),
  7091. name: "Front",
  7092. image: {
  7093. source: "./media/characters/teal/front.svg",
  7094. extra: 2463 / 2320,
  7095. bottom: 166 / 2629
  7096. }
  7097. },
  7098. back: {
  7099. height: math.unit(2.75, "meters"),
  7100. weight: math.unit(1200, "lb"),
  7101. name: "Back",
  7102. image: {
  7103. source: "./media/characters/teal/back.svg",
  7104. extra: 2580 / 2489,
  7105. bottom: 151 / 2731
  7106. }
  7107. },
  7108. sitting: {
  7109. height: math.unit(1.9, "meters"),
  7110. weight: math.unit(1200, "lb"),
  7111. name: "Sitting",
  7112. image: {
  7113. source: "./media/characters/teal/sitting.svg",
  7114. extra: 623 / 590,
  7115. bottom: 121 / 744
  7116. }
  7117. },
  7118. standing: {
  7119. height: math.unit(2.75, "meters"),
  7120. weight: math.unit(1200, "lb"),
  7121. name: "Standing",
  7122. image: {
  7123. source: "./media/characters/teal/standing.svg",
  7124. extra: 923 / 893,
  7125. bottom: 60 / 983
  7126. }
  7127. },
  7128. stretching: {
  7129. height: math.unit(3.65, "meters"),
  7130. weight: math.unit(1200, "lb"),
  7131. name: "Stretching",
  7132. image: {
  7133. source: "./media/characters/teal/stretching.svg",
  7134. extra: 1276 / 1244,
  7135. bottom: 0 / 1276
  7136. }
  7137. },
  7138. legged: {
  7139. height: math.unit(1.3, "meters"),
  7140. weight: math.unit(100, "lb"),
  7141. name: "Legged",
  7142. image: {
  7143. source: "./media/characters/teal/legged.svg",
  7144. extra: 462 / 437,
  7145. bottom: 24 / 486
  7146. }
  7147. },
  7148. naga: {
  7149. height: math.unit(5.4, "meters"),
  7150. weight: math.unit(4000, "lb"),
  7151. name: "Naga",
  7152. image: {
  7153. source: "./media/characters/teal/naga.svg",
  7154. extra: 1902 / 1858,
  7155. bottom: 0 / 1902
  7156. }
  7157. },
  7158. hand: {
  7159. height: math.unit(0.52, "meters"),
  7160. name: "Hand",
  7161. image: {
  7162. source: "./media/characters/teal/hand.svg"
  7163. }
  7164. },
  7165. maw: {
  7166. height: math.unit(0.43, "meters"),
  7167. name: "Maw",
  7168. image: {
  7169. source: "./media/characters/teal/maw.svg"
  7170. }
  7171. },
  7172. slit: {
  7173. height: math.unit(0.25, "meters"),
  7174. name: "Slit",
  7175. image: {
  7176. source: "./media/characters/teal/slit.svg"
  7177. }
  7178. },
  7179. },
  7180. [
  7181. {
  7182. name: "Normal",
  7183. height: math.unit(2.75, "meters"),
  7184. default: true
  7185. },
  7186. {
  7187. name: "Macro",
  7188. height: math.unit(300, "feet")
  7189. },
  7190. {
  7191. name: "Macro+",
  7192. height: math.unit(2000, "feet")
  7193. },
  7194. ]
  7195. ))
  7196. characterMakers.push(() => makeCharacter(
  7197. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7198. {
  7199. frontCat: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(180, "lbs"),
  7202. name: "Front (Cat)",
  7203. image: {
  7204. source: "./media/characters/ravin-amulet/front-cat.svg"
  7205. }
  7206. },
  7207. frontCatAlt: {
  7208. height: math.unit(6, "feet"),
  7209. weight: math.unit(180, "lbs"),
  7210. name: "Front (Alt, Cat)",
  7211. image: {
  7212. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7213. }
  7214. },
  7215. frontWerewolf: {
  7216. height: math.unit(6 * 1.2, "feet"),
  7217. weight: math.unit(225, "lbs"),
  7218. name: "Front (Werewolf)",
  7219. image: {
  7220. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7221. }
  7222. },
  7223. backWerewolf: {
  7224. height: math.unit(6 * 1.2, "feet"),
  7225. weight: math.unit(225, "lbs"),
  7226. name: "Back (Werewolf)",
  7227. image: {
  7228. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7229. }
  7230. },
  7231. },
  7232. [
  7233. {
  7234. name: "Nano",
  7235. height: math.unit(1, "micrometer")
  7236. },
  7237. {
  7238. name: "Micro",
  7239. height: math.unit(1, "inch")
  7240. },
  7241. {
  7242. name: "Normal",
  7243. height: math.unit(6, "feet"),
  7244. default: true
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(60, "feet")
  7249. }
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(6, "feet"),
  7257. weight: math.unit(165, "lbs"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/fluoresce/front.svg"
  7261. }
  7262. }
  7263. },
  7264. [
  7265. {
  7266. name: "Micro",
  7267. height: math.unit(6, "cm")
  7268. },
  7269. {
  7270. name: "Normal",
  7271. height: math.unit(5 + 7 / 12, "feet"),
  7272. default: true
  7273. },
  7274. {
  7275. name: "Macro",
  7276. height: math.unit(56, "feet")
  7277. },
  7278. {
  7279. name: "Megamacro",
  7280. height: math.unit(1.9, "miles")
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7286. {
  7287. front: {
  7288. height: math.unit(9 + 6 / 12, "feet"),
  7289. weight: math.unit(523, "lbs"),
  7290. name: "Side",
  7291. image: {
  7292. source: "./media/characters/aurora/side.svg"
  7293. }
  7294. }
  7295. },
  7296. [
  7297. {
  7298. name: "Normal",
  7299. height: math.unit(9 + 6 / 12, "feet")
  7300. },
  7301. {
  7302. name: "Macro",
  7303. height: math.unit(96, "feet"),
  7304. default: true
  7305. },
  7306. {
  7307. name: "Macro+",
  7308. height: math.unit(243, "feet")
  7309. },
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7314. {
  7315. front: {
  7316. height: math.unit(194, "cm"),
  7317. weight: math.unit(90, "kg"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/ranek/front.svg"
  7321. }
  7322. },
  7323. side: {
  7324. height: math.unit(194, "cm"),
  7325. weight: math.unit(90, "kg"),
  7326. name: "Side",
  7327. image: {
  7328. source: "./media/characters/ranek/side.svg"
  7329. }
  7330. },
  7331. back: {
  7332. height: math.unit(194, "cm"),
  7333. weight: math.unit(90, "kg"),
  7334. name: "Back",
  7335. image: {
  7336. source: "./media/characters/ranek/back.svg"
  7337. }
  7338. },
  7339. feral: {
  7340. height: math.unit(30, "cm"),
  7341. weight: math.unit(1.6, "lbs"),
  7342. name: "Feral",
  7343. image: {
  7344. source: "./media/characters/ranek/feral.svg"
  7345. }
  7346. },
  7347. },
  7348. [
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(194, "cm"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(100, "meters")
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(5 + 6 / 12, "feet"),
  7365. weight: math.unit(153, "lbs"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/andrew-cooper/front.svg"
  7369. }
  7370. },
  7371. },
  7372. [
  7373. {
  7374. name: "Nano",
  7375. height: math.unit(1, "mm")
  7376. },
  7377. {
  7378. name: "Micro",
  7379. height: math.unit(2, "inches")
  7380. },
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(5 + 6 / 12, "feet"),
  7384. default: true
  7385. }
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7390. {
  7391. front: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(180, "lbs"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/akane-sato/front.svg",
  7397. extra: 1219 / 1140
  7398. }
  7399. },
  7400. back: {
  7401. height: math.unit(6, "feet"),
  7402. weight: math.unit(180, "lbs"),
  7403. name: "Back",
  7404. image: {
  7405. source: "./media/characters/akane-sato/back.svg",
  7406. extra: 1219 / 1170
  7407. }
  7408. },
  7409. },
  7410. [
  7411. {
  7412. name: "Normal",
  7413. height: math.unit(2.5, "meters")
  7414. },
  7415. {
  7416. name: "Macro",
  7417. height: math.unit(250, "meters"),
  7418. default: true
  7419. },
  7420. {
  7421. name: "Megamacro",
  7422. height: math.unit(25, "km")
  7423. },
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7428. {
  7429. front: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(65, "kg"),
  7432. name: "Front",
  7433. image: {
  7434. source: "./media/characters/rook/front.svg",
  7435. extra: 960 / 950
  7436. }
  7437. }
  7438. },
  7439. [
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(8.8, "feet")
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(88, "feet"),
  7447. default: true
  7448. },
  7449. {
  7450. name: "Megamacro",
  7451. height: math.unit(8, "miles")
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7457. {
  7458. front: {
  7459. height: math.unit(12 + 2 / 12, "feet"),
  7460. weight: math.unit(808, "lbs"),
  7461. name: "Front",
  7462. image: {
  7463. source: "./media/characters/prodigy/front.svg"
  7464. }
  7465. }
  7466. },
  7467. [
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(12 + 2 / 12, "feet"),
  7471. default: true
  7472. },
  7473. {
  7474. name: "Macro",
  7475. height: math.unit(143, "feet")
  7476. },
  7477. {
  7478. name: "Macro+",
  7479. height: math.unit(400, "feet")
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7485. {
  7486. front: {
  7487. height: math.unit(6, "feet"),
  7488. weight: math.unit(225, "lbs"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/daniel/front.svg"
  7492. }
  7493. },
  7494. leaning: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(225, "lbs"),
  7497. name: "Leaning",
  7498. image: {
  7499. source: "./media/characters/daniel/leaning.svg"
  7500. }
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(1000, "feet"),
  7507. default: true
  7508. },
  7509. ]
  7510. ))
  7511. characterMakers.push(() => makeCharacter(
  7512. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7513. {
  7514. front: {
  7515. height: math.unit(6, "feet"),
  7516. weight: math.unit(88, "lbs"),
  7517. name: "Front",
  7518. image: {
  7519. source: "./media/characters/chiros/front.svg",
  7520. extra: 306 / 226
  7521. }
  7522. },
  7523. side: {
  7524. height: math.unit(6, "feet"),
  7525. weight: math.unit(88, "lbs"),
  7526. name: "Side",
  7527. image: {
  7528. source: "./media/characters/chiros/side.svg",
  7529. extra: 306 / 226
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(6, "cm"),
  7537. default: true
  7538. },
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7543. {
  7544. front: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(100, "lbs"),
  7547. name: "Front",
  7548. image: {
  7549. source: "./media/characters/selka/front.svg",
  7550. extra: 947 / 887
  7551. }
  7552. }
  7553. },
  7554. [
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(5, "cm"),
  7558. default: true
  7559. },
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(8 + 3 / 12, "feet"),
  7567. weight: math.unit(424, "lbs"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/verin/front.svg",
  7571. extra: 1845 / 1550
  7572. }
  7573. },
  7574. frontArmored: {
  7575. height: math.unit(8 + 3 / 12, "feet"),
  7576. weight: math.unit(424, "lbs"),
  7577. name: "Front (Armored)",
  7578. image: {
  7579. source: "./media/characters/verin/front-armor.svg",
  7580. extra: 1845 / 1550,
  7581. bottom: 0.01
  7582. }
  7583. },
  7584. back: {
  7585. height: math.unit(8 + 3 / 12, "feet"),
  7586. weight: math.unit(424, "lbs"),
  7587. name: "Back",
  7588. image: {
  7589. source: "./media/characters/verin/back.svg",
  7590. bottom: 0.1,
  7591. extra: 1
  7592. }
  7593. },
  7594. foot: {
  7595. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7596. name: "Foot",
  7597. image: {
  7598. source: "./media/characters/verin/foot.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(8 + 3 / 12, "feet")
  7606. },
  7607. {
  7608. name: "Minimacro",
  7609. height: math.unit(21, "feet"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(626, "feet")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(2.718, "meters"),
  7623. weight: math.unit(150, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/sovrim-terraquian/front.svg"
  7627. }
  7628. },
  7629. back: {
  7630. height: math.unit(2.718, "meters"),
  7631. weight: math.unit(150, "lbs"),
  7632. name: "Back",
  7633. image: {
  7634. source: "./media/characters/sovrim-terraquian/back.svg"
  7635. }
  7636. }
  7637. },
  7638. [
  7639. {
  7640. name: "Micro",
  7641. height: math.unit(2, "inches")
  7642. },
  7643. {
  7644. name: "Small",
  7645. height: math.unit(1, "meter")
  7646. },
  7647. {
  7648. name: "Normal",
  7649. height: math.unit(Math.E, "meters"),
  7650. default: true
  7651. },
  7652. {
  7653. name: "Macro",
  7654. height: math.unit(20, "meters")
  7655. },
  7656. {
  7657. name: "Macro+",
  7658. height: math.unit(400, "meters")
  7659. },
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(7, "feet"),
  7667. weight: math.unit(489, "lbs"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/reece-silvermane/front.svg",
  7671. bottom: 0.02,
  7672. extra: 1
  7673. }
  7674. },
  7675. },
  7676. [
  7677. {
  7678. name: "Macro",
  7679. height: math.unit(1.5, "miles"),
  7680. default: true
  7681. },
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(6, "feet"),
  7689. weight: math.unit(78, "kg"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/kane/front.svg",
  7693. extra: 978 / 899
  7694. }
  7695. },
  7696. },
  7697. [
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(2.1, "m"),
  7701. },
  7702. {
  7703. name: "Macro",
  7704. height: math.unit(1, "km"),
  7705. default: true
  7706. },
  7707. ]
  7708. ))
  7709. characterMakers.push(() => makeCharacter(
  7710. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7711. {
  7712. front: {
  7713. height: math.unit(6, "feet"),
  7714. weight: math.unit(200, "kg"),
  7715. name: "Front",
  7716. image: {
  7717. source: "./media/characters/tegon/front.svg",
  7718. bottom: 0.01,
  7719. extra: 1
  7720. }
  7721. },
  7722. },
  7723. [
  7724. {
  7725. name: "Micro",
  7726. height: math.unit(1, "inch")
  7727. },
  7728. {
  7729. name: "Normal",
  7730. height: math.unit(6 + 3 / 12, "feet"),
  7731. default: true
  7732. },
  7733. {
  7734. name: "Macro",
  7735. height: math.unit(300, "feet")
  7736. },
  7737. {
  7738. name: "Megamacro",
  7739. height: math.unit(69, "miles")
  7740. },
  7741. ]
  7742. ))
  7743. characterMakers.push(() => makeCharacter(
  7744. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7745. {
  7746. side: {
  7747. height: math.unit(6, "feet"),
  7748. weight: math.unit(2304, "lbs"),
  7749. name: "Side",
  7750. image: {
  7751. source: "./media/characters/arcturax/side.svg",
  7752. extra: 790 / 376,
  7753. bottom: 0.01
  7754. }
  7755. },
  7756. },
  7757. [
  7758. {
  7759. name: "Micro",
  7760. height: math.unit(2, "inch")
  7761. },
  7762. {
  7763. name: "Normal",
  7764. height: math.unit(6, "feet")
  7765. },
  7766. {
  7767. name: "Macro",
  7768. height: math.unit(39, "feet"),
  7769. default: true
  7770. },
  7771. {
  7772. name: "Megamacro",
  7773. height: math.unit(7, "miles")
  7774. },
  7775. ]
  7776. ))
  7777. characterMakers.push(() => makeCharacter(
  7778. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7779. {
  7780. front: {
  7781. height: math.unit(6, "feet"),
  7782. weight: math.unit(50, "lbs"),
  7783. name: "Front",
  7784. image: {
  7785. source: "./media/characters/sentri/front.svg",
  7786. extra: 1750 / 1570,
  7787. bottom: 0.025
  7788. }
  7789. },
  7790. frontAlt: {
  7791. height: math.unit(6, "feet"),
  7792. weight: math.unit(50, "lbs"),
  7793. name: "Front (Alt)",
  7794. image: {
  7795. source: "./media/characters/sentri/front-alt.svg",
  7796. extra: 1750 / 1570,
  7797. bottom: 0.025
  7798. }
  7799. },
  7800. },
  7801. [
  7802. {
  7803. name: "Normal",
  7804. height: math.unit(15, "feet"),
  7805. default: true
  7806. },
  7807. {
  7808. name: "Macro",
  7809. height: math.unit(2500, "feet")
  7810. }
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7815. {
  7816. front: {
  7817. height: math.unit(5 + 8 / 12, "feet"),
  7818. weight: math.unit(130, "lbs"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/corvin/front.svg",
  7822. extra: 1803 / 1629
  7823. }
  7824. },
  7825. frontShirt: {
  7826. height: math.unit(5 + 8 / 12, "feet"),
  7827. weight: math.unit(130, "lbs"),
  7828. name: "Front (Shirt)",
  7829. image: {
  7830. source: "./media/characters/corvin/front-shirt.svg",
  7831. extra: 1803 / 1629
  7832. }
  7833. },
  7834. frontPoncho: {
  7835. height: math.unit(5 + 8 / 12, "feet"),
  7836. weight: math.unit(130, "lbs"),
  7837. name: "Front (Poncho)",
  7838. image: {
  7839. source: "./media/characters/corvin/front-poncho.svg",
  7840. extra: 1803 / 1629
  7841. }
  7842. },
  7843. side: {
  7844. height: math.unit(5 + 8 / 12, "feet"),
  7845. weight: math.unit(130, "lbs"),
  7846. name: "Side",
  7847. image: {
  7848. source: "./media/characters/corvin/side.svg",
  7849. extra: 1012 / 945
  7850. }
  7851. },
  7852. back: {
  7853. height: math.unit(5 + 8 / 12, "feet"),
  7854. weight: math.unit(130, "lbs"),
  7855. name: "Back",
  7856. image: {
  7857. source: "./media/characters/corvin/back.svg",
  7858. extra: 1803 / 1629
  7859. }
  7860. },
  7861. },
  7862. [
  7863. {
  7864. name: "Micro",
  7865. height: math.unit(3, "inches")
  7866. },
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(5 + 8 / 12, "feet")
  7870. },
  7871. {
  7872. name: "Macro",
  7873. height: math.unit(300, "feet"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Megamacro",
  7878. height: math.unit(500, "miles")
  7879. }
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7884. {
  7885. front: {
  7886. height: math.unit(6, "feet"),
  7887. weight: math.unit(135, "lbs"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/q/front.svg",
  7891. extra: 854 / 752,
  7892. bottom: 0.005
  7893. }
  7894. },
  7895. back: {
  7896. height: math.unit(6, "feet"),
  7897. weight: math.unit(130, "lbs"),
  7898. name: "Back",
  7899. image: {
  7900. source: "./media/characters/q/back.svg",
  7901. extra: 854 / 752
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(90, "feet"),
  7909. default: true
  7910. },
  7911. {
  7912. name: "Extra Macro",
  7913. height: math.unit(300, "feet"),
  7914. },
  7915. {
  7916. name: "BIG WALF",
  7917. height: math.unit(750, "feet"),
  7918. },
  7919. ]
  7920. ))
  7921. characterMakers.push(() => makeCharacter(
  7922. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7923. {
  7924. front: {
  7925. height: math.unit(6, "feet"),
  7926. weight: math.unit(150, "lbs"),
  7927. name: "Front",
  7928. image: {
  7929. source: "./media/characters/carley/front.svg",
  7930. extra: 3927 / 3540,
  7931. bottom: 29.2 / 735
  7932. }
  7933. }
  7934. },
  7935. [
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(6 + 3 / 12, "feet")
  7939. },
  7940. {
  7941. name: "Macro",
  7942. height: math.unit(185, "feet"),
  7943. default: true
  7944. },
  7945. {
  7946. name: "Megamacro",
  7947. height: math.unit(8, "miles"),
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7953. {
  7954. front: {
  7955. height: math.unit(3, "feet"),
  7956. weight: math.unit(28, "lbs"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/citrine/front.svg"
  7960. }
  7961. }
  7962. },
  7963. [
  7964. {
  7965. name: "Normal",
  7966. height: math.unit(3, "feet"),
  7967. default: true
  7968. }
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7973. {
  7974. front: {
  7975. height: math.unit(14, "feet"),
  7976. weight: math.unit(1450, "kg"),
  7977. capacity: math.unit(15, "people"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/aura-starwind/front.svg",
  7981. extra: 1455 / 1335
  7982. }
  7983. },
  7984. side: {
  7985. height: math.unit(14, "feet"),
  7986. weight: math.unit(1450, "kg"),
  7987. capacity: math.unit(15, "people"),
  7988. name: "Side",
  7989. image: {
  7990. source: "./media/characters/aura-starwind/side.svg",
  7991. extra: 1654 / 1497
  7992. }
  7993. },
  7994. taur: {
  7995. height: math.unit(18, "feet"),
  7996. weight: math.unit(5500, "kg"),
  7997. capacity: math.unit(50, "people"),
  7998. name: "Taur",
  7999. image: {
  8000. source: "./media/characters/aura-starwind/taur.svg",
  8001. extra: 1760 / 1650
  8002. }
  8003. },
  8004. feral: {
  8005. height: math.unit(46, "feet"),
  8006. weight: math.unit(25000, "kg"),
  8007. capacity: math.unit(120, "people"),
  8008. name: "Feral",
  8009. image: {
  8010. source: "./media/characters/aura-starwind/feral.svg"
  8011. }
  8012. },
  8013. },
  8014. [
  8015. {
  8016. name: "Normal",
  8017. height: math.unit(14, "feet"),
  8018. default: true
  8019. },
  8020. {
  8021. name: "Macro",
  8022. height: math.unit(50, "meters")
  8023. },
  8024. {
  8025. name: "Megamacro",
  8026. height: math.unit(5000, "meters")
  8027. },
  8028. {
  8029. name: "Gigamacro",
  8030. height: math.unit(100000, "kilometers")
  8031. },
  8032. ]
  8033. ))
  8034. characterMakers.push(() => makeCharacter(
  8035. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8036. {
  8037. front: {
  8038. height: math.unit(2 + 7 / 12, "feet"),
  8039. weight: math.unit(32, "lbs"),
  8040. name: "Front",
  8041. image: {
  8042. source: "./media/characters/rivet/front.svg",
  8043. extra: 1716 / 1658,
  8044. bottom: 0.03
  8045. }
  8046. },
  8047. foot: {
  8048. height: math.unit(0.551, "feet"),
  8049. name: "Rivet's Foot",
  8050. image: {
  8051. source: "./media/characters/rivet/foot.svg"
  8052. },
  8053. rename: true
  8054. }
  8055. },
  8056. [
  8057. {
  8058. name: "Micro",
  8059. height: math.unit(1.5, "inches"),
  8060. },
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(2 + 7 / 12, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(85, "feet")
  8069. },
  8070. {
  8071. name: "Megamacro",
  8072. height: math.unit(2.2, "km")
  8073. }
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(5 + 9 / 12, "feet"),
  8081. weight: math.unit(150, "lbs"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/coffee/front.svg",
  8085. extra: 3666 / 3032,
  8086. bottom: 0.04
  8087. }
  8088. },
  8089. foot: {
  8090. height: math.unit(1.29, "feet"),
  8091. name: "Foot",
  8092. image: {
  8093. source: "./media/characters/coffee/foot.svg"
  8094. }
  8095. },
  8096. },
  8097. [
  8098. {
  8099. name: "Micro",
  8100. height: math.unit(2, "inches"),
  8101. },
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(5 + 9 / 12, "feet"),
  8105. default: true
  8106. },
  8107. {
  8108. name: "Macro",
  8109. height: math.unit(800, "feet")
  8110. },
  8111. {
  8112. name: "Megamacro",
  8113. height: math.unit(25, "miles")
  8114. }
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8119. {
  8120. front: {
  8121. height: math.unit(6, "feet"),
  8122. weight: math.unit(200, "lbs"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/chari-gal/front.svg",
  8126. extra: 1568 / 1385,
  8127. bottom: 0.047
  8128. }
  8129. },
  8130. gigantamax: {
  8131. height: math.unit(6 * 16, "feet"),
  8132. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8133. name: "Gigantamax",
  8134. image: {
  8135. source: "./media/characters/chari-gal/gigantamax.svg",
  8136. extra: 1124 / 888,
  8137. bottom: 0.03
  8138. }
  8139. },
  8140. },
  8141. [
  8142. {
  8143. name: "Normal",
  8144. height: math.unit(5 + 7 / 12, "feet")
  8145. },
  8146. {
  8147. name: "Macro",
  8148. height: math.unit(200, "feet"),
  8149. default: true
  8150. }
  8151. ]
  8152. ))
  8153. characterMakers.push(() => makeCharacter(
  8154. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8155. {
  8156. front: {
  8157. height: math.unit(6, "feet"),
  8158. weight: math.unit(150, "lbs"),
  8159. name: "Front",
  8160. image: {
  8161. source: "./media/characters/nova/front.svg",
  8162. extra: 5000 / 4722,
  8163. bottom: 0.02
  8164. }
  8165. }
  8166. },
  8167. [
  8168. {
  8169. name: "Micro-",
  8170. height: math.unit(0.8, "inches")
  8171. },
  8172. {
  8173. name: "Micro",
  8174. height: math.unit(2, "inches"),
  8175. default: true
  8176. },
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8181. {
  8182. front: {
  8183. height: math.unit(3 + 1 / 12, "feet"),
  8184. weight: math.unit(21.7, "lbs"),
  8185. name: "Front",
  8186. image: {
  8187. source: "./media/characters/argent/front.svg",
  8188. extra: 1471 / 1331,
  8189. bottom: 100.8 / 1575.5
  8190. }
  8191. }
  8192. },
  8193. [
  8194. {
  8195. name: "Micro",
  8196. height: math.unit(2, "inches")
  8197. },
  8198. {
  8199. name: "Normal",
  8200. height: math.unit(3 + 1 / 12, "feet"),
  8201. default: true
  8202. },
  8203. {
  8204. name: "Macro",
  8205. height: math.unit(120, "feet")
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8211. {
  8212. lamp: {
  8213. height: math.unit(7 * 1559 / 989, "feet"),
  8214. name: "Magic Lamp",
  8215. image: {
  8216. source: "./media/characters/mira-al-cul/lamp.svg",
  8217. extra: 1617 / 1559
  8218. }
  8219. },
  8220. front: {
  8221. height: math.unit(7, "feet"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/mira-al-cul/front.svg",
  8225. extra: 1044 / 990
  8226. }
  8227. },
  8228. },
  8229. [
  8230. {
  8231. name: "Heavily Restricted",
  8232. height: math.unit(7 * 1559 / 989, "feet")
  8233. },
  8234. {
  8235. name: "Freshly Freed",
  8236. height: math.unit(50 * 1559 / 989, "feet")
  8237. },
  8238. {
  8239. name: "World Encompassing",
  8240. height: math.unit(10000 * 1559 / 989, "miles")
  8241. },
  8242. {
  8243. name: "Galactic",
  8244. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8245. },
  8246. {
  8247. name: "Palmed Universe",
  8248. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8249. default: true
  8250. },
  8251. {
  8252. name: "Multiversal Matriarch",
  8253. height: math.unit(8.87e10, "yottameters")
  8254. },
  8255. {
  8256. name: "Void Mother",
  8257. height: math.unit(3.14e110, "yottaparsecs")
  8258. },
  8259. {
  8260. name: "Toying with Transcendence",
  8261. height: math.unit(1e307, "meters")
  8262. },
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8267. {
  8268. front: {
  8269. height: math.unit(17 + 1 / 12, "feet"),
  8270. weight: math.unit(476.2 * 5, "lbs"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/kuro-shi-uchū/front.svg",
  8274. extra: 2329 / 1835,
  8275. bottom: 0.02
  8276. }
  8277. },
  8278. },
  8279. [
  8280. {
  8281. name: "Micro",
  8282. height: math.unit(2, "inches")
  8283. },
  8284. {
  8285. name: "Normal",
  8286. height: math.unit(12, "meters")
  8287. },
  8288. {
  8289. name: "Planetary",
  8290. height: math.unit(0.00929, "AU"),
  8291. default: true
  8292. },
  8293. {
  8294. name: "Universal",
  8295. height: math.unit(20, "gigaparsecs")
  8296. },
  8297. ]
  8298. ))
  8299. characterMakers.push(() => makeCharacter(
  8300. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8301. {
  8302. front: {
  8303. height: math.unit(5 + 2 / 12, "feet"),
  8304. weight: math.unit(120, "lbs"),
  8305. name: "Front",
  8306. image: {
  8307. source: "./media/characters/katherine/front.svg",
  8308. extra: 2075 / 1969
  8309. }
  8310. },
  8311. dress: {
  8312. height: math.unit(5 + 2 / 12, "feet"),
  8313. weight: math.unit(120, "lbs"),
  8314. name: "Dress",
  8315. image: {
  8316. source: "./media/characters/katherine/dress.svg",
  8317. extra: 2258 / 2064
  8318. }
  8319. },
  8320. },
  8321. [
  8322. {
  8323. name: "Micro",
  8324. height: math.unit(1, "inches"),
  8325. default: true
  8326. },
  8327. {
  8328. name: "Normal",
  8329. height: math.unit(5 + 2 / 12, "feet")
  8330. },
  8331. {
  8332. name: "Macro",
  8333. height: math.unit(100, "meters")
  8334. },
  8335. {
  8336. name: "Megamacro",
  8337. height: math.unit(80, "miles")
  8338. },
  8339. ]
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8343. {
  8344. front: {
  8345. height: math.unit(7 + 8 / 12, "feet"),
  8346. weight: math.unit(250, "lbs"),
  8347. name: "Front",
  8348. image: {
  8349. source: "./media/characters/yevis/front.svg",
  8350. extra: 1938 / 1755
  8351. }
  8352. }
  8353. },
  8354. [
  8355. {
  8356. name: "Mortal",
  8357. height: math.unit(7 + 8 / 12, "feet")
  8358. },
  8359. {
  8360. name: "Battle",
  8361. height: math.unit(25 + 11 / 12, "feet")
  8362. },
  8363. {
  8364. name: "Wrath",
  8365. height: math.unit(1654 + 11 / 12, "feet")
  8366. },
  8367. {
  8368. name: "Planet Destroyer",
  8369. height: math.unit(12000, "miles")
  8370. },
  8371. {
  8372. name: "Galaxy Conqueror",
  8373. height: math.unit(1.45, "zettameters"),
  8374. default: true
  8375. },
  8376. {
  8377. name: "Universal War",
  8378. height: math.unit(184, "gigaparsecs")
  8379. },
  8380. {
  8381. name: "Eternity War",
  8382. height: math.unit(1.98e55, "yottaparsecs")
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8388. {
  8389. front: {
  8390. height: math.unit(5 + 8 / 12, "feet"),
  8391. weight: math.unit(63, "kg"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/xavier/front.svg",
  8395. extra: 944 / 883
  8396. }
  8397. },
  8398. frontStretch: {
  8399. height: math.unit(5 + 8 / 12, "feet"),
  8400. weight: math.unit(63, "kg"),
  8401. name: "Stretching",
  8402. image: {
  8403. source: "./media/characters/xavier/front-stretch.svg",
  8404. extra: 962 / 820
  8405. }
  8406. },
  8407. },
  8408. [
  8409. {
  8410. name: "Normal",
  8411. height: math.unit(5 + 8 / 12, "feet")
  8412. },
  8413. {
  8414. name: "Macro",
  8415. height: math.unit(100, "meters"),
  8416. default: true
  8417. },
  8418. {
  8419. name: "McLargeHuge",
  8420. height: math.unit(10, "miles")
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(5 + 5 / 12, "feet"),
  8429. weight: math.unit(150, "lb"),
  8430. name: "Front",
  8431. image: {
  8432. source: "./media/characters/joshii/front.svg",
  8433. extra: 765 / 653,
  8434. bottom: 51 / 816
  8435. }
  8436. },
  8437. foot: {
  8438. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8439. name: "Foot",
  8440. image: {
  8441. source: "./media/characters/joshii/foot.svg"
  8442. }
  8443. },
  8444. },
  8445. [
  8446. {
  8447. name: "Micro",
  8448. height: math.unit(2, "inches"),
  8449. default: true
  8450. },
  8451. {
  8452. name: "Normal",
  8453. height: math.unit(5 + 5 / 12, "feet")
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(785, "feet")
  8458. },
  8459. {
  8460. name: "Megamacro",
  8461. height: math.unit(24.5, "miles")
  8462. },
  8463. ]
  8464. ))
  8465. characterMakers.push(() => makeCharacter(
  8466. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8467. {
  8468. front: {
  8469. height: math.unit(6, "feet"),
  8470. weight: math.unit(150, "lb"),
  8471. name: "Front",
  8472. image: {
  8473. source: "./media/characters/goddess-elizabeth/front.svg",
  8474. extra: 1800 / 1525,
  8475. bottom: 0.005
  8476. }
  8477. },
  8478. foot: {
  8479. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8480. name: "Foot",
  8481. image: {
  8482. source: "./media/characters/goddess-elizabeth/foot.svg"
  8483. }
  8484. },
  8485. mouth: {
  8486. height: math.unit(6, "feet"),
  8487. name: "Mouth",
  8488. image: {
  8489. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8490. }
  8491. },
  8492. },
  8493. [
  8494. {
  8495. name: "Micro",
  8496. height: math.unit(12, "feet")
  8497. },
  8498. {
  8499. name: "Normal",
  8500. height: math.unit(80, "miles"),
  8501. default: true
  8502. },
  8503. {
  8504. name: "Macro",
  8505. height: math.unit(15000, "parsecs")
  8506. },
  8507. ]
  8508. ))
  8509. characterMakers.push(() => makeCharacter(
  8510. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8511. {
  8512. front: {
  8513. height: math.unit(5 + 9 / 12, "feet"),
  8514. weight: math.unit(144, "lb"),
  8515. name: "Front",
  8516. image: {
  8517. source: "./media/characters/kara/front.svg"
  8518. }
  8519. },
  8520. feet: {
  8521. height: math.unit(6 / 6.765, "feet"),
  8522. name: "Kara's Feet",
  8523. rename: true,
  8524. image: {
  8525. source: "./media/characters/kara/feet.svg"
  8526. }
  8527. },
  8528. },
  8529. [
  8530. {
  8531. name: "Normal",
  8532. height: math.unit(5 + 9 / 12, "feet")
  8533. },
  8534. {
  8535. name: "Macro",
  8536. height: math.unit(174, "feet"),
  8537. default: true
  8538. },
  8539. ]
  8540. ))
  8541. characterMakers.push(() => makeCharacter(
  8542. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8543. {
  8544. front: {
  8545. height: math.unit(18, "feet"),
  8546. weight: math.unit(4050, "lb"),
  8547. name: "Front",
  8548. image: {
  8549. source: "./media/characters/tyrone/front.svg",
  8550. extra: 2405 / 2270,
  8551. bottom: 182 / 2587
  8552. }
  8553. },
  8554. },
  8555. [
  8556. {
  8557. name: "Normal",
  8558. height: math.unit(18, "feet"),
  8559. default: true
  8560. },
  8561. {
  8562. name: "Macro",
  8563. height: math.unit(300, "feet")
  8564. },
  8565. {
  8566. name: "Megamacro",
  8567. height: math.unit(15, "km")
  8568. },
  8569. {
  8570. name: "Gigamacro",
  8571. height: math.unit(500, "km")
  8572. },
  8573. {
  8574. name: "Teramacro",
  8575. height: math.unit(0.5, "gigameters")
  8576. },
  8577. {
  8578. name: "Omnimacro",
  8579. height: math.unit(1e252, "yottauniverse")
  8580. },
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8585. {
  8586. front: {
  8587. height: math.unit(7 + 8 / 12, "feet"),
  8588. weight: math.unit(120, "lb"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/danny/front.svg",
  8592. extra: 1490 / 1350
  8593. }
  8594. },
  8595. back: {
  8596. height: math.unit(7 + 8 / 12, "feet"),
  8597. weight: math.unit(120, "lb"),
  8598. name: "Back",
  8599. image: {
  8600. source: "./media/characters/danny/back.svg",
  8601. extra: 1490 / 1350
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Normal",
  8608. height: math.unit(7 + 8 / 12, "feet"),
  8609. default: true
  8610. },
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8615. {
  8616. front: {
  8617. height: math.unit(3.5, "inches"),
  8618. weight: math.unit(19, "grams"),
  8619. name: "Front",
  8620. image: {
  8621. source: "./media/characters/mallow/front.svg",
  8622. extra: 471 / 431
  8623. }
  8624. },
  8625. back: {
  8626. height: math.unit(3.5, "inches"),
  8627. weight: math.unit(19, "grams"),
  8628. name: "Back",
  8629. image: {
  8630. source: "./media/characters/mallow/back.svg",
  8631. extra: 471 / 431
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Normal",
  8638. height: math.unit(3.5, "inches"),
  8639. default: true
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(9, "feet"),
  8648. weight: math.unit(230, "kg"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/starry-aqua/front.svg"
  8652. }
  8653. },
  8654. back: {
  8655. height: math.unit(9, "feet"),
  8656. weight: math.unit(230, "kg"),
  8657. name: "Back",
  8658. image: {
  8659. source: "./media/characters/starry-aqua/back.svg"
  8660. }
  8661. },
  8662. hand: {
  8663. height: math.unit(9 * 0.1168, "feet"),
  8664. name: "Hand",
  8665. image: {
  8666. source: "./media/characters/starry-aqua/hand.svg"
  8667. }
  8668. },
  8669. foot: {
  8670. height: math.unit(9 * 0.18, "feet"),
  8671. name: "Foot",
  8672. image: {
  8673. source: "./media/characters/starry-aqua/foot.svg"
  8674. }
  8675. }
  8676. },
  8677. [
  8678. {
  8679. name: "Micro",
  8680. height: math.unit(3, "inches")
  8681. },
  8682. {
  8683. name: "Normal",
  8684. height: math.unit(9, "feet")
  8685. },
  8686. {
  8687. name: "Macro",
  8688. height: math.unit(300, "feet"),
  8689. default: true
  8690. },
  8691. {
  8692. name: "Megamacro",
  8693. height: math.unit(3200, "feet")
  8694. }
  8695. ]
  8696. ))
  8697. characterMakers.push(() => makeCharacter(
  8698. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8699. {
  8700. front: {
  8701. height: math.unit(6, "feet"),
  8702. weight: math.unit(230, "lb"),
  8703. name: "Front",
  8704. image: {
  8705. source: "./media/characters/luka/front.svg",
  8706. extra: 1,
  8707. bottom: 0.025
  8708. }
  8709. },
  8710. },
  8711. [
  8712. {
  8713. name: "Normal",
  8714. height: math.unit(12 + 8 / 12, "feet"),
  8715. default: true
  8716. },
  8717. {
  8718. name: "Minimacro",
  8719. height: math.unit(20, "feet")
  8720. },
  8721. {
  8722. name: "Macro",
  8723. height: math.unit(250, "feet")
  8724. },
  8725. {
  8726. name: "Megamacro",
  8727. height: math.unit(5, "miles")
  8728. },
  8729. {
  8730. name: "Gigamacro",
  8731. height: math.unit(8000, "miles")
  8732. },
  8733. ]
  8734. ))
  8735. characterMakers.push(() => makeCharacter(
  8736. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8737. {
  8738. front: {
  8739. height: math.unit(6, "feet"),
  8740. weight: math.unit(150, "lb"),
  8741. name: "Front",
  8742. image: {
  8743. source: "./media/characters/natalie-nightring/front.svg",
  8744. extra: 1,
  8745. bottom: 0.06
  8746. }
  8747. },
  8748. },
  8749. [
  8750. {
  8751. name: "Uh Oh",
  8752. height: math.unit(0.1, "mm")
  8753. },
  8754. {
  8755. name: "Small",
  8756. height: math.unit(3, "inches")
  8757. },
  8758. {
  8759. name: "Human Scale",
  8760. height: math.unit(6, "feet")
  8761. },
  8762. {
  8763. name: "Librarian",
  8764. height: math.unit(50, "feet"),
  8765. default: true
  8766. },
  8767. {
  8768. name: "Immense",
  8769. height: math.unit(200, "miles")
  8770. },
  8771. ]
  8772. ))
  8773. characterMakers.push(() => makeCharacter(
  8774. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8775. {
  8776. front: {
  8777. height: math.unit(6, "feet"),
  8778. weight: math.unit(180, "lbs"),
  8779. name: "Front",
  8780. image: {
  8781. source: "./media/characters/danni-rosie/front.svg",
  8782. extra: 1260 / 1128,
  8783. bottom: 0.022
  8784. }
  8785. },
  8786. },
  8787. [
  8788. {
  8789. name: "Micro",
  8790. height: math.unit(2, "inches"),
  8791. default: true
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(5 + 9 / 12, "feet"),
  8800. weight: math.unit(220, "lb"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/samantha-kruse/front.svg",
  8804. extra: (985 / 935),
  8805. bottom: 0.03
  8806. }
  8807. },
  8808. frontUndressed: {
  8809. height: math.unit(5 + 9 / 12, "feet"),
  8810. weight: math.unit(220, "lb"),
  8811. name: "Front (Undressed)",
  8812. image: {
  8813. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8814. extra: (973 / 923),
  8815. bottom: 0.025
  8816. }
  8817. },
  8818. fat: {
  8819. height: math.unit(5 + 9 / 12, "feet"),
  8820. weight: math.unit(900, "lb"),
  8821. name: "Front (Fat)",
  8822. image: {
  8823. source: "./media/characters/samantha-kruse/fat.svg",
  8824. extra: 2688 / 2561
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(5 + 9 / 12, "feet"),
  8832. default: true
  8833. }
  8834. ]
  8835. ))
  8836. characterMakers.push(() => makeCharacter(
  8837. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8838. {
  8839. back: {
  8840. height: math.unit(5 + 4 / 12, "feet"),
  8841. weight: math.unit(4963, "lb"),
  8842. name: "Back",
  8843. image: {
  8844. source: "./media/characters/amelia-rosie/back.svg",
  8845. extra: 1113 / 963,
  8846. bottom: 0.01
  8847. }
  8848. },
  8849. },
  8850. [
  8851. {
  8852. name: "Level 0",
  8853. height: math.unit(5 + 4 / 12, "feet")
  8854. },
  8855. {
  8856. name: "Level 1",
  8857. height: math.unit(164597, "feet"),
  8858. default: true
  8859. },
  8860. {
  8861. name: "Level 2",
  8862. height: math.unit(956243, "miles")
  8863. },
  8864. {
  8865. name: "Level 3",
  8866. height: math.unit(29421709423, "miles")
  8867. },
  8868. {
  8869. name: "Level 4",
  8870. height: math.unit(154, "lightyears")
  8871. },
  8872. {
  8873. name: "Level 5",
  8874. height: math.unit(4738272, "lightyears")
  8875. },
  8876. {
  8877. name: "Level 6",
  8878. height: math.unit(145787152896, "lightyears")
  8879. },
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8884. {
  8885. front: {
  8886. height: math.unit(5 + 11 / 12, "feet"),
  8887. weight: math.unit(65, "kg"),
  8888. name: "Front",
  8889. image: {
  8890. source: "./media/characters/rook-kitara/front.svg",
  8891. extra: 1347 / 1274,
  8892. bottom: 0.005
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Totally Unfair",
  8899. height: math.unit(1.8, "mm")
  8900. },
  8901. {
  8902. name: "Lap Rookie",
  8903. height: math.unit(1.4, "feet")
  8904. },
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(5 + 11 / 12, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "How Did This Happen",
  8912. height: math.unit(80, "miles")
  8913. }
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(7, "feet"),
  8921. weight: math.unit(300, "lb"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/pisces/front.svg",
  8925. extra: 2255 / 2115,
  8926. bottom: 0.03
  8927. }
  8928. },
  8929. back: {
  8930. height: math.unit(7, "feet"),
  8931. weight: math.unit(300, "lb"),
  8932. name: "Back",
  8933. image: {
  8934. source: "./media/characters/pisces/back.svg",
  8935. extra: 2146 / 2055,
  8936. bottom: 0.04
  8937. }
  8938. },
  8939. },
  8940. [
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(7, "feet"),
  8944. default: true
  8945. },
  8946. {
  8947. name: "Swimming Pool",
  8948. height: math.unit(12.2, "meters")
  8949. },
  8950. {
  8951. name: "Olympic Swimming Pool",
  8952. height: math.unit(56.3, "meters")
  8953. },
  8954. {
  8955. name: "Lake Superior",
  8956. height: math.unit(93900, "meters")
  8957. },
  8958. {
  8959. name: "Mediterranean Sea",
  8960. height: math.unit(644457, "meters")
  8961. },
  8962. {
  8963. name: "World's Oceans",
  8964. height: math.unit(4567491, "meters")
  8965. },
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(2.3, "meters"),
  8973. weight: math.unit(120, "kg"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/zelas/front.svg"
  8977. }
  8978. },
  8979. side: {
  8980. height: math.unit(2.3, "meters"),
  8981. weight: math.unit(120, "kg"),
  8982. name: "Side",
  8983. image: {
  8984. source: "./media/characters/zelas/side.svg"
  8985. }
  8986. },
  8987. back: {
  8988. height: math.unit(2.3, "meters"),
  8989. weight: math.unit(120, "kg"),
  8990. name: "Back",
  8991. image: {
  8992. source: "./media/characters/zelas/back.svg"
  8993. }
  8994. },
  8995. foot: {
  8996. height: math.unit(1.116, "feet"),
  8997. name: "Foot",
  8998. image: {
  8999. source: "./media/characters/zelas/foot.svg"
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Normal",
  9006. height: math.unit(2.3, "meters")
  9007. },
  9008. {
  9009. name: "Macro",
  9010. height: math.unit(30, "meters"),
  9011. default: true
  9012. },
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9017. {
  9018. front: {
  9019. height: math.unit(1, "inch"),
  9020. weight: math.unit(0.21, "grams"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/talbot/front.svg",
  9024. extra: 594 / 544
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Micro",
  9031. height: math.unit(1, "inch"),
  9032. default: true
  9033. },
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9038. {
  9039. front: {
  9040. height: math.unit(3 + 3 / 12, "feet"),
  9041. weight: math.unit(51.8, "lb"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/fliss/front.svg",
  9045. extra: 840 / 640
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Teeny Tiny",
  9052. height: math.unit(1, "mm")
  9053. },
  9054. {
  9055. name: "Small",
  9056. height: math.unit(1, "inch"),
  9057. default: true
  9058. },
  9059. {
  9060. name: "Standard Sylveon",
  9061. height: math.unit(3 + 3 / 12, "feet")
  9062. },
  9063. {
  9064. name: "Large Nuisance",
  9065. height: math.unit(33, "feet")
  9066. },
  9067. {
  9068. name: "City Filler",
  9069. height: math.unit(3000, "feet")
  9070. },
  9071. {
  9072. name: "New Horizon",
  9073. height: math.unit(6000, "miles")
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9079. {
  9080. front: {
  9081. height: math.unit(5, "cm"),
  9082. weight: math.unit(1.94, "g"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/fleta/front.svg",
  9086. extra: 835 / 803
  9087. }
  9088. },
  9089. back: {
  9090. height: math.unit(5, "cm"),
  9091. weight: math.unit(1.94, "g"),
  9092. name: "Back",
  9093. image: {
  9094. source: "./media/characters/fleta/back.svg",
  9095. extra: 835 / 803
  9096. }
  9097. },
  9098. },
  9099. [
  9100. {
  9101. name: "Micro",
  9102. height: math.unit(5, "cm"),
  9103. default: true
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9109. {
  9110. front: {
  9111. height: math.unit(6, "feet"),
  9112. weight: math.unit(225, "lb"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/dominic/front.svg",
  9116. extra: 1770 / 1620,
  9117. bottom: 0.025
  9118. }
  9119. },
  9120. back: {
  9121. height: math.unit(6, "feet"),
  9122. weight: math.unit(225, "lb"),
  9123. name: "Back",
  9124. image: {
  9125. source: "./media/characters/dominic/back.svg",
  9126. extra: 1745 / 1620,
  9127. bottom: 0.065
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Nano",
  9134. height: math.unit(0.1, "mm")
  9135. },
  9136. {
  9137. name: "Micro-",
  9138. height: math.unit(1, "mm")
  9139. },
  9140. {
  9141. name: "Micro",
  9142. height: math.unit(4, "inches")
  9143. },
  9144. {
  9145. name: "Normal",
  9146. height: math.unit(6 + 4 / 12, "feet"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "Macro",
  9151. height: math.unit(115, "feet")
  9152. },
  9153. {
  9154. name: "Macro+",
  9155. height: math.unit(955, "feet")
  9156. },
  9157. {
  9158. name: "Megamacro",
  9159. height: math.unit(8990, "feet")
  9160. },
  9161. {
  9162. name: "Gigmacro",
  9163. height: math.unit(9310, "miles")
  9164. },
  9165. {
  9166. name: "Teramacro",
  9167. height: math.unit(1567005010, "miles")
  9168. },
  9169. {
  9170. name: "Examacro",
  9171. height: math.unit(1425, "parsecs")
  9172. },
  9173. ]
  9174. ))
  9175. characterMakers.push(() => makeCharacter(
  9176. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9177. {
  9178. front: {
  9179. height: math.unit(400, "feet"),
  9180. weight: math.unit(44444444, "lb"),
  9181. name: "Front",
  9182. image: {
  9183. source: "./media/characters/major-colonel/front.svg"
  9184. }
  9185. },
  9186. back: {
  9187. height: math.unit(400, "feet"),
  9188. weight: math.unit(44444444, "lb"),
  9189. name: "Back",
  9190. image: {
  9191. source: "./media/characters/major-colonel/back.svg"
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Macro",
  9198. height: math.unit(400, "feet"),
  9199. default: true
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9205. {
  9206. catFront: {
  9207. height: math.unit(6, "feet"),
  9208. weight: math.unit(120, "lb"),
  9209. name: "Front (Cat Side)",
  9210. image: {
  9211. source: "./media/characters/axel-lycan/cat-front.svg",
  9212. extra: 430 / 402,
  9213. bottom: 43 / 472.35
  9214. }
  9215. },
  9216. catBack: {
  9217. height: math.unit(6, "feet"),
  9218. weight: math.unit(120, "lb"),
  9219. name: "Back (Cat Side)",
  9220. image: {
  9221. source: "./media/characters/axel-lycan/cat-back.svg",
  9222. extra: 447 / 419,
  9223. bottom: 23.3 / 469
  9224. }
  9225. },
  9226. wolfFront: {
  9227. height: math.unit(6, "feet"),
  9228. weight: math.unit(120, "lb"),
  9229. name: "Front (Wolf Side)",
  9230. image: {
  9231. source: "./media/characters/axel-lycan/wolf-front.svg",
  9232. extra: 485 / 456,
  9233. bottom: 19 / 504
  9234. }
  9235. },
  9236. wolfBack: {
  9237. height: math.unit(6, "feet"),
  9238. weight: math.unit(120, "lb"),
  9239. name: "Back (Wolf Side)",
  9240. image: {
  9241. source: "./media/characters/axel-lycan/wolf-back.svg",
  9242. extra: 475 / 438,
  9243. bottom: 39.2 / 514
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Macro",
  9250. height: math.unit(1, "km"),
  9251. default: true
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(5 + 9 / 12, "feet"),
  9260. weight: math.unit(175, "lb"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/vanrel-hyena/front.svg",
  9264. extra: 1086 / 1010,
  9265. bottom: 0.04
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Normal",
  9272. height: math.unit(5 + 9 / 12, "feet"),
  9273. default: true
  9274. },
  9275. ]
  9276. ))
  9277. characterMakers.push(() => makeCharacter(
  9278. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9279. {
  9280. front: {
  9281. height: math.unit(6, "feet"),
  9282. weight: math.unit(103, "lb"),
  9283. name: "Front",
  9284. image: {
  9285. source: "./media/characters/abbott-absol/front.svg",
  9286. extra: 2010 / 1842
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Megamicro",
  9293. height: math.unit(0.1, "mm")
  9294. },
  9295. {
  9296. name: "Micro",
  9297. height: math.unit(1, "inch")
  9298. },
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(6, "feet"),
  9302. default: true
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(6, "feet"),
  9311. weight: math.unit(264, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/hector/front.svg",
  9315. extra: 2280 / 2130,
  9316. bottom: 0.07
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(12.25, "foot"),
  9324. default: true
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(160, "feet")
  9329. },
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9334. {
  9335. front: {
  9336. height: math.unit(6, "feet"),
  9337. weight: math.unit(150, "lb"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/sal/front.svg",
  9341. extra: 1846 / 1699,
  9342. bottom: 0.04
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Megamacro",
  9349. height: math.unit(10, "miles"),
  9350. default: true
  9351. },
  9352. ]
  9353. ))
  9354. characterMakers.push(() => makeCharacter(
  9355. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9356. {
  9357. front: {
  9358. height: math.unit(3, "meters"),
  9359. weight: math.unit(450, "kg"),
  9360. name: "front",
  9361. image: {
  9362. source: "./media/characters/ranger/front.svg",
  9363. extra: 2401 / 2243,
  9364. bottom: 0.05
  9365. }
  9366. },
  9367. },
  9368. [
  9369. {
  9370. name: "Normal",
  9371. height: math.unit(3, "meters"),
  9372. default: true
  9373. },
  9374. ]
  9375. ))
  9376. characterMakers.push(() => makeCharacter(
  9377. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9378. {
  9379. front: {
  9380. height: math.unit(14, "feet"),
  9381. weight: math.unit(800, "kg"),
  9382. name: "Front",
  9383. image: {
  9384. source: "./media/characters/theresa/front.svg",
  9385. extra: 3575 / 3346,
  9386. bottom: 0.03
  9387. }
  9388. },
  9389. },
  9390. [
  9391. {
  9392. name: "Normal",
  9393. height: math.unit(14, "feet"),
  9394. default: true
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9400. {
  9401. front: {
  9402. height: math.unit(6, "feet"),
  9403. weight: math.unit(3, "kg"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/ine/front.svg",
  9407. extra: 678 / 539,
  9408. bottom: 0.023
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(2.265, "feet"),
  9416. default: true
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9422. {
  9423. front: {
  9424. height: math.unit(5, "feet"),
  9425. weight: math.unit(30, "kg"),
  9426. name: "Front",
  9427. image: {
  9428. source: "./media/characters/vial/front.svg",
  9429. extra: 1365 / 1277,
  9430. bottom: 0.04
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(5, "feet"),
  9438. default: true
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9444. {
  9445. side: {
  9446. height: math.unit(3.4, "meters"),
  9447. weight: math.unit(1000, "lb"),
  9448. name: "Side",
  9449. image: {
  9450. source: "./media/characters/rovoska/side.svg",
  9451. extra: 4403 / 1515
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Normal",
  9458. height: math.unit(3.4, "meters"),
  9459. default: true
  9460. },
  9461. ]
  9462. ))
  9463. characterMakers.push(() => makeCharacter(
  9464. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9465. {
  9466. front: {
  9467. height: math.unit(8, "feet"),
  9468. weight: math.unit(315, "lb"),
  9469. name: "Front",
  9470. image: {
  9471. source: "./media/characters/gunner-rotthbauer/front.svg"
  9472. }
  9473. },
  9474. back: {
  9475. height: math.unit(8, "feet"),
  9476. weight: math.unit(315, "lb"),
  9477. name: "Back",
  9478. image: {
  9479. source: "./media/characters/gunner-rotthbauer/back.svg"
  9480. }
  9481. },
  9482. },
  9483. [
  9484. {
  9485. name: "Micro",
  9486. height: math.unit(3.5, "inches")
  9487. },
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(8, "feet"),
  9491. default: true
  9492. },
  9493. {
  9494. name: "Macro",
  9495. height: math.unit(250, "feet")
  9496. },
  9497. {
  9498. name: "Megamacro",
  9499. height: math.unit(1, "AU")
  9500. },
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(5 + 5 / 12, "feet"),
  9508. weight: math.unit(140, "lb"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/allatia/front.svg",
  9512. extra: 1227 / 1180,
  9513. bottom: 0.027
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(5 + 5 / 12, "feet")
  9521. },
  9522. {
  9523. name: "Macro",
  9524. height: math.unit(250, "feet"),
  9525. default: true
  9526. },
  9527. {
  9528. name: "Megamacro",
  9529. height: math.unit(8, "miles")
  9530. }
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(6, "feet"),
  9538. weight: math.unit(120, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/tene/front.svg",
  9542. extra: 1728 / 1578,
  9543. bottom: 0.022
  9544. }
  9545. },
  9546. stomping: {
  9547. height: math.unit(2.025, "meters"),
  9548. weight: math.unit(120, "lb"),
  9549. name: "Stomping",
  9550. image: {
  9551. source: "./media/characters/tene/stomping.svg",
  9552. extra: 938 / 873,
  9553. bottom: 0.01
  9554. }
  9555. },
  9556. sitting: {
  9557. height: math.unit(1, "meter"),
  9558. weight: math.unit(120, "lb"),
  9559. name: "Sitting",
  9560. image: {
  9561. source: "./media/characters/tene/sitting.svg",
  9562. extra: 437 / 415,
  9563. bottom: 0.1
  9564. }
  9565. },
  9566. feral: {
  9567. height: math.unit(3.9, "feet"),
  9568. weight: math.unit(250, "lb"),
  9569. name: "Feral",
  9570. image: {
  9571. source: "./media/characters/tene/feral.svg",
  9572. extra: 717 / 458,
  9573. bottom: 0.179
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(6, "feet")
  9581. },
  9582. {
  9583. name: "Macro",
  9584. height: math.unit(300, "feet"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Megamacro",
  9589. height: math.unit(5, "miles")
  9590. },
  9591. ]
  9592. ))
  9593. characterMakers.push(() => makeCharacter(
  9594. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9595. {
  9596. side: {
  9597. height: math.unit(6, "feet"),
  9598. name: "Side",
  9599. image: {
  9600. source: "./media/characters/evander/side.svg",
  9601. extra: 877 / 477
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Normal",
  9608. height: math.unit(0.83, "meters"),
  9609. default: true
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(12, "feet"),
  9618. weight: math.unit(1000, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9622. extra: 1762 / 1611
  9623. }
  9624. },
  9625. back: {
  9626. height: math.unit(12, "feet"),
  9627. weight: math.unit(1000, "lb"),
  9628. name: "Back",
  9629. image: {
  9630. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9631. extra: 1762 / 1611
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Normal",
  9638. height: math.unit(12, "feet"),
  9639. default: true
  9640. },
  9641. {
  9642. name: "Kaiju",
  9643. height: math.unit(150, "feet")
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(150, "lb"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/zero-alurus/front.svg"
  9656. }
  9657. },
  9658. back: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(150, "lb"),
  9661. name: "Back",
  9662. image: {
  9663. source: "./media/characters/zero-alurus/back.svg"
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Normal",
  9670. height: math.unit(5 + 10 / 12, "feet")
  9671. },
  9672. {
  9673. name: "Macro",
  9674. height: math.unit(60, "feet"),
  9675. default: true
  9676. },
  9677. {
  9678. name: "Macro+",
  9679. height: math.unit(450, "feet")
  9680. },
  9681. ]
  9682. ))
  9683. characterMakers.push(() => makeCharacter(
  9684. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9685. {
  9686. front: {
  9687. height: math.unit(6, "feet"),
  9688. weight: math.unit(200, "lb"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/mega-shi/front.svg",
  9692. extra: 1279 / 1250,
  9693. bottom: 0.02
  9694. }
  9695. },
  9696. back: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(200, "lb"),
  9699. name: "Back",
  9700. image: {
  9701. source: "./media/characters/mega-shi/back.svg",
  9702. extra: 1279 / 1250,
  9703. bottom: 0.02
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Micro",
  9710. height: math.unit(16 + 6 / 12, "feet")
  9711. },
  9712. {
  9713. name: "Third Dimension",
  9714. height: math.unit(40, "meters")
  9715. },
  9716. {
  9717. name: "Normal",
  9718. height: math.unit(660, "feet"),
  9719. default: true
  9720. },
  9721. {
  9722. name: "Megamacro",
  9723. height: math.unit(10, "miles")
  9724. },
  9725. {
  9726. name: "Planetary Launch",
  9727. height: math.unit(500, "miles")
  9728. },
  9729. {
  9730. name: "Interstellar",
  9731. height: math.unit(1e9, "miles")
  9732. },
  9733. {
  9734. name: "Leaving the Universe",
  9735. height: math.unit(1, "gigaparsec")
  9736. },
  9737. {
  9738. name: "Travelling Universes",
  9739. height: math.unit(30e15, "parsecs")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(6, "feet"),
  9748. weight: math.unit(150, "lb"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/odyssey/front.svg",
  9752. extra: 1782 / 1582,
  9753. bottom: 0.01
  9754. }
  9755. },
  9756. side: {
  9757. height: math.unit(5.7, "feet"),
  9758. weight: math.unit(140, "lb"),
  9759. name: "Side",
  9760. image: {
  9761. source: "./media/characters/odyssey/side.svg",
  9762. extra: 6462 / 5700
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Normal",
  9769. height: math.unit(5 + 4 / 12, "feet")
  9770. },
  9771. {
  9772. name: "Macro",
  9773. height: math.unit(1, "km")
  9774. },
  9775. {
  9776. name: "Megamacro",
  9777. height: math.unit(3000, "km")
  9778. },
  9779. {
  9780. name: "Gigamacro",
  9781. height: math.unit(1, "AU"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Omniversal",
  9786. height: math.unit(100e14, "lightyears")
  9787. },
  9788. ]
  9789. ))
  9790. characterMakers.push(() => makeCharacter(
  9791. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9792. {
  9793. front: {
  9794. height: math.unit(6, "feet"),
  9795. weight: math.unit(300, "lb"),
  9796. name: "Front",
  9797. image: {
  9798. source: "./media/characters/mekuto/front.svg",
  9799. extra: 921 / 832,
  9800. bottom: 0.03
  9801. }
  9802. },
  9803. hand: {
  9804. height: math.unit(6 / 10.24, "feet"),
  9805. name: "Hand",
  9806. image: {
  9807. source: "./media/characters/mekuto/hand.svg"
  9808. }
  9809. },
  9810. foot: {
  9811. height: math.unit(6 / 5.05, "feet"),
  9812. name: "Foot",
  9813. image: {
  9814. source: "./media/characters/mekuto/foot.svg"
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Minimicro",
  9821. height: math.unit(0.2, "inches")
  9822. },
  9823. {
  9824. name: "Micro",
  9825. height: math.unit(1.5, "inches")
  9826. },
  9827. {
  9828. name: "Normal",
  9829. height: math.unit(5 + 11 / 12, "feet"),
  9830. default: true
  9831. },
  9832. {
  9833. name: "Minimacro",
  9834. height: math.unit(17 + 9 / 12, "feet")
  9835. },
  9836. {
  9837. name: "Macro",
  9838. height: math.unit(177.5, "feet")
  9839. },
  9840. {
  9841. name: "Megamacro",
  9842. height: math.unit(152, "miles")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(6.5, "inches"),
  9851. weight: math.unit(13, "oz"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/dafydd-tomos/front.svg",
  9855. extra: 2990 / 2603,
  9856. bottom: 0.03
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Micro",
  9863. height: math.unit(6.5, "inches"),
  9864. default: true
  9865. },
  9866. ]
  9867. ))
  9868. characterMakers.push(() => makeCharacter(
  9869. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9870. {
  9871. front: {
  9872. height: math.unit(6, "feet"),
  9873. weight: math.unit(150, "lb"),
  9874. name: "Front",
  9875. image: {
  9876. source: "./media/characters/splinter/front.svg",
  9877. extra: 2990 / 2882,
  9878. bottom: 0.04
  9879. }
  9880. },
  9881. back: {
  9882. height: math.unit(6, "feet"),
  9883. weight: math.unit(150, "lb"),
  9884. name: "Back",
  9885. image: {
  9886. source: "./media/characters/splinter/back.svg",
  9887. extra: 2990 / 2882,
  9888. bottom: 0.04
  9889. }
  9890. },
  9891. },
  9892. [
  9893. {
  9894. name: "Normal",
  9895. height: math.unit(6, "feet")
  9896. },
  9897. {
  9898. name: "Macro",
  9899. height: math.unit(230, "meters"),
  9900. default: true
  9901. },
  9902. ]
  9903. ))
  9904. characterMakers.push(() => makeCharacter(
  9905. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9906. {
  9907. front: {
  9908. height: math.unit(4 + 10 / 12, "feet"),
  9909. weight: math.unit(480, "lb"),
  9910. name: "Front",
  9911. image: {
  9912. source: "./media/characters/snow-gabumon/front.svg",
  9913. extra: 1140 / 963,
  9914. bottom: 0.058
  9915. }
  9916. },
  9917. back: {
  9918. height: math.unit(4 + 10 / 12, "feet"),
  9919. weight: math.unit(480, "lb"),
  9920. name: "Back",
  9921. image: {
  9922. source: "./media/characters/snow-gabumon/back.svg",
  9923. extra: 1115 / 962,
  9924. bottom: 0.041
  9925. }
  9926. },
  9927. frontUndresed: {
  9928. height: math.unit(4 + 10 / 12, "feet"),
  9929. weight: math.unit(480, "lb"),
  9930. name: "Front (Undressed)",
  9931. image: {
  9932. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9933. extra: 1061 / 960,
  9934. bottom: 0.045
  9935. }
  9936. },
  9937. },
  9938. [
  9939. {
  9940. name: "Micro",
  9941. height: math.unit(1, "inch")
  9942. },
  9943. {
  9944. name: "Normal",
  9945. height: math.unit(4 + 10 / 12, "feet"),
  9946. default: true
  9947. },
  9948. {
  9949. name: "Macro",
  9950. height: math.unit(200, "feet")
  9951. },
  9952. {
  9953. name: "Megamacro",
  9954. height: math.unit(120, "miles")
  9955. },
  9956. {
  9957. name: "Gigamacro",
  9958. height: math.unit(9800, "miles")
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9964. {
  9965. front: {
  9966. height: math.unit(1.7, "meters"),
  9967. weight: math.unit(140, "lb"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/moody/front.svg",
  9971. extra: 3226 / 3007,
  9972. bottom: 0.087
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Micro",
  9979. height: math.unit(1, "mm")
  9980. },
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(1.7, "meters"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Macro",
  9988. height: math.unit(80, "meters")
  9989. },
  9990. {
  9991. name: "Macro+",
  9992. height: math.unit(500, "meters")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(6, "feet"),
  10001. weight: math.unit(150, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/zyas/front.svg",
  10005. extra: 1180 / 1120,
  10006. bottom: 0.045
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Normal",
  10013. height: math.unit(10, "feet"),
  10014. default: true
  10015. },
  10016. {
  10017. name: "Macro",
  10018. height: math.unit(500, "feet")
  10019. },
  10020. {
  10021. name: "Megamacro",
  10022. height: math.unit(5, "miles")
  10023. },
  10024. {
  10025. name: "Teramacro",
  10026. height: math.unit(150000, "miles")
  10027. },
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10032. {
  10033. front: {
  10034. height: math.unit(6, "feet"),
  10035. weight: math.unit(150, "lb"),
  10036. name: "Front",
  10037. image: {
  10038. source: "./media/characters/cuon/front.svg",
  10039. extra: 1390 / 1320,
  10040. bottom: 0.008
  10041. }
  10042. },
  10043. },
  10044. [
  10045. {
  10046. name: "Micro",
  10047. height: math.unit(3, "inches")
  10048. },
  10049. {
  10050. name: "Normal",
  10051. height: math.unit(18 + 9 / 12, "feet"),
  10052. default: true
  10053. },
  10054. {
  10055. name: "Macro",
  10056. height: math.unit(360, "feet")
  10057. },
  10058. {
  10059. name: "Megamacro",
  10060. height: math.unit(360, "miles")
  10061. },
  10062. ]
  10063. ))
  10064. characterMakers.push(() => makeCharacter(
  10065. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10066. {
  10067. front: {
  10068. height: math.unit(2.4, "meters"),
  10069. weight: math.unit(70, "kg"),
  10070. name: "Front",
  10071. image: {
  10072. source: "./media/characters/nyanuxk/front.svg",
  10073. extra: 1172 / 1084,
  10074. bottom: 0.065
  10075. }
  10076. },
  10077. side: {
  10078. height: math.unit(2.4, "meters"),
  10079. weight: math.unit(70, "kg"),
  10080. name: "Side",
  10081. image: {
  10082. source: "./media/characters/nyanuxk/side.svg",
  10083. extra: 1190 / 1132,
  10084. bottom: 0.007
  10085. }
  10086. },
  10087. back: {
  10088. height: math.unit(2.4, "meters"),
  10089. weight: math.unit(70, "kg"),
  10090. name: "Back",
  10091. image: {
  10092. source: "./media/characters/nyanuxk/back.svg",
  10093. extra: 1200 / 1141,
  10094. bottom: 0.015
  10095. }
  10096. },
  10097. foot: {
  10098. height: math.unit(0.52, "meters"),
  10099. name: "Foot",
  10100. image: {
  10101. source: "./media/characters/nyanuxk/foot.svg"
  10102. }
  10103. },
  10104. },
  10105. [
  10106. {
  10107. name: "Micro",
  10108. height: math.unit(2, "cm")
  10109. },
  10110. {
  10111. name: "Normal",
  10112. height: math.unit(2.4, "meters"),
  10113. default: true
  10114. },
  10115. {
  10116. name: "Smaller Macro",
  10117. height: math.unit(120, "meters")
  10118. },
  10119. {
  10120. name: "Bigger Macro",
  10121. height: math.unit(1.2, "km")
  10122. },
  10123. {
  10124. name: "Megamacro",
  10125. height: math.unit(15, "kilometers")
  10126. },
  10127. {
  10128. name: "Gigamacro",
  10129. height: math.unit(2000, "km")
  10130. },
  10131. {
  10132. name: "Teramacro",
  10133. height: math.unit(500000, "km")
  10134. },
  10135. ]
  10136. ))
  10137. characterMakers.push(() => makeCharacter(
  10138. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10139. {
  10140. side: {
  10141. height: math.unit(6, "feet"),
  10142. name: "Side",
  10143. image: {
  10144. source: "./media/characters/ailbhe/side.svg",
  10145. extra: 757 / 464,
  10146. bottom: 0.041
  10147. }
  10148. },
  10149. },
  10150. [
  10151. {
  10152. name: "Normal",
  10153. height: math.unit(1.07, "meters"),
  10154. default: true
  10155. },
  10156. ]
  10157. ))
  10158. characterMakers.push(() => makeCharacter(
  10159. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10160. {
  10161. front: {
  10162. height: math.unit(6, "feet"),
  10163. weight: math.unit(120, "kg"),
  10164. name: "Front",
  10165. image: {
  10166. source: "./media/characters/zevulfius/front.svg",
  10167. extra: 965 / 903
  10168. }
  10169. },
  10170. side: {
  10171. height: math.unit(6, "feet"),
  10172. weight: math.unit(120, "kg"),
  10173. name: "Side",
  10174. image: {
  10175. source: "./media/characters/zevulfius/side.svg",
  10176. extra: 939 / 900
  10177. }
  10178. },
  10179. back: {
  10180. height: math.unit(6, "feet"),
  10181. weight: math.unit(120, "kg"),
  10182. name: "Back",
  10183. image: {
  10184. source: "./media/characters/zevulfius/back.svg",
  10185. extra: 918 / 854,
  10186. bottom: 0.005
  10187. }
  10188. },
  10189. foot: {
  10190. height: math.unit(6 / 3.72, "feet"),
  10191. name: "Foot",
  10192. image: {
  10193. source: "./media/characters/zevulfius/foot.svg"
  10194. }
  10195. },
  10196. },
  10197. [
  10198. {
  10199. name: "Macro",
  10200. height: math.unit(750, "meters")
  10201. },
  10202. {
  10203. name: "Megamacro",
  10204. height: math.unit(20, "km"),
  10205. default: true
  10206. },
  10207. {
  10208. name: "Gigamacro",
  10209. height: math.unit(2000, "km")
  10210. },
  10211. {
  10212. name: "Teramacro",
  10213. height: math.unit(250000, "km")
  10214. },
  10215. ]
  10216. ))
  10217. characterMakers.push(() => makeCharacter(
  10218. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10219. {
  10220. front: {
  10221. height: math.unit(100, "feet"),
  10222. weight: math.unit(350, "kg"),
  10223. name: "Front",
  10224. image: {
  10225. source: "./media/characters/rikes/front.svg",
  10226. extra: 1565 / 1483,
  10227. bottom: 0.017
  10228. }
  10229. },
  10230. },
  10231. [
  10232. {
  10233. name: "Macro",
  10234. height: math.unit(100, "feet"),
  10235. default: true
  10236. },
  10237. ]
  10238. ))
  10239. characterMakers.push(() => makeCharacter(
  10240. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10241. {
  10242. anthro: {
  10243. height: math.unit(8, "feet"),
  10244. weight: math.unit(120, "kg"),
  10245. name: "Anthro",
  10246. image: {
  10247. source: "./media/characters/adam-silver-mane/anthro.svg",
  10248. extra: 5743 / 5339,
  10249. bottom: 0.07
  10250. }
  10251. },
  10252. taur: {
  10253. height: math.unit(16, "feet"),
  10254. weight: math.unit(1500, "kg"),
  10255. name: "Taur",
  10256. image: {
  10257. source: "./media/characters/adam-silver-mane/taur.svg",
  10258. extra: 1713 / 1571,
  10259. bottom: 0.01
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(8, "feet")
  10267. },
  10268. {
  10269. name: "Minimacro",
  10270. height: math.unit(80, "feet")
  10271. },
  10272. {
  10273. name: "Macro",
  10274. height: math.unit(800, "feet"),
  10275. default: true
  10276. },
  10277. {
  10278. name: "Megamacro",
  10279. height: math.unit(8000, "feet")
  10280. },
  10281. {
  10282. name: "Gigamacro",
  10283. height: math.unit(800, "miles")
  10284. },
  10285. {
  10286. name: "Teramacro",
  10287. height: math.unit(80000, "miles")
  10288. },
  10289. {
  10290. name: "Celestial",
  10291. height: math.unit(8e6, "miles")
  10292. },
  10293. {
  10294. name: "Star Dragon",
  10295. height: math.unit(800000, "parsecs")
  10296. },
  10297. {
  10298. name: "Godly",
  10299. height: math.unit(800, "teraparsecs")
  10300. },
  10301. ]
  10302. ))
  10303. characterMakers.push(() => makeCharacter(
  10304. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10305. {
  10306. front: {
  10307. height: math.unit(6, "feet"),
  10308. weight: math.unit(150, "lb"),
  10309. name: "Front",
  10310. image: {
  10311. source: "./media/characters/ky'owin/front.svg",
  10312. extra: 3888 / 3068,
  10313. bottom: 0.015
  10314. }
  10315. },
  10316. },
  10317. [
  10318. {
  10319. name: "Normal",
  10320. height: math.unit(6 + 8 / 12, "feet")
  10321. },
  10322. {
  10323. name: "Large",
  10324. height: math.unit(68, "feet")
  10325. },
  10326. {
  10327. name: "Macro",
  10328. height: math.unit(132, "feet")
  10329. },
  10330. {
  10331. name: "Macro+",
  10332. height: math.unit(340, "feet")
  10333. },
  10334. {
  10335. name: "Macro++",
  10336. height: math.unit(680, "feet"),
  10337. default: true
  10338. },
  10339. {
  10340. name: "Megamacro",
  10341. height: math.unit(1, "mile")
  10342. },
  10343. {
  10344. name: "Megamacro+",
  10345. height: math.unit(10, "miles")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(4, "feet"),
  10354. weight: math.unit(50, "lb"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/mal/front.svg",
  10358. extra: 785 / 724,
  10359. bottom: 0.07
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Micro",
  10366. height: math.unit(4, "inches")
  10367. },
  10368. {
  10369. name: "Normal",
  10370. height: math.unit(4, "feet"),
  10371. default: true
  10372. },
  10373. {
  10374. name: "Macro",
  10375. height: math.unit(200, "feet")
  10376. },
  10377. ]
  10378. ))
  10379. characterMakers.push(() => makeCharacter(
  10380. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10381. {
  10382. front: {
  10383. height: math.unit(6, "feet"),
  10384. weight: math.unit(150, "lb"),
  10385. name: "Front",
  10386. image: {
  10387. source: "./media/characters/jordan-deware/front.svg",
  10388. extra: 1191 / 1012
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Nano",
  10395. height: math.unit(0.01, "mm")
  10396. },
  10397. {
  10398. name: "Minimicro",
  10399. height: math.unit(1, "mm")
  10400. },
  10401. {
  10402. name: "Micro",
  10403. height: math.unit(0.5, "inches")
  10404. },
  10405. {
  10406. name: "Normal",
  10407. height: math.unit(4, "feet"),
  10408. default: true
  10409. },
  10410. {
  10411. name: "Minimacro",
  10412. height: math.unit(40, "meters")
  10413. },
  10414. {
  10415. name: "Small Macro",
  10416. height: math.unit(400, "meters")
  10417. },
  10418. {
  10419. name: "Macro",
  10420. height: math.unit(4, "miles")
  10421. },
  10422. {
  10423. name: "Megamacro",
  10424. height: math.unit(40, "miles")
  10425. },
  10426. {
  10427. name: "Megamacro+",
  10428. height: math.unit(400, "miles")
  10429. },
  10430. {
  10431. name: "Gigamacro",
  10432. height: math.unit(400000, "miles")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10438. {
  10439. side: {
  10440. height: math.unit(6, "feet"),
  10441. weight: math.unit(150, "lb"),
  10442. name: "Side",
  10443. image: {
  10444. source: "./media/characters/kimiko/side.svg",
  10445. extra: 600 / 358
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Normal",
  10452. height: math.unit(15, "feet"),
  10453. default: true
  10454. },
  10455. {
  10456. name: "Macro",
  10457. height: math.unit(220, "feet")
  10458. },
  10459. {
  10460. name: "Macro+",
  10461. height: math.unit(1450, "feet")
  10462. },
  10463. {
  10464. name: "Megamacro",
  10465. height: math.unit(11500, "feet")
  10466. },
  10467. {
  10468. name: "Gigamacro",
  10469. height: math.unit(9500, "miles")
  10470. },
  10471. {
  10472. name: "Teramacro",
  10473. height: math.unit(2208005005, "miles")
  10474. },
  10475. {
  10476. name: "Examacro",
  10477. height: math.unit(2750, "parsecs")
  10478. },
  10479. {
  10480. name: "Zettamacro",
  10481. height: math.unit(101500, "parsecs")
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10487. {
  10488. front: {
  10489. height: math.unit(6, "feet"),
  10490. weight: math.unit(70, "kg"),
  10491. name: "Front",
  10492. image: {
  10493. source: "./media/characters/andrew-sleepy/front.svg"
  10494. }
  10495. },
  10496. side: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(70, "kg"),
  10499. name: "Side",
  10500. image: {
  10501. source: "./media/characters/andrew-sleepy/side.svg"
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Micro",
  10508. height: math.unit(1, "mm"),
  10509. default: true
  10510. },
  10511. ]
  10512. ))
  10513. characterMakers.push(() => makeCharacter(
  10514. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10515. {
  10516. front: {
  10517. height: math.unit(6, "feet"),
  10518. weight: math.unit(150, "lb"),
  10519. name: "Front",
  10520. image: {
  10521. source: "./media/characters/judio/front.svg",
  10522. extra: 1258 / 1110
  10523. }
  10524. },
  10525. },
  10526. [
  10527. {
  10528. name: "Normal",
  10529. height: math.unit(5 + 6 / 12, "feet")
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(1000, "feet"),
  10534. default: true
  10535. },
  10536. {
  10537. name: "Megamacro",
  10538. height: math.unit(10, "miles")
  10539. },
  10540. ]
  10541. ))
  10542. characterMakers.push(() => makeCharacter(
  10543. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10544. {
  10545. front: {
  10546. height: math.unit(6, "feet"),
  10547. weight: math.unit(68, "kg"),
  10548. name: "Front",
  10549. image: {
  10550. source: "./media/characters/nomaxice/front.svg",
  10551. extra: 1498 / 1073,
  10552. bottom: 0.075
  10553. }
  10554. },
  10555. foot: {
  10556. height: math.unit(1.1, "feet"),
  10557. name: "Foot",
  10558. image: {
  10559. source: "./media/characters/nomaxice/foot.svg"
  10560. }
  10561. },
  10562. },
  10563. [
  10564. {
  10565. name: "Micro",
  10566. height: math.unit(8, "cm")
  10567. },
  10568. {
  10569. name: "Norm",
  10570. height: math.unit(1.82, "m")
  10571. },
  10572. {
  10573. name: "Norm+",
  10574. height: math.unit(8.8, "feet")
  10575. },
  10576. {
  10577. name: "Big",
  10578. height: math.unit(8, "meters"),
  10579. default: true
  10580. },
  10581. {
  10582. name: "Macro",
  10583. height: math.unit(18, "meters")
  10584. },
  10585. {
  10586. name: "Macro+",
  10587. height: math.unit(88, "meters")
  10588. },
  10589. ]
  10590. ))
  10591. characterMakers.push(() => makeCharacter(
  10592. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10593. {
  10594. front: {
  10595. height: math.unit(12, "feet"),
  10596. weight: math.unit(1.5, "tons"),
  10597. name: "Front",
  10598. image: {
  10599. source: "./media/characters/dydros/front.svg",
  10600. extra: 863 / 800,
  10601. bottom: 0.015
  10602. }
  10603. },
  10604. back: {
  10605. height: math.unit(12, "feet"),
  10606. weight: math.unit(1.5, "tons"),
  10607. name: "Back",
  10608. image: {
  10609. source: "./media/characters/dydros/back.svg",
  10610. extra: 900 / 843,
  10611. bottom: 0.005
  10612. }
  10613. },
  10614. },
  10615. [
  10616. {
  10617. name: "Normal",
  10618. height: math.unit(12, "feet"),
  10619. default: true
  10620. },
  10621. ]
  10622. ))
  10623. characterMakers.push(() => makeCharacter(
  10624. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10625. {
  10626. front: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(100, "kg"),
  10629. name: "Front",
  10630. image: {
  10631. source: "./media/characters/riggi/front.svg",
  10632. extra: 5787 / 5303
  10633. }
  10634. },
  10635. hyper: {
  10636. height: math.unit(6 * 5 / 3, "feet"),
  10637. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10638. name: "Hyper",
  10639. image: {
  10640. source: "./media/characters/riggi/hyper.svg",
  10641. extra: 3595 / 3485
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Small Macro",
  10648. height: math.unit(50, "feet")
  10649. },
  10650. {
  10651. name: "Default",
  10652. height: math.unit(200, "feet"),
  10653. default: true
  10654. },
  10655. {
  10656. name: "Loom",
  10657. height: math.unit(10000, "feet")
  10658. },
  10659. {
  10660. name: "Cruising Altitude",
  10661. height: math.unit(30000, "feet")
  10662. },
  10663. {
  10664. name: "Megamacro",
  10665. height: math.unit(100, "miles")
  10666. },
  10667. {
  10668. name: "Continent Sized",
  10669. height: math.unit(2800, "miles")
  10670. },
  10671. {
  10672. name: "Earth Sized",
  10673. height: math.unit(8000, "miles")
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(6, "feet"),
  10682. weight: math.unit(250, "lb"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/alexi/front.svg",
  10686. extra: 3483 / 3291,
  10687. bottom: 0.04
  10688. }
  10689. },
  10690. back: {
  10691. height: math.unit(6, "feet"),
  10692. weight: math.unit(250, "lb"),
  10693. name: "Back",
  10694. image: {
  10695. source: "./media/characters/alexi/back.svg",
  10696. extra: 3533 / 3356,
  10697. bottom: 0.021
  10698. }
  10699. },
  10700. frontTransforming: {
  10701. height: math.unit(8.58, "feet"),
  10702. weight: math.unit(1300, "lb"),
  10703. name: "Transforming",
  10704. image: {
  10705. source: "./media/characters/alexi/front-transforming.svg",
  10706. extra: 437 / 409,
  10707. bottom: 19 / 458.66
  10708. }
  10709. },
  10710. frontTransformed: {
  10711. height: math.unit(12.5, "feet"),
  10712. weight: math.unit(4000, "lb"),
  10713. name: "Transformed",
  10714. image: {
  10715. source: "./media/characters/alexi/front-transformed.svg",
  10716. extra: 639 / 614,
  10717. bottom: 30.55 / 671
  10718. }
  10719. },
  10720. },
  10721. [
  10722. {
  10723. name: "Normal",
  10724. height: math.unit(14, "feet"),
  10725. default: true
  10726. },
  10727. {
  10728. name: "Minimacro",
  10729. height: math.unit(30, "meters")
  10730. },
  10731. {
  10732. name: "Macro",
  10733. height: math.unit(500, "meters")
  10734. },
  10735. {
  10736. name: "Megamacro",
  10737. height: math.unit(9000, "km")
  10738. },
  10739. {
  10740. name: "Teramacro",
  10741. height: math.unit(384000, "km")
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(150, "lb"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/kayroo/front.svg",
  10754. extra: 1153 / 1038,
  10755. bottom: 0.06
  10756. }
  10757. },
  10758. foot: {
  10759. height: math.unit(6, "feet"),
  10760. weight: math.unit(150, "lb"),
  10761. name: "Foot",
  10762. image: {
  10763. source: "./media/characters/kayroo/foot.svg"
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(8, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Minimacro",
  10775. height: math.unit(250, "feet")
  10776. },
  10777. {
  10778. name: "Macro",
  10779. height: math.unit(2800, "feet")
  10780. },
  10781. {
  10782. name: "Megamacro",
  10783. height: math.unit(5200, "feet")
  10784. },
  10785. {
  10786. name: "Gigamacro",
  10787. height: math.unit(27000, "feet")
  10788. },
  10789. {
  10790. name: "Omega",
  10791. height: math.unit(45000, "feet")
  10792. },
  10793. ]
  10794. ))
  10795. characterMakers.push(() => makeCharacter(
  10796. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10797. {
  10798. front: {
  10799. height: math.unit(18, "feet"),
  10800. weight: math.unit(5800, "lb"),
  10801. name: "Front",
  10802. image: {
  10803. source: "./media/characters/rhys/front.svg",
  10804. extra: 3386 / 3090,
  10805. bottom: 0.07
  10806. }
  10807. },
  10808. },
  10809. [
  10810. {
  10811. name: "Normal",
  10812. height: math.unit(18, "feet"),
  10813. default: true
  10814. },
  10815. {
  10816. name: "Working Size",
  10817. height: math.unit(200, "feet")
  10818. },
  10819. {
  10820. name: "Demolition Size",
  10821. height: math.unit(2000, "feet")
  10822. },
  10823. {
  10824. name: "Maximum Licensed Size",
  10825. height: math.unit(5, "miles")
  10826. },
  10827. {
  10828. name: "Maximum Observed Size",
  10829. height: math.unit(10, "yottameters")
  10830. },
  10831. ]
  10832. ))
  10833. characterMakers.push(() => makeCharacter(
  10834. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10835. {
  10836. front: {
  10837. height: math.unit(6, "feet"),
  10838. weight: math.unit(250, "lb"),
  10839. name: "Front",
  10840. image: {
  10841. source: "./media/characters/toto/front.svg",
  10842. extra: 527 / 479,
  10843. bottom: 0.05
  10844. }
  10845. },
  10846. },
  10847. [
  10848. {
  10849. name: "Micro",
  10850. height: math.unit(3, "feet")
  10851. },
  10852. {
  10853. name: "Normal",
  10854. height: math.unit(10, "feet")
  10855. },
  10856. {
  10857. name: "Macro",
  10858. height: math.unit(150, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Megamacro",
  10863. height: math.unit(1200, "feet")
  10864. },
  10865. ]
  10866. ))
  10867. characterMakers.push(() => makeCharacter(
  10868. { name: "King", species: ["lion"], tags: ["anthro"] },
  10869. {
  10870. back: {
  10871. height: math.unit(6, "feet"),
  10872. weight: math.unit(150, "lb"),
  10873. name: "Back",
  10874. image: {
  10875. source: "./media/characters/king/back.svg"
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Micro",
  10882. height: math.unit(2, "inches")
  10883. },
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(8, "feet")
  10887. },
  10888. {
  10889. name: "Macro",
  10890. height: math.unit(200, "feet"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Megamacro",
  10895. height: math.unit(50, "miles")
  10896. },
  10897. ]
  10898. ))
  10899. characterMakers.push(() => makeCharacter(
  10900. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10901. {
  10902. anthro: {
  10903. height: math.unit(6 + 5 / 12, "feet"),
  10904. weight: math.unit(280, "lb"),
  10905. name: "Anthro",
  10906. image: {
  10907. source: "./media/characters/cordite/anthro.svg",
  10908. extra: 1986 / 1905,
  10909. bottom: 0.025
  10910. }
  10911. },
  10912. feral: {
  10913. height: math.unit(2, "feet"),
  10914. weight: math.unit(90, "lb"),
  10915. name: "Feral",
  10916. image: {
  10917. source: "./media/characters/cordite/feral.svg",
  10918. extra: 1260 / 755,
  10919. bottom: 0.05
  10920. }
  10921. },
  10922. },
  10923. [
  10924. {
  10925. name: "Normal",
  10926. height: math.unit(6 + 5 / 12, "feet"),
  10927. default: true
  10928. },
  10929. ]
  10930. ))
  10931. characterMakers.push(() => makeCharacter(
  10932. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10933. {
  10934. front: {
  10935. height: math.unit(6, "feet"),
  10936. weight: math.unit(150, "lb"),
  10937. name: "Front",
  10938. image: {
  10939. source: "./media/characters/pianostrong/front.svg",
  10940. extra: 6577 / 6254,
  10941. bottom: 0.02
  10942. }
  10943. },
  10944. side: {
  10945. height: math.unit(6, "feet"),
  10946. weight: math.unit(150, "lb"),
  10947. name: "Side",
  10948. image: {
  10949. source: "./media/characters/pianostrong/side.svg",
  10950. extra: 6106 / 5730
  10951. }
  10952. },
  10953. back: {
  10954. height: math.unit(6, "feet"),
  10955. weight: math.unit(150, "lb"),
  10956. name: "Back",
  10957. image: {
  10958. source: "./media/characters/pianostrong/back.svg",
  10959. extra: 6085 / 5733,
  10960. bottom: 0.01
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Macro",
  10967. height: math.unit(100, "feet")
  10968. },
  10969. {
  10970. name: "Macro+",
  10971. height: math.unit(300, "feet"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Macro++",
  10976. height: math.unit(1000, "feet")
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10982. {
  10983. front: {
  10984. height: math.unit(6, "feet"),
  10985. weight: math.unit(150, "lb"),
  10986. name: "Front",
  10987. image: {
  10988. source: "./media/characters/kona/front.svg",
  10989. extra: 2960 / 2629,
  10990. bottom: 0.005
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(11 + 8 / 12, "feet")
  10998. },
  10999. {
  11000. name: "Macro",
  11001. height: math.unit(850, "feet"),
  11002. default: true
  11003. },
  11004. {
  11005. name: "Macro+",
  11006. height: math.unit(1.5, "km"),
  11007. default: true
  11008. },
  11009. {
  11010. name: "Megamacro",
  11011. height: math.unit(80, "miles")
  11012. },
  11013. {
  11014. name: "Gigamacro",
  11015. height: math.unit(3500, "miles")
  11016. },
  11017. ]
  11018. ))
  11019. characterMakers.push(() => makeCharacter(
  11020. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11021. {
  11022. side: {
  11023. height: math.unit(1.9, "meters"),
  11024. weight: math.unit(326, "kg"),
  11025. name: "Side",
  11026. image: {
  11027. source: "./media/characters/levi/side.svg",
  11028. extra: 1704 / 1334,
  11029. bottom: 0.02
  11030. }
  11031. },
  11032. },
  11033. [
  11034. {
  11035. name: "Normal",
  11036. height: math.unit(1.9, "meters"),
  11037. default: true
  11038. },
  11039. {
  11040. name: "Macro",
  11041. height: math.unit(20, "meters")
  11042. },
  11043. {
  11044. name: "Macro+",
  11045. height: math.unit(200, "meters")
  11046. },
  11047. {
  11048. name: "Megamacro",
  11049. height: math.unit(2, "km")
  11050. },
  11051. {
  11052. name: "Megamacro+",
  11053. height: math.unit(20, "km")
  11054. },
  11055. {
  11056. name: "Gigamacro",
  11057. height: math.unit(2500, "km")
  11058. },
  11059. {
  11060. name: "Gigamacro+",
  11061. height: math.unit(120000, "km")
  11062. },
  11063. {
  11064. name: "Teramacro",
  11065. height: math.unit(7.77e6, "km")
  11066. },
  11067. ]
  11068. ))
  11069. characterMakers.push(() => makeCharacter(
  11070. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11071. {
  11072. front: {
  11073. height: math.unit(6 + 4 / 12, "feet"),
  11074. weight: math.unit(188, "lb"),
  11075. name: "Front",
  11076. image: {
  11077. source: "./media/characters/bmc/front.svg",
  11078. extra: 1067 / 1022,
  11079. bottom: 0.047
  11080. }
  11081. },
  11082. },
  11083. [
  11084. {
  11085. name: "Human-sized",
  11086. height: math.unit(6 + 4 / 12, "feet")
  11087. },
  11088. {
  11089. name: "Small",
  11090. height: math.unit(250, "feet")
  11091. },
  11092. {
  11093. name: "Normal",
  11094. height: math.unit(1250, "feet"),
  11095. default: true
  11096. },
  11097. {
  11098. name: "Good Day",
  11099. height: math.unit(88, "miles")
  11100. },
  11101. {
  11102. name: "Largest Measured Size",
  11103. height: math.unit(11.2e6, "lightyears")
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(20, "feet"),
  11112. weight: math.unit(2016, "kg"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/sven-the-kaiju/front.svg",
  11116. extra: 1277/1250,
  11117. bottom: 35/1312
  11118. }
  11119. },
  11120. mouth: {
  11121. height: math.unit(1.85, "feet"),
  11122. name: "Mouth",
  11123. image: {
  11124. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Fairy",
  11131. height: math.unit(6, "inches")
  11132. },
  11133. {
  11134. name: "Normal",
  11135. height: math.unit(20, "feet"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Rampage",
  11140. height: math.unit(200, "feet")
  11141. },
  11142. {
  11143. name: "Archfey Forest Guardian",
  11144. height: math.unit(1, "mile")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(4, "meters"),
  11153. weight: math.unit(2, "tons"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/marik/front.svg",
  11157. extra: 1057 / 1003,
  11158. bottom: 0.08
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Normal",
  11165. height: math.unit(4, "meters"),
  11166. default: true
  11167. },
  11168. {
  11169. name: "Macro",
  11170. height: math.unit(20, "meters")
  11171. },
  11172. {
  11173. name: "Megamacro",
  11174. height: math.unit(50, "km")
  11175. },
  11176. {
  11177. name: "Gigamacro",
  11178. height: math.unit(100, "km")
  11179. },
  11180. {
  11181. name: "Alpha Macro",
  11182. height: math.unit(7.88e7, "yottameters")
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11188. {
  11189. front: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(110, "lb"),
  11192. name: "Front",
  11193. image: {
  11194. source: "./media/characters/mel/front.svg",
  11195. extra: 736 / 617,
  11196. bottom: 0.017
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Pico",
  11203. height: math.unit(3, "pm")
  11204. },
  11205. {
  11206. name: "Nano",
  11207. height: math.unit(3, "nm")
  11208. },
  11209. {
  11210. name: "Micro",
  11211. height: math.unit(0.3, "mm"),
  11212. default: true
  11213. },
  11214. {
  11215. name: "Micro+",
  11216. height: math.unit(3, "mm")
  11217. },
  11218. {
  11219. name: "Normal",
  11220. height: math.unit(5 + 10.5 / 12, "feet")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11226. {
  11227. kaiju: {
  11228. height: math.unit(1.75, "meters"),
  11229. weight: math.unit(55, "kg"),
  11230. name: "Kaiju",
  11231. image: {
  11232. source: "./media/characters/lykonous/kaiju.svg",
  11233. extra: 1055 / 946,
  11234. bottom: 0.135
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Normal",
  11241. height: math.unit(2.5, "meters"),
  11242. default: true
  11243. },
  11244. {
  11245. name: "Kaiju Dragon",
  11246. height: math.unit(60, "meters")
  11247. },
  11248. {
  11249. name: "Mega Kaiju",
  11250. height: math.unit(120, "km")
  11251. },
  11252. {
  11253. name: "Giga Kaiju",
  11254. height: math.unit(200, "megameters")
  11255. },
  11256. {
  11257. name: "Terra Kaiju",
  11258. height: math.unit(400, "gigameters")
  11259. },
  11260. {
  11261. name: "Kaiju Dragon God",
  11262. height: math.unit(13000, "exaparsecs")
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11268. {
  11269. front: {
  11270. height: math.unit(6, "feet"),
  11271. weight: math.unit(150, "lb"),
  11272. name: "Front",
  11273. image: {
  11274. source: "./media/characters/blü/front.svg",
  11275. extra: 1883 / 1564,
  11276. bottom: 0.031
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Normal",
  11283. height: math.unit(13, "feet"),
  11284. default: true
  11285. },
  11286. {
  11287. name: "Big Boi",
  11288. height: math.unit(150, "meters")
  11289. },
  11290. {
  11291. name: "Mini Stomper",
  11292. height: math.unit(300, "meters")
  11293. },
  11294. {
  11295. name: "Macro",
  11296. height: math.unit(1000, "meters")
  11297. },
  11298. {
  11299. name: "Megamacro",
  11300. height: math.unit(11000, "meters")
  11301. },
  11302. {
  11303. name: "Gigamacro",
  11304. height: math.unit(11000, "km")
  11305. },
  11306. {
  11307. name: "Teramacro",
  11308. height: math.unit(420000, "km")
  11309. },
  11310. {
  11311. name: "Examacro",
  11312. height: math.unit(120, "parsecs")
  11313. },
  11314. {
  11315. name: "God Tho",
  11316. height: math.unit(98000000000, "parsecs")
  11317. },
  11318. ]
  11319. ))
  11320. characterMakers.push(() => makeCharacter(
  11321. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11322. {
  11323. taurFront: {
  11324. height: math.unit(6, "feet"),
  11325. weight: math.unit(200, "lb"),
  11326. name: "Taur (Front)",
  11327. image: {
  11328. source: "./media/characters/scales/taur-front.svg",
  11329. extra: 1,
  11330. bottom: 0.05
  11331. }
  11332. },
  11333. taurBack: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(200, "lb"),
  11336. name: "Taur (Back)",
  11337. image: {
  11338. source: "./media/characters/scales/taur-back.svg",
  11339. extra: 1,
  11340. bottom: 0.08
  11341. }
  11342. },
  11343. anthro: {
  11344. height: math.unit(6 * 7 / 12, "feet"),
  11345. weight: math.unit(100, "lb"),
  11346. name: "Anthro",
  11347. image: {
  11348. source: "./media/characters/scales/anthro.svg",
  11349. extra: 1,
  11350. bottom: 0.06
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(12, "feet"),
  11358. default: true
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11364. {
  11365. front: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(150, "lb"),
  11368. name: "Front",
  11369. image: {
  11370. source: "./media/characters/koragos/front.svg",
  11371. extra: 841 / 794,
  11372. bottom: 0.035
  11373. }
  11374. },
  11375. back: {
  11376. height: math.unit(6, "feet"),
  11377. weight: math.unit(150, "lb"),
  11378. name: "Back",
  11379. image: {
  11380. source: "./media/characters/koragos/back.svg",
  11381. extra: 841 / 810,
  11382. bottom: 0.022
  11383. }
  11384. },
  11385. },
  11386. [
  11387. {
  11388. name: "Normal",
  11389. height: math.unit(6 + 11 / 12, "feet"),
  11390. default: true
  11391. },
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(490, "feet")
  11395. },
  11396. {
  11397. name: "Megamacro",
  11398. height: math.unit(10, "miles")
  11399. },
  11400. {
  11401. name: "Gigamacro",
  11402. height: math.unit(50, "miles")
  11403. },
  11404. ]
  11405. ))
  11406. characterMakers.push(() => makeCharacter(
  11407. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11408. {
  11409. front: {
  11410. height: math.unit(6, "feet"),
  11411. weight: math.unit(250, "lb"),
  11412. name: "Front",
  11413. image: {
  11414. source: "./media/characters/xylrem/front.svg",
  11415. extra: 3323 / 3050,
  11416. bottom: 0.065
  11417. }
  11418. },
  11419. },
  11420. [
  11421. {
  11422. name: "Micro",
  11423. height: math.unit(4, "feet")
  11424. },
  11425. {
  11426. name: "Normal",
  11427. height: math.unit(16, "feet"),
  11428. default: true
  11429. },
  11430. {
  11431. name: "Macro",
  11432. height: math.unit(2720, "feet")
  11433. },
  11434. {
  11435. name: "Megamacro",
  11436. height: math.unit(25000, "miles")
  11437. },
  11438. ]
  11439. ))
  11440. characterMakers.push(() => makeCharacter(
  11441. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11442. {
  11443. front: {
  11444. height: math.unit(8, "feet"),
  11445. weight: math.unit(250, "kg"),
  11446. name: "Front",
  11447. image: {
  11448. source: "./media/characters/ikideru/front.svg",
  11449. extra: 930 / 870,
  11450. bottom: 0.087
  11451. }
  11452. },
  11453. back: {
  11454. height: math.unit(8, "feet"),
  11455. weight: math.unit(250, "kg"),
  11456. name: "Back",
  11457. image: {
  11458. source: "./media/characters/ikideru/back.svg",
  11459. extra: 919 / 852,
  11460. bottom: 0.055
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Rare",
  11467. height: math.unit(8, "feet"),
  11468. default: true
  11469. },
  11470. {
  11471. name: "Playful Loom",
  11472. height: math.unit(80, "feet")
  11473. },
  11474. {
  11475. name: "City Leaner",
  11476. height: math.unit(230, "feet")
  11477. },
  11478. {
  11479. name: "Megamacro",
  11480. height: math.unit(2500, "feet")
  11481. },
  11482. {
  11483. name: "Gigamacro",
  11484. height: math.unit(26400, "feet")
  11485. },
  11486. {
  11487. name: "Tectonic Shifter",
  11488. height: math.unit(1.7, "megameters")
  11489. },
  11490. {
  11491. name: "Planet Carer",
  11492. height: math.unit(21, "megameters")
  11493. },
  11494. {
  11495. name: "God",
  11496. height: math.unit(11157.22, "parsecs")
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(6, "feet"),
  11505. weight: math.unit(120, "lb"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/neo/front.svg"
  11509. }
  11510. },
  11511. },
  11512. [
  11513. {
  11514. name: "Micro",
  11515. height: math.unit(2, "inches"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Human Size",
  11520. height: math.unit(5 + 8 / 12, "feet")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(13 + 10 / 12, "feet"),
  11529. weight: math.unit(5320, "lb"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/chauncey-chantz/front.svg",
  11533. extra: 1587 / 1435,
  11534. bottom: 0.02
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Normal",
  11541. height: math.unit(13 + 10 / 12, "feet"),
  11542. default: true
  11543. },
  11544. {
  11545. name: "Macro",
  11546. height: math.unit(45, "feet")
  11547. },
  11548. {
  11549. name: "Megamacro",
  11550. height: math.unit(250, "miles")
  11551. },
  11552. {
  11553. name: "Planetary",
  11554. height: math.unit(10000, "miles")
  11555. },
  11556. {
  11557. name: "Galactic",
  11558. height: math.unit(40000, "parsecs")
  11559. },
  11560. {
  11561. name: "Universal",
  11562. height: math.unit(1, "yottameter")
  11563. },
  11564. ]
  11565. ))
  11566. characterMakers.push(() => makeCharacter(
  11567. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11568. {
  11569. front: {
  11570. height: math.unit(6, "feet"),
  11571. weight: math.unit(150, "lb"),
  11572. name: "Front",
  11573. image: {
  11574. source: "./media/characters/epifox/front.svg",
  11575. extra: 1,
  11576. bottom: 0.075
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Micro",
  11583. height: math.unit(6, "inches")
  11584. },
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(12, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Macro",
  11592. height: math.unit(3810, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(500, "miles")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(1.8796, "m"),
  11605. weight: math.unit(230, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/colin-t/front.svg",
  11609. extra: 1272 / 1193,
  11610. bottom: 0.07
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Micro",
  11617. height: math.unit(0.571, "meters")
  11618. },
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(1.8796, "meters"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Tall",
  11626. height: math.unit(4, "meters")
  11627. },
  11628. {
  11629. name: "Macro",
  11630. height: math.unit(67.241, "meters")
  11631. },
  11632. {
  11633. name: "Megamacro",
  11634. height: math.unit(371.856, "meters")
  11635. },
  11636. {
  11637. name: "Planetary",
  11638. height: math.unit(12631.5689, "km")
  11639. },
  11640. ]
  11641. ))
  11642. characterMakers.push(() => makeCharacter(
  11643. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11644. {
  11645. front: {
  11646. height: math.unit(1.85, "meters"),
  11647. weight: math.unit(80, "kg"),
  11648. name: "Front",
  11649. image: {
  11650. source: "./media/characters/matvei/front.svg",
  11651. extra: 614 / 594,
  11652. bottom: 0.01
  11653. }
  11654. },
  11655. },
  11656. [
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(1.85, "meters"),
  11660. default: true
  11661. },
  11662. ]
  11663. ))
  11664. characterMakers.push(() => makeCharacter(
  11665. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11666. {
  11667. front: {
  11668. height: math.unit(5 + 9 / 12, "feet"),
  11669. weight: math.unit(70, "lb"),
  11670. name: "Front",
  11671. image: {
  11672. source: "./media/characters/quincy/front.svg",
  11673. extra: 3041 / 2751
  11674. }
  11675. },
  11676. back: {
  11677. height: math.unit(5 + 9 / 12, "feet"),
  11678. weight: math.unit(70, "lb"),
  11679. name: "Back",
  11680. image: {
  11681. source: "./media/characters/quincy/back.svg",
  11682. extra: 3041 / 2751
  11683. }
  11684. },
  11685. flying: {
  11686. height: math.unit(5 + 4 / 12, "feet"),
  11687. weight: math.unit(70, "lb"),
  11688. name: "Flying",
  11689. image: {
  11690. source: "./media/characters/quincy/flying.svg",
  11691. extra: 1044 / 930
  11692. }
  11693. },
  11694. },
  11695. [
  11696. {
  11697. name: "Micro",
  11698. height: math.unit(3, "cm")
  11699. },
  11700. {
  11701. name: "Normal",
  11702. height: math.unit(5 + 9 / 12, "feet")
  11703. },
  11704. {
  11705. name: "Macro",
  11706. height: math.unit(200, "meters"),
  11707. default: true
  11708. },
  11709. {
  11710. name: "Megamacro",
  11711. height: math.unit(1000, "meters")
  11712. },
  11713. ]
  11714. ))
  11715. characterMakers.push(() => makeCharacter(
  11716. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11717. {
  11718. front: {
  11719. height: math.unit(4 + 7 / 12, "feet"),
  11720. weight: math.unit(50, "lb"),
  11721. name: "Front",
  11722. image: {
  11723. source: "./media/characters/vanrel/front.svg",
  11724. extra: 1,
  11725. bottom: 0.02
  11726. }
  11727. },
  11728. frontAlt: {
  11729. height: math.unit(4 + 7 / 12, "feet"),
  11730. weight: math.unit(50, "lb"),
  11731. name: "Front-alt",
  11732. image: {
  11733. source: "./media/characters/vanrel/front-alt.svg",
  11734. extra: 1,
  11735. bottom: 15 / 1511
  11736. }
  11737. },
  11738. elemental: {
  11739. height: math.unit(3, "feet"),
  11740. weight: math.unit(50, "lb"),
  11741. name: "Elemental",
  11742. image: {
  11743. source: "./media/characters/vanrel/elemental.svg",
  11744. extra: 192.3 / 162.8,
  11745. bottom: 1.79 / 194.17
  11746. }
  11747. },
  11748. side: {
  11749. height: math.unit(4 + 7 / 12, "feet"),
  11750. weight: math.unit(50, "lb"),
  11751. name: "Side",
  11752. image: {
  11753. source: "./media/characters/vanrel/side.svg",
  11754. extra: 1,
  11755. bottom: 0.025
  11756. }
  11757. },
  11758. tome: {
  11759. height: math.unit(1.35, "feet"),
  11760. weight: math.unit(10, "lb"),
  11761. name: "Vanrel's Tome",
  11762. rename: true,
  11763. image: {
  11764. source: "./media/characters/vanrel/tome.svg"
  11765. }
  11766. },
  11767. beans: {
  11768. height: math.unit(0.89, "feet"),
  11769. name: "Beans",
  11770. image: {
  11771. source: "./media/characters/vanrel/beans.svg"
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(4 + 7 / 12, "feet"),
  11779. default: true
  11780. },
  11781. ]
  11782. ))
  11783. characterMakers.push(() => makeCharacter(
  11784. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11785. {
  11786. front: {
  11787. height: math.unit(7 + 5 / 12, "feet"),
  11788. weight: math.unit(150, "lb"),
  11789. name: "Front",
  11790. image: {
  11791. source: "./media/characters/kuiper-vanrel/front.svg",
  11792. extra: 1118 / 1068,
  11793. bottom: 0.09
  11794. }
  11795. },
  11796. foot: {
  11797. height: math.unit(0.55, "meters"),
  11798. name: "Foot",
  11799. image: {
  11800. source: "./media/characters/kuiper-vanrel/foot.svg",
  11801. }
  11802. },
  11803. battle: {
  11804. height: math.unit(6.824, "feet"),
  11805. weight: math.unit(150, "lb"),
  11806. name: "Battle",
  11807. image: {
  11808. source: "./media/characters/kuiper-vanrel/battle.svg",
  11809. extra: 1466 / 1327,
  11810. bottom: 29 / 1492.5
  11811. }
  11812. },
  11813. battleAlt: {
  11814. height: math.unit(6.824, "feet"),
  11815. weight: math.unit(150, "lb"),
  11816. name: "Battle (Alt)",
  11817. image: {
  11818. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11819. extra: 2081 / 1965,
  11820. bottom: 40 / 2121
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(7 + 5 / 12, "feet"),
  11828. default: true
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(8 + 5 / 12, "feet"),
  11837. weight: math.unit(150, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/keset-vanrel/front.svg",
  11841. extra: 1150 / 1084,
  11842. bottom: 0.05
  11843. }
  11844. },
  11845. hand: {
  11846. height: math.unit(0.6, "meters"),
  11847. name: "Hand",
  11848. image: {
  11849. source: "./media/characters/keset-vanrel/hand.svg"
  11850. }
  11851. },
  11852. foot: {
  11853. height: math.unit(0.94978, "meters"),
  11854. name: "Foot",
  11855. image: {
  11856. source: "./media/characters/keset-vanrel/foot.svg"
  11857. }
  11858. },
  11859. battle: {
  11860. height: math.unit(7.408, "feet"),
  11861. weight: math.unit(150, "lb"),
  11862. name: "Battle",
  11863. image: {
  11864. source: "./media/characters/keset-vanrel/battle.svg",
  11865. extra: 1890 / 1386,
  11866. bottom: 73.28 / 1970
  11867. }
  11868. },
  11869. },
  11870. [
  11871. {
  11872. name: "Normal",
  11873. height: math.unit(8 + 5 / 12, "feet"),
  11874. default: true
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(6, "feet"),
  11883. weight: math.unit(150, "lb"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/neos/front.svg",
  11887. extra: 1696 / 992,
  11888. bottom: 0.14
  11889. }
  11890. },
  11891. },
  11892. [
  11893. {
  11894. name: "Normal",
  11895. height: math.unit(54, "cm"),
  11896. default: true
  11897. },
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(100, "m")
  11901. },
  11902. {
  11903. name: "Megamacro",
  11904. height: math.unit(10, "km")
  11905. },
  11906. {
  11907. name: "Megamacro+",
  11908. height: math.unit(100, "km")
  11909. },
  11910. {
  11911. name: "Gigamacro",
  11912. height: math.unit(100, "Mm")
  11913. },
  11914. {
  11915. name: "Teramacro",
  11916. height: math.unit(100, "Gm")
  11917. },
  11918. {
  11919. name: "Examacro",
  11920. height: math.unit(100, "Em")
  11921. },
  11922. {
  11923. name: "Godly",
  11924. height: math.unit(10000, "Ym")
  11925. },
  11926. {
  11927. name: "Beyond Godly",
  11928. height: math.unit(25, "multiverses")
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11934. {
  11935. feminine: {
  11936. height: math.unit(5, "feet"),
  11937. weight: math.unit(100, "lb"),
  11938. name: "Feminine",
  11939. image: {
  11940. source: "./media/characters/sammy-mouse/feminine.svg",
  11941. extra: 2526 / 2425,
  11942. bottom: 0.123
  11943. }
  11944. },
  11945. masculine: {
  11946. height: math.unit(5, "feet"),
  11947. weight: math.unit(100, "lb"),
  11948. name: "Masculine",
  11949. image: {
  11950. source: "./media/characters/sammy-mouse/masculine.svg",
  11951. extra: 2526 / 2425,
  11952. bottom: 0.123
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Micro",
  11959. height: math.unit(5, "inches")
  11960. },
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(5, "feet"),
  11964. default: true
  11965. },
  11966. {
  11967. name: "Macro",
  11968. height: math.unit(60, "feet")
  11969. },
  11970. ]
  11971. ))
  11972. characterMakers.push(() => makeCharacter(
  11973. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11974. {
  11975. front: {
  11976. height: math.unit(4, "feet"),
  11977. weight: math.unit(50, "lb"),
  11978. name: "Front",
  11979. image: {
  11980. source: "./media/characters/kole/front.svg",
  11981. extra: 1423 / 1303,
  11982. bottom: 0.025
  11983. }
  11984. },
  11985. back: {
  11986. height: math.unit(4, "feet"),
  11987. weight: math.unit(50, "lb"),
  11988. name: "Back",
  11989. image: {
  11990. source: "./media/characters/kole/back.svg",
  11991. extra: 1426 / 1280,
  11992. bottom: 0.02
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Normal",
  11999. height: math.unit(4, "feet"),
  12000. default: true
  12001. },
  12002. ]
  12003. ))
  12004. characterMakers.push(() => makeCharacter(
  12005. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12006. {
  12007. front: {
  12008. height: math.unit(2 + 6 / 12, "feet"),
  12009. weight: math.unit(20, "lb"),
  12010. name: "Front",
  12011. image: {
  12012. source: "./media/characters/rufran/front.svg",
  12013. extra: 2041 / 1839,
  12014. bottom: 0.055
  12015. }
  12016. },
  12017. back: {
  12018. height: math.unit(2 + 6 / 12, "feet"),
  12019. weight: math.unit(20, "lb"),
  12020. name: "Back",
  12021. image: {
  12022. source: "./media/characters/rufran/back.svg",
  12023. extra: 2054 / 1839,
  12024. bottom: 0.01
  12025. }
  12026. },
  12027. hand: {
  12028. height: math.unit(0.2166, "meters"),
  12029. name: "Hand",
  12030. image: {
  12031. source: "./media/characters/rufran/hand.svg"
  12032. }
  12033. },
  12034. foot: {
  12035. height: math.unit(0.185, "meters"),
  12036. name: "Foot",
  12037. image: {
  12038. source: "./media/characters/rufran/foot.svg"
  12039. }
  12040. },
  12041. },
  12042. [
  12043. {
  12044. name: "Micro",
  12045. height: math.unit(1, "inch")
  12046. },
  12047. {
  12048. name: "Normal",
  12049. height: math.unit(2 + 6 / 12, "feet"),
  12050. default: true
  12051. },
  12052. {
  12053. name: "Big",
  12054. height: math.unit(60, "feet")
  12055. },
  12056. {
  12057. name: "Macro",
  12058. height: math.unit(325, "feet")
  12059. },
  12060. ]
  12061. ))
  12062. characterMakers.push(() => makeCharacter(
  12063. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12064. {
  12065. front: {
  12066. height: math.unit(0.3, "meters"),
  12067. weight: math.unit(3.5, "kg"),
  12068. name: "Front",
  12069. image: {
  12070. source: "./media/characters/chip/front.svg",
  12071. extra: 748 / 674
  12072. }
  12073. },
  12074. },
  12075. [
  12076. {
  12077. name: "Micro",
  12078. height: math.unit(1, "inch"),
  12079. default: true
  12080. },
  12081. ]
  12082. ))
  12083. characterMakers.push(() => makeCharacter(
  12084. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12085. {
  12086. side: {
  12087. height: math.unit(2.3, "meters"),
  12088. weight: math.unit(3500, "lb"),
  12089. name: "Side",
  12090. image: {
  12091. source: "./media/characters/torvid/side.svg",
  12092. extra: 1972 / 722,
  12093. bottom: 0.035
  12094. }
  12095. },
  12096. },
  12097. [
  12098. {
  12099. name: "Normal",
  12100. height: math.unit(2.3, "meters"),
  12101. default: true
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12107. {
  12108. front: {
  12109. height: math.unit(2, "meters"),
  12110. weight: math.unit(150.5, "kg"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/susan/front.svg",
  12114. extra: 693 / 635,
  12115. bottom: 0.05
  12116. }
  12117. },
  12118. },
  12119. [
  12120. {
  12121. name: "Megamacro",
  12122. height: math.unit(505, "miles"),
  12123. default: true
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/raindrops/front.svg",
  12136. extra: 2655 / 2461,
  12137. bottom: 49 / 2705
  12138. }
  12139. },
  12140. back: {
  12141. height: math.unit(6, "feet"),
  12142. weight: math.unit(150, "lb"),
  12143. name: "Back",
  12144. image: {
  12145. source: "./media/characters/raindrops/back.svg",
  12146. extra: 2574 / 2400,
  12147. bottom: 65 / 2634
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Micro",
  12154. height: math.unit(6, "inches")
  12155. },
  12156. {
  12157. name: "Normal",
  12158. height: math.unit(6 + 2 / 12, "feet")
  12159. },
  12160. {
  12161. name: "Macro",
  12162. height: math.unit(131, "feet"),
  12163. default: true
  12164. },
  12165. {
  12166. name: "Megamacro",
  12167. height: math.unit(15, "miles")
  12168. },
  12169. {
  12170. name: "Gigamacro",
  12171. height: math.unit(4000, "miles")
  12172. },
  12173. {
  12174. name: "Teramacro",
  12175. height: math.unit(315000, "miles")
  12176. },
  12177. ]
  12178. ))
  12179. characterMakers.push(() => makeCharacter(
  12180. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12181. {
  12182. front: {
  12183. height: math.unit(2.794, "meters"),
  12184. weight: math.unit(325, "kg"),
  12185. name: "Front",
  12186. image: {
  12187. source: "./media/characters/tezwa/front.svg",
  12188. extra: 2083 / 1906,
  12189. bottom: 0.031
  12190. }
  12191. },
  12192. foot: {
  12193. height: math.unit(0.687, "meters"),
  12194. name: "Foot",
  12195. image: {
  12196. source: "./media/characters/tezwa/foot.svg"
  12197. }
  12198. },
  12199. },
  12200. [
  12201. {
  12202. name: "Normal",
  12203. height: math.unit(9 + 2 / 12, "feet"),
  12204. default: true
  12205. },
  12206. ]
  12207. ))
  12208. characterMakers.push(() => makeCharacter(
  12209. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12210. {
  12211. front: {
  12212. height: math.unit(58, "feet"),
  12213. weight: math.unit(89000, "lb"),
  12214. name: "Front",
  12215. image: {
  12216. source: "./media/characters/typhus/front.svg",
  12217. extra: 816 / 800,
  12218. bottom: 0.065
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Macro",
  12225. height: math.unit(58, "feet"),
  12226. default: true
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(12, "feet"),
  12235. weight: math.unit(6, "tonnes"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/lyra-von-wulf/front.svg",
  12239. extra: 1,
  12240. bottom: 0.10
  12241. }
  12242. },
  12243. frontMecha: {
  12244. height: math.unit(12, "feet"),
  12245. weight: math.unit(12, "tonnes"),
  12246. name: "Front (Mecha)",
  12247. image: {
  12248. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12249. extra: 1,
  12250. bottom: 0.042
  12251. }
  12252. },
  12253. maw: {
  12254. height: math.unit(2.2, "feet"),
  12255. name: "Maw",
  12256. image: {
  12257. source: "./media/characters/lyra-von-wulf/maw.svg"
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Normal",
  12264. height: math.unit(12, "feet"),
  12265. default: true
  12266. },
  12267. {
  12268. name: "Classic",
  12269. height: math.unit(50, "feet")
  12270. },
  12271. {
  12272. name: "Macro",
  12273. height: math.unit(500, "feet")
  12274. },
  12275. {
  12276. name: "Megamacro",
  12277. height: math.unit(1, "mile")
  12278. },
  12279. {
  12280. name: "Gigamacro",
  12281. height: math.unit(400, "miles")
  12282. },
  12283. {
  12284. name: "Teramacro",
  12285. height: math.unit(22000, "miles")
  12286. },
  12287. {
  12288. name: "Solarmacro",
  12289. height: math.unit(8600000, "miles")
  12290. },
  12291. {
  12292. name: "Galactic",
  12293. height: math.unit(1057000, "lightyears")
  12294. },
  12295. ]
  12296. ))
  12297. characterMakers.push(() => makeCharacter(
  12298. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12299. {
  12300. front: {
  12301. height: math.unit(6 + 10 / 12, "feet"),
  12302. weight: math.unit(150, "lb"),
  12303. name: "Front",
  12304. image: {
  12305. source: "./media/characters/dixon/front.svg",
  12306. extra: 3361 / 3209,
  12307. bottom: 0.01
  12308. }
  12309. },
  12310. },
  12311. [
  12312. {
  12313. name: "Normal",
  12314. height: math.unit(6 + 10 / 12, "feet"),
  12315. default: true
  12316. },
  12317. {
  12318. name: "Big",
  12319. height: math.unit(12, "meters")
  12320. },
  12321. {
  12322. name: "Macro",
  12323. height: math.unit(500, "meters")
  12324. },
  12325. {
  12326. name: "Megamacro",
  12327. height: math.unit(2, "km")
  12328. },
  12329. ]
  12330. ))
  12331. characterMakers.push(() => makeCharacter(
  12332. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12333. {
  12334. front: {
  12335. height: math.unit(185, "cm"),
  12336. weight: math.unit(68, "kg"),
  12337. name: "Front",
  12338. image: {
  12339. source: "./media/characters/kauko/front.svg",
  12340. extra: 1455 / 1421,
  12341. bottom: 0.03
  12342. }
  12343. },
  12344. back: {
  12345. height: math.unit(185, "cm"),
  12346. weight: math.unit(68, "kg"),
  12347. name: "Back",
  12348. image: {
  12349. source: "./media/characters/kauko/back.svg",
  12350. extra: 1455 / 1421,
  12351. bottom: 0.004
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Normal",
  12358. height: math.unit(185, "cm"),
  12359. default: true
  12360. },
  12361. ]
  12362. ))
  12363. characterMakers.push(() => makeCharacter(
  12364. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12365. {
  12366. front: {
  12367. height: math.unit(6, "feet"),
  12368. weight: math.unit(150, "kg"),
  12369. name: "Front",
  12370. image: {
  12371. source: "./media/characters/varg/front.svg",
  12372. extra: 1108 / 1018,
  12373. bottom: 0.0375
  12374. }
  12375. },
  12376. },
  12377. [
  12378. {
  12379. name: "Normal",
  12380. height: math.unit(5, "meters")
  12381. },
  12382. {
  12383. name: "Macro",
  12384. height: math.unit(200, "meters")
  12385. },
  12386. {
  12387. name: "Megamacro",
  12388. height: math.unit(20, "kilometers")
  12389. },
  12390. {
  12391. name: "True Size",
  12392. height: math.unit(211, "km"),
  12393. default: true
  12394. },
  12395. {
  12396. name: "Gigamacro",
  12397. height: math.unit(1000, "km")
  12398. },
  12399. {
  12400. name: "Gigamacro+",
  12401. height: math.unit(8000, "km")
  12402. },
  12403. {
  12404. name: "Teramacro",
  12405. height: math.unit(1000000, "km")
  12406. },
  12407. ]
  12408. ))
  12409. characterMakers.push(() => makeCharacter(
  12410. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12411. {
  12412. front: {
  12413. height: math.unit(7 + 7 / 12, "feet"),
  12414. weight: math.unit(267, "lb"),
  12415. name: "Front",
  12416. image: {
  12417. source: "./media/characters/dayza/front.svg",
  12418. extra: 1262 / 1200,
  12419. bottom: 0.035
  12420. }
  12421. },
  12422. side: {
  12423. height: math.unit(7 + 7 / 12, "feet"),
  12424. weight: math.unit(267, "lb"),
  12425. name: "Side",
  12426. image: {
  12427. source: "./media/characters/dayza/side.svg",
  12428. extra: 1295 / 1245,
  12429. bottom: 0.05
  12430. }
  12431. },
  12432. back: {
  12433. height: math.unit(7 + 7 / 12, "feet"),
  12434. weight: math.unit(267, "lb"),
  12435. name: "Back",
  12436. image: {
  12437. source: "./media/characters/dayza/back.svg",
  12438. extra: 1241 / 1170
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Normal",
  12445. height: math.unit(7 + 7 / 12, "feet"),
  12446. default: true
  12447. },
  12448. {
  12449. name: "Macro",
  12450. height: math.unit(155, "feet")
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12456. {
  12457. front: {
  12458. height: math.unit(6 + 5 / 12, "feet"),
  12459. weight: math.unit(160, "lb"),
  12460. name: "Front",
  12461. image: {
  12462. source: "./media/characters/xanthos/front.svg",
  12463. extra: 1,
  12464. bottom: 0.04
  12465. }
  12466. },
  12467. back: {
  12468. height: math.unit(6 + 5 / 12, "feet"),
  12469. weight: math.unit(160, "lb"),
  12470. name: "Back",
  12471. image: {
  12472. source: "./media/characters/xanthos/back.svg",
  12473. extra: 1,
  12474. bottom: 0.03
  12475. }
  12476. },
  12477. hand: {
  12478. height: math.unit(0.928, "feet"),
  12479. name: "Hand",
  12480. image: {
  12481. source: "./media/characters/xanthos/hand.svg"
  12482. }
  12483. },
  12484. foot: {
  12485. height: math.unit(1.286, "feet"),
  12486. name: "Foot",
  12487. image: {
  12488. source: "./media/characters/xanthos/foot.svg"
  12489. }
  12490. },
  12491. },
  12492. [
  12493. {
  12494. name: "Normal",
  12495. height: math.unit(6 + 5 / 12, "feet"),
  12496. default: true
  12497. },
  12498. {
  12499. name: "Normal+",
  12500. height: math.unit(6, "meters")
  12501. },
  12502. {
  12503. name: "Macro",
  12504. height: math.unit(40, "feet")
  12505. },
  12506. {
  12507. name: "Macro+",
  12508. height: math.unit(200, "meters")
  12509. },
  12510. {
  12511. name: "Megamacro",
  12512. height: math.unit(20, "km")
  12513. },
  12514. {
  12515. name: "Megamacro+",
  12516. height: math.unit(100, "km")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(6 + 3 / 12, "feet"),
  12525. weight: math.unit(215, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/grynn/front.svg",
  12529. extra: 4627 / 4209,
  12530. bottom: 0.047
  12531. }
  12532. },
  12533. },
  12534. [
  12535. {
  12536. name: "Micro",
  12537. height: math.unit(6, "inches")
  12538. },
  12539. {
  12540. name: "Normal",
  12541. height: math.unit(6 + 3 / 12, "feet"),
  12542. default: true
  12543. },
  12544. {
  12545. name: "Big",
  12546. height: math.unit(104, "feet")
  12547. },
  12548. {
  12549. name: "Macro",
  12550. height: math.unit(944, "feet")
  12551. },
  12552. {
  12553. name: "Macro+",
  12554. height: math.unit(9480, "feet")
  12555. },
  12556. {
  12557. name: "Megamacro",
  12558. height: math.unit(78752, "feet")
  12559. },
  12560. {
  12561. name: "Megamacro+",
  12562. height: math.unit(630128, "feet")
  12563. },
  12564. {
  12565. name: "Megamacro++",
  12566. height: math.unit(3150695, "feet")
  12567. },
  12568. ]
  12569. ))
  12570. characterMakers.push(() => makeCharacter(
  12571. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12572. {
  12573. front: {
  12574. height: math.unit(7 + 5 / 12, "feet"),
  12575. weight: math.unit(450, "lb"),
  12576. name: "Front",
  12577. image: {
  12578. source: "./media/characters/mocha-aura/front.svg",
  12579. extra: 1907 / 1817,
  12580. bottom: 0.04
  12581. }
  12582. },
  12583. back: {
  12584. height: math.unit(7 + 5 / 12, "feet"),
  12585. weight: math.unit(450, "lb"),
  12586. name: "Back",
  12587. image: {
  12588. source: "./media/characters/mocha-aura/back.svg",
  12589. extra: 1900 / 1825,
  12590. bottom: 0.045
  12591. }
  12592. },
  12593. },
  12594. [
  12595. {
  12596. name: "Nano",
  12597. height: math.unit(1, "nm")
  12598. },
  12599. {
  12600. name: "Megamicro",
  12601. height: math.unit(1, "mm")
  12602. },
  12603. {
  12604. name: "Micro",
  12605. height: math.unit(3, "inches")
  12606. },
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(7 + 5 / 12, "feet"),
  12610. default: true
  12611. },
  12612. {
  12613. name: "Macro",
  12614. height: math.unit(30, "feet")
  12615. },
  12616. {
  12617. name: "Megamacro",
  12618. height: math.unit(3500, "feet")
  12619. },
  12620. {
  12621. name: "Teramacro",
  12622. height: math.unit(500000, "miles")
  12623. },
  12624. {
  12625. name: "Petamacro",
  12626. height: math.unit(50000000000000000, "parsecs")
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(6, "feet"),
  12635. weight: math.unit(150, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/ilisha-devya/front.svg",
  12639. extra: 1,
  12640. bottom: 0.175
  12641. }
  12642. },
  12643. back: {
  12644. height: math.unit(6, "feet"),
  12645. weight: math.unit(150, "lb"),
  12646. name: "Back",
  12647. image: {
  12648. source: "./media/characters/ilisha-devya/back.svg",
  12649. extra: 1,
  12650. bottom: 0.015
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Macro",
  12657. height: math.unit(500, "feet"),
  12658. default: true
  12659. },
  12660. {
  12661. name: "Megamacro",
  12662. height: math.unit(10, "miles")
  12663. },
  12664. {
  12665. name: "Gigamacro",
  12666. height: math.unit(100000, "miles")
  12667. },
  12668. {
  12669. name: "Examacro",
  12670. height: math.unit(1e9, "lightyears")
  12671. },
  12672. {
  12673. name: "Omniversal",
  12674. height: math.unit(1e33, "lightyears")
  12675. },
  12676. {
  12677. name: "Beyond Infinite",
  12678. height: math.unit(1e100, "lightyears")
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12684. {
  12685. Side: {
  12686. height: math.unit(6, "feet"),
  12687. weight: math.unit(150, "lb"),
  12688. name: "Side",
  12689. image: {
  12690. source: "./media/characters/mira/side.svg",
  12691. extra: 900 / 799,
  12692. bottom: 0.02
  12693. }
  12694. },
  12695. },
  12696. [
  12697. {
  12698. name: "Human Size",
  12699. height: math.unit(6, "feet")
  12700. },
  12701. {
  12702. name: "Macro",
  12703. height: math.unit(100, "feet"),
  12704. default: true
  12705. },
  12706. {
  12707. name: "Megamacro",
  12708. height: math.unit(10, "miles")
  12709. },
  12710. {
  12711. name: "Gigamacro",
  12712. height: math.unit(25000, "miles")
  12713. },
  12714. {
  12715. name: "Teramacro",
  12716. height: math.unit(300, "AU")
  12717. },
  12718. {
  12719. name: "Full Size",
  12720. height: math.unit(4.5e10, "lightyears")
  12721. },
  12722. ]
  12723. ))
  12724. characterMakers.push(() => makeCharacter(
  12725. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12726. {
  12727. front: {
  12728. height: math.unit(6, "feet"),
  12729. weight: math.unit(150, "lb"),
  12730. name: "Front",
  12731. image: {
  12732. source: "./media/characters/holly/front.svg",
  12733. extra: 639 / 606
  12734. }
  12735. },
  12736. back: {
  12737. height: math.unit(6, "feet"),
  12738. weight: math.unit(150, "lb"),
  12739. name: "Back",
  12740. image: {
  12741. source: "./media/characters/holly/back.svg",
  12742. extra: 623 / 598
  12743. }
  12744. },
  12745. frontWorking: {
  12746. height: math.unit(6, "feet"),
  12747. weight: math.unit(150, "lb"),
  12748. name: "Front (Working)",
  12749. image: {
  12750. source: "./media/characters/holly/front-working.svg",
  12751. extra: 607 / 577,
  12752. bottom: 0.048
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Normal",
  12759. height: math.unit(12 + 3 / 12, "feet"),
  12760. default: true
  12761. },
  12762. ]
  12763. ))
  12764. characterMakers.push(() => makeCharacter(
  12765. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12766. {
  12767. front: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(150, "lb"),
  12770. name: "Front",
  12771. image: {
  12772. source: "./media/characters/porter/front.svg",
  12773. extra: 1,
  12774. bottom: 0.01
  12775. }
  12776. },
  12777. frontRobes: {
  12778. height: math.unit(6, "feet"),
  12779. weight: math.unit(150, "lb"),
  12780. name: "Front (Robes)",
  12781. image: {
  12782. source: "./media/characters/porter/front-robes.svg",
  12783. extra: 1.01,
  12784. bottom: 0.01
  12785. }
  12786. },
  12787. },
  12788. [
  12789. {
  12790. name: "Normal",
  12791. height: math.unit(11 + 9 / 12, "feet"),
  12792. default: true
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12798. {
  12799. legendary: {
  12800. height: math.unit(6, "feet"),
  12801. weight: math.unit(150, "lb"),
  12802. name: "Legendary",
  12803. image: {
  12804. source: "./media/characters/lucy/legendary.svg",
  12805. extra: 1355 / 1100,
  12806. bottom: 0.045
  12807. }
  12808. },
  12809. },
  12810. [
  12811. {
  12812. name: "Legendary",
  12813. height: math.unit(86882 * 2, "miles"),
  12814. default: true
  12815. },
  12816. ]
  12817. ))
  12818. characterMakers.push(() => makeCharacter(
  12819. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12820. {
  12821. front: {
  12822. height: math.unit(6, "feet"),
  12823. weight: math.unit(150, "lb"),
  12824. name: "Front",
  12825. image: {
  12826. source: "./media/characters/drusilla/front.svg",
  12827. extra: 678 / 635,
  12828. bottom: 0.03
  12829. }
  12830. },
  12831. back: {
  12832. height: math.unit(6, "feet"),
  12833. weight: math.unit(150, "lb"),
  12834. name: "Back",
  12835. image: {
  12836. source: "./media/characters/drusilla/back.svg",
  12837. extra: 678 / 635,
  12838. bottom: 0.005
  12839. }
  12840. },
  12841. },
  12842. [
  12843. {
  12844. name: "Macro",
  12845. height: math.unit(100, "feet")
  12846. },
  12847. {
  12848. name: "Canon Height",
  12849. height: math.unit(2000, "feet"),
  12850. default: true
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(6, "feet"),
  12859. weight: math.unit(180, "lb"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/renard-thatch/front.svg",
  12863. extra: 2411 / 2275,
  12864. bottom: 0.01
  12865. }
  12866. },
  12867. frontPosing: {
  12868. height: math.unit(6, "feet"),
  12869. weight: math.unit(180, "lb"),
  12870. name: "Front (Posing)",
  12871. image: {
  12872. source: "./media/characters/renard-thatch/front-posing.svg",
  12873. extra: 2381 / 2261,
  12874. bottom: 0.01
  12875. }
  12876. },
  12877. back: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(180, "lb"),
  12880. name: "Back",
  12881. image: {
  12882. source: "./media/characters/renard-thatch/back.svg",
  12883. extra: 2428 / 2288
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Micro",
  12890. height: math.unit(3, "inches")
  12891. },
  12892. {
  12893. name: "Default",
  12894. height: math.unit(6, "feet"),
  12895. default: true
  12896. },
  12897. {
  12898. name: "Macro",
  12899. height: math.unit(75, "feet")
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12905. {
  12906. front: {
  12907. height: math.unit(1450, "feet"),
  12908. weight: math.unit(1.21e6, "tons"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/sekvra/front.svg",
  12912. extra: 1,
  12913. bottom: 0.03
  12914. }
  12915. },
  12916. frontClothed: {
  12917. height: math.unit(1450, "feet"),
  12918. weight: math.unit(1.21e6, "tons"),
  12919. name: "Front (Clothed)",
  12920. image: {
  12921. source: "./media/characters/sekvra/front-clothed.svg",
  12922. extra: 1,
  12923. bottom: 0.03
  12924. }
  12925. },
  12926. side: {
  12927. height: math.unit(1450, "feet"),
  12928. weight: math.unit(1.21e6, "tons"),
  12929. name: "Side",
  12930. image: {
  12931. source: "./media/characters/sekvra/side.svg",
  12932. extra: 1,
  12933. bottom: 0.025
  12934. }
  12935. },
  12936. back: {
  12937. height: math.unit(1450, "feet"),
  12938. weight: math.unit(1.21e6, "tons"),
  12939. name: "Back",
  12940. image: {
  12941. source: "./media/characters/sekvra/back.svg",
  12942. extra: 1,
  12943. bottom: 0.005
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Macro",
  12950. height: math.unit(1450, "feet"),
  12951. default: true
  12952. },
  12953. {
  12954. name: "Megamacro",
  12955. height: math.unit(15000, "feet")
  12956. },
  12957. ]
  12958. ))
  12959. characterMakers.push(() => makeCharacter(
  12960. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12961. {
  12962. front: {
  12963. height: math.unit(6, "feet"),
  12964. weight: math.unit(150, "lb"),
  12965. name: "Front",
  12966. image: {
  12967. source: "./media/characters/carmine/front.svg",
  12968. extra: 1,
  12969. bottom: 0.035
  12970. }
  12971. },
  12972. frontArmor: {
  12973. height: math.unit(6, "feet"),
  12974. weight: math.unit(150, "lb"),
  12975. name: "Front (Armor)",
  12976. image: {
  12977. source: "./media/characters/carmine/front-armor.svg",
  12978. extra: 1,
  12979. bottom: 0.035
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Large",
  12986. height: math.unit(1, "mile")
  12987. },
  12988. {
  12989. name: "Huge",
  12990. height: math.unit(40, "miles"),
  12991. default: true
  12992. },
  12993. {
  12994. name: "Colossal",
  12995. height: math.unit(2500, "miles")
  12996. },
  12997. ]
  12998. ))
  12999. characterMakers.push(() => makeCharacter(
  13000. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13001. {
  13002. front: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Front",
  13006. image: {
  13007. source: "./media/characters/elyssia/front.svg",
  13008. extra: 2201 / 2035,
  13009. bottom: 0.05
  13010. }
  13011. },
  13012. frontClothed: {
  13013. height: math.unit(6, "feet"),
  13014. weight: math.unit(150, "lb"),
  13015. name: "Front (Clothed)",
  13016. image: {
  13017. source: "./media/characters/elyssia/front-clothed.svg",
  13018. extra: 2201 / 2035,
  13019. bottom: 0.05
  13020. }
  13021. },
  13022. back: {
  13023. height: math.unit(6, "feet"),
  13024. weight: math.unit(150, "lb"),
  13025. name: "Back",
  13026. image: {
  13027. source: "./media/characters/elyssia/back.svg",
  13028. extra: 2201 / 2035,
  13029. bottom: 0.013
  13030. }
  13031. },
  13032. },
  13033. [
  13034. {
  13035. name: "Smaller",
  13036. height: math.unit(150, "feet")
  13037. },
  13038. {
  13039. name: "Standard",
  13040. height: math.unit(1400, "feet"),
  13041. default: true
  13042. },
  13043. {
  13044. name: "Distracted",
  13045. height: math.unit(15000, "feet")
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(7 + 4 / 12, "feet"),
  13054. weight: math.unit(500, "lb"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/geno-maxwell/front.svg",
  13058. extra: 2207 / 2040,
  13059. bottom: 0.015
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Micro",
  13066. height: math.unit(3, "inches")
  13067. },
  13068. {
  13069. name: "Normal",
  13070. height: math.unit(7 + 4 / 12, "feet"),
  13071. default: true
  13072. },
  13073. {
  13074. name: "Macro",
  13075. height: math.unit(220, "feet")
  13076. },
  13077. {
  13078. name: "Megamacro",
  13079. height: math.unit(11, "miles")
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13085. {
  13086. front: {
  13087. height: math.unit(7 + 4 / 12, "feet"),
  13088. weight: math.unit(500, "lb"),
  13089. name: "Front",
  13090. image: {
  13091. source: "./media/characters/regena-maxwell/front.svg",
  13092. extra: 3115 / 2770,
  13093. bottom: 0.02
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(7 + 4 / 12, "feet"),
  13101. default: true
  13102. },
  13103. {
  13104. name: "Macro",
  13105. height: math.unit(220, "feet")
  13106. },
  13107. {
  13108. name: "Megamacro",
  13109. height: math.unit(11, "miles")
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(6, "feet"),
  13118. weight: math.unit(150, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13122. extra: 860 / 690,
  13123. bottom: 0.03
  13124. }
  13125. },
  13126. },
  13127. [
  13128. {
  13129. name: "Normal",
  13130. height: math.unit(1.7, "meters"),
  13131. default: true
  13132. },
  13133. ]
  13134. ))
  13135. characterMakers.push(() => makeCharacter(
  13136. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13137. {
  13138. front: {
  13139. height: math.unit(6, "feet"),
  13140. weight: math.unit(150, "lb"),
  13141. name: "Front",
  13142. image: {
  13143. source: "./media/characters/quilly/front.svg",
  13144. extra: 890 / 776
  13145. }
  13146. },
  13147. },
  13148. [
  13149. {
  13150. name: "Gigamacro",
  13151. height: math.unit(404090, "miles"),
  13152. default: true
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13158. {
  13159. front: {
  13160. height: math.unit(7 + 8 / 12, "feet"),
  13161. weight: math.unit(350, "lb"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/tempest/front.svg",
  13165. extra: 1175 / 1086,
  13166. bottom: 0.02
  13167. }
  13168. },
  13169. },
  13170. [
  13171. {
  13172. name: "Normal",
  13173. height: math.unit(7 + 8 / 12, "feet"),
  13174. default: true
  13175. },
  13176. ]
  13177. ))
  13178. characterMakers.push(() => makeCharacter(
  13179. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13180. {
  13181. side: {
  13182. height: math.unit(4 + 5 / 12, "feet"),
  13183. weight: math.unit(80, "lb"),
  13184. name: "Side",
  13185. image: {
  13186. source: "./media/characters/rodger/side.svg",
  13187. extra: 1235 / 1118
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Micro",
  13194. height: math.unit(1, "inch")
  13195. },
  13196. {
  13197. name: "Normal",
  13198. height: math.unit(4 + 5 / 12, "feet"),
  13199. default: true
  13200. },
  13201. {
  13202. name: "Macro",
  13203. height: math.unit(120, "feet")
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13209. {
  13210. front: {
  13211. height: math.unit(6, "feet"),
  13212. weight: math.unit(150, "lb"),
  13213. name: "Front",
  13214. image: {
  13215. source: "./media/characters/danyel/front.svg",
  13216. extra: 1185 / 1123,
  13217. bottom: 0.05
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Shrunken",
  13224. height: math.unit(0.5, "mm")
  13225. },
  13226. {
  13227. name: "Micro",
  13228. height: math.unit(1, "mm"),
  13229. default: true
  13230. },
  13231. {
  13232. name: "Upsized",
  13233. height: math.unit(5 + 5 / 12, "feet")
  13234. },
  13235. ]
  13236. ))
  13237. characterMakers.push(() => makeCharacter(
  13238. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13239. {
  13240. front: {
  13241. height: math.unit(5 + 6 / 12, "feet"),
  13242. weight: math.unit(200, "lb"),
  13243. name: "Front",
  13244. image: {
  13245. source: "./media/characters/vivian-bijoux/front.svg",
  13246. extra: 1,
  13247. bottom: 0.072
  13248. }
  13249. },
  13250. },
  13251. [
  13252. {
  13253. name: "Normal",
  13254. height: math.unit(5 + 6 / 12, "feet"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Bad Dream",
  13259. height: math.unit(500, "feet")
  13260. },
  13261. {
  13262. name: "Nightmare",
  13263. height: math.unit(500, "miles")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(6 + 1 / 12, "feet"),
  13272. weight: math.unit(260, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/zeta/front.svg",
  13276. extra: 1968 / 1889,
  13277. bottom: 0.06
  13278. }
  13279. },
  13280. back: {
  13281. height: math.unit(6 + 1 / 12, "feet"),
  13282. weight: math.unit(260, "lb"),
  13283. name: "Back",
  13284. image: {
  13285. source: "./media/characters/zeta/back.svg",
  13286. extra: 1944 / 1858,
  13287. bottom: 0.03
  13288. }
  13289. },
  13290. hand: {
  13291. height: math.unit(1.112, "feet"),
  13292. name: "Hand",
  13293. image: {
  13294. source: "./media/characters/zeta/hand.svg"
  13295. }
  13296. },
  13297. foot: {
  13298. height: math.unit(1.48, "feet"),
  13299. name: "Foot",
  13300. image: {
  13301. source: "./media/characters/zeta/foot.svg"
  13302. }
  13303. },
  13304. },
  13305. [
  13306. {
  13307. name: "Micro",
  13308. height: math.unit(6, "inches")
  13309. },
  13310. {
  13311. name: "Normal",
  13312. height: math.unit(6 + 1 / 12, "feet"),
  13313. default: true
  13314. },
  13315. {
  13316. name: "Macro",
  13317. height: math.unit(20, "feet")
  13318. },
  13319. ]
  13320. ))
  13321. characterMakers.push(() => makeCharacter(
  13322. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13323. {
  13324. front: {
  13325. height: math.unit(6, "feet"),
  13326. weight: math.unit(150, "lb"),
  13327. name: "Front",
  13328. image: {
  13329. source: "./media/characters/jamie-larsen/front.svg",
  13330. extra: 962 / 933,
  13331. bottom: 0.02
  13332. }
  13333. },
  13334. back: {
  13335. height: math.unit(6, "feet"),
  13336. weight: math.unit(150, "lb"),
  13337. name: "Back",
  13338. image: {
  13339. source: "./media/characters/jamie-larsen/back.svg",
  13340. extra: 997 / 946
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(28 + 7 / 12, "feet"),
  13348. default: true
  13349. },
  13350. {
  13351. name: "Macro+",
  13352. height: math.unit(180, "feet")
  13353. },
  13354. {
  13355. name: "Megamacro",
  13356. height: math.unit(10, "miles")
  13357. },
  13358. {
  13359. name: "Gigamacro",
  13360. height: math.unit(200000, "miles")
  13361. },
  13362. ]
  13363. ))
  13364. characterMakers.push(() => makeCharacter(
  13365. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13366. {
  13367. front: {
  13368. height: math.unit(6, "feet"),
  13369. weight: math.unit(120, "lb"),
  13370. name: "Front",
  13371. image: {
  13372. source: "./media/characters/vance/front.svg",
  13373. extra: 1980 / 1890,
  13374. bottom: 0.09
  13375. }
  13376. },
  13377. back: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(120, "lb"),
  13380. name: "Back",
  13381. image: {
  13382. source: "./media/characters/vance/back.svg",
  13383. extra: 2081 / 1994,
  13384. bottom: 0.014
  13385. }
  13386. },
  13387. hand: {
  13388. height: math.unit(0.88, "feet"),
  13389. name: "Hand",
  13390. image: {
  13391. source: "./media/characters/vance/hand.svg"
  13392. }
  13393. },
  13394. foot: {
  13395. height: math.unit(0.64, "feet"),
  13396. name: "Foot",
  13397. image: {
  13398. source: "./media/characters/vance/foot.svg"
  13399. }
  13400. },
  13401. },
  13402. [
  13403. {
  13404. name: "Small",
  13405. height: math.unit(90, "feet"),
  13406. default: true
  13407. },
  13408. {
  13409. name: "Macro",
  13410. height: math.unit(100, "meters")
  13411. },
  13412. {
  13413. name: "Megamacro",
  13414. height: math.unit(15, "miles")
  13415. },
  13416. ]
  13417. ))
  13418. characterMakers.push(() => makeCharacter(
  13419. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13420. {
  13421. front: {
  13422. height: math.unit(6, "feet"),
  13423. weight: math.unit(180, "lb"),
  13424. name: "Front",
  13425. image: {
  13426. source: "./media/characters/xochitl/front.svg",
  13427. extra: 2297 / 2261,
  13428. bottom: 0.065
  13429. }
  13430. },
  13431. back: {
  13432. height: math.unit(6, "feet"),
  13433. weight: math.unit(180, "lb"),
  13434. name: "Back",
  13435. image: {
  13436. source: "./media/characters/xochitl/back.svg",
  13437. extra: 2386 / 2354,
  13438. bottom: 0.01
  13439. }
  13440. },
  13441. foot: {
  13442. height: math.unit(6 / 5 * 1.15, "feet"),
  13443. weight: math.unit(150, "lb"),
  13444. name: "Foot",
  13445. image: {
  13446. source: "./media/characters/xochitl/foot.svg"
  13447. }
  13448. },
  13449. },
  13450. [
  13451. {
  13452. name: "Macro",
  13453. height: math.unit(80, "feet")
  13454. },
  13455. {
  13456. name: "Macro+",
  13457. height: math.unit(400, "feet"),
  13458. default: true
  13459. },
  13460. {
  13461. name: "Gigamacro",
  13462. height: math.unit(80000, "miles")
  13463. },
  13464. {
  13465. name: "Gigamacro+",
  13466. height: math.unit(400000, "miles")
  13467. },
  13468. {
  13469. name: "Teramacro",
  13470. height: math.unit(300, "AU")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(150, "lb"),
  13480. name: "Front",
  13481. image: {
  13482. source: "./media/characters/vincent/front.svg",
  13483. extra: 1130 / 1080,
  13484. bottom: 0.055
  13485. }
  13486. },
  13487. beak: {
  13488. height: math.unit(6 * 0.1, "feet"),
  13489. name: "Beak",
  13490. image: {
  13491. source: "./media/characters/vincent/beak.svg"
  13492. }
  13493. },
  13494. hand: {
  13495. height: math.unit(6 * 0.85, "feet"),
  13496. weight: math.unit(150, "lb"),
  13497. name: "Hand",
  13498. image: {
  13499. source: "./media/characters/vincent/hand.svg"
  13500. }
  13501. },
  13502. foot: {
  13503. height: math.unit(6 * 0.19, "feet"),
  13504. weight: math.unit(150, "lb"),
  13505. name: "Foot",
  13506. image: {
  13507. source: "./media/characters/vincent/foot.svg"
  13508. }
  13509. },
  13510. },
  13511. [
  13512. {
  13513. name: "Base",
  13514. height: math.unit(6 + 5 / 12, "feet"),
  13515. default: true
  13516. },
  13517. {
  13518. name: "Macro",
  13519. height: math.unit(300, "feet")
  13520. },
  13521. {
  13522. name: "Megamacro",
  13523. height: math.unit(2, "miles")
  13524. },
  13525. {
  13526. name: "Gigamacro",
  13527. height: math.unit(1000, "miles")
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13533. {
  13534. front: {
  13535. height: math.unit(2, "meters"),
  13536. weight: math.unit(500, "kg"),
  13537. name: "Front",
  13538. image: {
  13539. source: "./media/characters/coatl/front.svg",
  13540. extra: 3948 / 3500,
  13541. bottom: 0.082
  13542. }
  13543. },
  13544. },
  13545. [
  13546. {
  13547. name: "Normal",
  13548. height: math.unit(4, "meters")
  13549. },
  13550. {
  13551. name: "Macro",
  13552. height: math.unit(100, "meters"),
  13553. default: true
  13554. },
  13555. {
  13556. name: "Macro+",
  13557. height: math.unit(300, "meters")
  13558. },
  13559. {
  13560. name: "Megamacro",
  13561. height: math.unit(3, "gigameters")
  13562. },
  13563. {
  13564. name: "Megamacro+",
  13565. height: math.unit(300, "terameters")
  13566. },
  13567. {
  13568. name: "Megamacro++",
  13569. height: math.unit(3, "lightyears")
  13570. },
  13571. ]
  13572. ))
  13573. characterMakers.push(() => makeCharacter(
  13574. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13575. {
  13576. front: {
  13577. height: math.unit(6, "feet"),
  13578. weight: math.unit(50, "kg"),
  13579. name: "front",
  13580. image: {
  13581. source: "./media/characters/shiroryu/front.svg",
  13582. extra: 1990 / 1935
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Mortal Mingling",
  13589. height: math.unit(3, "meters")
  13590. },
  13591. {
  13592. name: "Kaiju-ish",
  13593. height: math.unit(250, "meters")
  13594. },
  13595. {
  13596. name: "Somewhat Godly",
  13597. height: math.unit(400, "km"),
  13598. default: true
  13599. },
  13600. {
  13601. name: "Planetary",
  13602. height: math.unit(300, "megameters")
  13603. },
  13604. {
  13605. name: "Galaxy-dwarfing",
  13606. height: math.unit(450, "kiloparsecs")
  13607. },
  13608. {
  13609. name: "Universe Eater",
  13610. height: math.unit(150, "gigaparsecs")
  13611. },
  13612. {
  13613. name: "Almost Immeasurable",
  13614. height: math.unit(1.3e266, "yottaparsecs")
  13615. },
  13616. ]
  13617. ))
  13618. characterMakers.push(() => makeCharacter(
  13619. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13620. {
  13621. front: {
  13622. height: math.unit(6, "feet"),
  13623. weight: math.unit(150, "lb"),
  13624. name: "Front",
  13625. image: {
  13626. source: "./media/characters/umeko/front.svg",
  13627. extra: 1,
  13628. bottom: 0.019
  13629. }
  13630. },
  13631. frontArmored: {
  13632. height: math.unit(6, "feet"),
  13633. weight: math.unit(150, "lb"),
  13634. name: "Front (Armored)",
  13635. image: {
  13636. source: "./media/characters/umeko/front-armored.svg",
  13637. extra: 1,
  13638. bottom: 0.021
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Macro",
  13645. height: math.unit(220, "feet"),
  13646. default: true
  13647. },
  13648. {
  13649. name: "Guardian Dragon",
  13650. height: math.unit(50, "miles")
  13651. },
  13652. {
  13653. name: "Cosmic",
  13654. height: math.unit(800000, "miles")
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13660. {
  13661. front: {
  13662. height: math.unit(6, "feet"),
  13663. weight: math.unit(150, "lb"),
  13664. name: "Front",
  13665. image: {
  13666. source: "./media/characters/cassidy/front.svg",
  13667. extra: 1,
  13668. bottom: 0.043
  13669. }
  13670. },
  13671. },
  13672. [
  13673. {
  13674. name: "Canon Height",
  13675. height: math.unit(120, "feet"),
  13676. default: true
  13677. },
  13678. {
  13679. name: "Macro+",
  13680. height: math.unit(400, "feet")
  13681. },
  13682. {
  13683. name: "Macro++",
  13684. height: math.unit(4000, "feet")
  13685. },
  13686. {
  13687. name: "Megamacro",
  13688. height: math.unit(3, "miles")
  13689. },
  13690. ]
  13691. ))
  13692. characterMakers.push(() => makeCharacter(
  13693. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13694. {
  13695. front: {
  13696. height: math.unit(6, "feet"),
  13697. weight: math.unit(150, "lb"),
  13698. name: "Front",
  13699. image: {
  13700. source: "./media/characters/isaac/front.svg",
  13701. extra: 896 / 815,
  13702. bottom: 0.11
  13703. }
  13704. },
  13705. },
  13706. [
  13707. {
  13708. name: "Human Size",
  13709. height: math.unit(8, "feet"),
  13710. default: true
  13711. },
  13712. {
  13713. name: "Macro",
  13714. height: math.unit(400, "feet")
  13715. },
  13716. {
  13717. name: "Megamacro",
  13718. height: math.unit(50, "miles")
  13719. },
  13720. {
  13721. name: "Canon Height",
  13722. height: math.unit(200, "AU")
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13728. {
  13729. front: {
  13730. height: math.unit(6, "feet"),
  13731. weight: math.unit(72, "kg"),
  13732. name: "Front",
  13733. image: {
  13734. source: "./media/characters/sleekit/front.svg",
  13735. extra: 4693 / 4487,
  13736. bottom: 0.012
  13737. }
  13738. },
  13739. },
  13740. [
  13741. {
  13742. name: "Minimum Height",
  13743. height: math.unit(10, "meters")
  13744. },
  13745. {
  13746. name: "Smaller",
  13747. height: math.unit(25, "meters")
  13748. },
  13749. {
  13750. name: "Larger",
  13751. height: math.unit(38, "meters"),
  13752. default: true
  13753. },
  13754. {
  13755. name: "Maximum height",
  13756. height: math.unit(100, "meters")
  13757. },
  13758. ]
  13759. ))
  13760. characterMakers.push(() => makeCharacter(
  13761. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13762. {
  13763. front: {
  13764. height: math.unit(6, "feet"),
  13765. weight: math.unit(150, "lb"),
  13766. name: "Front",
  13767. image: {
  13768. source: "./media/characters/nillia/front.svg",
  13769. extra: 2195 / 2037,
  13770. bottom: 0.005
  13771. }
  13772. },
  13773. back: {
  13774. height: math.unit(6, "feet"),
  13775. weight: math.unit(150, "lb"),
  13776. name: "Back",
  13777. image: {
  13778. source: "./media/characters/nillia/back.svg",
  13779. extra: 2195 / 2037,
  13780. bottom: 0.005
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Canon Height",
  13787. height: math.unit(489, "feet"),
  13788. default: true
  13789. }
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13794. {
  13795. front: {
  13796. height: math.unit(6, "feet"),
  13797. weight: math.unit(150, "lb"),
  13798. name: "Front",
  13799. image: {
  13800. source: "./media/characters/mesmyriza/front.svg",
  13801. extra: 2067 / 1784,
  13802. bottom: 0.035
  13803. }
  13804. },
  13805. foot: {
  13806. height: math.unit(6 / (250 / 35), "feet"),
  13807. name: "Foot",
  13808. image: {
  13809. source: "./media/characters/mesmyriza/foot.svg"
  13810. }
  13811. },
  13812. },
  13813. [
  13814. {
  13815. name: "Macro",
  13816. height: math.unit(457, "meters"),
  13817. default: true
  13818. },
  13819. {
  13820. name: "Megamacro",
  13821. height: math.unit(8, "megameters")
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13827. {
  13828. front: {
  13829. height: math.unit(6, "feet"),
  13830. weight: math.unit(250, "lb"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/saudade/front.svg",
  13834. extra: 1172 / 1139,
  13835. bottom: 0.035
  13836. }
  13837. },
  13838. },
  13839. [
  13840. {
  13841. name: "Micro",
  13842. height: math.unit(3, "inches")
  13843. },
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(6, "feet"),
  13847. default: true
  13848. },
  13849. {
  13850. name: "Macro",
  13851. height: math.unit(50, "feet")
  13852. },
  13853. {
  13854. name: "Megamacro",
  13855. height: math.unit(2800, "feet")
  13856. },
  13857. ]
  13858. ))
  13859. characterMakers.push(() => makeCharacter(
  13860. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13861. {
  13862. front: {
  13863. height: math.unit(5 + 4 / 12, "feet"),
  13864. weight: math.unit(100, "lb"),
  13865. name: "Front",
  13866. image: {
  13867. source: "./media/characters/keireer/front.svg",
  13868. extra: 716 / 666,
  13869. bottom: 0.05
  13870. }
  13871. },
  13872. },
  13873. [
  13874. {
  13875. name: "Normal",
  13876. height: math.unit(5 + 4 / 12, "feet"),
  13877. default: true
  13878. },
  13879. ]
  13880. ))
  13881. characterMakers.push(() => makeCharacter(
  13882. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13883. {
  13884. front: {
  13885. height: math.unit(6, "feet"),
  13886. weight: math.unit(90, "kg"),
  13887. name: "Front",
  13888. image: {
  13889. source: "./media/characters/mirja/front.svg",
  13890. extra: 1789 / 1683,
  13891. bottom: 0.05
  13892. }
  13893. },
  13894. frontDressed: {
  13895. height: math.unit(6, "feet"),
  13896. weight: math.unit(90, "lb"),
  13897. name: "Front (Dressed)",
  13898. image: {
  13899. source: "./media/characters/mirja/front-dressed.svg",
  13900. extra: 1789 / 1683,
  13901. bottom: 0.05
  13902. }
  13903. },
  13904. back: {
  13905. height: math.unit(6, "feet"),
  13906. weight: math.unit(90, "lb"),
  13907. name: "Back",
  13908. image: {
  13909. source: "./media/characters/mirja/back.svg",
  13910. extra: 953 / 917,
  13911. bottom: 0.017
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "\"Incognito\"",
  13918. height: math.unit(3, "meters")
  13919. },
  13920. {
  13921. name: "Strolling Size",
  13922. height: math.unit(15, "km")
  13923. },
  13924. {
  13925. name: "Larger Strolling Size",
  13926. height: math.unit(400, "km")
  13927. },
  13928. {
  13929. name: "Preferred Size",
  13930. height: math.unit(5000, "km")
  13931. },
  13932. {
  13933. name: "True Size",
  13934. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13935. default: true
  13936. },
  13937. ]
  13938. ))
  13939. characterMakers.push(() => makeCharacter(
  13940. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13941. {
  13942. front: {
  13943. height: math.unit(15, "feet"),
  13944. weight: math.unit(880, "kg"),
  13945. name: "Front",
  13946. image: {
  13947. source: "./media/characters/nightraver/front.svg",
  13948. extra: 2444 / 2160,
  13949. bottom: 0.027
  13950. }
  13951. },
  13952. back: {
  13953. height: math.unit(15, "feet"),
  13954. weight: math.unit(880, "kg"),
  13955. name: "Back",
  13956. image: {
  13957. source: "./media/characters/nightraver/back.svg",
  13958. extra: 2309 / 2180,
  13959. bottom: 0.005
  13960. }
  13961. },
  13962. sole: {
  13963. height: math.unit(2.878, "feet"),
  13964. name: "Sole",
  13965. image: {
  13966. source: "./media/characters/nightraver/sole.svg"
  13967. }
  13968. },
  13969. foot: {
  13970. height: math.unit(2.285, "feet"),
  13971. name: "Foot",
  13972. image: {
  13973. source: "./media/characters/nightraver/foot.svg"
  13974. }
  13975. },
  13976. maw: {
  13977. height: math.unit(2.67, "feet"),
  13978. name: "Maw",
  13979. image: {
  13980. source: "./media/characters/nightraver/maw.svg"
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Micro",
  13987. height: math.unit(1, "cm")
  13988. },
  13989. {
  13990. name: "Normal",
  13991. height: math.unit(15, "feet"),
  13992. default: true
  13993. },
  13994. {
  13995. name: "Macro",
  13996. height: math.unit(300, "feet")
  13997. },
  13998. {
  13999. name: "Megamacro",
  14000. height: math.unit(300, "miles")
  14001. },
  14002. {
  14003. name: "Gigamacro",
  14004. height: math.unit(10000, "miles")
  14005. },
  14006. ]
  14007. ))
  14008. characterMakers.push(() => makeCharacter(
  14009. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14010. {
  14011. side: {
  14012. height: math.unit(2, "inches"),
  14013. weight: math.unit(5, "grams"),
  14014. name: "Side",
  14015. image: {
  14016. source: "./media/characters/arc/side.svg"
  14017. }
  14018. },
  14019. },
  14020. [
  14021. {
  14022. name: "Micro",
  14023. height: math.unit(2, "inches"),
  14024. default: true
  14025. },
  14026. ]
  14027. ))
  14028. characterMakers.push(() => makeCharacter(
  14029. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14030. {
  14031. front: {
  14032. height: math.unit(1.1938, "meters"),
  14033. weight: math.unit(54, "kg"),
  14034. name: "Front",
  14035. image: {
  14036. source: "./media/characters/nebula-shahar/front.svg",
  14037. extra: 1642 / 1436,
  14038. bottom: 0.06
  14039. }
  14040. },
  14041. },
  14042. [
  14043. {
  14044. name: "Megamicro",
  14045. height: math.unit(0.3, "mm")
  14046. },
  14047. {
  14048. name: "Micro",
  14049. height: math.unit(3, "cm")
  14050. },
  14051. {
  14052. name: "Normal",
  14053. height: math.unit(138, "cm"),
  14054. default: true
  14055. },
  14056. {
  14057. name: "Macro",
  14058. height: math.unit(30, "m")
  14059. },
  14060. ]
  14061. ))
  14062. characterMakers.push(() => makeCharacter(
  14063. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14064. {
  14065. front: {
  14066. height: math.unit(5.24, "feet"),
  14067. weight: math.unit(150, "lb"),
  14068. name: "Front",
  14069. image: {
  14070. source: "./media/characters/shayla/front.svg",
  14071. extra: 1512 / 1414,
  14072. bottom: 0.01
  14073. }
  14074. },
  14075. back: {
  14076. height: math.unit(5.24, "feet"),
  14077. weight: math.unit(150, "lb"),
  14078. name: "Back",
  14079. image: {
  14080. source: "./media/characters/shayla/back.svg",
  14081. extra: 1512 / 1414
  14082. }
  14083. },
  14084. hand: {
  14085. height: math.unit(0.7781496062992126, "feet"),
  14086. name: "Hand",
  14087. image: {
  14088. source: "./media/characters/shayla/hand.svg"
  14089. }
  14090. },
  14091. foot: {
  14092. height: math.unit(1.4206036745406823, "feet"),
  14093. name: "Foot",
  14094. image: {
  14095. source: "./media/characters/shayla/foot.svg"
  14096. }
  14097. },
  14098. },
  14099. [
  14100. {
  14101. name: "Micro",
  14102. height: math.unit(0.32, "feet")
  14103. },
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(5.24, "feet"),
  14107. default: true
  14108. },
  14109. {
  14110. name: "Macro",
  14111. height: math.unit(492.12, "feet")
  14112. },
  14113. {
  14114. name: "Megamacro",
  14115. height: math.unit(186.41, "miles")
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14121. {
  14122. front: {
  14123. height: math.unit(2.2, "m"),
  14124. weight: math.unit(120, "kg"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/pia-jr/front.svg",
  14128. extra: 1000 / 970,
  14129. bottom: 0.035
  14130. }
  14131. },
  14132. hand: {
  14133. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14134. name: "Hand",
  14135. image: {
  14136. source: "./media/characters/pia-jr/hand.svg"
  14137. }
  14138. },
  14139. paw: {
  14140. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14141. name: "Paw",
  14142. image: {
  14143. source: "./media/characters/pia-jr/paw.svg"
  14144. }
  14145. },
  14146. },
  14147. [
  14148. {
  14149. name: "Micro",
  14150. height: math.unit(1.2, "cm")
  14151. },
  14152. {
  14153. name: "Normal",
  14154. height: math.unit(2.2, "m"),
  14155. default: true
  14156. },
  14157. {
  14158. name: "Macro",
  14159. height: math.unit(180, "m")
  14160. },
  14161. {
  14162. name: "Megamacro",
  14163. height: math.unit(420, "km")
  14164. },
  14165. ]
  14166. ))
  14167. characterMakers.push(() => makeCharacter(
  14168. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14169. {
  14170. front: {
  14171. height: math.unit(2, "m"),
  14172. weight: math.unit(115, "kg"),
  14173. name: "Front",
  14174. image: {
  14175. source: "./media/characters/pia-sr/front.svg",
  14176. extra: 760 / 730,
  14177. bottom: 0.015
  14178. }
  14179. },
  14180. back: {
  14181. height: math.unit(2, "m"),
  14182. weight: math.unit(115, "kg"),
  14183. name: "Back",
  14184. image: {
  14185. source: "./media/characters/pia-sr/back.svg",
  14186. extra: 760 / 730,
  14187. bottom: 0.01
  14188. }
  14189. },
  14190. hand: {
  14191. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14192. name: "Hand",
  14193. image: {
  14194. source: "./media/characters/pia-sr/hand.svg"
  14195. }
  14196. },
  14197. foot: {
  14198. height: math.unit(1.83, "feet"),
  14199. name: "Foot",
  14200. image: {
  14201. source: "./media/characters/pia-sr/foot.svg"
  14202. }
  14203. },
  14204. },
  14205. [
  14206. {
  14207. name: "Micro",
  14208. height: math.unit(88, "mm")
  14209. },
  14210. {
  14211. name: "Normal",
  14212. height: math.unit(2, "m"),
  14213. default: true
  14214. },
  14215. {
  14216. name: "Macro",
  14217. height: math.unit(200, "m")
  14218. },
  14219. {
  14220. name: "Megamacro",
  14221. height: math.unit(420, "km")
  14222. },
  14223. ]
  14224. ))
  14225. characterMakers.push(() => makeCharacter(
  14226. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14227. {
  14228. front: {
  14229. height: math.unit(8 + 2 / 12, "feet"),
  14230. weight: math.unit(300, "lb"),
  14231. name: "Front",
  14232. image: {
  14233. source: "./media/characters/kibibyte/front.svg",
  14234. extra: 2221 / 2098,
  14235. bottom: 0.04
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(8 + 2 / 12, "feet"),
  14243. default: true
  14244. },
  14245. {
  14246. name: "Socialable Macro",
  14247. height: math.unit(50, "feet")
  14248. },
  14249. {
  14250. name: "Macro",
  14251. height: math.unit(300, "feet")
  14252. },
  14253. {
  14254. name: "Megamacro",
  14255. height: math.unit(500, "miles")
  14256. },
  14257. ]
  14258. ))
  14259. characterMakers.push(() => makeCharacter(
  14260. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14261. {
  14262. front: {
  14263. height: math.unit(6, "feet"),
  14264. weight: math.unit(150, "lb"),
  14265. name: "Front",
  14266. image: {
  14267. source: "./media/characters/felix/front.svg",
  14268. extra: 762 / 722,
  14269. bottom: 0.02
  14270. }
  14271. },
  14272. frontClothed: {
  14273. height: math.unit(6, "feet"),
  14274. weight: math.unit(150, "lb"),
  14275. name: "Front (Clothed)",
  14276. image: {
  14277. source: "./media/characters/felix/front-clothed.svg",
  14278. extra: 762 / 722,
  14279. bottom: 0.02
  14280. }
  14281. },
  14282. },
  14283. [
  14284. {
  14285. name: "Normal",
  14286. height: math.unit(6 + 8 / 12, "feet"),
  14287. default: true
  14288. },
  14289. {
  14290. name: "Macro",
  14291. height: math.unit(2600, "feet")
  14292. },
  14293. {
  14294. name: "Megamacro",
  14295. height: math.unit(450, "miles")
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(6 + 1 / 12, "feet"),
  14304. weight: math.unit(250, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/tobo/front.svg",
  14308. extra: 608 / 586,
  14309. bottom: 0.023
  14310. }
  14311. },
  14312. back: {
  14313. height: math.unit(6 + 1 / 12, "feet"),
  14314. weight: math.unit(250, "lb"),
  14315. name: "Back",
  14316. image: {
  14317. source: "./media/characters/tobo/back.svg",
  14318. extra: 608 / 586
  14319. }
  14320. },
  14321. },
  14322. [
  14323. {
  14324. name: "Nano",
  14325. height: math.unit(2, "nm")
  14326. },
  14327. {
  14328. name: "Megamicro",
  14329. height: math.unit(0.1, "mm")
  14330. },
  14331. {
  14332. name: "Micro",
  14333. height: math.unit(1, "inch"),
  14334. default: true
  14335. },
  14336. {
  14337. name: "Human-sized",
  14338. height: math.unit(6 + 1 / 12, "feet")
  14339. },
  14340. {
  14341. name: "Macro",
  14342. height: math.unit(250, "feet")
  14343. },
  14344. {
  14345. name: "Megamacro",
  14346. height: math.unit(75, "miles")
  14347. },
  14348. {
  14349. name: "Texas-sized",
  14350. height: math.unit(750, "miles")
  14351. },
  14352. {
  14353. name: "Teramacro",
  14354. height: math.unit(50000, "miles")
  14355. },
  14356. ]
  14357. ))
  14358. characterMakers.push(() => makeCharacter(
  14359. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14360. {
  14361. front: {
  14362. height: math.unit(6, "feet"),
  14363. weight: math.unit(269, "lb"),
  14364. name: "Front",
  14365. image: {
  14366. source: "./media/characters/danny-kapowsky/front.svg",
  14367. extra: 766 / 736,
  14368. bottom: 0.044
  14369. }
  14370. },
  14371. back: {
  14372. height: math.unit(6, "feet"),
  14373. weight: math.unit(269, "lb"),
  14374. name: "Back",
  14375. image: {
  14376. source: "./media/characters/danny-kapowsky/back.svg",
  14377. extra: 797 / 760,
  14378. bottom: 0.025
  14379. }
  14380. },
  14381. },
  14382. [
  14383. {
  14384. name: "Macro",
  14385. height: math.unit(150, "feet"),
  14386. default: true
  14387. },
  14388. {
  14389. name: "Macro+",
  14390. height: math.unit(200, "feet")
  14391. },
  14392. {
  14393. name: "Macro++",
  14394. height: math.unit(300, "feet")
  14395. },
  14396. {
  14397. name: "Macro+++",
  14398. height: math.unit(400, "feet")
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14404. {
  14405. side: {
  14406. height: math.unit(6, "feet"),
  14407. weight: math.unit(170, "lb"),
  14408. name: "Side",
  14409. image: {
  14410. source: "./media/characters/finn/side.svg",
  14411. extra: 1953 / 1807,
  14412. bottom: 0.057
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Megamacro",
  14419. height: math.unit(14445, "feet"),
  14420. default: true
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14426. {
  14427. front: {
  14428. height: math.unit(5 + 6 / 12, "feet"),
  14429. weight: math.unit(125, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/roy/front.svg",
  14433. extra: 1,
  14434. bottom: 0.11
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Micro",
  14441. height: math.unit(3, "inches"),
  14442. default: true
  14443. },
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(5 + 6 / 12, "feet")
  14447. },
  14448. {
  14449. name: "Lesser Macro",
  14450. height: math.unit(60, "feet")
  14451. },
  14452. {
  14453. name: "Greater Macro",
  14454. height: math.unit(120, "feet")
  14455. },
  14456. ]
  14457. ))
  14458. characterMakers.push(() => makeCharacter(
  14459. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14460. {
  14461. front: {
  14462. height: math.unit(6, "feet"),
  14463. weight: math.unit(100, "lb"),
  14464. name: "Front",
  14465. image: {
  14466. source: "./media/characters/aevsivs/front.svg",
  14467. extra: 1,
  14468. bottom: 0.03
  14469. }
  14470. },
  14471. back: {
  14472. height: math.unit(6, "feet"),
  14473. weight: math.unit(100, "lb"),
  14474. name: "Back",
  14475. image: {
  14476. source: "./media/characters/aevsivs/back.svg"
  14477. }
  14478. },
  14479. },
  14480. [
  14481. {
  14482. name: "Micro",
  14483. height: math.unit(2, "inches"),
  14484. default: true
  14485. },
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(5, "feet")
  14489. },
  14490. ]
  14491. ))
  14492. characterMakers.push(() => makeCharacter(
  14493. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14494. {
  14495. front: {
  14496. height: math.unit(5 + 7 / 12, "feet"),
  14497. weight: math.unit(159, "lb"),
  14498. name: "Front",
  14499. image: {
  14500. source: "./media/characters/hildegard/front.svg",
  14501. extra: 289 / 269,
  14502. bottom: 7.63 / 297.8
  14503. }
  14504. },
  14505. back: {
  14506. height: math.unit(5 + 7 / 12, "feet"),
  14507. weight: math.unit(159, "lb"),
  14508. name: "Back",
  14509. image: {
  14510. source: "./media/characters/hildegard/back.svg",
  14511. extra: 280 / 260,
  14512. bottom: 2.3 / 282
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Normal",
  14519. height: math.unit(5 + 7 / 12, "feet"),
  14520. default: true
  14521. },
  14522. ]
  14523. ))
  14524. characterMakers.push(() => makeCharacter(
  14525. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14526. {
  14527. bernard: {
  14528. height: math.unit(2 + 7 / 12, "feet"),
  14529. weight: math.unit(66, "lb"),
  14530. name: "Bernard",
  14531. rename: true,
  14532. image: {
  14533. source: "./media/characters/bernard-wilder/bernard.svg",
  14534. extra: 192 / 128,
  14535. bottom: 0.05
  14536. }
  14537. },
  14538. wilder: {
  14539. height: math.unit(5 + 8 / 12, "feet"),
  14540. weight: math.unit(143, "lb"),
  14541. name: "Wilder",
  14542. rename: true,
  14543. image: {
  14544. source: "./media/characters/bernard-wilder/wilder.svg",
  14545. extra: 361 / 312,
  14546. bottom: 0.02
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Normal",
  14553. height: math.unit(2 + 7 / 12, "feet"),
  14554. default: true
  14555. },
  14556. ]
  14557. ))
  14558. characterMakers.push(() => makeCharacter(
  14559. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14560. {
  14561. anthro: {
  14562. height: math.unit(6 + 1 / 12, "feet"),
  14563. weight: math.unit(155, "lb"),
  14564. name: "Anthro",
  14565. image: {
  14566. source: "./media/characters/hearth/anthro.svg",
  14567. extra: 260 / 250,
  14568. bottom: 0.02
  14569. }
  14570. },
  14571. feral: {
  14572. height: math.unit(3.78, "feet"),
  14573. weight: math.unit(35, "kg"),
  14574. name: "Feral",
  14575. image: {
  14576. source: "./media/characters/hearth/feral.svg",
  14577. extra: 153 / 135,
  14578. bottom: 0.03
  14579. }
  14580. },
  14581. },
  14582. [
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(6 + 1 / 12, "feet"),
  14586. default: true
  14587. },
  14588. ]
  14589. ))
  14590. characterMakers.push(() => makeCharacter(
  14591. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14592. {
  14593. front: {
  14594. height: math.unit(6, "feet"),
  14595. weight: math.unit(182, "lb"),
  14596. name: "Front",
  14597. image: {
  14598. source: "./media/characters/ingrid/front.svg",
  14599. extra: 294 / 268,
  14600. bottom: 0.027
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Normal",
  14607. height: math.unit(6, "feet"),
  14608. default: true
  14609. },
  14610. ]
  14611. ))
  14612. characterMakers.push(() => makeCharacter(
  14613. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14614. {
  14615. eevee: {
  14616. height: math.unit(2 + 10 / 12, "feet"),
  14617. weight: math.unit(86, "lb"),
  14618. name: "Malgam",
  14619. image: {
  14620. source: "./media/characters/malgam/eevee.svg",
  14621. extra: 218 / 180,
  14622. bottom: 0.2
  14623. }
  14624. },
  14625. sylveon: {
  14626. height: math.unit(4, "feet"),
  14627. weight: math.unit(101, "lb"),
  14628. name: "Future Malgam",
  14629. rename: true,
  14630. image: {
  14631. source: "./media/characters/malgam/sylveon.svg",
  14632. extra: 371 / 325,
  14633. bottom: 0.015
  14634. }
  14635. },
  14636. gigantamax: {
  14637. height: math.unit(50, "feet"),
  14638. name: "Gigantamax Malgam",
  14639. rename: true,
  14640. image: {
  14641. source: "./media/characters/malgam/gigantamax.svg"
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Normal",
  14648. height: math.unit(2 + 10 / 12, "feet"),
  14649. default: true
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(5 + 11 / 12, "feet"),
  14658. weight: math.unit(188, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/fleur/front.svg",
  14662. extra: 309 / 283,
  14663. bottom: 0.007
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(5 + 11 / 12, "feet"),
  14671. default: true
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(5 + 4 / 12, "feet"),
  14680. weight: math.unit(122, "lb"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/jude/front.svg",
  14684. extra: 288 / 273,
  14685. bottom: 0.03
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Normal",
  14692. height: math.unit(5 + 4 / 12, "feet"),
  14693. default: true
  14694. },
  14695. ]
  14696. ))
  14697. characterMakers.push(() => makeCharacter(
  14698. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14699. {
  14700. front: {
  14701. height: math.unit(5 + 11 / 12, "feet"),
  14702. weight: math.unit(190, "lb"),
  14703. name: "Front",
  14704. image: {
  14705. source: "./media/characters/seara/front.svg",
  14706. extra: 1,
  14707. bottom: 0.05
  14708. }
  14709. },
  14710. },
  14711. [
  14712. {
  14713. name: "Normal",
  14714. height: math.unit(5 + 11 / 12, "feet"),
  14715. default: true
  14716. },
  14717. ]
  14718. ))
  14719. characterMakers.push(() => makeCharacter(
  14720. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14721. {
  14722. front: {
  14723. height: math.unit(16 + 5 / 12, "feet"),
  14724. weight: math.unit(524, "lb"),
  14725. name: "Front",
  14726. image: {
  14727. source: "./media/characters/caspian/front.svg",
  14728. extra: 1,
  14729. bottom: 0.04
  14730. }
  14731. },
  14732. },
  14733. [
  14734. {
  14735. name: "Normal",
  14736. height: math.unit(16 + 5 / 12, "feet"),
  14737. default: true
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(5 + 7 / 12, "feet"),
  14746. weight: math.unit(170, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/mika/front.svg",
  14750. extra: 1,
  14751. bottom: 0.016
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Normal",
  14758. height: math.unit(5 + 7 / 12, "feet"),
  14759. default: true
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14765. {
  14766. front: {
  14767. height: math.unit(6 + 2 / 12, "feet"),
  14768. weight: math.unit(268, "lb"),
  14769. name: "Front",
  14770. image: {
  14771. source: "./media/characters/sol/front.svg",
  14772. extra: 247 / 231,
  14773. bottom: 0.05
  14774. }
  14775. },
  14776. },
  14777. [
  14778. {
  14779. name: "Normal",
  14780. height: math.unit(6 + 2 / 12, "feet"),
  14781. default: true
  14782. },
  14783. ]
  14784. ))
  14785. characterMakers.push(() => makeCharacter(
  14786. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14787. {
  14788. buizel: {
  14789. height: math.unit(2 + 5 / 12, "feet"),
  14790. weight: math.unit(87, "lb"),
  14791. name: "Buizel",
  14792. image: {
  14793. source: "./media/characters/umiko/buizel.svg",
  14794. extra: 172 / 157,
  14795. bottom: 0.01
  14796. }
  14797. },
  14798. floatzel: {
  14799. height: math.unit(5 + 9 / 12, "feet"),
  14800. weight: math.unit(250, "lb"),
  14801. name: "Floatzel",
  14802. image: {
  14803. source: "./media/characters/umiko/floatzel.svg",
  14804. extra: 262 / 248
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(2 + 5 / 12, "feet"),
  14812. default: true
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14818. {
  14819. front: {
  14820. height: math.unit(6 + 2 / 12, "feet"),
  14821. weight: math.unit(146, "lb"),
  14822. name: "Front",
  14823. image: {
  14824. source: "./media/characters/iliac/front.svg",
  14825. extra: 389 / 365,
  14826. bottom: 0.035
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(6 + 2 / 12, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14840. {
  14841. front: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(170, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/topaz/front.svg",
  14847. extra: 317 / 303,
  14848. bottom: 0.055
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Normal",
  14855. height: math.unit(6, "feet"),
  14856. default: true
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(5 + 11 / 12, "feet"),
  14865. weight: math.unit(144, "lb"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/gabriel/front.svg",
  14869. extra: 285 / 262,
  14870. bottom: 0.004
  14871. }
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(5 + 11 / 12, "feet"),
  14878. default: true
  14879. },
  14880. ]
  14881. ))
  14882. characterMakers.push(() => makeCharacter(
  14883. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14884. {
  14885. side: {
  14886. height: math.unit(6 + 5 / 12, "feet"),
  14887. weight: math.unit(300, "lb"),
  14888. name: "Side",
  14889. image: {
  14890. source: "./media/characters/tempest-suicune/side.svg",
  14891. extra: 195 / 154,
  14892. bottom: 0.04
  14893. }
  14894. },
  14895. },
  14896. [
  14897. {
  14898. name: "Normal",
  14899. height: math.unit(6 + 5 / 12, "feet"),
  14900. default: true
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14906. {
  14907. front: {
  14908. height: math.unit(7 + 2 / 12, "feet"),
  14909. weight: math.unit(322, "lb"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/vulcan/front.svg",
  14913. extra: 154 / 147,
  14914. bottom: 0.04
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Normal",
  14921. height: math.unit(7 + 2 / 12, "feet"),
  14922. default: true
  14923. },
  14924. ]
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(5 + 10 / 12, "feet"),
  14931. weight: math.unit(264, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/gault/front.svg",
  14935. extra: 161 / 140,
  14936. bottom: 0.028
  14937. }
  14938. },
  14939. },
  14940. [
  14941. {
  14942. name: "Normal",
  14943. height: math.unit(5 + 10 / 12, "feet"),
  14944. default: true
  14945. },
  14946. ]
  14947. ))
  14948. characterMakers.push(() => makeCharacter(
  14949. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14950. {
  14951. front: {
  14952. height: math.unit(6, "feet"),
  14953. weight: math.unit(150, "lb"),
  14954. name: "Front",
  14955. image: {
  14956. source: "./media/characters/shard/front.svg",
  14957. extra: 273 / 238,
  14958. bottom: 0.02
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Normal",
  14965. height: math.unit(3 + 6 / 12, "feet"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14972. {
  14973. front: {
  14974. height: math.unit(5 + 11 / 12, "feet"),
  14975. weight: math.unit(146, "lb"),
  14976. name: "Front",
  14977. image: {
  14978. source: "./media/characters/ashe/front.svg",
  14979. extra: 400 / 373,
  14980. bottom: 0.01
  14981. }
  14982. },
  14983. },
  14984. [
  14985. {
  14986. name: "Normal",
  14987. height: math.unit(5 + 11 / 12, "feet"),
  14988. default: true
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14994. {
  14995. front: {
  14996. height: math.unit(5 + 5 / 12, "feet"),
  14997. weight: math.unit(135, "lb"),
  14998. name: "Front",
  14999. image: {
  15000. source: "./media/characters/beatrix/front.svg",
  15001. extra: 392 / 379,
  15002. bottom: 0.01
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(6, "feet"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15016. {
  15017. front: {
  15018. height: math.unit(6, "feet"),
  15019. weight: math.unit(150, "lb"),
  15020. name: "Front",
  15021. image: {
  15022. source: "./media/characters/ignatius/front.svg",
  15023. extra: 245 / 222,
  15024. bottom: 0.01
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(5 + 5 / 12, "feet"),
  15032. default: true
  15033. },
  15034. ]
  15035. ))
  15036. characterMakers.push(() => makeCharacter(
  15037. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15038. {
  15039. front: {
  15040. height: math.unit(6 + 2 / 12, "feet"),
  15041. weight: math.unit(138, "lb"),
  15042. name: "Front",
  15043. image: {
  15044. source: "./media/characters/mei-li/front.svg",
  15045. extra: 237 / 229,
  15046. bottom: 0.03
  15047. }
  15048. },
  15049. },
  15050. [
  15051. {
  15052. name: "Normal",
  15053. height: math.unit(6 + 2 / 12, "feet"),
  15054. default: true
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(2 + 4 / 12, "feet"),
  15063. weight: math.unit(62, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/puru/front.svg",
  15067. extra: 206 / 149,
  15068. bottom: 0.06
  15069. }
  15070. },
  15071. },
  15072. [
  15073. {
  15074. name: "Normal",
  15075. height: math.unit(2 + 4 / 12, "feet"),
  15076. default: true
  15077. },
  15078. ]
  15079. ))
  15080. characterMakers.push(() => makeCharacter(
  15081. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15082. {
  15083. anthro: {
  15084. height: math.unit(5 + 8/12, "feet"),
  15085. weight: math.unit(200, "lb"),
  15086. energyNeed: math.unit(2000, "kcal"),
  15087. name: "Anthro",
  15088. image: {
  15089. source: "./media/characters/kee/anthro.svg",
  15090. extra: 3251/3184,
  15091. bottom: 250/3501
  15092. }
  15093. },
  15094. taur: {
  15095. height: math.unit(11, "feet"),
  15096. weight: math.unit(500, "lb"),
  15097. energyNeed: math.unit(5000, "kcal"),
  15098. name: "Taur",
  15099. image: {
  15100. source: "./media/characters/kee/taur.svg",
  15101. extra: 1362/1320,
  15102. bottom: 83/1445
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Normal",
  15109. height: math.unit(5 + 8/12, "feet"),
  15110. default: true
  15111. },
  15112. {
  15113. name: "Macro",
  15114. height: math.unit(35, "feet")
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15120. {
  15121. anthro: {
  15122. height: math.unit(7, "feet"),
  15123. weight: math.unit(190, "lb"),
  15124. name: "Anthro",
  15125. image: {
  15126. source: "./media/characters/cobalt-dracha/anthro.svg",
  15127. extra: 231 / 225,
  15128. bottom: 0.04
  15129. }
  15130. },
  15131. feral: {
  15132. height: math.unit(9 + 7 / 12, "feet"),
  15133. weight: math.unit(294, "lb"),
  15134. name: "Feral",
  15135. image: {
  15136. source: "./media/characters/cobalt-dracha/feral.svg",
  15137. extra: 692 / 633,
  15138. bottom: 0.05
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(7, "feet"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15152. {
  15153. fallen: {
  15154. height: math.unit(11 + 8 / 12, "feet"),
  15155. weight: math.unit(485, "lb"),
  15156. name: "Java (Fallen)",
  15157. rename: true,
  15158. image: {
  15159. source: "./media/characters/java/fallen.svg",
  15160. extra: 226 / 208,
  15161. bottom: 0.005
  15162. }
  15163. },
  15164. godkin: {
  15165. height: math.unit(10 + 6 / 12, "feet"),
  15166. weight: math.unit(328, "lb"),
  15167. name: "Java (Godkin)",
  15168. rename: true,
  15169. image: {
  15170. source: "./media/characters/java/godkin.svg",
  15171. extra: 270 / 262,
  15172. bottom: 0.02
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(11 + 8 / 12, "feet"),
  15180. default: true
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15186. {
  15187. front: {
  15188. height: math.unit(7 + 8 / 12, "feet"),
  15189. weight: math.unit(320, "lb"),
  15190. name: "Front",
  15191. image: {
  15192. source: "./media/characters/skoll/front.svg",
  15193. extra: 232 / 220,
  15194. bottom: 0.02
  15195. }
  15196. },
  15197. },
  15198. [
  15199. {
  15200. name: "Normal",
  15201. height: math.unit(7 + 8 / 12, "feet"),
  15202. default: true
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15208. {
  15209. front: {
  15210. height: math.unit(5 + 9 / 12, "feet"),
  15211. weight: math.unit(170, "lb"),
  15212. name: "Front",
  15213. image: {
  15214. source: "./media/characters/purna/front.svg",
  15215. extra: 239 / 229,
  15216. bottom: 0.01
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Normal",
  15223. height: math.unit(5 + 9 / 12, "feet"),
  15224. default: true
  15225. },
  15226. ]
  15227. ))
  15228. characterMakers.push(() => makeCharacter(
  15229. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15230. {
  15231. front: {
  15232. height: math.unit(5 + 9 / 12, "feet"),
  15233. weight: math.unit(142, "lb"),
  15234. name: "Front",
  15235. image: {
  15236. source: "./media/characters/kuva/front.svg",
  15237. extra: 281 / 271,
  15238. bottom: 0.006
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Normal",
  15245. height: math.unit(5 + 9 / 12, "feet"),
  15246. default: true
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15252. {
  15253. anthro: {
  15254. height: math.unit(9 + 2 / 12, "feet"),
  15255. weight: math.unit(270, "lb"),
  15256. name: "Anthro",
  15257. image: {
  15258. source: "./media/characters/embra/anthro.svg",
  15259. extra: 200 / 187,
  15260. bottom: 0.02
  15261. }
  15262. },
  15263. feral: {
  15264. height: math.unit(18 + 8 / 12, "feet"),
  15265. weight: math.unit(576, "lb"),
  15266. name: "Feral",
  15267. image: {
  15268. source: "./media/characters/embra/feral.svg",
  15269. extra: 152 / 137,
  15270. bottom: 0.037
  15271. }
  15272. },
  15273. },
  15274. [
  15275. {
  15276. name: "Normal",
  15277. height: math.unit(9 + 2 / 12, "feet"),
  15278. default: true
  15279. },
  15280. ]
  15281. ))
  15282. characterMakers.push(() => makeCharacter(
  15283. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15284. {
  15285. anthro: {
  15286. height: math.unit(10 + 9 / 12, "feet"),
  15287. weight: math.unit(224, "lb"),
  15288. name: "Anthro",
  15289. image: {
  15290. source: "./media/characters/grottos/anthro.svg",
  15291. extra: 350 / 332,
  15292. bottom: 0.045
  15293. }
  15294. },
  15295. feral: {
  15296. height: math.unit(20 + 7 / 12, "feet"),
  15297. weight: math.unit(629, "lb"),
  15298. name: "Feral",
  15299. image: {
  15300. source: "./media/characters/grottos/feral.svg",
  15301. extra: 207 / 190,
  15302. bottom: 0.05
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Normal",
  15309. height: math.unit(10 + 9 / 12, "feet"),
  15310. default: true
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15316. {
  15317. anthro: {
  15318. height: math.unit(9 + 6 / 12, "feet"),
  15319. weight: math.unit(298, "lb"),
  15320. name: "Anthro",
  15321. image: {
  15322. source: "./media/characters/frifna/anthro.svg",
  15323. extra: 282 / 269,
  15324. bottom: 0.015
  15325. }
  15326. },
  15327. feral: {
  15328. height: math.unit(16 + 2 / 12, "feet"),
  15329. weight: math.unit(624, "lb"),
  15330. name: "Feral",
  15331. image: {
  15332. source: "./media/characters/frifna/feral.svg"
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "Normal",
  15339. height: math.unit(9 + 6 / 12, "feet"),
  15340. default: true
  15341. },
  15342. ]
  15343. ))
  15344. characterMakers.push(() => makeCharacter(
  15345. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15346. {
  15347. front: {
  15348. height: math.unit(6 + 2 / 12, "feet"),
  15349. weight: math.unit(168, "lb"),
  15350. name: "Front",
  15351. image: {
  15352. source: "./media/characters/elise/front.svg",
  15353. extra: 276 / 271
  15354. }
  15355. },
  15356. },
  15357. [
  15358. {
  15359. name: "Normal",
  15360. height: math.unit(6 + 2 / 12, "feet"),
  15361. default: true
  15362. },
  15363. ]
  15364. ))
  15365. characterMakers.push(() => makeCharacter(
  15366. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15367. {
  15368. front: {
  15369. height: math.unit(5 + 10 / 12, "feet"),
  15370. weight: math.unit(210, "lb"),
  15371. name: "Front",
  15372. image: {
  15373. source: "./media/characters/glade/front.svg",
  15374. extra: 258 / 247,
  15375. bottom: 0.008
  15376. }
  15377. },
  15378. },
  15379. [
  15380. {
  15381. name: "Normal",
  15382. height: math.unit(5 + 10 / 12, "feet"),
  15383. default: true
  15384. },
  15385. ]
  15386. ))
  15387. characterMakers.push(() => makeCharacter(
  15388. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15389. {
  15390. front: {
  15391. height: math.unit(5 + 10 / 12, "feet"),
  15392. weight: math.unit(129, "lb"),
  15393. name: "Front",
  15394. image: {
  15395. source: "./media/characters/rina/front.svg",
  15396. extra: 266 / 255,
  15397. bottom: 0.005
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Normal",
  15404. height: math.unit(5 + 10 / 12, "feet"),
  15405. default: true
  15406. },
  15407. ]
  15408. ))
  15409. characterMakers.push(() => makeCharacter(
  15410. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15411. {
  15412. front: {
  15413. height: math.unit(6 + 1 / 12, "feet"),
  15414. weight: math.unit(192, "lb"),
  15415. name: "Front",
  15416. image: {
  15417. source: "./media/characters/veronica/front.svg",
  15418. extra: 319 / 309,
  15419. bottom: 0.005
  15420. }
  15421. },
  15422. },
  15423. [
  15424. {
  15425. name: "Normal",
  15426. height: math.unit(6 + 1 / 12, "feet"),
  15427. default: true
  15428. },
  15429. ]
  15430. ))
  15431. characterMakers.push(() => makeCharacter(
  15432. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15433. {
  15434. front: {
  15435. height: math.unit(9 + 3 / 12, "feet"),
  15436. weight: math.unit(1100, "lb"),
  15437. name: "Front",
  15438. image: {
  15439. source: "./media/characters/braxton/front.svg",
  15440. extra: 1057 / 984,
  15441. bottom: 0.05
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Normal",
  15448. height: math.unit(9 + 3 / 12, "feet")
  15449. },
  15450. {
  15451. name: "Giant",
  15452. height: math.unit(300, "feet"),
  15453. default: true
  15454. },
  15455. {
  15456. name: "Macro",
  15457. height: math.unit(700, "feet")
  15458. },
  15459. {
  15460. name: "Megamacro",
  15461. height: math.unit(6000, "feet")
  15462. },
  15463. ]
  15464. ))
  15465. characterMakers.push(() => makeCharacter(
  15466. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15467. {
  15468. front: {
  15469. height: math.unit(6 + 7 / 12, "feet"),
  15470. weight: math.unit(150, "lb"),
  15471. name: "Front",
  15472. image: {
  15473. source: "./media/characters/blue-feyonics/front.svg",
  15474. extra: 1403 / 1306,
  15475. bottom: 0.047
  15476. }
  15477. },
  15478. },
  15479. [
  15480. {
  15481. name: "Normal",
  15482. height: math.unit(6 + 7 / 12, "feet"),
  15483. default: true
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15489. {
  15490. front: {
  15491. height: math.unit(1.8, "meters"),
  15492. weight: math.unit(60, "kg"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/maxwell/front.svg",
  15496. extra: 2060 / 1873
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Micro",
  15503. height: math.unit(1, "mm")
  15504. },
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(1.8, "meter"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(30, "meters")
  15513. },
  15514. {
  15515. name: "Megamacro",
  15516. height: math.unit(10, "km")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(150, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/jack/front.svg",
  15529. extra: 1754 / 1640,
  15530. bottom: 0.01
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Normal",
  15537. height: math.unit(80000, "feet"),
  15538. default: true
  15539. },
  15540. {
  15541. name: "Max size",
  15542. height: math.unit(10, "lightyears")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15548. {
  15549. upright: {
  15550. height: math.unit(7, "feet"),
  15551. weight: math.unit(170, "lb"),
  15552. name: "Upright",
  15553. image: {
  15554. source: "./media/characters/cafat/upright.svg",
  15555. bottom: 0.01
  15556. }
  15557. },
  15558. uprightFull: {
  15559. height: math.unit(7, "feet"),
  15560. weight: math.unit(170, "lb"),
  15561. name: "Upright (Full)",
  15562. image: {
  15563. source: "./media/characters/cafat/upright-full.svg",
  15564. bottom: 0.01
  15565. }
  15566. },
  15567. side: {
  15568. height: math.unit(5, "feet"),
  15569. weight: math.unit(150, "lb"),
  15570. name: "Side",
  15571. image: {
  15572. source: "./media/characters/cafat/side.svg"
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Small",
  15579. height: math.unit(7, "feet"),
  15580. default: true
  15581. },
  15582. {
  15583. name: "Large",
  15584. height: math.unit(15.5, "feet")
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(6, "feet"),
  15593. weight: math.unit(150, "lb"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/verin-raharra/front.svg",
  15597. extra: 5019 / 4835,
  15598. bottom: 0.023
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Normal",
  15605. height: math.unit(7 + 5 / 12, "feet"),
  15606. default: true
  15607. },
  15608. {
  15609. name: "Upsized",
  15610. height: math.unit(20, "feet")
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(7, "feet"),
  15619. weight: math.unit(230, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/nakata/front.svg",
  15623. extra: 1.005,
  15624. bottom: 0.01
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(7, "feet"),
  15632. default: true
  15633. },
  15634. {
  15635. name: "Big",
  15636. height: math.unit(14, "feet")
  15637. },
  15638. {
  15639. name: "Macro",
  15640. height: math.unit(400, "feet")
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(4.91, "feet"),
  15649. weight: math.unit(100, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/lily/front.svg",
  15653. extra: 1585 / 1415,
  15654. bottom: 0.02
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(4.91, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15668. {
  15669. laying: {
  15670. height: math.unit(4 + 4 / 12, "feet"),
  15671. weight: math.unit(600, "lb"),
  15672. name: "Laying",
  15673. image: {
  15674. source: "./media/characters/sheila/laying.svg",
  15675. extra: 1333 / 1265,
  15676. bottom: 0.16
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(4 + 4 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(6, "feet"),
  15693. weight: math.unit(190, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/sax/front.svg",
  15697. extra: 1187 / 973,
  15698. bottom: 0.042
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Micro",
  15705. height: math.unit(4, "inches"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(6, "feet"),
  15715. weight: math.unit(150, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/pandora/front.svg",
  15719. extra: 2720 / 2556,
  15720. bottom: 0.015
  15721. }
  15722. },
  15723. back: {
  15724. height: math.unit(6, "feet"),
  15725. weight: math.unit(150, "lb"),
  15726. name: "Back",
  15727. image: {
  15728. source: "./media/characters/pandora/back.svg",
  15729. extra: 2720 / 2556,
  15730. bottom: 0.01
  15731. }
  15732. },
  15733. beans: {
  15734. height: math.unit(6 / 8, "feet"),
  15735. name: "Beans",
  15736. image: {
  15737. source: "./media/characters/pandora/beans.svg"
  15738. }
  15739. },
  15740. skirt: {
  15741. height: math.unit(6, "feet"),
  15742. weight: math.unit(150, "lb"),
  15743. name: "Skirt",
  15744. image: {
  15745. source: "./media/characters/pandora/skirt.svg",
  15746. extra: 1622 / 1525,
  15747. bottom: 0.015
  15748. }
  15749. },
  15750. hoodie: {
  15751. height: math.unit(6, "feet"),
  15752. weight: math.unit(150, "lb"),
  15753. name: "Hoodie",
  15754. image: {
  15755. source: "./media/characters/pandora/hoodie.svg",
  15756. extra: 1622 / 1525,
  15757. bottom: 0.015
  15758. }
  15759. },
  15760. casual: {
  15761. height: math.unit(6, "feet"),
  15762. weight: math.unit(150, "lb"),
  15763. name: "Casual",
  15764. image: {
  15765. source: "./media/characters/pandora/casual.svg",
  15766. extra: 1622 / 1525,
  15767. bottom: 0.015
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Normal",
  15774. height: math.unit(6, "feet")
  15775. },
  15776. {
  15777. name: "Big Steppy",
  15778. height: math.unit(1, "km"),
  15779. default: true
  15780. },
  15781. ]
  15782. ))
  15783. characterMakers.push(() => makeCharacter(
  15784. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15785. {
  15786. side: {
  15787. height: math.unit(10, "feet"),
  15788. weight: math.unit(800, "kg"),
  15789. name: "Side",
  15790. image: {
  15791. source: "./media/characters/venio-darcony/side.svg",
  15792. extra: 1373 / 1003,
  15793. bottom: 0.037
  15794. }
  15795. },
  15796. front: {
  15797. height: math.unit(19, "feet"),
  15798. weight: math.unit(800, "kg"),
  15799. name: "Front",
  15800. image: {
  15801. source: "./media/characters/venio-darcony/front.svg"
  15802. }
  15803. },
  15804. back: {
  15805. height: math.unit(19, "feet"),
  15806. weight: math.unit(800, "kg"),
  15807. name: "Back",
  15808. image: {
  15809. source: "./media/characters/venio-darcony/back.svg"
  15810. }
  15811. },
  15812. sideNsfw: {
  15813. height: math.unit(10, "feet"),
  15814. weight: math.unit(800, "kg"),
  15815. name: "Side (NSFW)",
  15816. image: {
  15817. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15818. extra: 1373 / 1003,
  15819. bottom: 0.037
  15820. }
  15821. },
  15822. frontNsfw: {
  15823. height: math.unit(19, "feet"),
  15824. weight: math.unit(800, "kg"),
  15825. name: "Front (NSFW)",
  15826. image: {
  15827. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15828. }
  15829. },
  15830. backNsfw: {
  15831. height: math.unit(19, "feet"),
  15832. weight: math.unit(800, "kg"),
  15833. name: "Back (NSFW)",
  15834. image: {
  15835. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15836. }
  15837. },
  15838. sideArmored: {
  15839. height: math.unit(10, "feet"),
  15840. weight: math.unit(800, "kg"),
  15841. name: "Side (Armored)",
  15842. image: {
  15843. source: "./media/characters/venio-darcony/side-armored.svg",
  15844. extra: 1373 / 1003,
  15845. bottom: 0.037
  15846. }
  15847. },
  15848. frontArmored: {
  15849. height: math.unit(19, "feet"),
  15850. weight: math.unit(900, "kg"),
  15851. name: "Front (Armored)",
  15852. image: {
  15853. source: "./media/characters/venio-darcony/front-armored.svg"
  15854. }
  15855. },
  15856. backArmored: {
  15857. height: math.unit(19, "feet"),
  15858. weight: math.unit(900, "kg"),
  15859. name: "Back (Armored)",
  15860. image: {
  15861. source: "./media/characters/venio-darcony/back-armored.svg"
  15862. }
  15863. },
  15864. sword: {
  15865. height: math.unit(10, "feet"),
  15866. weight: math.unit(50, "lb"),
  15867. name: "Sword",
  15868. image: {
  15869. source: "./media/characters/venio-darcony/sword.svg"
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(10, "feet")
  15877. },
  15878. {
  15879. name: "Macro",
  15880. height: math.unit(130, "feet"),
  15881. default: true
  15882. },
  15883. {
  15884. name: "Macro+",
  15885. height: math.unit(240, "feet")
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15891. {
  15892. front: {
  15893. height: math.unit(6, "feet"),
  15894. weight: math.unit(150, "lb"),
  15895. name: "Front",
  15896. image: {
  15897. source: "./media/characters/veski/front.svg",
  15898. extra: 1299 / 1225,
  15899. bottom: 0.04
  15900. }
  15901. },
  15902. back: {
  15903. height: math.unit(6, "feet"),
  15904. weight: math.unit(150, "lb"),
  15905. name: "Back",
  15906. image: {
  15907. source: "./media/characters/veski/back.svg",
  15908. extra: 1299 / 1225,
  15909. bottom: 0.008
  15910. }
  15911. },
  15912. maw: {
  15913. height: math.unit(1.5 * 1.21, "feet"),
  15914. name: "Maw",
  15915. image: {
  15916. source: "./media/characters/veski/maw.svg"
  15917. }
  15918. },
  15919. },
  15920. [
  15921. {
  15922. name: "Macro",
  15923. height: math.unit(2, "km"),
  15924. default: true
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(5 + 7 / 12, "feet"),
  15933. name: "Front",
  15934. image: {
  15935. source: "./media/characters/isabelle/front.svg",
  15936. extra: 2130 / 1976,
  15937. bottom: 0.05
  15938. }
  15939. },
  15940. },
  15941. [
  15942. {
  15943. name: "Supermicro",
  15944. height: math.unit(10, "micrometers")
  15945. },
  15946. {
  15947. name: "Micro",
  15948. height: math.unit(1, "inch")
  15949. },
  15950. {
  15951. name: "Tiny",
  15952. height: math.unit(5, "inches")
  15953. },
  15954. {
  15955. name: "Standard",
  15956. height: math.unit(5 + 7 / 12, "inches")
  15957. },
  15958. {
  15959. name: "Macro",
  15960. height: math.unit(80, "meters"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Megamacro",
  15965. height: math.unit(250, "meters")
  15966. },
  15967. {
  15968. name: "Gigamacro",
  15969. height: math.unit(5, "km")
  15970. },
  15971. {
  15972. name: "Cosmic",
  15973. height: math.unit(2.5e6, "miles")
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15979. {
  15980. front: {
  15981. height: math.unit(6, "feet"),
  15982. weight: math.unit(150, "lb"),
  15983. name: "Front",
  15984. image: {
  15985. source: "./media/characters/hanzo/front.svg",
  15986. extra: 374 / 344,
  15987. bottom: 0.02
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Normal",
  15994. height: math.unit(8, "feet"),
  15995. default: true
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(7, "feet"),
  16004. weight: math.unit(130, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/anna/front.svg",
  16008. extra: 169 / 145,
  16009. bottom: 0.06
  16010. }
  16011. },
  16012. full: {
  16013. height: math.unit(4.96, "feet"),
  16014. weight: math.unit(220, "lb"),
  16015. name: "Full",
  16016. image: {
  16017. source: "./media/characters/anna/full.svg",
  16018. extra: 138 / 114,
  16019. bottom: 0.15
  16020. }
  16021. },
  16022. tongue: {
  16023. height: math.unit(2.53, "feet"),
  16024. name: "Tongue",
  16025. image: {
  16026. source: "./media/characters/anna/tongue.svg"
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(7, "feet"),
  16034. default: true
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(7, "feet"),
  16043. weight: math.unit(150, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/ian-corvid/front.svg",
  16047. extra: 150 / 142,
  16048. bottom: 0.02
  16049. }
  16050. },
  16051. back: {
  16052. height: math.unit(7, "feet"),
  16053. weight: math.unit(150, "lb"),
  16054. name: "Back",
  16055. image: {
  16056. source: "./media/characters/ian-corvid/back.svg",
  16057. extra: 150 / 143,
  16058. bottom: 0.01
  16059. }
  16060. },
  16061. stomping: {
  16062. height: math.unit(7, "feet"),
  16063. weight: math.unit(150, "lb"),
  16064. name: "Stomping",
  16065. image: {
  16066. source: "./media/characters/ian-corvid/stomping.svg",
  16067. extra: 76 / 72
  16068. }
  16069. },
  16070. sitting: {
  16071. height: math.unit(7 / 1.8, "feet"),
  16072. weight: math.unit(150, "lb"),
  16073. name: "Sitting",
  16074. image: {
  16075. source: "./media/characters/ian-corvid/sitting.svg",
  16076. extra: 1400 / 1269,
  16077. bottom: 0.15
  16078. }
  16079. },
  16080. },
  16081. [
  16082. {
  16083. name: "Tiny Microw",
  16084. height: math.unit(1, "inch")
  16085. },
  16086. {
  16087. name: "Microw",
  16088. height: math.unit(6, "inches")
  16089. },
  16090. {
  16091. name: "Crow",
  16092. height: math.unit(7 + 1 / 12, "feet"),
  16093. default: true
  16094. },
  16095. {
  16096. name: "Macrow",
  16097. height: math.unit(176, "feet")
  16098. },
  16099. ]
  16100. ))
  16101. characterMakers.push(() => makeCharacter(
  16102. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16103. {
  16104. front: {
  16105. height: math.unit(5 + 7 / 12, "feet"),
  16106. weight: math.unit(147, "lb"),
  16107. name: "Front",
  16108. image: {
  16109. source: "./media/characters/natalie-kellon/front.svg",
  16110. extra: 1214 / 1141,
  16111. bottom: 0.02
  16112. }
  16113. },
  16114. },
  16115. [
  16116. {
  16117. name: "Micro",
  16118. height: math.unit(1 / 16, "inch")
  16119. },
  16120. {
  16121. name: "Tiny",
  16122. height: math.unit(4, "inches")
  16123. },
  16124. {
  16125. name: "Normal",
  16126. height: math.unit(5 + 7 / 12, "feet"),
  16127. default: true
  16128. },
  16129. {
  16130. name: "Amazon",
  16131. height: math.unit(12, "feet")
  16132. },
  16133. {
  16134. name: "Giantess",
  16135. height: math.unit(160, "meters")
  16136. },
  16137. {
  16138. name: "Titaness",
  16139. height: math.unit(800, "meters")
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16145. {
  16146. front: {
  16147. height: math.unit(6, "feet"),
  16148. weight: math.unit(150, "lb"),
  16149. name: "Front",
  16150. image: {
  16151. source: "./media/characters/alluria/front.svg",
  16152. extra: 806 / 738,
  16153. bottom: 0.01
  16154. }
  16155. },
  16156. side: {
  16157. height: math.unit(6, "feet"),
  16158. weight: math.unit(150, "lb"),
  16159. name: "Side",
  16160. image: {
  16161. source: "./media/characters/alluria/side.svg",
  16162. extra: 800 / 750,
  16163. }
  16164. },
  16165. back: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(150, "lb"),
  16168. name: "Back",
  16169. image: {
  16170. source: "./media/characters/alluria/back.svg",
  16171. extra: 806 / 738,
  16172. }
  16173. },
  16174. frontMaid: {
  16175. height: math.unit(6, "feet"),
  16176. weight: math.unit(150, "lb"),
  16177. name: "Front (Maid)",
  16178. image: {
  16179. source: "./media/characters/alluria/front-maid.svg",
  16180. extra: 806 / 738,
  16181. bottom: 0.01
  16182. }
  16183. },
  16184. sideMaid: {
  16185. height: math.unit(6, "feet"),
  16186. weight: math.unit(150, "lb"),
  16187. name: "Side (Maid)",
  16188. image: {
  16189. source: "./media/characters/alluria/side-maid.svg",
  16190. extra: 800 / 750,
  16191. bottom: 0.005
  16192. }
  16193. },
  16194. backMaid: {
  16195. height: math.unit(6, "feet"),
  16196. weight: math.unit(150, "lb"),
  16197. name: "Back (Maid)",
  16198. image: {
  16199. source: "./media/characters/alluria/back-maid.svg",
  16200. extra: 806 / 738,
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Micro",
  16207. height: math.unit(6, "inches"),
  16208. default: true
  16209. },
  16210. ]
  16211. ))
  16212. characterMakers.push(() => makeCharacter(
  16213. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16214. {
  16215. front: {
  16216. height: math.unit(6, "feet"),
  16217. weight: math.unit(150, "lb"),
  16218. name: "Front",
  16219. image: {
  16220. source: "./media/characters/kyle/front.svg",
  16221. extra: 1069 / 962,
  16222. bottom: 77.228 / 1727.45
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Macro",
  16229. height: math.unit(150, "feet"),
  16230. default: true
  16231. },
  16232. ]
  16233. ))
  16234. characterMakers.push(() => makeCharacter(
  16235. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16236. {
  16237. front: {
  16238. height: math.unit(6, "feet"),
  16239. weight: math.unit(300, "lb"),
  16240. name: "Front",
  16241. image: {
  16242. source: "./media/characters/duncan/front.svg",
  16243. extra: 1650 / 1482,
  16244. bottom: 0.05
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Macro",
  16251. height: math.unit(100, "feet"),
  16252. default: true
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16258. {
  16259. front: {
  16260. height: math.unit(5 + 4 / 12, "feet"),
  16261. weight: math.unit(220, "lb"),
  16262. name: "Front",
  16263. image: {
  16264. source: "./media/characters/memory/front.svg",
  16265. extra: 3641 / 3545,
  16266. bottom: 0.03
  16267. }
  16268. },
  16269. back: {
  16270. height: math.unit(5 + 4 / 12, "feet"),
  16271. weight: math.unit(220, "lb"),
  16272. name: "Back",
  16273. image: {
  16274. source: "./media/characters/memory/back.svg",
  16275. extra: 3641 / 3545,
  16276. bottom: 0.025
  16277. }
  16278. },
  16279. frontSkirt: {
  16280. height: math.unit(5 + 4 / 12, "feet"),
  16281. weight: math.unit(220, "lb"),
  16282. name: "Front (Skirt)",
  16283. image: {
  16284. source: "./media/characters/memory/front-skirt.svg",
  16285. extra: 3641 / 3545,
  16286. bottom: 0.03
  16287. }
  16288. },
  16289. frontDress: {
  16290. height: math.unit(5 + 4 / 12, "feet"),
  16291. weight: math.unit(220, "lb"),
  16292. name: "Front (Dress)",
  16293. image: {
  16294. source: "./media/characters/memory/front-dress.svg",
  16295. extra: 3641 / 3545,
  16296. bottom: 0.03
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Micro",
  16303. height: math.unit(6, "inches"),
  16304. default: true
  16305. },
  16306. {
  16307. name: "Normal",
  16308. height: math.unit(5 + 4 / 12, "feet")
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(4 + 11 / 12, "feet"),
  16317. weight: math.unit(100, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/luno/front.svg",
  16321. extra: 1535 / 1487,
  16322. bottom: 0.03
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Micro",
  16329. height: math.unit(3, "inches")
  16330. },
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(4 + 11 / 12, "feet"),
  16334. default: true
  16335. },
  16336. {
  16337. name: "Macro",
  16338. height: math.unit(300, "feet")
  16339. },
  16340. {
  16341. name: "Megamacro",
  16342. height: math.unit(700, "miles")
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(6 + 2 / 12, "feet"),
  16351. weight: math.unit(170, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/jamesy/front.svg",
  16355. extra: 440 / 382,
  16356. bottom: 0.005
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Micro",
  16363. height: math.unit(3, "inches")
  16364. },
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(6 + 2 / 12, "feet"),
  16368. default: true
  16369. },
  16370. {
  16371. name: "Macro",
  16372. height: math.unit(300, "feet")
  16373. },
  16374. {
  16375. name: "Megamacro",
  16376. height: math.unit(700, "miles")
  16377. },
  16378. ]
  16379. ))
  16380. characterMakers.push(() => makeCharacter(
  16381. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16382. {
  16383. front: {
  16384. height: math.unit(6, "feet"),
  16385. weight: math.unit(160, "lb"),
  16386. name: "Front",
  16387. image: {
  16388. source: "./media/characters/mark/front.svg",
  16389. extra: 3300 / 3100,
  16390. bottom: 136.42 / 3440.47
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Macro",
  16397. height: math.unit(120, "meters")
  16398. },
  16399. {
  16400. name: "Bigger Macro",
  16401. height: math.unit(350, "meters")
  16402. },
  16403. {
  16404. name: "Megamacro",
  16405. height: math.unit(8, "km"),
  16406. default: true
  16407. },
  16408. {
  16409. name: "Continental",
  16410. height: math.unit(4550, "km")
  16411. },
  16412. {
  16413. name: "Planetary",
  16414. height: math.unit(65000, "km")
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(6, "feet"),
  16423. weight: math.unit(400, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/mac/front.svg",
  16427. extra: 1048 / 987.7,
  16428. bottom: 60 / 1107.6,
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Macro",
  16435. height: math.unit(500, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16442. {
  16443. front: {
  16444. height: math.unit(5 + 2 / 12, "feet"),
  16445. weight: math.unit(190, "lb"),
  16446. name: "Front",
  16447. image: {
  16448. source: "./media/characters/bari/front.svg",
  16449. extra: 3156 / 2880,
  16450. bottom: 0.03
  16451. }
  16452. },
  16453. back: {
  16454. height: math.unit(5 + 2 / 12, "feet"),
  16455. weight: math.unit(190, "lb"),
  16456. name: "Back",
  16457. image: {
  16458. source: "./media/characters/bari/back.svg",
  16459. extra: 3260 / 2834,
  16460. bottom: 0.025
  16461. }
  16462. },
  16463. frontPlush: {
  16464. height: math.unit(5 + 2 / 12, "feet"),
  16465. weight: math.unit(190, "lb"),
  16466. name: "Front (Plush)",
  16467. image: {
  16468. source: "./media/characters/bari/front-plush.svg",
  16469. extra: 1112 / 1061,
  16470. bottom: 0.002
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Micro",
  16477. height: math.unit(3, "inches")
  16478. },
  16479. {
  16480. name: "Normal",
  16481. height: math.unit(5 + 2 / 12, "feet"),
  16482. default: true
  16483. },
  16484. {
  16485. name: "Macro",
  16486. height: math.unit(20, "feet")
  16487. },
  16488. ]
  16489. ))
  16490. characterMakers.push(() => makeCharacter(
  16491. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16492. {
  16493. front: {
  16494. height: math.unit(6 + 1 / 12, "feet"),
  16495. weight: math.unit(275, "lb"),
  16496. name: "Front",
  16497. image: {
  16498. source: "./media/characters/hunter-misha-raven/front.svg"
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Mortal",
  16505. height: math.unit(6 + 1 / 12, "feet")
  16506. },
  16507. {
  16508. name: "Divine",
  16509. height: math.unit(1.12134e34, "parsecs"),
  16510. default: true
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16516. {
  16517. front: {
  16518. height: math.unit(6 + 3 / 12, "feet"),
  16519. weight: math.unit(220, "lb"),
  16520. name: "Front",
  16521. image: {
  16522. source: "./media/characters/max-calore/front.svg",
  16523. extra: 1700 / 1648,
  16524. bottom: 0.01
  16525. }
  16526. },
  16527. back: {
  16528. height: math.unit(6 + 3 / 12, "feet"),
  16529. weight: math.unit(220, "lb"),
  16530. name: "Back",
  16531. image: {
  16532. source: "./media/characters/max-calore/back.svg",
  16533. extra: 1700 / 1648,
  16534. bottom: 0.01
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(6 + 3 / 12, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16548. {
  16549. side: {
  16550. height: math.unit(2 + 8 / 12, "feet"),
  16551. weight: math.unit(99, "lb"),
  16552. name: "Side",
  16553. image: {
  16554. source: "./media/characters/aspen/side.svg",
  16555. extra: 152 / 138,
  16556. bottom: 0.032
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(2 + 8 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16570. {
  16571. side: {
  16572. height: math.unit(3 + 2 / 12, "feet"),
  16573. weight: math.unit(224, "lb"),
  16574. name: "Side",
  16575. image: {
  16576. source: "./media/characters/sheila-feral-wolf/side.svg",
  16577. extra: 179 / 166,
  16578. bottom: 0.03
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(3 + 2 / 12, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16592. {
  16593. side: {
  16594. height: math.unit(1 + 9 / 12, "feet"),
  16595. weight: math.unit(38, "lb"),
  16596. name: "Side",
  16597. image: {
  16598. source: "./media/characters/michelle/side.svg",
  16599. extra: 147 / 136.7,
  16600. bottom: 0.03
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(1 + 9 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16614. {
  16615. front: {
  16616. height: math.unit(1 + 1 / 12, "feet"),
  16617. weight: math.unit(18, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/nino/front.svg"
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(1 + 1 / 12, "feet"),
  16628. default: true
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(1, "feet"),
  16637. weight: math.unit(16, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/viola/front.svg"
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(1, "feet"),
  16648. default: true
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16654. {
  16655. front: {
  16656. height: math.unit(6 + 5 / 12, "feet"),
  16657. weight: math.unit(580, "lb"),
  16658. name: "Front",
  16659. image: {
  16660. source: "./media/characters/atlas/front.svg",
  16661. extra: 298.5 / 290,
  16662. bottom: 0.015
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(6 + 5 / 12, "feet"),
  16670. default: true
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16676. {
  16677. side: {
  16678. height: math.unit(1 + 10 / 12, "feet"),
  16679. weight: math.unit(25, "lb"),
  16680. name: "Side",
  16681. image: {
  16682. source: "./media/characters/davy/side.svg",
  16683. extra: 200 / 170,
  16684. bottom: 0.01
  16685. }
  16686. },
  16687. },
  16688. [
  16689. {
  16690. name: "Normal",
  16691. height: math.unit(1 + 10 / 12, "feet"),
  16692. default: true
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16698. {
  16699. side: {
  16700. height: math.unit(4 + 8 / 12, "feet"),
  16701. weight: math.unit(166, "lb"),
  16702. name: "Side",
  16703. image: {
  16704. source: "./media/characters/fiona/side.svg",
  16705. extra: 232 / 220,
  16706. bottom: 0.03
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(4 + 8 / 12, "feet"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16720. {
  16721. front: {
  16722. height: math.unit(2, "feet"),
  16723. weight: math.unit(62, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/lyla/front.svg",
  16727. bottom: 0.1
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(2, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16741. {
  16742. side: {
  16743. height: math.unit(1.8, "feet"),
  16744. weight: math.unit(44, "lb"),
  16745. name: "Side",
  16746. image: {
  16747. source: "./media/characters/perseus/side.svg",
  16748. bottom: 0.21
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Normal",
  16755. height: math.unit(1.8, "feet"),
  16756. default: true
  16757. },
  16758. ]
  16759. ))
  16760. characterMakers.push(() => makeCharacter(
  16761. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16762. {
  16763. side: {
  16764. height: math.unit(4 + 2 / 12, "feet"),
  16765. weight: math.unit(20, "lb"),
  16766. name: "Side",
  16767. image: {
  16768. source: "./media/characters/remus/side.svg"
  16769. }
  16770. },
  16771. },
  16772. [
  16773. {
  16774. name: "Normal",
  16775. height: math.unit(4 + 2 / 12, "feet"),
  16776. default: true
  16777. },
  16778. ]
  16779. ))
  16780. characterMakers.push(() => makeCharacter(
  16781. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16782. {
  16783. front: {
  16784. height: math.unit(4 + 11 / 12, "feet"),
  16785. weight: math.unit(114, "lb"),
  16786. name: "Front",
  16787. image: {
  16788. source: "./media/characters/raf/front.svg",
  16789. bottom: 20.5 / 1863
  16790. }
  16791. },
  16792. side: {
  16793. height: math.unit(4 + 11 / 12, "feet"),
  16794. weight: math.unit(114, "lb"),
  16795. name: "Side",
  16796. image: {
  16797. source: "./media/characters/raf/side.svg",
  16798. bottom: 22 / 1822
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Micro",
  16805. height: math.unit(2, "inches")
  16806. },
  16807. {
  16808. name: "Normal",
  16809. height: math.unit(4 + 11 / 12, "feet"),
  16810. default: true
  16811. },
  16812. {
  16813. name: "Macro",
  16814. height: math.unit(70, "feet")
  16815. },
  16816. ]
  16817. ))
  16818. characterMakers.push(() => makeCharacter(
  16819. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16820. {
  16821. front: {
  16822. height: math.unit(1.5, "meters"),
  16823. weight: math.unit(68, "kg"),
  16824. name: "Front",
  16825. image: {
  16826. source: "./media/characters/liam-einarr/front.svg",
  16827. extra: 2822 / 2666
  16828. }
  16829. },
  16830. back: {
  16831. height: math.unit(1.5, "meters"),
  16832. weight: math.unit(68, "kg"),
  16833. name: "Back",
  16834. image: {
  16835. source: "./media/characters/liam-einarr/back.svg",
  16836. extra: 2822 / 2666,
  16837. bottom: 0.015
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(1.5, "meters"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Macro",
  16849. height: math.unit(150, "meters")
  16850. },
  16851. {
  16852. name: "Megamacro",
  16853. height: math.unit(35, "km")
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16859. {
  16860. front: {
  16861. height: math.unit(6, "feet"),
  16862. weight: math.unit(75, "kg"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/linda/front.svg",
  16866. extra: 930 / 874,
  16867. bottom: 0.004
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(6, "feet"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16881. {
  16882. front: {
  16883. height: math.unit(6 + 8 / 12, "feet"),
  16884. weight: math.unit(220, "lb"),
  16885. name: "Front",
  16886. image: {
  16887. source: "./media/characters/caylex/front.svg",
  16888. extra: 821 / 772,
  16889. bottom: 0.07
  16890. }
  16891. },
  16892. back: {
  16893. height: math.unit(6 + 8 / 12, "feet"),
  16894. weight: math.unit(220, "lb"),
  16895. name: "Back",
  16896. image: {
  16897. source: "./media/characters/caylex/back.svg",
  16898. extra: 821 / 772,
  16899. bottom: 0.022
  16900. }
  16901. },
  16902. hand: {
  16903. height: math.unit(1.25, "feet"),
  16904. name: "Hand",
  16905. image: {
  16906. source: "./media/characters/caylex/hand.svg"
  16907. }
  16908. },
  16909. foot: {
  16910. height: math.unit(1.6, "feet"),
  16911. name: "Foot",
  16912. image: {
  16913. source: "./media/characters/caylex/foot.svg"
  16914. }
  16915. },
  16916. armored: {
  16917. height: math.unit(6 + 8 / 12, "feet"),
  16918. weight: math.unit(250, "lb"),
  16919. name: "Armored",
  16920. image: {
  16921. source: "./media/characters/caylex/armored.svg",
  16922. extra: 1420 / 1310,
  16923. bottom: 0.045
  16924. }
  16925. },
  16926. },
  16927. [
  16928. {
  16929. name: "Normal",
  16930. height: math.unit(6 + 8 / 12, "feet"),
  16931. default: true
  16932. },
  16933. {
  16934. name: "Normal+",
  16935. height: math.unit(12, "feet")
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16941. {
  16942. front: {
  16943. height: math.unit(7 + 6 / 12, "feet"),
  16944. weight: math.unit(288, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/alana/front.svg",
  16948. extra: 679 / 653,
  16949. bottom: 22.5 / 701
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(7 + 6 / 12, "feet")
  16957. },
  16958. {
  16959. name: "Large",
  16960. height: math.unit(50, "feet")
  16961. },
  16962. {
  16963. name: "Macro",
  16964. height: math.unit(100, "feet"),
  16965. default: true
  16966. },
  16967. {
  16968. name: "Macro+",
  16969. height: math.unit(200, "feet")
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16975. {
  16976. front: {
  16977. height: math.unit(6 + 1 / 12, "feet"),
  16978. weight: math.unit(210, "lb"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/hasani/front.svg",
  16982. extra: 244 / 232,
  16983. bottom: 0.01
  16984. }
  16985. },
  16986. back: {
  16987. height: math.unit(6 + 1 / 12, "feet"),
  16988. weight: math.unit(210, "lb"),
  16989. name: "Back",
  16990. image: {
  16991. source: "./media/characters/hasani/back.svg",
  16992. extra: 244 / 232,
  16993. bottom: 0.01
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Normal",
  17000. height: math.unit(6 + 1 / 12, "feet")
  17001. },
  17002. {
  17003. name: "Macro",
  17004. height: math.unit(175, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17011. {
  17012. front: {
  17013. height: math.unit(1.82, "meters"),
  17014. weight: math.unit(140, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/nita/front.svg",
  17018. extra: 2473 / 2363,
  17019. bottom: 0.01
  17020. }
  17021. },
  17022. },
  17023. [
  17024. {
  17025. name: "Normal",
  17026. height: math.unit(1.82, "m")
  17027. },
  17028. {
  17029. name: "Macro",
  17030. height: math.unit(300, "m")
  17031. },
  17032. {
  17033. name: "Mistake Canon",
  17034. height: math.unit(0.5, "miles"),
  17035. default: true
  17036. },
  17037. {
  17038. name: "Big Mistake",
  17039. height: math.unit(13, "miles")
  17040. },
  17041. {
  17042. name: "Playing God",
  17043. height: math.unit(2450, "miles")
  17044. },
  17045. ]
  17046. ))
  17047. characterMakers.push(() => makeCharacter(
  17048. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17049. {
  17050. front: {
  17051. height: math.unit(4, "feet"),
  17052. weight: math.unit(120, "lb"),
  17053. name: "Front",
  17054. image: {
  17055. source: "./media/characters/shiriko/front.svg",
  17056. extra: 195 / 188
  17057. }
  17058. },
  17059. },
  17060. [
  17061. {
  17062. name: "Normal",
  17063. height: math.unit(4, "feet"),
  17064. default: true
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(6, "feet"),
  17073. name: "front",
  17074. image: {
  17075. source: "./media/characters/deja/front.svg",
  17076. extra: 926 / 840,
  17077. bottom: 0.07
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Planck Length",
  17084. height: math.unit(1.6e-35, "meters")
  17085. },
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(30.48, "meters"),
  17089. default: true
  17090. },
  17091. {
  17092. name: "Universal",
  17093. height: math.unit(8.8e26, "meters")
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17099. {
  17100. side: {
  17101. height: math.unit(8, "feet"),
  17102. weight: math.unit(6300, "lb"),
  17103. name: "Side",
  17104. image: {
  17105. source: "./media/characters/anima/side.svg",
  17106. bottom: 0.035
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(8, "feet"),
  17114. default: true
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17120. {
  17121. front: {
  17122. height: math.unit(8, "feet"),
  17123. weight: math.unit(350, "lb"),
  17124. name: "Front",
  17125. image: {
  17126. source: "./media/characters/bianca/front.svg",
  17127. extra: 234 / 225,
  17128. bottom: 0.03
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(8, "feet"),
  17136. default: true
  17137. },
  17138. ]
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17142. {
  17143. front: {
  17144. height: math.unit(6, "feet"),
  17145. weight: math.unit(150, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/adinia/front.svg",
  17149. extra: 1845 / 1672,
  17150. bottom: 0.02
  17151. }
  17152. },
  17153. back: {
  17154. height: math.unit(6, "feet"),
  17155. weight: math.unit(150, "lb"),
  17156. name: "Back",
  17157. image: {
  17158. source: "./media/characters/adinia/back.svg",
  17159. extra: 1845 / 1672,
  17160. bottom: 0.002
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Normal",
  17167. height: math.unit(11 + 5 / 12, "feet"),
  17168. default: true
  17169. },
  17170. ]
  17171. ))
  17172. characterMakers.push(() => makeCharacter(
  17173. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17174. {
  17175. front: {
  17176. height: math.unit(3, "meters"),
  17177. weight: math.unit(200, "kg"),
  17178. name: "Front",
  17179. image: {
  17180. source: "./media/characters/lykasa/front.svg",
  17181. extra: 1076 / 976,
  17182. bottom: 0.06
  17183. }
  17184. },
  17185. },
  17186. [
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(3, "meters")
  17190. },
  17191. {
  17192. name: "Kaiju",
  17193. height: math.unit(120, "meters"),
  17194. default: true
  17195. },
  17196. {
  17197. name: "Mega Kaiju",
  17198. height: math.unit(240, "km")
  17199. },
  17200. {
  17201. name: "Giga Kaiju",
  17202. height: math.unit(400, "megameters")
  17203. },
  17204. {
  17205. name: "Tera Kaiju",
  17206. height: math.unit(800, "gigameters")
  17207. },
  17208. {
  17209. name: "Kaiju Dragon Goddess",
  17210. height: math.unit(26, "zettaparsecs")
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17216. {
  17217. side: {
  17218. height: math.unit(283 / 124 * 6, "feet"),
  17219. weight: math.unit(35000, "lb"),
  17220. name: "Side",
  17221. image: {
  17222. source: "./media/characters/malfaren/side.svg",
  17223. extra: 2500 / 1010,
  17224. bottom: 0.01
  17225. }
  17226. },
  17227. front: {
  17228. height: math.unit(22.36, "feet"),
  17229. weight: math.unit(35000, "lb"),
  17230. name: "Front",
  17231. image: {
  17232. source: "./media/characters/malfaren/front.svg",
  17233. extra: 1631 / 1476,
  17234. bottom: 0.01
  17235. }
  17236. },
  17237. maw: {
  17238. height: math.unit(6.9, "feet"),
  17239. name: "Maw",
  17240. image: {
  17241. source: "./media/characters/malfaren/maw.svg"
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Big",
  17248. height: math.unit(283 / 162 * 6, "feet"),
  17249. },
  17250. {
  17251. name: "Bigger",
  17252. height: math.unit(283 / 124 * 6, "feet")
  17253. },
  17254. {
  17255. name: "Massive",
  17256. height: math.unit(283 / 92 * 6, "feet"),
  17257. default: true
  17258. },
  17259. {
  17260. name: "👀💦",
  17261. height: math.unit(283 / 73 * 6, "feet"),
  17262. },
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17267. {
  17268. front: {
  17269. height: math.unit(1.7, "m"),
  17270. weight: math.unit(70, "kg"),
  17271. name: "Front",
  17272. image: {
  17273. source: "./media/characters/kernel/front.svg",
  17274. extra: 222 / 210,
  17275. bottom: 0.007
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Nano",
  17282. height: math.unit(17, "micrometers")
  17283. },
  17284. {
  17285. name: "Micro",
  17286. height: math.unit(1.7, "mm")
  17287. },
  17288. {
  17289. name: "Small",
  17290. height: math.unit(1.7, "cm")
  17291. },
  17292. {
  17293. name: "Normal",
  17294. height: math.unit(1.7, "m"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(1.75, "meters"),
  17304. weight: math.unit(65, "kg"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/jayne-folest/front.svg",
  17308. extra: 2115 / 2007,
  17309. bottom: 0.02
  17310. }
  17311. },
  17312. back: {
  17313. height: math.unit(1.75, "meters"),
  17314. weight: math.unit(65, "kg"),
  17315. name: "Back",
  17316. image: {
  17317. source: "./media/characters/jayne-folest/back.svg",
  17318. extra: 2115 / 2007,
  17319. bottom: 0.005
  17320. }
  17321. },
  17322. frontClothed: {
  17323. height: math.unit(1.75, "meters"),
  17324. weight: math.unit(65, "kg"),
  17325. name: "Front (Clothed)",
  17326. image: {
  17327. source: "./media/characters/jayne-folest/front-clothed.svg",
  17328. extra: 2115 / 2007,
  17329. bottom: 0.035
  17330. }
  17331. },
  17332. hand: {
  17333. height: math.unit(1 / 1.260, "feet"),
  17334. name: "Hand",
  17335. image: {
  17336. source: "./media/characters/jayne-folest/hand.svg"
  17337. }
  17338. },
  17339. foot: {
  17340. height: math.unit(1 / 0.918, "feet"),
  17341. name: "Foot",
  17342. image: {
  17343. source: "./media/characters/jayne-folest/foot.svg"
  17344. }
  17345. },
  17346. },
  17347. [
  17348. {
  17349. name: "Micro",
  17350. height: math.unit(4, "cm")
  17351. },
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(1.75, "meters")
  17355. },
  17356. {
  17357. name: "Macro",
  17358. height: math.unit(47.5, "meters"),
  17359. default: true
  17360. },
  17361. ]
  17362. ))
  17363. characterMakers.push(() => makeCharacter(
  17364. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17365. {
  17366. front: {
  17367. height: math.unit(180, "cm"),
  17368. weight: math.unit(70, "kg"),
  17369. name: "Front",
  17370. image: {
  17371. source: "./media/characters/algier/front.svg",
  17372. extra: 596 / 572,
  17373. bottom: 0.04
  17374. }
  17375. },
  17376. back: {
  17377. height: math.unit(180, "cm"),
  17378. weight: math.unit(70, "kg"),
  17379. name: "Back",
  17380. image: {
  17381. source: "./media/characters/algier/back.svg",
  17382. extra: 596 / 572,
  17383. bottom: 0.025
  17384. }
  17385. },
  17386. frontdressed: {
  17387. height: math.unit(180, "cm"),
  17388. weight: math.unit(150, "kg"),
  17389. name: "Front-dressed",
  17390. image: {
  17391. source: "./media/characters/algier/front-dressed.svg",
  17392. extra: 596 / 572,
  17393. bottom: 0.038
  17394. }
  17395. },
  17396. },
  17397. [
  17398. {
  17399. name: "Micro",
  17400. height: math.unit(5, "cm")
  17401. },
  17402. {
  17403. name: "Normal",
  17404. height: math.unit(180, "cm"),
  17405. default: true
  17406. },
  17407. {
  17408. name: "Macro",
  17409. height: math.unit(64, "m")
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17415. {
  17416. upright: {
  17417. height: math.unit(7, "feet"),
  17418. weight: math.unit(300, "lb"),
  17419. name: "Upright",
  17420. image: {
  17421. source: "./media/characters/pretzel/upright.svg",
  17422. extra: 534 / 522,
  17423. bottom: 0.065
  17424. }
  17425. },
  17426. sprawling: {
  17427. height: math.unit(3.75, "feet"),
  17428. weight: math.unit(300, "lb"),
  17429. name: "Sprawling",
  17430. image: {
  17431. source: "./media/characters/pretzel/sprawling.svg",
  17432. extra: 314 / 281,
  17433. bottom: 0.1
  17434. }
  17435. },
  17436. tongue: {
  17437. height: math.unit(2, "feet"),
  17438. name: "Tongue",
  17439. image: {
  17440. source: "./media/characters/pretzel/tongue.svg"
  17441. }
  17442. },
  17443. },
  17444. [
  17445. {
  17446. name: "Normal",
  17447. height: math.unit(7, "feet"),
  17448. default: true
  17449. },
  17450. {
  17451. name: "Oversized",
  17452. height: math.unit(15, "feet")
  17453. },
  17454. {
  17455. name: "Huge",
  17456. height: math.unit(30, "feet")
  17457. },
  17458. {
  17459. name: "Macro",
  17460. height: math.unit(250, "feet")
  17461. },
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17466. {
  17467. sideFront: {
  17468. height: math.unit(5 + 2 / 12, "feet"),
  17469. weight: math.unit(120, "lb"),
  17470. name: "Front Side",
  17471. image: {
  17472. source: "./media/characters/roxi/side-front.svg",
  17473. extra: 2924 / 2717,
  17474. bottom: 0.08
  17475. }
  17476. },
  17477. sideBack: {
  17478. height: math.unit(5 + 2 / 12, "feet"),
  17479. weight: math.unit(120, "lb"),
  17480. name: "Back Side",
  17481. image: {
  17482. source: "./media/characters/roxi/side-back.svg",
  17483. extra: 2904 / 2693,
  17484. bottom: 0.06
  17485. }
  17486. },
  17487. front: {
  17488. height: math.unit(5 + 2 / 12, "feet"),
  17489. weight: math.unit(120, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/roxi/front.svg",
  17493. extra: 2028 / 1907,
  17494. bottom: 0.01
  17495. }
  17496. },
  17497. frontAlt: {
  17498. height: math.unit(5 + 2 / 12, "feet"),
  17499. weight: math.unit(120, "lb"),
  17500. name: "Front (Alt)",
  17501. image: {
  17502. source: "./media/characters/roxi/front-alt.svg",
  17503. extra: 1828 / 1798,
  17504. bottom: 0.01
  17505. }
  17506. },
  17507. sitting: {
  17508. height: math.unit(2.8, "feet"),
  17509. weight: math.unit(120, "lb"),
  17510. name: "Sitting",
  17511. image: {
  17512. source: "./media/characters/roxi/sitting.svg",
  17513. extra: 2660 / 2462,
  17514. bottom: 0.1
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(5 + 2 / 12, "feet"),
  17522. default: true
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17528. {
  17529. side: {
  17530. height: math.unit(55, "feet"),
  17531. weight: math.unit(153, "tons"),
  17532. name: "Side",
  17533. image: {
  17534. source: "./media/characters/shadow/side.svg",
  17535. extra: 701 / 628,
  17536. bottom: 0.02
  17537. }
  17538. },
  17539. flying: {
  17540. height: math.unit(145, "feet"),
  17541. weight: math.unit(153, "tons"),
  17542. name: "Flying",
  17543. image: {
  17544. source: "./media/characters/shadow/flying.svg"
  17545. }
  17546. },
  17547. },
  17548. [
  17549. {
  17550. name: "Normal",
  17551. height: math.unit(55, "feet"),
  17552. default: true
  17553. },
  17554. ]
  17555. ))
  17556. characterMakers.push(() => makeCharacter(
  17557. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17558. {
  17559. front: {
  17560. height: math.unit(6, "feet"),
  17561. weight: math.unit(200, "lb"),
  17562. name: "Front",
  17563. image: {
  17564. source: "./media/characters/marcie/front.svg",
  17565. extra: 960 / 876,
  17566. bottom: 58 / 1017.87
  17567. }
  17568. },
  17569. },
  17570. [
  17571. {
  17572. name: "Macro",
  17573. height: math.unit(1, "mile"),
  17574. default: true
  17575. },
  17576. ]
  17577. ))
  17578. characterMakers.push(() => makeCharacter(
  17579. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17580. {
  17581. front: {
  17582. height: math.unit(7, "feet"),
  17583. weight: math.unit(200, "lb"),
  17584. name: "Front",
  17585. image: {
  17586. source: "./media/characters/kachina/front.svg",
  17587. extra: 1290.68 / 1119,
  17588. bottom: 36.5 / 1327.18
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Normal",
  17595. height: math.unit(7, "feet"),
  17596. default: true
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17602. {
  17603. looking: {
  17604. height: math.unit(2, "meters"),
  17605. weight: math.unit(300, "kg"),
  17606. name: "Looking",
  17607. image: {
  17608. source: "./media/characters/kash/looking.svg",
  17609. extra: 474 / 344,
  17610. bottom: 0.03
  17611. }
  17612. },
  17613. side: {
  17614. height: math.unit(2, "meters"),
  17615. weight: math.unit(300, "kg"),
  17616. name: "Side",
  17617. image: {
  17618. source: "./media/characters/kash/side.svg",
  17619. extra: 302 / 251,
  17620. bottom: 0.03
  17621. }
  17622. },
  17623. front: {
  17624. height: math.unit(2, "meters"),
  17625. weight: math.unit(300, "kg"),
  17626. name: "Front",
  17627. image: {
  17628. source: "./media/characters/kash/front.svg",
  17629. extra: 495 / 360,
  17630. bottom: 0.015
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Normal",
  17637. height: math.unit(2, "meters"),
  17638. default: true
  17639. },
  17640. {
  17641. name: "Big",
  17642. height: math.unit(3, "meters")
  17643. },
  17644. {
  17645. name: "Large",
  17646. height: math.unit(5, "meters")
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17652. {
  17653. feeding: {
  17654. height: math.unit(6.7, "feet"),
  17655. weight: math.unit(350, "lb"),
  17656. name: "Feeding",
  17657. image: {
  17658. source: "./media/characters/lalim/feeding.svg",
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(6.7, "feet"),
  17666. default: true
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17672. {
  17673. front: {
  17674. height: math.unit(9.5, "feet"),
  17675. weight: math.unit(600, "lb"),
  17676. name: "Front",
  17677. image: {
  17678. source: "./media/characters/de'vout/front.svg",
  17679. extra: 1443 / 1328,
  17680. bottom: 0.025
  17681. }
  17682. },
  17683. back: {
  17684. height: math.unit(9.5, "feet"),
  17685. weight: math.unit(600, "lb"),
  17686. name: "Back",
  17687. image: {
  17688. source: "./media/characters/de'vout/back.svg",
  17689. extra: 1443 / 1328
  17690. }
  17691. },
  17692. frontDressed: {
  17693. height: math.unit(9.5, "feet"),
  17694. weight: math.unit(600, "lb"),
  17695. name: "Front (Dressed",
  17696. image: {
  17697. source: "./media/characters/de'vout/front-dressed.svg",
  17698. extra: 1443 / 1328,
  17699. bottom: 0.025
  17700. }
  17701. },
  17702. backDressed: {
  17703. height: math.unit(9.5, "feet"),
  17704. weight: math.unit(600, "lb"),
  17705. name: "Back (Dressed",
  17706. image: {
  17707. source: "./media/characters/de'vout/back-dressed.svg",
  17708. extra: 1443 / 1328
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Normal",
  17715. height: math.unit(9.5, "feet"),
  17716. default: true
  17717. },
  17718. ]
  17719. ))
  17720. characterMakers.push(() => makeCharacter(
  17721. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17722. {
  17723. front: {
  17724. height: math.unit(8, "feet"),
  17725. weight: math.unit(225, "lb"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/talana/front.svg",
  17729. extra: 1410 / 1300,
  17730. bottom: 0.015
  17731. }
  17732. },
  17733. frontDressed: {
  17734. height: math.unit(8, "feet"),
  17735. weight: math.unit(225, "lb"),
  17736. name: "Front (Dressed",
  17737. image: {
  17738. source: "./media/characters/talana/front-dressed.svg",
  17739. extra: 1410 / 1300,
  17740. bottom: 0.015
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(8, "feet"),
  17748. default: true
  17749. },
  17750. ]
  17751. ))
  17752. characterMakers.push(() => makeCharacter(
  17753. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17754. {
  17755. side: {
  17756. height: math.unit(7.2, "feet"),
  17757. weight: math.unit(150, "lb"),
  17758. name: "Side",
  17759. image: {
  17760. source: "./media/characters/xeauvok/side.svg",
  17761. extra: 1975 / 1523,
  17762. bottom: 0.07
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(7.2, "feet"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17776. {
  17777. side: {
  17778. height: math.unit(10, "feet"),
  17779. weight: math.unit(900, "kg"),
  17780. name: "Side",
  17781. image: {
  17782. source: "./media/characters/zara/side.svg",
  17783. extra: 504 / 498
  17784. }
  17785. },
  17786. },
  17787. [
  17788. {
  17789. name: "Normal",
  17790. height: math.unit(10, "feet"),
  17791. default: true
  17792. },
  17793. ]
  17794. ))
  17795. characterMakers.push(() => makeCharacter(
  17796. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17797. {
  17798. side: {
  17799. height: math.unit(6, "feet"),
  17800. weight: math.unit(150, "lb"),
  17801. name: "Side",
  17802. image: {
  17803. source: "./media/characters/richard-dragon/side.svg",
  17804. extra: 845 / 340,
  17805. bottom: 0.017
  17806. }
  17807. },
  17808. maw: {
  17809. height: math.unit(2.97, "feet"),
  17810. name: "Maw",
  17811. image: {
  17812. source: "./media/characters/richard-dragon/maw.svg"
  17813. }
  17814. },
  17815. },
  17816. [
  17817. ]
  17818. ))
  17819. characterMakers.push(() => makeCharacter(
  17820. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17821. {
  17822. front: {
  17823. height: math.unit(4, "feet"),
  17824. weight: math.unit(100, "lb"),
  17825. name: "Front",
  17826. image: {
  17827. source: "./media/characters/richard-smeargle/front.svg",
  17828. extra: 2952 / 2820,
  17829. bottom: 0.028
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Normal",
  17836. height: math.unit(4, "feet"),
  17837. default: true
  17838. },
  17839. {
  17840. name: "Dynamax",
  17841. height: math.unit(20, "meters")
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17847. {
  17848. front: {
  17849. height: math.unit(6, "feet"),
  17850. weight: math.unit(110, "lb"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/klay/front.svg",
  17854. extra: 962 / 883,
  17855. bottom: 0.04
  17856. }
  17857. },
  17858. back: {
  17859. height: math.unit(6, "feet"),
  17860. weight: math.unit(110, "lb"),
  17861. name: "Back",
  17862. image: {
  17863. source: "./media/characters/klay/back.svg",
  17864. extra: 962 / 883
  17865. }
  17866. },
  17867. beans: {
  17868. height: math.unit(1.15, "feet"),
  17869. name: "Beans",
  17870. image: {
  17871. source: "./media/characters/klay/beans.svg"
  17872. }
  17873. },
  17874. },
  17875. [
  17876. {
  17877. name: "Micro",
  17878. height: math.unit(6, "inches")
  17879. },
  17880. {
  17881. name: "Mini",
  17882. height: math.unit(3, "feet")
  17883. },
  17884. {
  17885. name: "Normal",
  17886. height: math.unit(6, "feet"),
  17887. default: true
  17888. },
  17889. {
  17890. name: "Big",
  17891. height: math.unit(25, "feet")
  17892. },
  17893. {
  17894. name: "Macro",
  17895. height: math.unit(100, "feet")
  17896. },
  17897. {
  17898. name: "Megamacro",
  17899. height: math.unit(400, "feet")
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17905. {
  17906. front: {
  17907. height: math.unit(6, "feet"),
  17908. weight: math.unit(160, "lb"),
  17909. name: "Front",
  17910. image: {
  17911. source: "./media/characters/marcus/front.svg",
  17912. extra: 734 / 676,
  17913. bottom: 0.03
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Little",
  17920. height: math.unit(6, "feet")
  17921. },
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(110, "feet"),
  17925. default: true
  17926. },
  17927. {
  17928. name: "Macro",
  17929. height: math.unit(250, "feet")
  17930. },
  17931. {
  17932. name: "Megamacro",
  17933. height: math.unit(1000, "feet")
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17939. {
  17940. front: {
  17941. height: math.unit(7, "feet"),
  17942. weight: math.unit(275, "lb"),
  17943. name: "Front",
  17944. image: {
  17945. source: "./media/characters/claude-delroute/front.svg",
  17946. extra: 230 / 214,
  17947. bottom: 0.007
  17948. }
  17949. },
  17950. side: {
  17951. height: math.unit(7, "feet"),
  17952. weight: math.unit(275, "lb"),
  17953. name: "Side",
  17954. image: {
  17955. source: "./media/characters/claude-delroute/side.svg",
  17956. extra: 222 / 214,
  17957. bottom: 0.01
  17958. }
  17959. },
  17960. back: {
  17961. height: math.unit(7, "feet"),
  17962. weight: math.unit(275, "lb"),
  17963. name: "Back",
  17964. image: {
  17965. source: "./media/characters/claude-delroute/back.svg",
  17966. extra: 230 / 214,
  17967. bottom: 0.015
  17968. }
  17969. },
  17970. maw: {
  17971. height: math.unit(0.6407, "meters"),
  17972. name: "Maw",
  17973. image: {
  17974. source: "./media/characters/claude-delroute/maw.svg"
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Normal",
  17981. height: math.unit(7, "feet"),
  17982. default: true
  17983. },
  17984. {
  17985. name: "Lorge",
  17986. height: math.unit(20, "feet")
  17987. },
  17988. ]
  17989. ))
  17990. characterMakers.push(() => makeCharacter(
  17991. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17992. {
  17993. front: {
  17994. height: math.unit(8 + 4 / 12, "feet"),
  17995. weight: math.unit(600, "lb"),
  17996. name: "Front",
  17997. image: {
  17998. source: "./media/characters/dragonien/front.svg",
  17999. extra: 100 / 94,
  18000. bottom: 3.3 / 103.3445
  18001. }
  18002. },
  18003. back: {
  18004. height: math.unit(8 + 4 / 12, "feet"),
  18005. weight: math.unit(600, "lb"),
  18006. name: "Back",
  18007. image: {
  18008. source: "./media/characters/dragonien/back.svg",
  18009. extra: 776 / 746,
  18010. bottom: 6.4 / 782.0616
  18011. }
  18012. },
  18013. foot: {
  18014. height: math.unit(1.54, "feet"),
  18015. name: "Foot",
  18016. image: {
  18017. source: "./media/characters/dragonien/foot.svg",
  18018. }
  18019. },
  18020. },
  18021. [
  18022. {
  18023. name: "Normal",
  18024. height: math.unit(8 + 4 / 12, "feet"),
  18025. default: true
  18026. },
  18027. {
  18028. name: "Macro",
  18029. height: math.unit(200, "feet")
  18030. },
  18031. {
  18032. name: "Megamacro",
  18033. height: math.unit(1, "mile")
  18034. },
  18035. {
  18036. name: "Gigamacro",
  18037. height: math.unit(1000, "miles")
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18043. {
  18044. front: {
  18045. height: math.unit(5 + 2 / 12, "feet"),
  18046. weight: math.unit(110, "lb"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/desta/front.svg",
  18050. extra: 767 / 726,
  18051. bottom: 11.7 / 779
  18052. }
  18053. },
  18054. back: {
  18055. height: math.unit(5 + 2 / 12, "feet"),
  18056. weight: math.unit(110, "lb"),
  18057. name: "Back",
  18058. image: {
  18059. source: "./media/characters/desta/back.svg",
  18060. extra: 777 / 728,
  18061. bottom: 6 / 784
  18062. }
  18063. },
  18064. frontAlt: {
  18065. height: math.unit(5 + 2 / 12, "feet"),
  18066. weight: math.unit(110, "lb"),
  18067. name: "Front",
  18068. image: {
  18069. source: "./media/characters/desta/front-alt.svg",
  18070. extra: 1482 / 1417
  18071. }
  18072. },
  18073. side: {
  18074. height: math.unit(5 + 2 / 12, "feet"),
  18075. weight: math.unit(110, "lb"),
  18076. name: "Side",
  18077. image: {
  18078. source: "./media/characters/desta/side.svg",
  18079. extra: 2579 / 2491,
  18080. bottom: 0.053
  18081. }
  18082. },
  18083. },
  18084. [
  18085. {
  18086. name: "Micro",
  18087. height: math.unit(6, "inches")
  18088. },
  18089. {
  18090. name: "Normal",
  18091. height: math.unit(5 + 2 / 12, "feet"),
  18092. default: true
  18093. },
  18094. {
  18095. name: "Macro",
  18096. height: math.unit(62, "feet")
  18097. },
  18098. {
  18099. name: "Megamacro",
  18100. height: math.unit(1800, "feet")
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18106. {
  18107. front: {
  18108. height: math.unit(10, "feet"),
  18109. weight: math.unit(700, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/storm-alystar/front.svg",
  18113. extra: 2112 / 1898,
  18114. bottom: 0.034
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Micro",
  18121. height: math.unit(3.5, "inches")
  18122. },
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(10, "feet"),
  18126. default: true
  18127. },
  18128. {
  18129. name: "Macro",
  18130. height: math.unit(400, "feet")
  18131. },
  18132. {
  18133. name: "Deific",
  18134. height: math.unit(60, "miles")
  18135. },
  18136. ]
  18137. ))
  18138. characterMakers.push(() => makeCharacter(
  18139. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18140. {
  18141. front: {
  18142. height: math.unit(2.35, "meters"),
  18143. weight: math.unit(119, "kg"),
  18144. name: "Front",
  18145. image: {
  18146. source: "./media/characters/ilia/front.svg",
  18147. extra: 1285 / 1255,
  18148. bottom: 0.06
  18149. }
  18150. },
  18151. },
  18152. [
  18153. {
  18154. name: "Normal",
  18155. height: math.unit(2.35, "meters")
  18156. },
  18157. {
  18158. name: "Macro",
  18159. height: math.unit(140, "meters"),
  18160. default: true
  18161. },
  18162. {
  18163. name: "Megamacro",
  18164. height: math.unit(100, "miles")
  18165. },
  18166. ]
  18167. ))
  18168. characterMakers.push(() => makeCharacter(
  18169. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18170. {
  18171. front: {
  18172. height: math.unit(6 + 5 / 12, "feet"),
  18173. weight: math.unit(190, "lb"),
  18174. name: "Front",
  18175. image: {
  18176. source: "./media/characters/kingdead/front.svg",
  18177. extra: 1228 / 1177
  18178. }
  18179. },
  18180. },
  18181. [
  18182. {
  18183. name: "Micro",
  18184. height: math.unit(7, "inches")
  18185. },
  18186. {
  18187. name: "Normal",
  18188. height: math.unit(6 + 5 / 12, "feet")
  18189. },
  18190. {
  18191. name: "Macro",
  18192. height: math.unit(150, "feet"),
  18193. default: true
  18194. },
  18195. {
  18196. name: "Megamacro",
  18197. height: math.unit(200, "miles")
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(8, "feet"),
  18206. weight: math.unit(600, "lb"),
  18207. name: "Front",
  18208. image: {
  18209. source: "./media/characters/kyrehx/front.svg",
  18210. extra: 1195 / 1095,
  18211. bottom: 0.034
  18212. }
  18213. },
  18214. },
  18215. [
  18216. {
  18217. name: "Micro",
  18218. height: math.unit(2, "inches")
  18219. },
  18220. {
  18221. name: "Normal",
  18222. height: math.unit(8, "feet"),
  18223. default: true
  18224. },
  18225. {
  18226. name: "Macro",
  18227. height: math.unit(255, "feet")
  18228. },
  18229. ]
  18230. ))
  18231. characterMakers.push(() => makeCharacter(
  18232. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18233. {
  18234. front: {
  18235. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18236. weight: math.unit(184, "lb"),
  18237. name: "Front",
  18238. image: {
  18239. source: "./media/characters/xang/front.svg",
  18240. extra: 845 / 755
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Macro",
  18252. height: math.unit(0.935 * 146, "feet")
  18253. },
  18254. {
  18255. name: "Megamacro",
  18256. height: math.unit(0.935 * 3, "miles")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18262. {
  18263. frontDressed: {
  18264. height: math.unit(5 + 7 / 12, "feet"),
  18265. weight: math.unit(140, "lb"),
  18266. name: "Front (Dressed)",
  18267. image: {
  18268. source: "./media/characters/doc-weardno/front-dressed.svg",
  18269. extra: 263 / 234
  18270. }
  18271. },
  18272. backDressed: {
  18273. height: math.unit(5 + 7 / 12, "feet"),
  18274. weight: math.unit(140, "lb"),
  18275. name: "Back (Dressed)",
  18276. image: {
  18277. source: "./media/characters/doc-weardno/back-dressed.svg",
  18278. extra: 266 / 238
  18279. }
  18280. },
  18281. front: {
  18282. height: math.unit(5 + 7 / 12, "feet"),
  18283. weight: math.unit(140, "lb"),
  18284. name: "Front",
  18285. image: {
  18286. source: "./media/characters/doc-weardno/front.svg",
  18287. extra: 254 / 233
  18288. }
  18289. },
  18290. },
  18291. [
  18292. {
  18293. name: "Micro",
  18294. height: math.unit(3, "inches")
  18295. },
  18296. {
  18297. name: "Normal",
  18298. height: math.unit(5 + 7 / 12, "feet"),
  18299. default: true
  18300. },
  18301. {
  18302. name: "Macro",
  18303. height: math.unit(25, "feet")
  18304. },
  18305. {
  18306. name: "Megamacro",
  18307. height: math.unit(2, "miles")
  18308. },
  18309. ]
  18310. ))
  18311. characterMakers.push(() => makeCharacter(
  18312. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18313. {
  18314. front: {
  18315. height: math.unit(6 + 2 / 12, "feet"),
  18316. weight: math.unit(153, "lb"),
  18317. name: "Front",
  18318. image: {
  18319. source: "./media/characters/seth-whilst/front.svg",
  18320. bottom: 0.07
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Micro",
  18327. height: math.unit(5, "inches")
  18328. },
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(6 + 2 / 12, "feet"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18338. {
  18339. front: {
  18340. height: math.unit(3, "inches"),
  18341. weight: math.unit(8, "grams"),
  18342. name: "Front",
  18343. image: {
  18344. source: "./media/characters/pocket-jabari/front.svg",
  18345. extra: 1024 / 974,
  18346. bottom: 0.039
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Minimicro",
  18353. height: math.unit(8, "mm")
  18354. },
  18355. {
  18356. name: "Micro",
  18357. height: math.unit(3, "inches"),
  18358. default: true
  18359. },
  18360. {
  18361. name: "Normal",
  18362. height: math.unit(3, "feet")
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18368. {
  18369. front: {
  18370. height: math.unit(15, "feet"),
  18371. weight: math.unit(3280, "lb"),
  18372. name: "Front",
  18373. image: {
  18374. source: "./media/characters/sapphy/front.svg",
  18375. extra: 671 / 577,
  18376. bottom: 0.085
  18377. }
  18378. },
  18379. back: {
  18380. height: math.unit(15, "feet"),
  18381. weight: math.unit(3280, "lb"),
  18382. name: "Back",
  18383. image: {
  18384. source: "./media/characters/sapphy/back.svg",
  18385. extra: 631 / 607,
  18386. bottom: 0.045
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(15, "feet")
  18394. },
  18395. {
  18396. name: "Casual Macro",
  18397. height: math.unit(120, "feet")
  18398. },
  18399. {
  18400. name: "Macro",
  18401. height: math.unit(2150, "feet"),
  18402. default: true
  18403. },
  18404. {
  18405. name: "Megamacro",
  18406. height: math.unit(8, "miles")
  18407. },
  18408. {
  18409. name: "Galaxy Mom",
  18410. height: math.unit(6, "megalightyears")
  18411. },
  18412. ]
  18413. ))
  18414. characterMakers.push(() => makeCharacter(
  18415. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18416. {
  18417. front: {
  18418. height: math.unit(6, "feet"),
  18419. weight: math.unit(170, "lb"),
  18420. name: "Front",
  18421. image: {
  18422. source: "./media/characters/kiro/front.svg",
  18423. extra: 1064 / 1012,
  18424. bottom: 0.052
  18425. }
  18426. },
  18427. },
  18428. [
  18429. {
  18430. name: "Micro",
  18431. height: math.unit(6, "inches")
  18432. },
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(6, "feet"),
  18436. default: true
  18437. },
  18438. {
  18439. name: "Macro",
  18440. height: math.unit(72, "feet")
  18441. },
  18442. ]
  18443. ))
  18444. characterMakers.push(() => makeCharacter(
  18445. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18446. {
  18447. front: {
  18448. height: math.unit(5 + 9 / 12, "feet"),
  18449. weight: math.unit(175, "lb"),
  18450. name: "Front",
  18451. image: {
  18452. source: "./media/characters/irishfox/front.svg",
  18453. extra: 1912 / 1680,
  18454. bottom: 0.02
  18455. }
  18456. },
  18457. },
  18458. [
  18459. {
  18460. name: "Nano",
  18461. height: math.unit(1, "mm")
  18462. },
  18463. {
  18464. name: "Micro",
  18465. height: math.unit(2, "inches")
  18466. },
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(5 + 9 / 12, "feet"),
  18470. default: true
  18471. },
  18472. {
  18473. name: "Macro",
  18474. height: math.unit(45, "feet")
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18480. {
  18481. front: {
  18482. height: math.unit(6 + 1 / 12, "feet"),
  18483. weight: math.unit(75, "lb"),
  18484. name: "Front",
  18485. image: {
  18486. source: "./media/characters/aronai-sieyes/front.svg",
  18487. extra: 1556 / 1480,
  18488. bottom: 0.015
  18489. }
  18490. },
  18491. side: {
  18492. height: math.unit(6 + 1 / 12, "feet"),
  18493. weight: math.unit(75, "lb"),
  18494. name: "Side",
  18495. image: {
  18496. source: "./media/characters/aronai-sieyes/side.svg",
  18497. extra: 1433 / 1390,
  18498. bottom: 0.0393
  18499. }
  18500. },
  18501. back: {
  18502. height: math.unit(6 + 1 / 12, "feet"),
  18503. weight: math.unit(75, "lb"),
  18504. name: "Back",
  18505. image: {
  18506. source: "./media/characters/aronai-sieyes/back.svg",
  18507. extra: 1544 / 1494,
  18508. bottom: 0.02
  18509. }
  18510. },
  18511. frontClothed: {
  18512. height: math.unit(6 + 1 / 12, "feet"),
  18513. weight: math.unit(75, "lb"),
  18514. name: "Front (Clothed)",
  18515. image: {
  18516. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18517. extra: 1582 / 1527
  18518. }
  18519. },
  18520. feral: {
  18521. height: math.unit(18, "feet"),
  18522. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18523. name: "Feral",
  18524. image: {
  18525. source: "./media/characters/aronai-sieyes/feral.svg",
  18526. extra: 1530 / 1240,
  18527. bottom: 0.035
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Micro",
  18534. height: math.unit(2, "inches")
  18535. },
  18536. {
  18537. name: "Normal",
  18538. height: math.unit(6 + 1 / 12, "feet"),
  18539. default: true
  18540. }
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(12, "feet"),
  18548. weight: math.unit(410, "kg"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/xuna/front.svg",
  18552. extra: 2184 / 1980
  18553. }
  18554. },
  18555. side: {
  18556. height: math.unit(12, "feet"),
  18557. weight: math.unit(410, "kg"),
  18558. name: "Side",
  18559. image: {
  18560. source: "./media/characters/xuna/side.svg",
  18561. extra: 2184 / 1980
  18562. }
  18563. },
  18564. back: {
  18565. height: math.unit(12, "feet"),
  18566. weight: math.unit(410, "kg"),
  18567. name: "Back",
  18568. image: {
  18569. source: "./media/characters/xuna/back.svg",
  18570. extra: 2184 / 1980
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Nano glow",
  18577. height: math.unit(10, "nm")
  18578. },
  18579. {
  18580. name: "Micro floof",
  18581. height: math.unit(0.3, "m")
  18582. },
  18583. {
  18584. name: "Huggable softy boi",
  18585. height: math.unit(3.6576, "m"),
  18586. default: true
  18587. },
  18588. {
  18589. name: "Admirable floof",
  18590. height: math.unit(80, "meters")
  18591. },
  18592. {
  18593. name: "Gentle macro",
  18594. height: math.unit(300, "meters")
  18595. },
  18596. {
  18597. name: "Very careful floof",
  18598. height: math.unit(3200, "meters")
  18599. },
  18600. {
  18601. name: "The mega floof",
  18602. height: math.unit(36000, "meters")
  18603. },
  18604. {
  18605. name: "Giga-fur-Wicker",
  18606. height: math.unit(4800000, "meters")
  18607. },
  18608. {
  18609. name: "Licky world",
  18610. height: math.unit(20000000, "meters")
  18611. },
  18612. {
  18613. name: "Floofy cyan sun",
  18614. height: math.unit(1500000000, "meters")
  18615. },
  18616. {
  18617. name: "Milky Wicker",
  18618. height: math.unit(1000000000000000000000, "meters")
  18619. },
  18620. {
  18621. name: "The observing Wicker",
  18622. height: math.unit(999999999999999999999999999, "meters")
  18623. },
  18624. ]
  18625. ))
  18626. characterMakers.push(() => makeCharacter(
  18627. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18628. {
  18629. front: {
  18630. height: math.unit(5 + 9 / 12, "feet"),
  18631. weight: math.unit(150, "lb"),
  18632. name: "Front",
  18633. image: {
  18634. source: "./media/characters/arokha-sieyes/front.svg",
  18635. extra: 1425 / 1284,
  18636. bottom: 0.05
  18637. }
  18638. },
  18639. },
  18640. [
  18641. {
  18642. name: "Normal",
  18643. height: math.unit(5 + 9 / 12, "feet")
  18644. },
  18645. {
  18646. name: "Macro",
  18647. height: math.unit(30, "meters"),
  18648. default: true
  18649. },
  18650. ]
  18651. ))
  18652. characterMakers.push(() => makeCharacter(
  18653. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18654. {
  18655. front: {
  18656. height: math.unit(6, "feet"),
  18657. weight: math.unit(180, "lb"),
  18658. name: "Front",
  18659. image: {
  18660. source: "./media/characters/arokh-sieyes/front.svg",
  18661. extra: 1830 / 1769,
  18662. bottom: 0.01
  18663. }
  18664. },
  18665. },
  18666. [
  18667. {
  18668. name: "Normal",
  18669. height: math.unit(6, "feet")
  18670. },
  18671. {
  18672. name: "Macro",
  18673. height: math.unit(30, "meters"),
  18674. default: true
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18680. {
  18681. side: {
  18682. height: math.unit(13 + 1 / 12, "feet"),
  18683. weight: math.unit(8.5, "tonnes"),
  18684. name: "Side",
  18685. image: {
  18686. source: "./media/characters/goldeneye/side.svg",
  18687. extra: 1182 / 778,
  18688. bottom: 0.067
  18689. }
  18690. },
  18691. paw: {
  18692. height: math.unit(3.4, "feet"),
  18693. name: "Paw",
  18694. image: {
  18695. source: "./media/characters/goldeneye/paw.svg"
  18696. }
  18697. },
  18698. },
  18699. [
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(13 + 1 / 12, "feet"),
  18703. default: true
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18709. {
  18710. front: {
  18711. height: math.unit(6 + 1 / 12, "feet"),
  18712. weight: math.unit(210, "lb"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/leonardo-lycheborne/front.svg",
  18716. extra: 390 / 365,
  18717. bottom: 0.032
  18718. }
  18719. },
  18720. side: {
  18721. height: math.unit(6 + 1 / 12, "feet"),
  18722. weight: math.unit(210, "lb"),
  18723. name: "Side",
  18724. image: {
  18725. source: "./media/characters/leonardo-lycheborne/side.svg",
  18726. extra: 390 / 365,
  18727. bottom: 0.005
  18728. }
  18729. },
  18730. back: {
  18731. height: math.unit(6 + 1 / 12, "feet"),
  18732. weight: math.unit(210, "lb"),
  18733. name: "Back",
  18734. image: {
  18735. source: "./media/characters/leonardo-lycheborne/back.svg",
  18736. extra: 392 / 366,
  18737. bottom: 0.01
  18738. }
  18739. },
  18740. hand: {
  18741. height: math.unit(1.08, "feet"),
  18742. name: "Hand",
  18743. image: {
  18744. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18745. }
  18746. },
  18747. foot: {
  18748. height: math.unit(1.32, "feet"),
  18749. name: "Foot",
  18750. image: {
  18751. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18752. }
  18753. },
  18754. were: {
  18755. height: math.unit(20, "feet"),
  18756. weight: math.unit(7800, "lb"),
  18757. name: "Were",
  18758. image: {
  18759. source: "./media/characters/leonardo-lycheborne/were.svg",
  18760. extra: 308 / 294,
  18761. bottom: 0.048
  18762. }
  18763. },
  18764. feral: {
  18765. height: math.unit(7.5, "feet"),
  18766. weight: math.unit(600, "lb"),
  18767. name: "Feral",
  18768. image: {
  18769. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18770. extra: 210 / 186,
  18771. bottom: 0.108
  18772. }
  18773. },
  18774. taur: {
  18775. height: math.unit(11, "feet"),
  18776. weight: math.unit(3300, "lb"),
  18777. name: "Taur",
  18778. image: {
  18779. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18780. extra: 320 / 303,
  18781. bottom: 0.025
  18782. }
  18783. },
  18784. barghest: {
  18785. height: math.unit(11, "feet"),
  18786. weight: math.unit(1300, "lb"),
  18787. name: "Barghest",
  18788. image: {
  18789. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18790. extra: 323 / 302,
  18791. bottom: 0.027
  18792. }
  18793. },
  18794. dick: {
  18795. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18796. name: "Dick",
  18797. image: {
  18798. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18799. }
  18800. },
  18801. dickWere: {
  18802. height: math.unit((20) / 3.8, "feet"),
  18803. name: "Dick (Were)",
  18804. image: {
  18805. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(6 + 1 / 12, "feet"),
  18813. default: true
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18819. {
  18820. front: {
  18821. height: math.unit(10, "feet"),
  18822. weight: math.unit(350, "lb"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/jet/front.svg",
  18826. extra: 2050 / 1980,
  18827. bottom: 0.013
  18828. }
  18829. },
  18830. back: {
  18831. height: math.unit(10, "feet"),
  18832. weight: math.unit(350, "lb"),
  18833. name: "Back",
  18834. image: {
  18835. source: "./media/characters/jet/back.svg",
  18836. extra: 2050 / 1980,
  18837. bottom: 0.013
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Micro",
  18844. height: math.unit(6, "inches")
  18845. },
  18846. {
  18847. name: "Normal",
  18848. height: math.unit(10, "feet"),
  18849. default: true
  18850. },
  18851. {
  18852. name: "Macro",
  18853. height: math.unit(100, "feet")
  18854. },
  18855. ]
  18856. ))
  18857. characterMakers.push(() => makeCharacter(
  18858. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18859. {
  18860. front: {
  18861. height: math.unit(15, "feet"),
  18862. weight: math.unit(2800, "lb"),
  18863. name: "Front",
  18864. image: {
  18865. source: "./media/characters/tanarath/front.svg",
  18866. extra: 2392 / 2220,
  18867. bottom: 0.03
  18868. }
  18869. },
  18870. back: {
  18871. height: math.unit(15, "feet"),
  18872. weight: math.unit(2800, "lb"),
  18873. name: "Back",
  18874. image: {
  18875. source: "./media/characters/tanarath/back.svg",
  18876. extra: 2392 / 2220,
  18877. bottom: 0.03
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(15, "feet"),
  18885. default: true
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18891. {
  18892. front: {
  18893. height: math.unit(7 + 1 / 12, "feet"),
  18894. weight: math.unit(175, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/patty-cattybatty/front.svg",
  18898. extra: 908 / 874,
  18899. bottom: 0.025
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Micro",
  18906. height: math.unit(1, "inch")
  18907. },
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(7 + 1 / 12, "feet")
  18911. },
  18912. {
  18913. name: "Mini Macro",
  18914. height: math.unit(155, "feet")
  18915. },
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(1077, "feet")
  18919. },
  18920. {
  18921. name: "Mega Macro",
  18922. height: math.unit(47650, "feet"),
  18923. default: true
  18924. },
  18925. {
  18926. name: "Giga Macro",
  18927. height: math.unit(440, "miles")
  18928. },
  18929. {
  18930. name: "Tera Macro",
  18931. height: math.unit(8700, "miles")
  18932. },
  18933. {
  18934. name: "Planetary Macro",
  18935. height: math.unit(32700, "miles")
  18936. },
  18937. {
  18938. name: "Solar Macro",
  18939. height: math.unit(550000, "miles")
  18940. },
  18941. {
  18942. name: "Celestial Macro",
  18943. height: math.unit(2.5, "AU")
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18949. {
  18950. front: {
  18951. height: math.unit(4 + 5 / 12, "feet"),
  18952. weight: math.unit(90, "lb"),
  18953. name: "Front",
  18954. image: {
  18955. source: "./media/characters/cappu/front.svg",
  18956. extra: 1247 / 1152,
  18957. bottom: 0.012
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(4 + 5 / 12, "feet"),
  18965. default: true
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18971. {
  18972. frontDressed: {
  18973. height: math.unit(70, "cm"),
  18974. weight: math.unit(6, "kg"),
  18975. name: "Front (Dressed)",
  18976. image: {
  18977. source: "./media/characters/sebi/front-dressed.svg",
  18978. extra: 713.5 / 686.5,
  18979. bottom: 0.003
  18980. }
  18981. },
  18982. front: {
  18983. height: math.unit(70, "cm"),
  18984. weight: math.unit(5, "kg"),
  18985. name: "Front",
  18986. image: {
  18987. source: "./media/characters/sebi/front.svg",
  18988. extra: 713.5 / 686.5,
  18989. bottom: 0.003
  18990. }
  18991. }
  18992. },
  18993. [
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(70, "cm"),
  18997. default: true
  18998. },
  18999. {
  19000. name: "Macro",
  19001. height: math.unit(8, "meters")
  19002. },
  19003. ]
  19004. ))
  19005. characterMakers.push(() => makeCharacter(
  19006. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19007. {
  19008. front: {
  19009. height: math.unit(6, "feet"),
  19010. weight: math.unit(150, "lb"),
  19011. name: "Front",
  19012. image: {
  19013. source: "./media/characters/typhek/front.svg",
  19014. extra: 1948 / 1929,
  19015. bottom: 0.025
  19016. }
  19017. },
  19018. side: {
  19019. height: math.unit(6, "feet"),
  19020. weight: math.unit(150, "lb"),
  19021. name: "Side",
  19022. image: {
  19023. source: "./media/characters/typhek/side.svg",
  19024. extra: 2034 / 2010,
  19025. bottom: 0.003
  19026. }
  19027. },
  19028. back: {
  19029. height: math.unit(6, "feet"),
  19030. weight: math.unit(150, "lb"),
  19031. name: "Back",
  19032. image: {
  19033. source: "./media/characters/typhek/back.svg",
  19034. extra: 2005 / 1978,
  19035. bottom: 0.004
  19036. }
  19037. },
  19038. palm: {
  19039. height: math.unit(1.2, "feet"),
  19040. name: "Palm",
  19041. image: {
  19042. source: "./media/characters/typhek/palm.svg"
  19043. }
  19044. },
  19045. fist: {
  19046. height: math.unit(1.1, "feet"),
  19047. name: "Fist",
  19048. image: {
  19049. source: "./media/characters/typhek/fist.svg"
  19050. }
  19051. },
  19052. foot: {
  19053. height: math.unit(1.57, "feet"),
  19054. name: "Foot",
  19055. image: {
  19056. source: "./media/characters/typhek/foot.svg"
  19057. }
  19058. },
  19059. sole: {
  19060. height: math.unit(2.05, "feet"),
  19061. name: "Sole",
  19062. image: {
  19063. source: "./media/characters/typhek/sole.svg"
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Macro",
  19070. height: math.unit(40, "stories"),
  19071. default: true
  19072. },
  19073. {
  19074. name: "Megamacro",
  19075. height: math.unit(1, "mile")
  19076. },
  19077. {
  19078. name: "Gigamacro",
  19079. height: math.unit(4000, "solarradii")
  19080. },
  19081. {
  19082. name: "Universal",
  19083. height: math.unit(1.1, "universes")
  19084. }
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19089. {
  19090. side: {
  19091. height: math.unit(5 + 7 / 12, "feet"),
  19092. weight: math.unit(150, "lb"),
  19093. name: "Side",
  19094. image: {
  19095. source: "./media/characters/kassy/side.svg",
  19096. extra: 1280 / 1225,
  19097. bottom: 0.002
  19098. }
  19099. },
  19100. front: {
  19101. height: math.unit(5 + 7 / 12, "feet"),
  19102. weight: math.unit(150, "lb"),
  19103. name: "Front",
  19104. image: {
  19105. source: "./media/characters/kassy/front.svg",
  19106. extra: 1280 / 1225,
  19107. bottom: 0.025
  19108. }
  19109. },
  19110. back: {
  19111. height: math.unit(5 + 7 / 12, "feet"),
  19112. weight: math.unit(150, "lb"),
  19113. name: "Back",
  19114. image: {
  19115. source: "./media/characters/kassy/back.svg",
  19116. extra: 1280 / 1225,
  19117. bottom: 0.002
  19118. }
  19119. },
  19120. foot: {
  19121. height: math.unit(1.266, "feet"),
  19122. name: "Foot",
  19123. image: {
  19124. source: "./media/characters/kassy/foot.svg"
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(5 + 7 / 12, "feet")
  19132. },
  19133. {
  19134. name: "Macro",
  19135. height: math.unit(137, "feet"),
  19136. default: true
  19137. },
  19138. {
  19139. name: "Megamacro",
  19140. height: math.unit(1, "mile")
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(6 + 1 / 12, "feet"),
  19149. weight: math.unit(200, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/neil/front.svg",
  19153. extra: 1326 / 1250,
  19154. bottom: 0.023
  19155. }
  19156. },
  19157. },
  19158. [
  19159. {
  19160. name: "Normal",
  19161. height: math.unit(6 + 1 / 12, "feet"),
  19162. default: true
  19163. },
  19164. {
  19165. name: "Macro",
  19166. height: math.unit(200, "feet")
  19167. },
  19168. ]
  19169. ))
  19170. characterMakers.push(() => makeCharacter(
  19171. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19172. {
  19173. front: {
  19174. height: math.unit(5 + 9 / 12, "feet"),
  19175. weight: math.unit(190, "lb"),
  19176. name: "Front",
  19177. image: {
  19178. source: "./media/characters/atticus/front.svg",
  19179. extra: 2934 / 2785,
  19180. bottom: 0.025
  19181. }
  19182. },
  19183. },
  19184. [
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(5 + 9 / 12, "feet"),
  19188. default: true
  19189. },
  19190. {
  19191. name: "Macro",
  19192. height: math.unit(180, "feet")
  19193. },
  19194. ]
  19195. ))
  19196. characterMakers.push(() => makeCharacter(
  19197. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19198. {
  19199. side: {
  19200. height: math.unit(9, "feet"),
  19201. weight: math.unit(650, "lb"),
  19202. name: "Side",
  19203. image: {
  19204. source: "./media/characters/milo/side.svg",
  19205. extra: 2644 / 2310,
  19206. bottom: 0.032
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(9, "feet"),
  19214. default: true
  19215. },
  19216. {
  19217. name: "Macro",
  19218. height: math.unit(300, "feet")
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19224. {
  19225. side: {
  19226. height: math.unit(8, "meters"),
  19227. weight: math.unit(90000, "kg"),
  19228. name: "Side",
  19229. image: {
  19230. source: "./media/characters/ijzer/side.svg",
  19231. extra: 2756 / 1600,
  19232. bottom: 0.01
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Small",
  19239. height: math.unit(3, "meters")
  19240. },
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(8, "meters"),
  19244. default: true
  19245. },
  19246. {
  19247. name: "Normal+",
  19248. height: math.unit(10, "meters")
  19249. },
  19250. {
  19251. name: "Bigger",
  19252. height: math.unit(24, "meters")
  19253. },
  19254. {
  19255. name: "Huge",
  19256. height: math.unit(80, "meters")
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19262. {
  19263. front: {
  19264. height: math.unit(6 + 2 / 12, "feet"),
  19265. weight: math.unit(153, "lb"),
  19266. name: "Front",
  19267. image: {
  19268. source: "./media/characters/luca-cervicum/front.svg",
  19269. extra: 370 / 327,
  19270. bottom: 0.015
  19271. }
  19272. },
  19273. back: {
  19274. height: math.unit(6 + 2 / 12, "feet"),
  19275. weight: math.unit(153, "lb"),
  19276. name: "Back",
  19277. image: {
  19278. source: "./media/characters/luca-cervicum/back.svg",
  19279. extra: 367 / 333,
  19280. bottom: 0.005
  19281. }
  19282. },
  19283. frontGear: {
  19284. height: math.unit(6 + 2 / 12, "feet"),
  19285. weight: math.unit(173, "lb"),
  19286. name: "Front (Gear)",
  19287. image: {
  19288. source: "./media/characters/luca-cervicum/front-gear.svg",
  19289. extra: 377 / 333,
  19290. bottom: 0.006
  19291. }
  19292. },
  19293. },
  19294. [
  19295. {
  19296. name: "Normal",
  19297. height: math.unit(6 + 2 / 12, "feet"),
  19298. default: true
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19304. {
  19305. front: {
  19306. height: math.unit(6 + 1 / 12, "feet"),
  19307. weight: math.unit(304, "lb"),
  19308. name: "Front",
  19309. image: {
  19310. source: "./media/characters/oliver/front.svg",
  19311. extra: 157 / 143,
  19312. bottom: 0.08
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(6 + 1 / 12, "feet"),
  19320. default: true
  19321. },
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19326. {
  19327. front: {
  19328. height: math.unit(5 + 7 / 12, "feet"),
  19329. weight: math.unit(140, "lb"),
  19330. name: "Front",
  19331. image: {
  19332. source: "./media/characters/shane/front.svg",
  19333. extra: 304 / 289,
  19334. bottom: 0.005
  19335. }
  19336. },
  19337. },
  19338. [
  19339. {
  19340. name: "Normal",
  19341. height: math.unit(5 + 7 / 12, "feet"),
  19342. default: true
  19343. },
  19344. ]
  19345. ))
  19346. characterMakers.push(() => makeCharacter(
  19347. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19348. {
  19349. front: {
  19350. height: math.unit(5 + 9 / 12, "feet"),
  19351. weight: math.unit(178, "lb"),
  19352. name: "Front",
  19353. image: {
  19354. source: "./media/characters/shin/front.svg",
  19355. extra: 159 / 151,
  19356. bottom: 0.015
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Normal",
  19363. height: math.unit(5 + 9 / 12, "feet"),
  19364. default: true
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19370. {
  19371. front: {
  19372. height: math.unit(5 + 10 / 12, "feet"),
  19373. weight: math.unit(168, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/xerxes/front.svg",
  19377. extra: 282 / 260,
  19378. bottom: 0.045
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(5 + 10 / 12, "feet"),
  19386. default: true
  19387. },
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19392. {
  19393. front: {
  19394. height: math.unit(6 + 7 / 12, "feet"),
  19395. weight: math.unit(208, "lb"),
  19396. name: "Front",
  19397. image: {
  19398. source: "./media/characters/chaska/front.svg",
  19399. extra: 332 / 319,
  19400. bottom: 0.015
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Normal",
  19407. height: math.unit(6 + 7 / 12, "feet"),
  19408. default: true
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19414. {
  19415. front: {
  19416. height: math.unit(5 + 8 / 12, "feet"),
  19417. weight: math.unit(208, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/enuk/front.svg",
  19421. extra: 437 / 406,
  19422. bottom: 0.02
  19423. }
  19424. },
  19425. },
  19426. [
  19427. {
  19428. name: "Normal",
  19429. height: math.unit(5 + 8 / 12, "feet"),
  19430. default: true
  19431. },
  19432. ]
  19433. ))
  19434. characterMakers.push(() => makeCharacter(
  19435. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19436. {
  19437. front: {
  19438. height: math.unit(5 + 10 / 12, "feet"),
  19439. weight: math.unit(252, "lb"),
  19440. name: "Front",
  19441. image: {
  19442. source: "./media/characters/bruun/front.svg",
  19443. extra: 197 / 187,
  19444. bottom: 0.012
  19445. }
  19446. },
  19447. },
  19448. [
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(5 + 10 / 12, "feet"),
  19452. default: true
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(6 + 10 / 12, "feet"),
  19461. weight: math.unit(255, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/alexeev/front.svg",
  19465. extra: 213 / 200,
  19466. bottom: 0.05
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(6 + 10 / 12, "feet"),
  19474. default: true
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19480. {
  19481. front: {
  19482. height: math.unit(2 + 8 / 12, "feet"),
  19483. weight: math.unit(22, "lb"),
  19484. name: "Front",
  19485. image: {
  19486. source: "./media/characters/evelyn/front.svg",
  19487. extra: 208 / 180
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(2 + 8 / 12, "feet"),
  19495. default: true
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19501. {
  19502. front: {
  19503. height: math.unit(5 + 9 / 12, "feet"),
  19504. weight: math.unit(139, "lb"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/inca/front.svg",
  19508. extra: 294 / 291,
  19509. bottom: 0.03
  19510. }
  19511. },
  19512. },
  19513. [
  19514. {
  19515. name: "Normal",
  19516. height: math.unit(5 + 9 / 12, "feet"),
  19517. default: true
  19518. },
  19519. ]
  19520. ))
  19521. characterMakers.push(() => makeCharacter(
  19522. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19523. {
  19524. front: {
  19525. height: math.unit(5 + 1 / 12, "feet"),
  19526. weight: math.unit(84, "lb"),
  19527. name: "Front",
  19528. image: {
  19529. source: "./media/characters/magdalene/front.svg",
  19530. extra: 293 / 273
  19531. }
  19532. },
  19533. },
  19534. [
  19535. {
  19536. name: "Normal",
  19537. height: math.unit(5 + 1 / 12, "feet"),
  19538. default: true
  19539. },
  19540. ]
  19541. ))
  19542. characterMakers.push(() => makeCharacter(
  19543. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19544. {
  19545. front: {
  19546. height: math.unit(6 + 3 / 12, "feet"),
  19547. weight: math.unit(185, "lb"),
  19548. name: "Front",
  19549. image: {
  19550. source: "./media/characters/mera/front.svg",
  19551. extra: 291 / 277,
  19552. bottom: 0.03
  19553. }
  19554. },
  19555. },
  19556. [
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(6 + 3 / 12, "feet"),
  19560. default: true
  19561. },
  19562. ]
  19563. ))
  19564. characterMakers.push(() => makeCharacter(
  19565. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19566. {
  19567. front: {
  19568. height: math.unit(6 + 7 / 12, "feet"),
  19569. weight: math.unit(160, "lb"),
  19570. name: "Front",
  19571. image: {
  19572. source: "./media/characters/ceres/front.svg",
  19573. extra: 1023 / 950,
  19574. bottom: 0.027
  19575. }
  19576. },
  19577. back: {
  19578. height: math.unit(6 + 7 / 12, "feet"),
  19579. weight: math.unit(160, "lb"),
  19580. name: "Back",
  19581. image: {
  19582. source: "./media/characters/ceres/back.svg",
  19583. extra: 1023 / 950
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Normal",
  19590. height: math.unit(6 + 7 / 12, "feet"),
  19591. default: true
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19597. {
  19598. front: {
  19599. height: math.unit(5 + 10 / 12, "feet"),
  19600. weight: math.unit(150, "lb"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/kris/front.svg",
  19604. extra: 885 / 803,
  19605. bottom: 0.03
  19606. }
  19607. },
  19608. },
  19609. [
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(5 + 10 / 12, "feet"),
  19613. default: true
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19619. {
  19620. front: {
  19621. height: math.unit(7, "feet"),
  19622. weight: math.unit(120, "kg"),
  19623. name: "Front",
  19624. image: {
  19625. source: "./media/characters/taluthus/front.svg",
  19626. extra: 903 / 833,
  19627. bottom: 0.015
  19628. }
  19629. },
  19630. },
  19631. [
  19632. {
  19633. name: "Normal",
  19634. height: math.unit(7, "feet"),
  19635. default: true
  19636. },
  19637. {
  19638. name: "Macro",
  19639. height: math.unit(300, "feet")
  19640. },
  19641. ]
  19642. ))
  19643. characterMakers.push(() => makeCharacter(
  19644. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19645. {
  19646. front: {
  19647. height: math.unit(5 + 9 / 12, "feet"),
  19648. weight: math.unit(145, "lb"),
  19649. name: "Front",
  19650. image: {
  19651. source: "./media/characters/dawn/front.svg",
  19652. extra: 2094 / 2016,
  19653. bottom: 0.025
  19654. }
  19655. },
  19656. back: {
  19657. height: math.unit(5 + 9 / 12, "feet"),
  19658. weight: math.unit(160, "lb"),
  19659. name: "Back",
  19660. image: {
  19661. source: "./media/characters/dawn/back.svg",
  19662. extra: 2112 / 2080,
  19663. bottom: 0.005
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(6 + 7 / 12, "feet"),
  19671. default: true
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19677. {
  19678. anthro: {
  19679. height: math.unit(8 + 3 / 12, "feet"),
  19680. weight: math.unit(450, "lb"),
  19681. name: "Anthro",
  19682. image: {
  19683. source: "./media/characters/arador/anthro.svg",
  19684. extra: 1835 / 1718,
  19685. bottom: 0.025
  19686. }
  19687. },
  19688. feral: {
  19689. height: math.unit(4, "feet"),
  19690. weight: math.unit(200, "lb"),
  19691. name: "Feral",
  19692. image: {
  19693. source: "./media/characters/arador/feral.svg",
  19694. extra: 1683 / 1514,
  19695. bottom: 0.07
  19696. }
  19697. },
  19698. },
  19699. [
  19700. {
  19701. name: "Normal",
  19702. height: math.unit(8 + 3 / 12, "feet")
  19703. },
  19704. {
  19705. name: "Macro",
  19706. height: math.unit(82.5, "feet"),
  19707. default: true
  19708. },
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19713. {
  19714. front: {
  19715. height: math.unit(5 + 10 / 12, "feet"),
  19716. weight: math.unit(125, "lb"),
  19717. name: "Front",
  19718. image: {
  19719. source: "./media/characters/dharsi/front.svg",
  19720. extra: 716 / 630,
  19721. bottom: 0.035
  19722. }
  19723. },
  19724. },
  19725. [
  19726. {
  19727. name: "Nano",
  19728. height: math.unit(100, "nm")
  19729. },
  19730. {
  19731. name: "Micro",
  19732. height: math.unit(2, "inches")
  19733. },
  19734. {
  19735. name: "Normal",
  19736. height: math.unit(5 + 10 / 12, "feet"),
  19737. default: true
  19738. },
  19739. {
  19740. name: "Macro",
  19741. height: math.unit(1000, "feet")
  19742. },
  19743. {
  19744. name: "Megamacro",
  19745. height: math.unit(10, "miles")
  19746. },
  19747. {
  19748. name: "Gigamacro",
  19749. height: math.unit(3000, "miles")
  19750. },
  19751. {
  19752. name: "Teramacro",
  19753. height: math.unit(500000, "miles")
  19754. },
  19755. {
  19756. name: "Teramacro+",
  19757. height: math.unit(30, "galaxies")
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(6, "feet"),
  19766. weight: math.unit(150, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/deathy/front.svg",
  19770. extra: 1552 / 1463,
  19771. bottom: 0.025
  19772. }
  19773. },
  19774. side: {
  19775. height: math.unit(6, "feet"),
  19776. weight: math.unit(150, "lb"),
  19777. name: "Side",
  19778. image: {
  19779. source: "./media/characters/deathy/side.svg",
  19780. extra: 1604 / 1455,
  19781. bottom: 0.025
  19782. }
  19783. },
  19784. back: {
  19785. height: math.unit(6, "feet"),
  19786. weight: math.unit(150, "lb"),
  19787. name: "Back",
  19788. image: {
  19789. source: "./media/characters/deathy/back.svg",
  19790. extra: 1580 / 1463,
  19791. bottom: 0.005
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Micro",
  19798. height: math.unit(5, "millimeters")
  19799. },
  19800. {
  19801. name: "Normal",
  19802. height: math.unit(6 + 5 / 12, "feet"),
  19803. default: true
  19804. },
  19805. ]
  19806. ))
  19807. characterMakers.push(() => makeCharacter(
  19808. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19809. {
  19810. front: {
  19811. height: math.unit(16, "feet"),
  19812. weight: math.unit(4000, "lb"),
  19813. name: "Front",
  19814. image: {
  19815. source: "./media/characters/juniper/front.svg",
  19816. bottom: 0.04
  19817. }
  19818. },
  19819. },
  19820. [
  19821. {
  19822. name: "Normal",
  19823. height: math.unit(16, "feet"),
  19824. default: true
  19825. },
  19826. ]
  19827. ))
  19828. characterMakers.push(() => makeCharacter(
  19829. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19830. {
  19831. front: {
  19832. height: math.unit(6, "feet"),
  19833. weight: math.unit(150, "lb"),
  19834. name: "Front",
  19835. image: {
  19836. source: "./media/characters/hipster/front.svg",
  19837. extra: 1312 / 1209,
  19838. bottom: 0.025
  19839. }
  19840. },
  19841. back: {
  19842. height: math.unit(6, "feet"),
  19843. weight: math.unit(150, "lb"),
  19844. name: "Back",
  19845. image: {
  19846. source: "./media/characters/hipster/back.svg",
  19847. extra: 1281 / 1196,
  19848. bottom: 0.01
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Micro",
  19855. height: math.unit(1, "mm")
  19856. },
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(4, "inches"),
  19860. default: true
  19861. },
  19862. {
  19863. name: "Macro",
  19864. height: math.unit(500, "feet")
  19865. },
  19866. {
  19867. name: "Megamacro",
  19868. height: math.unit(1000, "miles")
  19869. },
  19870. ]
  19871. ))
  19872. characterMakers.push(() => makeCharacter(
  19873. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19874. {
  19875. front: {
  19876. height: math.unit(6, "feet"),
  19877. weight: math.unit(150, "lb"),
  19878. name: "Front",
  19879. image: {
  19880. source: "./media/characters/tendirmuldr/front.svg",
  19881. extra: 1878 / 1772,
  19882. bottom: 0.015
  19883. }
  19884. },
  19885. },
  19886. [
  19887. {
  19888. name: "Megamacro",
  19889. height: math.unit(1500, "miles"),
  19890. default: true
  19891. },
  19892. ]
  19893. ))
  19894. characterMakers.push(() => makeCharacter(
  19895. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19896. {
  19897. front: {
  19898. height: math.unit(14, "feet"),
  19899. weight: math.unit(12000, "lb"),
  19900. name: "Front",
  19901. image: {
  19902. source: "./media/characters/mort/front.svg",
  19903. extra: 365 / 318,
  19904. bottom: 0.01
  19905. }
  19906. },
  19907. side: {
  19908. height: math.unit(14, "feet"),
  19909. weight: math.unit(12000, "lb"),
  19910. name: "Side",
  19911. image: {
  19912. source: "./media/characters/mort/side.svg",
  19913. extra: 365 / 318,
  19914. bottom: 0.052
  19915. },
  19916. default: true
  19917. },
  19918. back: {
  19919. height: math.unit(14, "feet"),
  19920. weight: math.unit(12000, "lb"),
  19921. name: "Back",
  19922. image: {
  19923. source: "./media/characters/mort/back.svg",
  19924. extra: 371 / 332,
  19925. bottom: 0.18
  19926. }
  19927. },
  19928. },
  19929. [
  19930. {
  19931. name: "Normal",
  19932. height: math.unit(14, "feet"),
  19933. default: true
  19934. },
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19939. {
  19940. front: {
  19941. height: math.unit(8, "feet"),
  19942. weight: math.unit(1, "ton"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/lycoa/front.svg",
  19946. extra: 1875 / 1789,
  19947. bottom: 0.022
  19948. }
  19949. },
  19950. back: {
  19951. height: math.unit(8, "feet"),
  19952. weight: math.unit(1, "ton"),
  19953. name: "Back",
  19954. image: {
  19955. source: "./media/characters/lycoa/back.svg",
  19956. extra: 1835 / 1781,
  19957. bottom: 0.03
  19958. }
  19959. },
  19960. head: {
  19961. height: math.unit(2.1, "feet"),
  19962. name: "Head",
  19963. image: {
  19964. source: "./media/characters/lycoa/head.svg"
  19965. }
  19966. },
  19967. tailmaw: {
  19968. height: math.unit(1.9, "feet"),
  19969. name: "Tailmaw",
  19970. image: {
  19971. source: "./media/characters/lycoa/tailmaw.svg"
  19972. }
  19973. },
  19974. tentacles: {
  19975. height: math.unit(2.1, "feet"),
  19976. name: "Tentacles",
  19977. image: {
  19978. source: "./media/characters/lycoa/tentacles.svg"
  19979. }
  19980. },
  19981. dick: {
  19982. height: math.unit(1.73, "feet"),
  19983. name: "Dick",
  19984. image: {
  19985. source: "./media/characters/lycoa/dick.svg"
  19986. }
  19987. },
  19988. },
  19989. [
  19990. {
  19991. name: "Normal",
  19992. height: math.unit(8, "feet"),
  19993. default: true
  19994. },
  19995. {
  19996. name: "Macro",
  19997. height: math.unit(30, "feet")
  19998. },
  19999. ]
  20000. ))
  20001. characterMakers.push(() => makeCharacter(
  20002. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20003. {
  20004. front: {
  20005. height: math.unit(4 + 2 / 12, "feet"),
  20006. weight: math.unit(70, "lb"),
  20007. name: "Front",
  20008. image: {
  20009. source: "./media/characters/naldara/front.svg",
  20010. extra: 841 / 720,
  20011. bottom: 0.04
  20012. }
  20013. },
  20014. naga: {
  20015. height: math.unit(23, "feet"),
  20016. weight: math.unit(15000, "kg"),
  20017. name: "Naga",
  20018. image: {
  20019. source: "./media/characters/naldara/naga.svg",
  20020. extra: 3290 / 2959,
  20021. bottom: 124 / 3432
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(4 + 2 / 12, "feet"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(13 + 7 / 12, "feet"),
  20038. weight: math.unit(1500, "lb"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/briar/front.svg",
  20042. extra: 626 / 596,
  20043. bottom: 0.08
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(13 + 7 / 12, "feet"),
  20051. default: true
  20052. },
  20053. ]
  20054. ))
  20055. characterMakers.push(() => makeCharacter(
  20056. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20057. {
  20058. side: {
  20059. height: math.unit(10, "feet"),
  20060. weight: math.unit(500, "lb"),
  20061. name: "Side",
  20062. image: {
  20063. source: "./media/characters/vanguard/side.svg",
  20064. extra: 502 / 425,
  20065. bottom: 0.087
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Normal",
  20072. height: math.unit(10, "feet"),
  20073. default: true
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(7.5, "feet"),
  20082. weight: math.unit(2, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/artemis/front.svg",
  20086. extra: 1192 / 1075,
  20087. bottom: 0.07
  20088. }
  20089. },
  20090. frontNsfw: {
  20091. height: math.unit(7.5, "feet"),
  20092. weight: math.unit(2, "lb"),
  20093. name: "Front (NSFW)",
  20094. image: {
  20095. source: "./media/characters/artemis/front-nsfw.svg",
  20096. extra: 1192 / 1075,
  20097. bottom: 0.07
  20098. }
  20099. },
  20100. frontNsfwer: {
  20101. height: math.unit(7.5, "feet"),
  20102. weight: math.unit(2, "lb"),
  20103. name: "Front (NSFW-er)",
  20104. image: {
  20105. source: "./media/characters/artemis/front-nsfwer.svg",
  20106. extra: 1192 / 1075,
  20107. bottom: 0.07
  20108. }
  20109. },
  20110. side: {
  20111. height: math.unit(7.5, "feet"),
  20112. weight: math.unit(2, "lb"),
  20113. name: "Side",
  20114. image: {
  20115. source: "./media/characters/artemis/side.svg",
  20116. extra: 1192 / 1075,
  20117. bottom: 0.07
  20118. }
  20119. },
  20120. sideNsfw: {
  20121. height: math.unit(7.5, "feet"),
  20122. weight: math.unit(2, "lb"),
  20123. name: "Side (NSFW)",
  20124. image: {
  20125. source: "./media/characters/artemis/side-nsfw.svg",
  20126. extra: 1192 / 1075,
  20127. bottom: 0.07
  20128. }
  20129. },
  20130. sideNsfwer: {
  20131. height: math.unit(7.5, "feet"),
  20132. weight: math.unit(2, "lb"),
  20133. name: "Side (NSFW-er)",
  20134. image: {
  20135. source: "./media/characters/artemis/side-nsfwer.svg",
  20136. extra: 1192 / 1075,
  20137. bottom: 0.07
  20138. }
  20139. },
  20140. maw: {
  20141. height: math.unit(1.1, "feet"),
  20142. name: "Maw",
  20143. image: {
  20144. source: "./media/characters/artemis/maw.svg"
  20145. }
  20146. },
  20147. stomach: {
  20148. height: math.unit(0.95, "feet"),
  20149. name: "Stomach",
  20150. image: {
  20151. source: "./media/characters/artemis/stomach.svg"
  20152. }
  20153. },
  20154. dickCanine: {
  20155. height: math.unit(1, "feet"),
  20156. name: "Dick (Canine)",
  20157. image: {
  20158. source: "./media/characters/artemis/dick-canine.svg"
  20159. }
  20160. },
  20161. dickEquine: {
  20162. height: math.unit(0.85, "feet"),
  20163. name: "Dick (Equine)",
  20164. image: {
  20165. source: "./media/characters/artemis/dick-equine.svg"
  20166. }
  20167. },
  20168. dickExotic: {
  20169. height: math.unit(0.85, "feet"),
  20170. name: "Dick (Exotic)",
  20171. image: {
  20172. source: "./media/characters/artemis/dick-exotic.svg"
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Normal",
  20179. height: math.unit(7.5, "feet"),
  20180. default: true
  20181. },
  20182. {
  20183. name: "Enlarged",
  20184. height: math.unit(12, "feet")
  20185. },
  20186. ]
  20187. ))
  20188. characterMakers.push(() => makeCharacter(
  20189. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20190. {
  20191. front: {
  20192. height: math.unit(5 + 3 / 12, "feet"),
  20193. weight: math.unit(160, "lb"),
  20194. name: "Front",
  20195. image: {
  20196. source: "./media/characters/kira/front.svg",
  20197. extra: 906 / 786,
  20198. bottom: 0.01
  20199. }
  20200. },
  20201. back: {
  20202. height: math.unit(5 + 3 / 12, "feet"),
  20203. weight: math.unit(160, "lb"),
  20204. name: "Back",
  20205. image: {
  20206. source: "./media/characters/kira/back.svg",
  20207. extra: 882 / 757,
  20208. bottom: 0.005
  20209. }
  20210. },
  20211. frontDressed: {
  20212. height: math.unit(5 + 3 / 12, "feet"),
  20213. weight: math.unit(160, "lb"),
  20214. name: "Front (Dressed)",
  20215. image: {
  20216. source: "./media/characters/kira/front-dressed.svg",
  20217. extra: 906 / 786,
  20218. bottom: 0.01
  20219. }
  20220. },
  20221. beans: {
  20222. height: math.unit(0.92, "feet"),
  20223. name: "Beans",
  20224. image: {
  20225. source: "./media/characters/kira/beans.svg"
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(5 + 3 / 12, "feet"),
  20233. default: true
  20234. },
  20235. ]
  20236. ))
  20237. characterMakers.push(() => makeCharacter(
  20238. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20239. {
  20240. front: {
  20241. height: math.unit(5 + 4 / 12, "feet"),
  20242. weight: math.unit(145, "lb"),
  20243. name: "Front",
  20244. image: {
  20245. source: "./media/characters/scramble/front.svg",
  20246. extra: 763 / 727,
  20247. bottom: 0.05
  20248. }
  20249. },
  20250. back: {
  20251. height: math.unit(5 + 4 / 12, "feet"),
  20252. weight: math.unit(145, "lb"),
  20253. name: "Back",
  20254. image: {
  20255. source: "./media/characters/scramble/back.svg",
  20256. extra: 826 / 737,
  20257. bottom: 0.002
  20258. }
  20259. },
  20260. },
  20261. [
  20262. {
  20263. name: "Normal",
  20264. height: math.unit(5 + 4 / 12, "feet"),
  20265. default: true
  20266. },
  20267. ]
  20268. ))
  20269. characterMakers.push(() => makeCharacter(
  20270. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20271. {
  20272. side: {
  20273. height: math.unit(6 + 2 / 12, "feet"),
  20274. weight: math.unit(190, "lb"),
  20275. name: "Side",
  20276. image: {
  20277. source: "./media/characters/biscuit/side.svg",
  20278. extra: 858 / 791,
  20279. bottom: 0.044
  20280. }
  20281. },
  20282. },
  20283. [
  20284. {
  20285. name: "Normal",
  20286. height: math.unit(6 + 2 / 12, "feet"),
  20287. default: true
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20293. {
  20294. front: {
  20295. height: math.unit(5 + 2 / 12, "feet"),
  20296. weight: math.unit(120, "lb"),
  20297. name: "Front",
  20298. image: {
  20299. source: "./media/characters/poffin/front.svg",
  20300. extra: 786 / 680,
  20301. bottom: 0.005
  20302. }
  20303. },
  20304. },
  20305. [
  20306. {
  20307. name: "Normal",
  20308. height: math.unit(5 + 2 / 12, "feet"),
  20309. default: true
  20310. },
  20311. ]
  20312. ))
  20313. characterMakers.push(() => makeCharacter(
  20314. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20315. {
  20316. front: {
  20317. height: math.unit(6 + 3 / 12, "feet"),
  20318. weight: math.unit(519, "lb"),
  20319. name: "Front",
  20320. image: {
  20321. source: "./media/characters/dhari/front.svg",
  20322. extra: 1048 / 946,
  20323. bottom: 0.015
  20324. }
  20325. },
  20326. back: {
  20327. height: math.unit(6 + 3 / 12, "feet"),
  20328. weight: math.unit(519, "lb"),
  20329. name: "Back",
  20330. image: {
  20331. source: "./media/characters/dhari/back.svg",
  20332. extra: 1048 / 931,
  20333. bottom: 0.005
  20334. }
  20335. },
  20336. frontDressed: {
  20337. height: math.unit(6 + 3 / 12, "feet"),
  20338. weight: math.unit(519, "lb"),
  20339. name: "Front (Dressed)",
  20340. image: {
  20341. source: "./media/characters/dhari/front-dressed.svg",
  20342. extra: 1713 / 1546,
  20343. bottom: 0.02
  20344. }
  20345. },
  20346. backDressed: {
  20347. height: math.unit(6 + 3 / 12, "feet"),
  20348. weight: math.unit(519, "lb"),
  20349. name: "Back (Dressed)",
  20350. image: {
  20351. source: "./media/characters/dhari/back-dressed.svg",
  20352. extra: 1699 / 1537,
  20353. bottom: 0.01
  20354. }
  20355. },
  20356. maw: {
  20357. height: math.unit(0.95, "feet"),
  20358. name: "Maw",
  20359. image: {
  20360. source: "./media/characters/dhari/maw.svg"
  20361. }
  20362. },
  20363. wereFront: {
  20364. height: math.unit(12 + 8 / 12, "feet"),
  20365. weight: math.unit(4000, "lb"),
  20366. name: "Front (Were)",
  20367. image: {
  20368. source: "./media/characters/dhari/were-front.svg",
  20369. extra: 1065 / 969,
  20370. bottom: 0.015
  20371. }
  20372. },
  20373. wereBack: {
  20374. height: math.unit(12 + 8 / 12, "feet"),
  20375. weight: math.unit(4000, "lb"),
  20376. name: "Back (Were)",
  20377. image: {
  20378. source: "./media/characters/dhari/were-back.svg",
  20379. extra: 1065 / 969,
  20380. bottom: 0.012
  20381. }
  20382. },
  20383. wereMaw: {
  20384. height: math.unit(0.625, "meters"),
  20385. name: "Maw (Were)",
  20386. image: {
  20387. source: "./media/characters/dhari/were-maw.svg"
  20388. }
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(6 + 3 / 12, "feet"),
  20395. default: true
  20396. },
  20397. ]
  20398. ))
  20399. characterMakers.push(() => makeCharacter(
  20400. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20401. {
  20402. anthro: {
  20403. height: math.unit(5 + 7 / 12, "feet"),
  20404. weight: math.unit(175, "lb"),
  20405. name: "Anthro",
  20406. image: {
  20407. source: "./media/characters/rena-dyne/anthro.svg",
  20408. extra: 1849 / 1785,
  20409. bottom: 0.005
  20410. }
  20411. },
  20412. taur: {
  20413. height: math.unit(15 + 6 / 12, "feet"),
  20414. weight: math.unit(8000, "lb"),
  20415. name: "Taur",
  20416. image: {
  20417. source: "./media/characters/rena-dyne/taur.svg",
  20418. extra: 2315 / 2234,
  20419. bottom: 0.033
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Normal",
  20426. height: math.unit(5 + 7 / 12, "feet"),
  20427. default: true
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20433. {
  20434. front: {
  20435. height: math.unit(8, "feet"),
  20436. weight: math.unit(600, "lb"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/weremeep/front.svg",
  20440. extra: 967 / 862,
  20441. bottom: 0.01
  20442. }
  20443. },
  20444. },
  20445. [
  20446. {
  20447. name: "Normal",
  20448. height: math.unit(8, "feet"),
  20449. default: true
  20450. },
  20451. {
  20452. name: "Lorg",
  20453. height: math.unit(12, "feet")
  20454. },
  20455. {
  20456. name: "Oh Lawd She Comin'",
  20457. height: math.unit(20, "feet")
  20458. },
  20459. ]
  20460. ))
  20461. characterMakers.push(() => makeCharacter(
  20462. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20463. {
  20464. front: {
  20465. height: math.unit(4, "feet"),
  20466. weight: math.unit(90, "lb"),
  20467. name: "Front",
  20468. image: {
  20469. source: "./media/characters/reza/front.svg",
  20470. extra: 1183 / 1111,
  20471. bottom: 0.017
  20472. }
  20473. },
  20474. back: {
  20475. height: math.unit(4, "feet"),
  20476. weight: math.unit(90, "lb"),
  20477. name: "Back",
  20478. image: {
  20479. source: "./media/characters/reza/back.svg",
  20480. extra: 1183 / 1111,
  20481. bottom: 0.01
  20482. }
  20483. },
  20484. drake: {
  20485. height: math.unit(30, "feet"),
  20486. weight: math.unit(246960, "lb"),
  20487. name: "Drake",
  20488. image: {
  20489. source: "./media/characters/reza/drake.svg",
  20490. extra: 2350 / 2024,
  20491. bottom: 60.7 / 2403
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(4, "feet"),
  20499. default: true
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20505. {
  20506. side: {
  20507. height: math.unit(15, "feet"),
  20508. weight: math.unit(14, "tons"),
  20509. name: "Side",
  20510. image: {
  20511. source: "./media/characters/athea/side.svg",
  20512. extra: 960 / 540,
  20513. bottom: 0.003
  20514. }
  20515. },
  20516. sitting: {
  20517. height: math.unit(6 * 2.85, "feet"),
  20518. weight: math.unit(14, "tons"),
  20519. name: "Sitting",
  20520. image: {
  20521. source: "./media/characters/athea/sitting.svg",
  20522. extra: 621 / 581,
  20523. bottom: 0.075
  20524. }
  20525. },
  20526. maw: {
  20527. height: math.unit(7.59498031496063, "feet"),
  20528. name: "Maw",
  20529. image: {
  20530. source: "./media/characters/athea/maw.svg"
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Lap Cat",
  20537. height: math.unit(2.5, "feet")
  20538. },
  20539. {
  20540. name: "Minimacro",
  20541. height: math.unit(15, "feet"),
  20542. default: true
  20543. },
  20544. {
  20545. name: "Macro",
  20546. height: math.unit(120, "feet")
  20547. },
  20548. {
  20549. name: "Macro+",
  20550. height: math.unit(640, "feet")
  20551. },
  20552. {
  20553. name: "Colossus",
  20554. height: math.unit(2.2, "miles")
  20555. },
  20556. ]
  20557. ))
  20558. characterMakers.push(() => makeCharacter(
  20559. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20560. {
  20561. front: {
  20562. height: math.unit(8 + 8 / 12, "feet"),
  20563. weight: math.unit(130, "kg"),
  20564. name: "Front",
  20565. image: {
  20566. source: "./media/characters/seroko/front.svg",
  20567. extra: 1385 / 1280,
  20568. bottom: 0.025
  20569. }
  20570. },
  20571. back: {
  20572. height: math.unit(8 + 8 / 12, "feet"),
  20573. weight: math.unit(130, "kg"),
  20574. name: "Back",
  20575. image: {
  20576. source: "./media/characters/seroko/back.svg",
  20577. extra: 1369 / 1238,
  20578. bottom: 0.018
  20579. }
  20580. },
  20581. frontDressed: {
  20582. height: math.unit(8 + 8 / 12, "feet"),
  20583. weight: math.unit(130, "kg"),
  20584. name: "Front (Dressed)",
  20585. image: {
  20586. source: "./media/characters/seroko/front-dressed.svg",
  20587. extra: 1366 / 1275,
  20588. bottom: 0.03
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Normal",
  20595. height: math.unit(8 + 8 / 12, "feet"),
  20596. default: true
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20602. {
  20603. front: {
  20604. height: math.unit(5.5, "feet"),
  20605. weight: math.unit(160, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/quatzi/front.svg",
  20609. extra: 2346 / 2242,
  20610. bottom: 0.015
  20611. }
  20612. },
  20613. },
  20614. [
  20615. {
  20616. name: "Normal",
  20617. height: math.unit(5.5, "feet"),
  20618. default: true
  20619. },
  20620. {
  20621. name: "Big",
  20622. height: math.unit(7.7, "feet")
  20623. },
  20624. ]
  20625. ))
  20626. characterMakers.push(() => makeCharacter(
  20627. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20628. {
  20629. front: {
  20630. height: math.unit(5 + 11 / 12, "feet"),
  20631. weight: math.unit(180, "lb"),
  20632. name: "Front",
  20633. image: {
  20634. source: "./media/characters/sen/front.svg",
  20635. extra: 1321 / 1254,
  20636. bottom: 0.015
  20637. }
  20638. },
  20639. side: {
  20640. height: math.unit(5 + 11 / 12, "feet"),
  20641. weight: math.unit(180, "lb"),
  20642. name: "Side",
  20643. image: {
  20644. source: "./media/characters/sen/side.svg",
  20645. extra: 1321 / 1254,
  20646. bottom: 0.007
  20647. }
  20648. },
  20649. back: {
  20650. height: math.unit(5 + 11 / 12, "feet"),
  20651. weight: math.unit(180, "lb"),
  20652. name: "Back",
  20653. image: {
  20654. source: "./media/characters/sen/back.svg",
  20655. extra: 1321 / 1254
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(5 + 11 / 12, "feet"),
  20663. default: true
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20669. {
  20670. front: {
  20671. height: math.unit(166.6, "cm"),
  20672. weight: math.unit(66.6, "kg"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/fruity/front.svg",
  20676. extra: 1510 / 1386,
  20677. bottom: 0.04
  20678. }
  20679. },
  20680. back: {
  20681. height: math.unit(166.6, "cm"),
  20682. weight: math.unit(66.6, "lb"),
  20683. name: "Back",
  20684. image: {
  20685. source: "./media/characters/fruity/back.svg",
  20686. extra: 1563 / 1435,
  20687. bottom: 0.005
  20688. }
  20689. },
  20690. },
  20691. [
  20692. {
  20693. name: "Normal",
  20694. height: math.unit(166.6, "cm"),
  20695. default: true
  20696. },
  20697. {
  20698. name: "Demonic",
  20699. height: math.unit(166.6, "feet")
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20705. {
  20706. side: {
  20707. height: math.unit(10, "feet"),
  20708. weight: math.unit(500, "lb"),
  20709. name: "Side",
  20710. image: {
  20711. source: "./media/characters/zost/side.svg",
  20712. extra: 966 / 880,
  20713. bottom: 0.075
  20714. }
  20715. },
  20716. mawFront: {
  20717. height: math.unit(1.08, "meters"),
  20718. name: "Maw (Front)",
  20719. image: {
  20720. source: "./media/characters/zost/maw-front.svg"
  20721. }
  20722. },
  20723. mawSide: {
  20724. height: math.unit(2.66, "feet"),
  20725. name: "Maw (Side)",
  20726. image: {
  20727. source: "./media/characters/zost/maw-side.svg"
  20728. }
  20729. },
  20730. },
  20731. [
  20732. {
  20733. name: "Normal",
  20734. height: math.unit(10, "feet"),
  20735. default: true
  20736. },
  20737. ]
  20738. ))
  20739. characterMakers.push(() => makeCharacter(
  20740. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20741. {
  20742. front: {
  20743. height: math.unit(5 + 4 / 12, "feet"),
  20744. weight: math.unit(120, "lb"),
  20745. name: "Front",
  20746. image: {
  20747. source: "./media/characters/luci/front.svg",
  20748. extra: 1985 / 1884,
  20749. bottom: 0.04
  20750. }
  20751. },
  20752. back: {
  20753. height: math.unit(5 + 4 / 12, "feet"),
  20754. weight: math.unit(120, "lb"),
  20755. name: "Back",
  20756. image: {
  20757. source: "./media/characters/luci/back.svg",
  20758. extra: 1892 / 1791,
  20759. bottom: 0.002
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(5 + 4 / 12, "feet"),
  20767. default: true
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20773. {
  20774. front: {
  20775. height: math.unit(1500, "feet"),
  20776. weight: math.unit(3.8e6, "tons"),
  20777. name: "Front",
  20778. image: {
  20779. source: "./media/characters/2th/front.svg",
  20780. extra: 3489 / 3350,
  20781. bottom: 0.1
  20782. }
  20783. },
  20784. foot: {
  20785. height: math.unit(461, "feet"),
  20786. name: "Foot",
  20787. image: {
  20788. source: "./media/characters/2th/foot.svg"
  20789. }
  20790. },
  20791. },
  20792. [
  20793. {
  20794. name: "\"Micro\"",
  20795. height: math.unit(15 + 7 / 12, "feet")
  20796. },
  20797. {
  20798. name: "Normal",
  20799. height: math.unit(1500, "feet"),
  20800. default: true
  20801. },
  20802. {
  20803. name: "Macro",
  20804. height: math.unit(5000, "feet")
  20805. },
  20806. {
  20807. name: "Megamacro",
  20808. height: math.unit(15, "miles")
  20809. },
  20810. {
  20811. name: "Gigamacro",
  20812. height: math.unit(4000, "miles")
  20813. },
  20814. {
  20815. name: "Galactic",
  20816. height: math.unit(50, "AU")
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20822. {
  20823. front: {
  20824. height: math.unit(5 + 6 / 12, "feet"),
  20825. weight: math.unit(220, "lb"),
  20826. name: "Front",
  20827. image: {
  20828. source: "./media/characters/amethyst/front.svg",
  20829. extra: 2078 / 2040,
  20830. bottom: 0.045
  20831. }
  20832. },
  20833. back: {
  20834. height: math.unit(5 + 6 / 12, "feet"),
  20835. weight: math.unit(220, "lb"),
  20836. name: "Back",
  20837. image: {
  20838. source: "./media/characters/amethyst/back.svg",
  20839. extra: 2021 / 1989,
  20840. bottom: 0.02
  20841. }
  20842. },
  20843. },
  20844. [
  20845. {
  20846. name: "Normal",
  20847. height: math.unit(5 + 6 / 12, "feet"),
  20848. default: true
  20849. },
  20850. ]
  20851. ))
  20852. characterMakers.push(() => makeCharacter(
  20853. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20854. {
  20855. front: {
  20856. height: math.unit(4 + 11 / 12, "feet"),
  20857. weight: math.unit(120, "lb"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/yumi-akiyama/front.svg",
  20861. extra: 1327 / 1235,
  20862. bottom: 0.02
  20863. }
  20864. },
  20865. back: {
  20866. height: math.unit(4 + 11 / 12, "feet"),
  20867. weight: math.unit(120, "lb"),
  20868. name: "Back",
  20869. image: {
  20870. source: "./media/characters/yumi-akiyama/back.svg",
  20871. extra: 1287 / 1245,
  20872. bottom: 0.002
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Galactic",
  20879. height: math.unit(50, "galaxies"),
  20880. default: true
  20881. },
  20882. {
  20883. name: "Universal",
  20884. height: math.unit(100, "universes")
  20885. },
  20886. ]
  20887. ))
  20888. characterMakers.push(() => makeCharacter(
  20889. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20890. {
  20891. front: {
  20892. height: math.unit(8, "feet"),
  20893. weight: math.unit(500, "lb"),
  20894. name: "Front",
  20895. image: {
  20896. source: "./media/characters/rifter-yrmori/front.svg",
  20897. extra: 1180 / 1125,
  20898. bottom: 0.02
  20899. }
  20900. },
  20901. back: {
  20902. height: math.unit(8, "feet"),
  20903. weight: math.unit(500, "lb"),
  20904. name: "Back",
  20905. image: {
  20906. source: "./media/characters/rifter-yrmori/back.svg",
  20907. extra: 1190 / 1145,
  20908. bottom: 0.001
  20909. }
  20910. },
  20911. wings: {
  20912. height: math.unit(7.75, "feet"),
  20913. weight: math.unit(500, "lb"),
  20914. name: "Wings",
  20915. image: {
  20916. source: "./media/characters/rifter-yrmori/wings.svg",
  20917. extra: 1357 / 1285
  20918. }
  20919. },
  20920. maw: {
  20921. height: math.unit(0.8, "feet"),
  20922. name: "Maw",
  20923. image: {
  20924. source: "./media/characters/rifter-yrmori/maw.svg"
  20925. }
  20926. },
  20927. mawfront: {
  20928. height: math.unit(1.45, "feet"),
  20929. name: "Maw (Front)",
  20930. image: {
  20931. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20932. }
  20933. },
  20934. },
  20935. [
  20936. {
  20937. name: "Normal",
  20938. height: math.unit(8, "feet"),
  20939. default: true
  20940. },
  20941. {
  20942. name: "Macro",
  20943. height: math.unit(42, "meters")
  20944. },
  20945. ]
  20946. ))
  20947. characterMakers.push(() => makeCharacter(
  20948. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20949. {
  20950. were: {
  20951. height: math.unit(25 + 6 / 12, "feet"),
  20952. weight: math.unit(10000, "lb"),
  20953. name: "Were",
  20954. image: {
  20955. source: "./media/characters/tahajin/were.svg",
  20956. extra: 801 / 770,
  20957. bottom: 0.042
  20958. }
  20959. },
  20960. aquatic: {
  20961. height: math.unit(6 + 4 / 12, "feet"),
  20962. weight: math.unit(160, "lb"),
  20963. name: "Aquatic",
  20964. image: {
  20965. source: "./media/characters/tahajin/aquatic.svg",
  20966. extra: 572 / 542,
  20967. bottom: 0.04
  20968. }
  20969. },
  20970. chow: {
  20971. height: math.unit(8 + 11 / 12, "feet"),
  20972. weight: math.unit(450, "lb"),
  20973. name: "Chow",
  20974. image: {
  20975. source: "./media/characters/tahajin/chow.svg",
  20976. extra: 660 / 640,
  20977. bottom: 0.015
  20978. }
  20979. },
  20980. demiNaga: {
  20981. height: math.unit(6 + 8 / 12, "feet"),
  20982. weight: math.unit(300, "lb"),
  20983. name: "Demi Naga",
  20984. image: {
  20985. source: "./media/characters/tahajin/demi-naga.svg",
  20986. extra: 643 / 615,
  20987. bottom: 0.1
  20988. }
  20989. },
  20990. data: {
  20991. height: math.unit(5, "inches"),
  20992. weight: math.unit(0.1, "lb"),
  20993. name: "Data",
  20994. image: {
  20995. source: "./media/characters/tahajin/data.svg"
  20996. }
  20997. },
  20998. fluu: {
  20999. height: math.unit(5 + 7 / 12, "feet"),
  21000. weight: math.unit(140, "lb"),
  21001. name: "Fluu",
  21002. image: {
  21003. source: "./media/characters/tahajin/fluu.svg",
  21004. extra: 628 / 592,
  21005. bottom: 0.02
  21006. }
  21007. },
  21008. starWarrior: {
  21009. height: math.unit(4 + 5 / 12, "feet"),
  21010. weight: math.unit(50, "lb"),
  21011. name: "Star Warrior",
  21012. image: {
  21013. source: "./media/characters/tahajin/star-warrior.svg"
  21014. }
  21015. },
  21016. },
  21017. [
  21018. {
  21019. name: "Normal",
  21020. height: math.unit(25 + 6 / 12, "feet"),
  21021. default: true
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21027. {
  21028. front: {
  21029. height: math.unit(8, "feet"),
  21030. weight: math.unit(350, "lb"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/gabira/front.svg",
  21034. extra: 608 / 580,
  21035. bottom: 0.03
  21036. }
  21037. },
  21038. back: {
  21039. height: math.unit(8, "feet"),
  21040. weight: math.unit(350, "lb"),
  21041. name: "Back",
  21042. image: {
  21043. source: "./media/characters/gabira/back.svg",
  21044. extra: 608 / 580,
  21045. bottom: 0.03
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Normal",
  21052. height: math.unit(8, "feet"),
  21053. default: true
  21054. },
  21055. ]
  21056. ))
  21057. characterMakers.push(() => makeCharacter(
  21058. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21059. {
  21060. front: {
  21061. height: math.unit(5 + 3 / 12, "feet"),
  21062. weight: math.unit(137, "lb"),
  21063. name: "Front",
  21064. image: {
  21065. source: "./media/characters/sasha-katraine/front.svg",
  21066. bottom: 0.045
  21067. }
  21068. },
  21069. },
  21070. [
  21071. {
  21072. name: "Micro",
  21073. height: math.unit(5, "inches")
  21074. },
  21075. {
  21076. name: "Normal",
  21077. height: math.unit(5 + 3 / 12, "feet"),
  21078. default: true
  21079. },
  21080. ]
  21081. ))
  21082. characterMakers.push(() => makeCharacter(
  21083. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21084. {
  21085. side: {
  21086. height: math.unit(4, "inches"),
  21087. weight: math.unit(200, "grams"),
  21088. name: "Side",
  21089. image: {
  21090. source: "./media/characters/der/side.svg",
  21091. extra: 719 / 400,
  21092. bottom: 30.6 / 749.9187
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Micro",
  21099. height: math.unit(4, "inches"),
  21100. default: true
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21106. {
  21107. side: {
  21108. height: math.unit(30, "meters"),
  21109. weight: math.unit(700, "tonnes"),
  21110. name: "Side",
  21111. image: {
  21112. source: "./media/characters/fixerdragon/side.svg",
  21113. extra: (1293.0514 - 116.03) / 1106.86,
  21114. bottom: 116.03 / 1293.0514
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Planck",
  21121. height: math.unit(1.6e-35, "meters")
  21122. },
  21123. {
  21124. name: "Micro",
  21125. height: math.unit(0.4, "meters")
  21126. },
  21127. {
  21128. name: "Normal",
  21129. height: math.unit(30, "meters"),
  21130. default: true
  21131. },
  21132. {
  21133. name: "Megamacro",
  21134. height: math.unit(1.2, "megameters")
  21135. },
  21136. {
  21137. name: "Teramacro",
  21138. height: math.unit(130, "terameters")
  21139. },
  21140. {
  21141. name: "Yottamacro",
  21142. height: math.unit(6200, "yottameters")
  21143. },
  21144. ]
  21145. ));
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21148. {
  21149. front: {
  21150. height: math.unit(8, "feet"),
  21151. weight: math.unit(250, "lb"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/kite/front.svg",
  21155. extra: 2796 / 2659,
  21156. bottom: 0.002
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(8, "feet"),
  21164. default: true
  21165. },
  21166. {
  21167. name: "Macro",
  21168. height: math.unit(360, "feet")
  21169. },
  21170. {
  21171. name: "Megamacro",
  21172. height: math.unit(1500, "feet")
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(5 + 10 / 12, "feet"),
  21181. weight: math.unit(150, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/poojawa-vynar/front.svg",
  21185. extra: (1506.1547 - 55) / 1356.6,
  21186. bottom: 55 / 1506.1547
  21187. }
  21188. },
  21189. frontTailless: {
  21190. height: math.unit(5 + 10 / 12, "feet"),
  21191. weight: math.unit(150, "lb"),
  21192. name: "Front (Tailless)",
  21193. image: {
  21194. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21195. extra: (1506.1547 - 55) / 1356.6,
  21196. bottom: 55 / 1506.1547
  21197. }
  21198. },
  21199. },
  21200. [
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(5 + 10 / 12, "feet"),
  21204. default: true
  21205. },
  21206. ]
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21210. {
  21211. front: {
  21212. height: math.unit(293, "meters"),
  21213. weight: math.unit(70400, "tons"),
  21214. name: "Front",
  21215. image: {
  21216. source: "./media/characters/violette/front.svg",
  21217. extra: 1227 / 1180,
  21218. bottom: 0.005
  21219. }
  21220. },
  21221. back: {
  21222. height: math.unit(293, "meters"),
  21223. weight: math.unit(70400, "tons"),
  21224. name: "Back",
  21225. image: {
  21226. source: "./media/characters/violette/back.svg",
  21227. extra: 1227 / 1180,
  21228. bottom: 0.005
  21229. }
  21230. },
  21231. },
  21232. [
  21233. {
  21234. name: "Macro",
  21235. height: math.unit(293, "meters"),
  21236. default: true
  21237. },
  21238. ]
  21239. ))
  21240. characterMakers.push(() => makeCharacter(
  21241. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21242. {
  21243. front: {
  21244. height: math.unit(1050, "feet"),
  21245. weight: math.unit(200000, "tons"),
  21246. name: "Front",
  21247. image: {
  21248. source: "./media/characters/alessandra/front.svg",
  21249. extra: 960 / 912,
  21250. bottom: 0.06
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Macro",
  21257. height: math.unit(1050, "feet")
  21258. },
  21259. {
  21260. name: "Macro+",
  21261. height: math.unit(900, "meters"),
  21262. default: true
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21268. {
  21269. front: {
  21270. height: math.unit(5, "feet"),
  21271. weight: math.unit(187, "lb"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/person/front.svg",
  21275. extra: 3087 / 2945,
  21276. bottom: 91 / 3181
  21277. }
  21278. },
  21279. },
  21280. [
  21281. {
  21282. name: "Micro",
  21283. height: math.unit(3, "inches")
  21284. },
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(5, "feet"),
  21288. default: true
  21289. },
  21290. {
  21291. name: "Macro",
  21292. height: math.unit(90, "feet")
  21293. },
  21294. {
  21295. name: "Max Size",
  21296. height: math.unit(280, "feet")
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21302. {
  21303. front: {
  21304. height: math.unit(4.5, "meters"),
  21305. weight: math.unit(3200, "lb"),
  21306. name: "Front",
  21307. image: {
  21308. source: "./media/characters/ty/front.svg",
  21309. extra: 1038 / 960,
  21310. bottom: 31.156 / 1068
  21311. }
  21312. },
  21313. back: {
  21314. height: math.unit(4.5, "meters"),
  21315. weight: math.unit(3200, "lb"),
  21316. name: "Back",
  21317. image: {
  21318. source: "./media/characters/ty/back.svg",
  21319. extra: 1044 / 966,
  21320. bottom: 7.48 / 1049
  21321. }
  21322. },
  21323. },
  21324. [
  21325. {
  21326. name: "Normal",
  21327. height: math.unit(4.5, "meters"),
  21328. default: true
  21329. },
  21330. ]
  21331. ))
  21332. characterMakers.push(() => makeCharacter(
  21333. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21334. {
  21335. front: {
  21336. height: math.unit(5 + 4 / 12, "feet"),
  21337. weight: math.unit(115, "lb"),
  21338. name: "Front",
  21339. image: {
  21340. source: "./media/characters/rocky/front.svg",
  21341. extra: 1012 / 975,
  21342. bottom: 54 / 1066
  21343. }
  21344. },
  21345. },
  21346. [
  21347. {
  21348. name: "Normal",
  21349. height: math.unit(5 + 4 / 12, "feet"),
  21350. default: true
  21351. },
  21352. ]
  21353. ))
  21354. characterMakers.push(() => makeCharacter(
  21355. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21356. {
  21357. upright: {
  21358. height: math.unit(6, "meters"),
  21359. weight: math.unit(4000, "kg"),
  21360. name: "Upright",
  21361. image: {
  21362. source: "./media/characters/ruin/upright.svg",
  21363. extra: 668 / 661,
  21364. bottom: 42 / 799.8396
  21365. }
  21366. },
  21367. },
  21368. [
  21369. {
  21370. name: "Normal",
  21371. height: math.unit(6, "meters"),
  21372. default: true
  21373. },
  21374. ]
  21375. ))
  21376. characterMakers.push(() => makeCharacter(
  21377. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21378. {
  21379. front: {
  21380. height: math.unit(5, "feet"),
  21381. weight: math.unit(106, "lb"),
  21382. name: "Front",
  21383. image: {
  21384. source: "./media/characters/robin/front.svg",
  21385. extra: 862 / 799,
  21386. bottom: 42.4 / 914.8856
  21387. }
  21388. },
  21389. },
  21390. [
  21391. {
  21392. name: "Normal",
  21393. height: math.unit(5, "feet"),
  21394. default: true
  21395. },
  21396. ]
  21397. ))
  21398. characterMakers.push(() => makeCharacter(
  21399. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21400. {
  21401. side: {
  21402. height: math.unit(3, "feet"),
  21403. weight: math.unit(225, "lb"),
  21404. name: "Side",
  21405. image: {
  21406. source: "./media/characters/saian/side.svg",
  21407. extra: 566 / 356,
  21408. bottom: 79.7 / 643
  21409. }
  21410. },
  21411. maw: {
  21412. height: math.unit(2.85, "feet"),
  21413. name: "Maw",
  21414. image: {
  21415. source: "./media/characters/saian/maw.svg"
  21416. }
  21417. },
  21418. },
  21419. [
  21420. {
  21421. name: "Normal",
  21422. height: math.unit(3, "feet"),
  21423. default: true
  21424. },
  21425. ]
  21426. ))
  21427. characterMakers.push(() => makeCharacter(
  21428. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21429. {
  21430. side: {
  21431. height: math.unit(8, "feet"),
  21432. weight: math.unit(300, "lb"),
  21433. name: "Side",
  21434. image: {
  21435. source: "./media/characters/equus-silvermane/side.svg",
  21436. extra: 2176 / 2050,
  21437. bottom: 65.7 / 2245
  21438. }
  21439. },
  21440. front: {
  21441. height: math.unit(8, "feet"),
  21442. weight: math.unit(300, "lb"),
  21443. name: "Front",
  21444. image: {
  21445. source: "./media/characters/equus-silvermane/front.svg",
  21446. extra: 4633 / 4400,
  21447. bottom: 71.3 / 4706.915
  21448. }
  21449. },
  21450. sideStepping: {
  21451. height: math.unit(8, "feet"),
  21452. weight: math.unit(300, "lb"),
  21453. name: "Side (Stepping)",
  21454. image: {
  21455. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21456. extra: 1968 / 1860,
  21457. bottom: 16.4 / 1989
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(8, "feet")
  21465. },
  21466. {
  21467. name: "Minimacro",
  21468. height: math.unit(75, "feet"),
  21469. default: true
  21470. },
  21471. {
  21472. name: "Macro",
  21473. height: math.unit(150, "feet")
  21474. },
  21475. {
  21476. name: "Macro+",
  21477. height: math.unit(1000, "feet")
  21478. },
  21479. {
  21480. name: "Megamacro",
  21481. height: math.unit(1, "mile")
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21487. {
  21488. side: {
  21489. height: math.unit(20, "feet"),
  21490. weight: math.unit(30000, "kg"),
  21491. name: "Side",
  21492. image: {
  21493. source: "./media/characters/windar/side.svg",
  21494. extra: 1491 / 1248,
  21495. bottom: 82.56 / 1568
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(20, "feet"),
  21503. default: true
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21509. {
  21510. side: {
  21511. height: math.unit(15.66, "feet"),
  21512. weight: math.unit(150, "lb"),
  21513. name: "Side",
  21514. image: {
  21515. source: "./media/characters/melody/side.svg",
  21516. extra: 1097 / 944,
  21517. bottom: 11.8 / 1109
  21518. }
  21519. },
  21520. sideOutfit: {
  21521. height: math.unit(15.66, "feet"),
  21522. weight: math.unit(150, "lb"),
  21523. name: "Side (Outfit)",
  21524. image: {
  21525. source: "./media/characters/melody/side-outfit.svg",
  21526. extra: 1097 / 944,
  21527. bottom: 11.8 / 1109
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(15.66, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(8, "feet"),
  21544. weight: math.unit(325, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/windera/front.svg",
  21548. extra: 3180 / 2845,
  21549. bottom: 178 / 3365
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(8, "feet"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21563. {
  21564. front: {
  21565. height: math.unit(28.75, "feet"),
  21566. weight: math.unit(2000, "kg"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/sonear/front.svg",
  21570. extra: 1041.1 / 964.9,
  21571. bottom: 53.7 / 1096.6
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(28.75, "feet"),
  21579. default: true
  21580. },
  21581. ]
  21582. ))
  21583. characterMakers.push(() => makeCharacter(
  21584. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21585. {
  21586. side: {
  21587. height: math.unit(25.5, "feet"),
  21588. weight: math.unit(23000, "kg"),
  21589. name: "Side",
  21590. image: {
  21591. source: "./media/characters/kanara/side.svg"
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(25.5, "feet"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21605. {
  21606. side: {
  21607. height: math.unit(10, "feet"),
  21608. weight: math.unit(1000, "kg"),
  21609. name: "Side",
  21610. image: {
  21611. source: "./media/characters/ereus/side.svg",
  21612. extra: 1157 / 959,
  21613. bottom: 153 / 1312.5
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(10, "feet"),
  21621. default: true
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21627. {
  21628. side: {
  21629. height: math.unit(4.5, "feet"),
  21630. weight: math.unit(500, "lb"),
  21631. name: "Side",
  21632. image: {
  21633. source: "./media/characters/e-ter/side.svg",
  21634. extra: 1550 / 1248,
  21635. bottom: 146 / 1694
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(4.5, "feet"),
  21643. default: true
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21649. {
  21650. side: {
  21651. height: math.unit(9.7, "feet"),
  21652. weight: math.unit(4000, "kg"),
  21653. name: "Side",
  21654. image: {
  21655. source: "./media/characters/yamie/side.svg"
  21656. }
  21657. },
  21658. },
  21659. [
  21660. {
  21661. name: "Normal",
  21662. height: math.unit(9.7, "feet"),
  21663. default: true
  21664. },
  21665. ]
  21666. ))
  21667. characterMakers.push(() => makeCharacter(
  21668. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21669. {
  21670. front: {
  21671. height: math.unit(50, "feet"),
  21672. weight: math.unit(50000, "kg"),
  21673. name: "Front",
  21674. image: {
  21675. source: "./media/characters/anders/front.svg",
  21676. extra: 570 / 539,
  21677. bottom: 14.7 / 586.7
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Large",
  21684. height: math.unit(50, "feet")
  21685. },
  21686. {
  21687. name: "Macro",
  21688. height: math.unit(2000, "feet"),
  21689. default: true
  21690. },
  21691. {
  21692. name: "Megamacro",
  21693. height: math.unit(12, "miles")
  21694. },
  21695. ]
  21696. ))
  21697. characterMakers.push(() => makeCharacter(
  21698. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21699. {
  21700. front: {
  21701. height: math.unit(7 + 2 / 12, "feet"),
  21702. weight: math.unit(300, "lb"),
  21703. name: "Front",
  21704. image: {
  21705. source: "./media/characters/reban/front.svg",
  21706. extra: 516 / 487,
  21707. bottom: 42.82 / 558.356
  21708. }
  21709. },
  21710. dick: {
  21711. height: math.unit(7 / 5, "feet"),
  21712. name: "Dick",
  21713. image: {
  21714. source: "./media/characters/reban/dick.svg"
  21715. }
  21716. },
  21717. },
  21718. [
  21719. {
  21720. name: "Natural Height",
  21721. height: math.unit(7 + 2 / 12, "feet")
  21722. },
  21723. {
  21724. name: "Macro",
  21725. height: math.unit(500, "feet"),
  21726. default: true
  21727. },
  21728. {
  21729. name: "Canon Height",
  21730. height: math.unit(50, "AU")
  21731. },
  21732. ]
  21733. ))
  21734. characterMakers.push(() => makeCharacter(
  21735. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21736. {
  21737. front: {
  21738. height: math.unit(6, "feet"),
  21739. weight: math.unit(150, "lb"),
  21740. name: "Front",
  21741. image: {
  21742. source: "./media/characters/terrance-keayes/front.svg",
  21743. extra: 1.005,
  21744. bottom: 151 / 1615
  21745. }
  21746. },
  21747. side: {
  21748. height: math.unit(6, "feet"),
  21749. weight: math.unit(150, "lb"),
  21750. name: "Side",
  21751. image: {
  21752. source: "./media/characters/terrance-keayes/side.svg",
  21753. extra: 1.005,
  21754. bottom: 129.4 / 1544
  21755. }
  21756. },
  21757. back: {
  21758. height: math.unit(6, "feet"),
  21759. weight: math.unit(150, "lb"),
  21760. name: "Back",
  21761. image: {
  21762. source: "./media/characters/terrance-keayes/back.svg",
  21763. extra: 1.005,
  21764. bottom: 58.4 / 1557.3
  21765. }
  21766. },
  21767. dick: {
  21768. height: math.unit(6 * 0.208, "feet"),
  21769. name: "Dick",
  21770. image: {
  21771. source: "./media/characters/terrance-keayes/dick.svg"
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Canon Height",
  21778. height: math.unit(35, "miles"),
  21779. default: true
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(6, "feet"),
  21788. weight: math.unit(150, "lb"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/ofelia/front.svg",
  21792. extra: 546 / 541,
  21793. bottom: 39 / 583
  21794. }
  21795. },
  21796. back: {
  21797. height: math.unit(6, "feet"),
  21798. weight: math.unit(150, "lb"),
  21799. name: "Back",
  21800. image: {
  21801. source: "./media/characters/ofelia/back.svg",
  21802. extra: 564 / 559.5,
  21803. bottom: 8.69 / 573.02
  21804. }
  21805. },
  21806. maw: {
  21807. height: math.unit(1, "feet"),
  21808. name: "Maw",
  21809. image: {
  21810. source: "./media/characters/ofelia/maw.svg"
  21811. }
  21812. },
  21813. foot: {
  21814. height: math.unit(1.949, "feet"),
  21815. name: "Foot",
  21816. image: {
  21817. source: "./media/characters/ofelia/foot.svg"
  21818. }
  21819. },
  21820. },
  21821. [
  21822. {
  21823. name: "Canon Height",
  21824. height: math.unit(2000, "miles"),
  21825. default: true
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21831. {
  21832. front: {
  21833. height: math.unit(6, "feet"),
  21834. weight: math.unit(150, "lb"),
  21835. name: "Front",
  21836. image: {
  21837. source: "./media/characters/samuel/front.svg",
  21838. extra: 265 / 258,
  21839. bottom: 2 / 266.1566
  21840. }
  21841. },
  21842. },
  21843. [
  21844. {
  21845. name: "Macro",
  21846. height: math.unit(100, "feet"),
  21847. default: true
  21848. },
  21849. {
  21850. name: "Full Size",
  21851. height: math.unit(1000, "miles")
  21852. },
  21853. ]
  21854. ))
  21855. characterMakers.push(() => makeCharacter(
  21856. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21857. {
  21858. front: {
  21859. height: math.unit(6, "feet"),
  21860. weight: math.unit(300, "lb"),
  21861. name: "Front",
  21862. image: {
  21863. source: "./media/characters/beishir-kiel/front.svg",
  21864. extra: 569 / 547,
  21865. bottom: 41.9 / 609
  21866. }
  21867. },
  21868. maw: {
  21869. height: math.unit(6 * 0.202, "feet"),
  21870. name: "Maw",
  21871. image: {
  21872. source: "./media/characters/beishir-kiel/maw.svg"
  21873. }
  21874. },
  21875. },
  21876. [
  21877. {
  21878. name: "Macro",
  21879. height: math.unit(300, "feet"),
  21880. default: true
  21881. },
  21882. ]
  21883. ))
  21884. characterMakers.push(() => makeCharacter(
  21885. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21886. {
  21887. front: {
  21888. height: math.unit(5 + 8 / 12, "feet"),
  21889. weight: math.unit(120, "lb"),
  21890. name: "Front",
  21891. image: {
  21892. source: "./media/characters/logan-grey/front.svg",
  21893. extra: 2539 / 2393,
  21894. bottom: 97.6 / 2636.37
  21895. }
  21896. },
  21897. frontAlt: {
  21898. height: math.unit(5 + 8 / 12, "feet"),
  21899. weight: math.unit(120, "lb"),
  21900. name: "Front (Alt)",
  21901. image: {
  21902. source: "./media/characters/logan-grey/front-alt.svg",
  21903. extra: 958 / 893,
  21904. bottom: 15 / 970.768
  21905. }
  21906. },
  21907. back: {
  21908. height: math.unit(5 + 8 / 12, "feet"),
  21909. weight: math.unit(120, "lb"),
  21910. name: "Back",
  21911. image: {
  21912. source: "./media/characters/logan-grey/back.svg",
  21913. extra: 958 / 893,
  21914. bottom: 2.1881 / 970.9788
  21915. }
  21916. },
  21917. dick: {
  21918. height: math.unit(1.437, "feet"),
  21919. name: "Dick",
  21920. image: {
  21921. source: "./media/characters/logan-grey/dick.svg"
  21922. }
  21923. },
  21924. },
  21925. [
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(5 + 8 / 12, "feet")
  21929. },
  21930. {
  21931. name: "The 500 Foot Femboy",
  21932. height: math.unit(500, "feet"),
  21933. default: true
  21934. },
  21935. {
  21936. name: "Megmacro",
  21937. height: math.unit(20, "miles")
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21943. {
  21944. front: {
  21945. height: math.unit(8 + 2 / 12, "feet"),
  21946. weight: math.unit(275, "lb"),
  21947. name: "Front",
  21948. image: {
  21949. source: "./media/characters/draganta/front.svg",
  21950. extra: 1177 / 1135,
  21951. bottom: 33.46 / 1212.1
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Normal",
  21958. height: math.unit(8 + 6 / 12, "feet"),
  21959. default: true
  21960. },
  21961. {
  21962. name: "Macro",
  21963. height: math.unit(150, "feet")
  21964. },
  21965. {
  21966. name: "Megamacro",
  21967. height: math.unit(1000, "miles")
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21973. {
  21974. front: {
  21975. height: math.unit(1.72, "m"),
  21976. weight: math.unit(80, "lb"),
  21977. name: "Front",
  21978. image: {
  21979. source: "./media/characters/voski/front.svg",
  21980. extra: 2076.22 / 2022.4,
  21981. bottom: 102.7 / 2177.3866
  21982. }
  21983. },
  21984. frontNsfw: {
  21985. height: math.unit(1.72, "m"),
  21986. weight: math.unit(80, "lb"),
  21987. name: "Front (NSFW)",
  21988. image: {
  21989. source: "./media/characters/voski/front-nsfw.svg",
  21990. extra: 2076.22 / 2022.4,
  21991. bottom: 102.7 / 2177.3866
  21992. }
  21993. },
  21994. back: {
  21995. height: math.unit(1.72, "m"),
  21996. weight: math.unit(80, "lb"),
  21997. name: "Back",
  21998. image: {
  21999. source: "./media/characters/voski/back.svg",
  22000. extra: 2104 / 2051,
  22001. bottom: 10.45 / 2113.63
  22002. }
  22003. },
  22004. },
  22005. [
  22006. {
  22007. name: "Normal",
  22008. height: math.unit(1.72, "m")
  22009. },
  22010. {
  22011. name: "Macro",
  22012. height: math.unit(55, "m"),
  22013. default: true
  22014. },
  22015. {
  22016. name: "Macro+",
  22017. height: math.unit(300, "m")
  22018. },
  22019. {
  22020. name: "Macro++",
  22021. height: math.unit(700, "m")
  22022. },
  22023. {
  22024. name: "Macro+++",
  22025. height: math.unit(4500, "m")
  22026. },
  22027. {
  22028. name: "Macro++++",
  22029. height: math.unit(45, "km")
  22030. },
  22031. {
  22032. name: "Macro+++++",
  22033. height: math.unit(1220, "km")
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(2.3, "m"),
  22042. weight: math.unit(304, "kg"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/icowom-lee/front.svg",
  22046. extra: 985 / 955,
  22047. bottom: 25.4 / 1012
  22048. }
  22049. },
  22050. fronttentacles: {
  22051. height: math.unit(2.3, "m"),
  22052. weight: math.unit(304, "kg"),
  22053. name: "Front-tentacles",
  22054. image: {
  22055. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22056. extra: 985 / 955,
  22057. bottom: 25.4 / 1012
  22058. }
  22059. },
  22060. back: {
  22061. height: math.unit(2.3, "m"),
  22062. weight: math.unit(304, "kg"),
  22063. name: "Back",
  22064. image: {
  22065. source: "./media/characters/icowom-lee/back.svg",
  22066. extra: 975 / 954,
  22067. bottom: 9.5 / 985
  22068. }
  22069. },
  22070. backtentacles: {
  22071. height: math.unit(2.3, "m"),
  22072. weight: math.unit(304, "kg"),
  22073. name: "Back-tentacles",
  22074. image: {
  22075. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22076. extra: 975 / 954,
  22077. bottom: 9.5 / 985
  22078. }
  22079. },
  22080. frontDressed: {
  22081. height: math.unit(2.3, "m"),
  22082. weight: math.unit(304, "kg"),
  22083. name: "Front (Dressed)",
  22084. image: {
  22085. source: "./media/characters/icowom-lee/front-dressed.svg",
  22086. extra: 3076 / 2933,
  22087. bottom: 51.4 / 3125.1889
  22088. }
  22089. },
  22090. rump: {
  22091. height: math.unit(0.776, "meters"),
  22092. name: "Rump",
  22093. image: {
  22094. source: "./media/characters/icowom-lee/rump.svg"
  22095. }
  22096. },
  22097. genitals: {
  22098. height: math.unit(0.78, "meters"),
  22099. name: "Genitals",
  22100. image: {
  22101. source: "./media/characters/icowom-lee/genitals.svg"
  22102. }
  22103. },
  22104. },
  22105. [
  22106. {
  22107. name: "Normal",
  22108. height: math.unit(2.3, "meters"),
  22109. default: true
  22110. },
  22111. {
  22112. name: "Macro",
  22113. height: math.unit(94, "meters"),
  22114. default: true
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22120. {
  22121. front: {
  22122. height: math.unit(22, "meters"),
  22123. weight: math.unit(21000, "kg"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/shock-diamond/front.svg",
  22127. extra: 2204 / 2053,
  22128. bottom: 65 / 2239.47
  22129. }
  22130. },
  22131. frontNude: {
  22132. height: math.unit(22, "meters"),
  22133. weight: math.unit(21000, "kg"),
  22134. name: "Front (Nude)",
  22135. image: {
  22136. source: "./media/characters/shock-diamond/front-nude.svg",
  22137. extra: 2514 / 2285,
  22138. bottom: 13 / 2527.56
  22139. }
  22140. },
  22141. },
  22142. [
  22143. {
  22144. name: "Normal",
  22145. height: math.unit(3, "meters")
  22146. },
  22147. {
  22148. name: "Macro",
  22149. height: math.unit(22, "meters"),
  22150. default: true
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22156. {
  22157. front: {
  22158. height: math.unit(5 + 4 / 12, "feet"),
  22159. weight: math.unit(120, "lb"),
  22160. name: "Front",
  22161. image: {
  22162. source: "./media/characters/rory/front.svg",
  22163. extra: 589 / 556,
  22164. bottom: 45.7 / 635.76
  22165. }
  22166. },
  22167. frontNude: {
  22168. height: math.unit(5 + 4 / 12, "feet"),
  22169. weight: math.unit(120, "lb"),
  22170. name: "Front (Nude)",
  22171. image: {
  22172. source: "./media/characters/rory/front-nude.svg",
  22173. extra: 589 / 556,
  22174. bottom: 45.7 / 635.76
  22175. }
  22176. },
  22177. side: {
  22178. height: math.unit(5 + 4 / 12, "feet"),
  22179. weight: math.unit(120, "lb"),
  22180. name: "Side",
  22181. image: {
  22182. source: "./media/characters/rory/side.svg",
  22183. extra: 597 / 564,
  22184. bottom: 55 / 653
  22185. }
  22186. },
  22187. back: {
  22188. height: math.unit(5 + 4 / 12, "feet"),
  22189. weight: math.unit(120, "lb"),
  22190. name: "Back",
  22191. image: {
  22192. source: "./media/characters/rory/back.svg",
  22193. extra: 620 / 585,
  22194. bottom: 8.86 / 630.43
  22195. }
  22196. },
  22197. dick: {
  22198. height: math.unit(0.86, "feet"),
  22199. name: "Dick",
  22200. image: {
  22201. source: "./media/characters/rory/dick.svg"
  22202. }
  22203. },
  22204. },
  22205. [
  22206. {
  22207. name: "Normal",
  22208. height: math.unit(5 + 4 / 12, "feet"),
  22209. default: true
  22210. },
  22211. {
  22212. name: "Macro",
  22213. height: math.unit(100, "feet")
  22214. },
  22215. {
  22216. name: "Macro+",
  22217. height: math.unit(140, "feet")
  22218. },
  22219. {
  22220. name: "Macro++",
  22221. height: math.unit(300, "feet")
  22222. },
  22223. ]
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22227. {
  22228. front: {
  22229. height: math.unit(5 + 9 / 12, "feet"),
  22230. weight: math.unit(190, "lb"),
  22231. name: "Front",
  22232. image: {
  22233. source: "./media/characters/sprisk/front.svg",
  22234. extra: 1225 / 1180,
  22235. bottom: 42.7 / 1266.4
  22236. }
  22237. },
  22238. frontNsfw: {
  22239. height: math.unit(5 + 9 / 12, "feet"),
  22240. weight: math.unit(190, "lb"),
  22241. name: "Front (NSFW)",
  22242. image: {
  22243. source: "./media/characters/sprisk/front-nsfw.svg",
  22244. extra: 1225 / 1180,
  22245. bottom: 42.7 / 1266.4
  22246. }
  22247. },
  22248. back: {
  22249. height: math.unit(5 + 9 / 12, "feet"),
  22250. weight: math.unit(190, "lb"),
  22251. name: "Back",
  22252. image: {
  22253. source: "./media/characters/sprisk/back.svg",
  22254. extra: 1247 / 1200,
  22255. bottom: 5.6 / 1253.04
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Tiny",
  22262. height: math.unit(2, "inches")
  22263. },
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(5 + 9 / 12, "feet"),
  22267. default: true
  22268. },
  22269. {
  22270. name: "Mini Macro",
  22271. height: math.unit(18, "feet")
  22272. },
  22273. {
  22274. name: "Macro",
  22275. height: math.unit(100, "feet")
  22276. },
  22277. {
  22278. name: "MACRO",
  22279. height: math.unit(50, "miles")
  22280. },
  22281. {
  22282. name: "M A C R O",
  22283. height: math.unit(300, "miles")
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22289. {
  22290. side: {
  22291. height: math.unit(15.6, "meters"),
  22292. weight: math.unit(700000, "kg"),
  22293. name: "Side",
  22294. image: {
  22295. source: "./media/characters/bunsen/side.svg",
  22296. extra: 1644 / 358
  22297. }
  22298. },
  22299. foot: {
  22300. height: math.unit(1.611 * 1644 / 358, "meter"),
  22301. name: "Foot",
  22302. image: {
  22303. source: "./media/characters/bunsen/foot.svg"
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "Small",
  22310. height: math.unit(10, "feet")
  22311. },
  22312. {
  22313. name: "Normal",
  22314. height: math.unit(15.6, "meters"),
  22315. default: true
  22316. },
  22317. ]
  22318. ))
  22319. characterMakers.push(() => makeCharacter(
  22320. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22321. {
  22322. front: {
  22323. height: math.unit(4 + 11 / 12, "feet"),
  22324. weight: math.unit(140, "lb"),
  22325. name: "Front",
  22326. image: {
  22327. source: "./media/characters/sesh/front.svg",
  22328. extra: 3420 / 3231,
  22329. bottom: 72 / 3949.5
  22330. }
  22331. },
  22332. },
  22333. [
  22334. {
  22335. name: "Normal",
  22336. height: math.unit(4 + 11 / 12, "feet")
  22337. },
  22338. {
  22339. name: "Grown",
  22340. height: math.unit(15, "feet"),
  22341. default: true
  22342. },
  22343. {
  22344. name: "Macro",
  22345. height: math.unit(1500, "feet")
  22346. },
  22347. {
  22348. name: "Megamacro",
  22349. height: math.unit(30, "miles")
  22350. },
  22351. {
  22352. name: "Continental",
  22353. height: math.unit(3000, "miles")
  22354. },
  22355. {
  22356. name: "Gravity Mass",
  22357. height: math.unit(300000, "miles")
  22358. },
  22359. {
  22360. name: "Planet Buster",
  22361. height: math.unit(30000000, "miles")
  22362. },
  22363. {
  22364. name: "Big",
  22365. height: math.unit(3000000000, "miles")
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(9, "feet"),
  22374. weight: math.unit(350, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/pepper/front.svg",
  22378. extra: 1448 / 1312,
  22379. bottom: 9.4 / 1457.88
  22380. }
  22381. },
  22382. back: {
  22383. height: math.unit(9, "feet"),
  22384. weight: math.unit(350, "lb"),
  22385. name: "Back",
  22386. image: {
  22387. source: "./media/characters/pepper/back.svg",
  22388. extra: 1423 / 1300,
  22389. bottom: 4.6 / 1429
  22390. }
  22391. },
  22392. maw: {
  22393. height: math.unit(0.932, "feet"),
  22394. name: "Maw",
  22395. image: {
  22396. source: "./media/characters/pepper/maw.svg"
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Normal",
  22403. height: math.unit(9, "feet"),
  22404. default: true
  22405. },
  22406. ]
  22407. ))
  22408. characterMakers.push(() => makeCharacter(
  22409. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22410. {
  22411. front: {
  22412. height: math.unit(6, "feet"),
  22413. weight: math.unit(150, "lb"),
  22414. name: "Front",
  22415. image: {
  22416. source: "./media/characters/maelstrom/front.svg",
  22417. extra: 2100 / 1883,
  22418. bottom: 94 / 2196.7
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Less Kaiju",
  22425. height: math.unit(200, "feet")
  22426. },
  22427. {
  22428. name: "Kaiju",
  22429. height: math.unit(400, "feet"),
  22430. default: true
  22431. },
  22432. {
  22433. name: "Kaiju-er",
  22434. height: math.unit(600, "feet")
  22435. },
  22436. ]
  22437. ))
  22438. characterMakers.push(() => makeCharacter(
  22439. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22440. {
  22441. front: {
  22442. height: math.unit(6 + 5 / 12, "feet"),
  22443. weight: math.unit(180, "lb"),
  22444. name: "Front",
  22445. image: {
  22446. source: "./media/characters/lexir/front.svg",
  22447. extra: 180 / 172,
  22448. bottom: 12 / 192
  22449. }
  22450. },
  22451. back: {
  22452. height: math.unit(6 + 5 / 12, "feet"),
  22453. weight: math.unit(180, "lb"),
  22454. name: "Back",
  22455. image: {
  22456. source: "./media/characters/lexir/back.svg",
  22457. extra: 183.84 / 175.5,
  22458. bottom: 3.1 / 187
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Very Smal",
  22465. height: math.unit(1, "nm")
  22466. },
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(6 + 5 / 12, "feet"),
  22470. default: true
  22471. },
  22472. {
  22473. name: "Macro",
  22474. height: math.unit(1, "mile")
  22475. },
  22476. {
  22477. name: "Megamacro",
  22478. height: math.unit(50, "miles")
  22479. },
  22480. ]
  22481. ))
  22482. characterMakers.push(() => makeCharacter(
  22483. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22484. {
  22485. front: {
  22486. height: math.unit(1.5, "meters"),
  22487. weight: math.unit(100, "lb"),
  22488. name: "Front",
  22489. image: {
  22490. source: "./media/characters/maksio/front.svg",
  22491. extra: 1549 / 1531,
  22492. bottom: 123.7 / 1674.5429
  22493. }
  22494. },
  22495. back: {
  22496. height: math.unit(1.5, "meters"),
  22497. weight: math.unit(100, "lb"),
  22498. name: "Back",
  22499. image: {
  22500. source: "./media/characters/maksio/back.svg",
  22501. extra: 1541 / 1509,
  22502. bottom: 97 / 1639
  22503. }
  22504. },
  22505. hand: {
  22506. height: math.unit(0.621, "feet"),
  22507. name: "Hand",
  22508. image: {
  22509. source: "./media/characters/maksio/hand.svg"
  22510. }
  22511. },
  22512. foot: {
  22513. height: math.unit(1.611, "feet"),
  22514. name: "Foot",
  22515. image: {
  22516. source: "./media/characters/maksio/foot.svg"
  22517. }
  22518. },
  22519. },
  22520. [
  22521. {
  22522. name: "Shrunken",
  22523. height: math.unit(10, "cm")
  22524. },
  22525. {
  22526. name: "Normal",
  22527. height: math.unit(150, "cm"),
  22528. default: true
  22529. },
  22530. ]
  22531. ))
  22532. characterMakers.push(() => makeCharacter(
  22533. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22534. {
  22535. front: {
  22536. height: math.unit(100, "feet"),
  22537. name: "Front",
  22538. image: {
  22539. source: "./media/characters/erza-bear/front.svg",
  22540. extra: 2449 / 2390,
  22541. bottom: 46 / 2494
  22542. }
  22543. },
  22544. back: {
  22545. height: math.unit(100, "feet"),
  22546. name: "Back",
  22547. image: {
  22548. source: "./media/characters/erza-bear/back.svg",
  22549. extra: 2489 / 2430,
  22550. bottom: 85.4 / 2480
  22551. }
  22552. },
  22553. tail: {
  22554. height: math.unit(42, "feet"),
  22555. name: "Tail",
  22556. image: {
  22557. source: "./media/characters/erza-bear/tail.svg"
  22558. }
  22559. },
  22560. tongue: {
  22561. height: math.unit(8, "feet"),
  22562. name: "Tongue",
  22563. image: {
  22564. source: "./media/characters/erza-bear/tongue.svg"
  22565. }
  22566. },
  22567. dick: {
  22568. height: math.unit(10.5, "feet"),
  22569. name: "Dick",
  22570. image: {
  22571. source: "./media/characters/erza-bear/dick.svg"
  22572. }
  22573. },
  22574. dickVertical: {
  22575. height: math.unit(16.9, "feet"),
  22576. name: "Dick (Vertical)",
  22577. image: {
  22578. source: "./media/characters/erza-bear/dick-vertical.svg"
  22579. }
  22580. },
  22581. },
  22582. [
  22583. {
  22584. name: "Macro",
  22585. height: math.unit(100, "feet"),
  22586. default: true
  22587. },
  22588. ]
  22589. ))
  22590. characterMakers.push(() => makeCharacter(
  22591. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22592. {
  22593. front: {
  22594. height: math.unit(172, "cm"),
  22595. weight: math.unit(73, "kg"),
  22596. name: "Front",
  22597. image: {
  22598. source: "./media/characters/violet-flor/front.svg",
  22599. extra: 1530 / 1442,
  22600. bottom: 61.9 / 1588.8
  22601. }
  22602. },
  22603. back: {
  22604. height: math.unit(180, "cm"),
  22605. weight: math.unit(73, "kg"),
  22606. name: "Back",
  22607. image: {
  22608. source: "./media/characters/violet-flor/back.svg",
  22609. extra: 1692 / 1630,
  22610. bottom: 20 / 1712
  22611. }
  22612. },
  22613. },
  22614. [
  22615. {
  22616. name: "Normal",
  22617. height: math.unit(172, "cm"),
  22618. default: true
  22619. },
  22620. ]
  22621. ))
  22622. characterMakers.push(() => makeCharacter(
  22623. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22624. {
  22625. front: {
  22626. height: math.unit(6, "feet"),
  22627. weight: math.unit(220, "lb"),
  22628. name: "Front",
  22629. image: {
  22630. source: "./media/characters/lynn-rhea/front.svg",
  22631. extra: 310 / 273
  22632. }
  22633. },
  22634. back: {
  22635. height: math.unit(6, "feet"),
  22636. weight: math.unit(220, "lb"),
  22637. name: "Back",
  22638. image: {
  22639. source: "./media/characters/lynn-rhea/back.svg",
  22640. extra: 310 / 273
  22641. }
  22642. },
  22643. dicks: {
  22644. height: math.unit(0.9, "feet"),
  22645. name: "Dicks",
  22646. image: {
  22647. source: "./media/characters/lynn-rhea/dicks.svg"
  22648. }
  22649. },
  22650. slit: {
  22651. height: math.unit(0.4, "feet"),
  22652. name: "Slit",
  22653. image: {
  22654. source: "./media/characters/lynn-rhea/slit.svg"
  22655. }
  22656. },
  22657. },
  22658. [
  22659. {
  22660. name: "Micro",
  22661. height: math.unit(1, "inch")
  22662. },
  22663. {
  22664. name: "Macro",
  22665. height: math.unit(60, "feet"),
  22666. default: true
  22667. },
  22668. {
  22669. name: "Megamacro",
  22670. height: math.unit(2, "miles")
  22671. },
  22672. {
  22673. name: "Gigamacro",
  22674. height: math.unit(3, "earths")
  22675. },
  22676. {
  22677. name: "Galactic",
  22678. height: math.unit(0.8, "galaxies")
  22679. },
  22680. ]
  22681. ))
  22682. characterMakers.push(() => makeCharacter(
  22683. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22684. {
  22685. front: {
  22686. height: math.unit(1600, "feet"),
  22687. weight: math.unit(85758785169, "kg"),
  22688. name: "Front",
  22689. image: {
  22690. source: "./media/characters/valathos/front.svg",
  22691. extra: 1451 / 1339
  22692. }
  22693. },
  22694. },
  22695. [
  22696. {
  22697. name: "Macro",
  22698. height: math.unit(1600, "feet"),
  22699. default: true
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22705. {
  22706. front: {
  22707. height: math.unit(7 + 5 / 12, "feet"),
  22708. weight: math.unit(300, "lb"),
  22709. name: "Front",
  22710. image: {
  22711. source: "./media/characters/azula/front.svg",
  22712. extra: 3208 / 2880,
  22713. bottom: 80.2 / 3277
  22714. }
  22715. },
  22716. back: {
  22717. height: math.unit(7 + 5 / 12, "feet"),
  22718. weight: math.unit(300, "lb"),
  22719. name: "Back",
  22720. image: {
  22721. source: "./media/characters/azula/back.svg",
  22722. extra: 3169 / 2822,
  22723. bottom: 150.6 / 3321
  22724. }
  22725. },
  22726. },
  22727. [
  22728. {
  22729. name: "Normal",
  22730. height: math.unit(7 + 5 / 12, "feet"),
  22731. default: true
  22732. },
  22733. {
  22734. name: "Big",
  22735. height: math.unit(20, "feet")
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22741. {
  22742. front: {
  22743. height: math.unit(5 + 1 / 12, "feet"),
  22744. weight: math.unit(110, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/rupert/front.svg",
  22748. extra: 1549 / 1495,
  22749. bottom: 54.2 / 1604.4
  22750. }
  22751. },
  22752. },
  22753. [
  22754. {
  22755. name: "Normal",
  22756. height: math.unit(5 + 1 / 12, "feet"),
  22757. default: true
  22758. },
  22759. ]
  22760. ))
  22761. characterMakers.push(() => makeCharacter(
  22762. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22763. {
  22764. front: {
  22765. height: math.unit(8 + 4 / 12, "feet"),
  22766. weight: math.unit(350, "lb"),
  22767. name: "Front",
  22768. image: {
  22769. source: "./media/characters/sheera-castellar/front.svg",
  22770. extra: 1957 / 1894,
  22771. bottom: 26.97 / 1975.017
  22772. }
  22773. },
  22774. side: {
  22775. height: math.unit(8 + 4 / 12, "feet"),
  22776. weight: math.unit(350, "lb"),
  22777. name: "Side",
  22778. image: {
  22779. source: "./media/characters/sheera-castellar/side.svg",
  22780. extra: 1957 / 1894
  22781. }
  22782. },
  22783. back: {
  22784. height: math.unit(8 + 4 / 12, "feet"),
  22785. weight: math.unit(350, "lb"),
  22786. name: "Back",
  22787. image: {
  22788. source: "./media/characters/sheera-castellar/back.svg",
  22789. extra: 1957 / 1894
  22790. }
  22791. },
  22792. angled: {
  22793. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22794. weight: math.unit(350, "lb"),
  22795. name: "Angled",
  22796. image: {
  22797. source: "./media/characters/sheera-castellar/angled.svg",
  22798. extra: 1807 / 1707,
  22799. bottom: 68 / 1875
  22800. }
  22801. },
  22802. genitals: {
  22803. height: math.unit(2.2, "feet"),
  22804. name: "Genitals",
  22805. image: {
  22806. source: "./media/characters/sheera-castellar/genitals.svg"
  22807. }
  22808. },
  22809. taur: {
  22810. height: math.unit(10 + 6/12, "feet"),
  22811. name: "Taur",
  22812. image: {
  22813. source: "./media/characters/sheera-castellar/taur.svg",
  22814. extra: 2017/1909,
  22815. bottom: 185/2202
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Normal",
  22822. height: math.unit(8 + 4 / 12, "feet")
  22823. },
  22824. {
  22825. name: "Macro",
  22826. height: math.unit(150, "feet"),
  22827. default: true
  22828. },
  22829. {
  22830. name: "Macro+",
  22831. height: math.unit(800, "feet")
  22832. },
  22833. ]
  22834. ))
  22835. characterMakers.push(() => makeCharacter(
  22836. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22837. {
  22838. front: {
  22839. height: math.unit(6, "feet"),
  22840. weight: math.unit(150, "lb"),
  22841. name: "Front",
  22842. image: {
  22843. source: "./media/characters/jaipur/front.svg",
  22844. extra: 3860 / 3731,
  22845. bottom: 287 / 4140
  22846. }
  22847. },
  22848. back: {
  22849. height: math.unit(6, "feet"),
  22850. weight: math.unit(150, "lb"),
  22851. name: "Back",
  22852. image: {
  22853. source: "./media/characters/jaipur/back.svg",
  22854. extra: 4060 / 3930,
  22855. bottom: 151 / 4200
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Normal",
  22862. height: math.unit(1.85, "meters"),
  22863. default: true
  22864. },
  22865. {
  22866. name: "Macro",
  22867. height: math.unit(150, "meters")
  22868. },
  22869. {
  22870. name: "Macro+",
  22871. height: math.unit(0.5, "miles")
  22872. },
  22873. {
  22874. name: "Macro++",
  22875. height: math.unit(2.5, "miles")
  22876. },
  22877. {
  22878. name: "Macro+++",
  22879. height: math.unit(12, "miles")
  22880. },
  22881. {
  22882. name: "Macro++++",
  22883. height: math.unit(120, "miles")
  22884. },
  22885. {
  22886. name: "Macro+++++",
  22887. height: math.unit(1200, "miles")
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22893. {
  22894. front: {
  22895. height: math.unit(6, "feet"),
  22896. weight: math.unit(150, "lb"),
  22897. name: "Front",
  22898. image: {
  22899. source: "./media/characters/sheila-wolf/front.svg",
  22900. extra: 1931 / 1808,
  22901. bottom: 29.5 / 1960
  22902. }
  22903. },
  22904. dick: {
  22905. height: math.unit(1.464, "feet"),
  22906. name: "Dick",
  22907. image: {
  22908. source: "./media/characters/sheila-wolf/dick.svg"
  22909. }
  22910. },
  22911. muzzle: {
  22912. height: math.unit(0.513, "feet"),
  22913. name: "Muzzle",
  22914. image: {
  22915. source: "./media/characters/sheila-wolf/muzzle.svg"
  22916. }
  22917. },
  22918. },
  22919. [
  22920. {
  22921. name: "Macro",
  22922. height: math.unit(70, "feet"),
  22923. default: true
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22929. {
  22930. front: {
  22931. height: math.unit(32, "meters"),
  22932. weight: math.unit(300000, "kg"),
  22933. name: "Front",
  22934. image: {
  22935. source: "./media/characters/almor/front.svg",
  22936. extra: 1408 / 1322,
  22937. bottom: 94.6 / 1506.5
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Macro",
  22944. height: math.unit(32, "meters"),
  22945. default: true
  22946. },
  22947. ]
  22948. ))
  22949. characterMakers.push(() => makeCharacter(
  22950. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22951. {
  22952. front: {
  22953. height: math.unit(7, "feet"),
  22954. weight: math.unit(200, "lb"),
  22955. name: "Front",
  22956. image: {
  22957. source: "./media/characters/silver/front.svg",
  22958. extra: 472.1 / 450.5,
  22959. bottom: 26.5 / 499.424
  22960. }
  22961. },
  22962. },
  22963. [
  22964. {
  22965. name: "Normal",
  22966. height: math.unit(7, "feet"),
  22967. default: true
  22968. },
  22969. {
  22970. name: "Macro",
  22971. height: math.unit(800, "feet")
  22972. },
  22973. {
  22974. name: "Megamacro",
  22975. height: math.unit(250, "miles")
  22976. },
  22977. ]
  22978. ))
  22979. characterMakers.push(() => makeCharacter(
  22980. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22981. {
  22982. front: {
  22983. height: math.unit(6, "feet"),
  22984. weight: math.unit(150, "lb"),
  22985. name: "Front",
  22986. image: {
  22987. source: "./media/characters/pliskin/front.svg",
  22988. extra: 1469 / 1359,
  22989. bottom: 70 / 1540
  22990. }
  22991. },
  22992. },
  22993. [
  22994. {
  22995. name: "Micro",
  22996. height: math.unit(3, "inches")
  22997. },
  22998. {
  22999. name: "Normal",
  23000. height: math.unit(5 + 11 / 12, "feet"),
  23001. default: true
  23002. },
  23003. {
  23004. name: "Macro",
  23005. height: math.unit(120, "feet")
  23006. },
  23007. ]
  23008. ))
  23009. characterMakers.push(() => makeCharacter(
  23010. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23011. {
  23012. front: {
  23013. height: math.unit(6, "feet"),
  23014. weight: math.unit(150, "lb"),
  23015. name: "Front",
  23016. image: {
  23017. source: "./media/characters/sammy/front.svg",
  23018. extra: 1193 / 1089,
  23019. bottom: 30.5 / 1226
  23020. }
  23021. },
  23022. },
  23023. [
  23024. {
  23025. name: "Macro",
  23026. height: math.unit(1700, "feet"),
  23027. default: true
  23028. },
  23029. {
  23030. name: "Examacro",
  23031. height: math.unit(2.5e9, "lightyears")
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23037. {
  23038. front: {
  23039. height: math.unit(21, "meters"),
  23040. weight: math.unit(12, "tonnes"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/kuru/front.svg",
  23044. extra: 4301 / 3785,
  23045. bottom: 371.3 / 4691
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Macro",
  23052. height: math.unit(21, "meters"),
  23053. default: true
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23059. {
  23060. front: {
  23061. height: math.unit(23, "meters"),
  23062. weight: math.unit(12.2, "tonnes"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/rakka/front.svg",
  23066. extra: 4670 / 4169,
  23067. bottom: 301 / 4968.7
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Macro",
  23074. height: math.unit(23, "meters"),
  23075. default: true
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(6, "feet"),
  23084. weight: math.unit(150, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/rhys-feline/front.svg",
  23088. extra: 2488 / 2308,
  23089. bottom: 35.67 / 2519.19
  23090. }
  23091. },
  23092. },
  23093. [
  23094. {
  23095. name: "Really Small",
  23096. height: math.unit(1, "nm")
  23097. },
  23098. {
  23099. name: "Micro",
  23100. height: math.unit(4, "inches")
  23101. },
  23102. {
  23103. name: "Normal",
  23104. height: math.unit(4 + 10 / 12, "feet"),
  23105. default: true
  23106. },
  23107. {
  23108. name: "Macro",
  23109. height: math.unit(100, "feet")
  23110. },
  23111. {
  23112. name: "Megamacto",
  23113. height: math.unit(50, "miles")
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23119. {
  23120. side: {
  23121. height: math.unit(30, "feet"),
  23122. weight: math.unit(35000, "kg"),
  23123. name: "Side",
  23124. image: {
  23125. source: "./media/characters/alydar/side.svg",
  23126. extra: 234 / 222,
  23127. bottom: 6.5 / 241
  23128. }
  23129. },
  23130. front: {
  23131. height: math.unit(30, "feet"),
  23132. weight: math.unit(35000, "kg"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/alydar/front.svg",
  23136. extra: 223.37 / 210.2,
  23137. bottom: 22.3 / 246.76
  23138. }
  23139. },
  23140. top: {
  23141. height: math.unit(64.54, "feet"),
  23142. weight: math.unit(35000, "kg"),
  23143. name: "Top",
  23144. image: {
  23145. source: "./media/characters/alydar/top.svg"
  23146. }
  23147. },
  23148. anthro: {
  23149. height: math.unit(30, "feet"),
  23150. weight: math.unit(9000, "kg"),
  23151. name: "Anthro",
  23152. image: {
  23153. source: "./media/characters/alydar/anthro.svg",
  23154. extra: 432 / 421,
  23155. bottom: 7.18 / 440
  23156. }
  23157. },
  23158. maw: {
  23159. height: math.unit(11.693, "feet"),
  23160. name: "Maw",
  23161. image: {
  23162. source: "./media/characters/alydar/maw.svg"
  23163. }
  23164. },
  23165. head: {
  23166. height: math.unit(11.693, "feet"),
  23167. name: "Head",
  23168. image: {
  23169. source: "./media/characters/alydar/head.svg"
  23170. }
  23171. },
  23172. headAlt: {
  23173. height: math.unit(12.861, "feet"),
  23174. name: "Head (Alt)",
  23175. image: {
  23176. source: "./media/characters/alydar/head-alt.svg"
  23177. }
  23178. },
  23179. wing: {
  23180. height: math.unit(20.712, "feet"),
  23181. name: "Wing",
  23182. image: {
  23183. source: "./media/characters/alydar/wing.svg"
  23184. }
  23185. },
  23186. wingFeather: {
  23187. height: math.unit(9.662, "feet"),
  23188. name: "Wing Feather",
  23189. image: {
  23190. source: "./media/characters/alydar/wing-feather.svg"
  23191. }
  23192. },
  23193. countourFeather: {
  23194. height: math.unit(4.154, "feet"),
  23195. name: "Contour Feather",
  23196. image: {
  23197. source: "./media/characters/alydar/contour-feather.svg"
  23198. }
  23199. },
  23200. },
  23201. [
  23202. {
  23203. name: "Diplomatic",
  23204. height: math.unit(13, "feet"),
  23205. default: true
  23206. },
  23207. {
  23208. name: "Small",
  23209. height: math.unit(30, "feet")
  23210. },
  23211. {
  23212. name: "Normal",
  23213. height: math.unit(95, "feet"),
  23214. default: true
  23215. },
  23216. {
  23217. name: "Large",
  23218. height: math.unit(285, "feet")
  23219. },
  23220. {
  23221. name: "Incomprehensible",
  23222. height: math.unit(450, "megameters")
  23223. },
  23224. ]
  23225. ))
  23226. characterMakers.push(() => makeCharacter(
  23227. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23228. {
  23229. side: {
  23230. height: math.unit(11, "feet"),
  23231. weight: math.unit(1750, "kg"),
  23232. name: "Side",
  23233. image: {
  23234. source: "./media/characters/selicia/side.svg",
  23235. extra: 440 / 396,
  23236. bottom: 24.8 / 465.979
  23237. }
  23238. },
  23239. maw: {
  23240. height: math.unit(4.665, "feet"),
  23241. name: "Maw",
  23242. image: {
  23243. source: "./media/characters/selicia/maw.svg"
  23244. }
  23245. },
  23246. },
  23247. [
  23248. {
  23249. name: "Normal",
  23250. height: math.unit(11, "feet"),
  23251. default: true
  23252. },
  23253. ]
  23254. ))
  23255. characterMakers.push(() => makeCharacter(
  23256. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23257. {
  23258. side: {
  23259. height: math.unit(2 + 6 / 12, "feet"),
  23260. weight: math.unit(30, "lb"),
  23261. name: "Side",
  23262. image: {
  23263. source: "./media/characters/layla/side.svg",
  23264. extra: 244 / 188,
  23265. bottom: 18.2 / 262.1
  23266. }
  23267. },
  23268. back: {
  23269. height: math.unit(2 + 6 / 12, "feet"),
  23270. weight: math.unit(30, "lb"),
  23271. name: "Back",
  23272. image: {
  23273. source: "./media/characters/layla/back.svg",
  23274. extra: 308 / 241.5,
  23275. bottom: 8.9 / 316.8
  23276. }
  23277. },
  23278. cumming: {
  23279. height: math.unit(2 + 6 / 12, "feet"),
  23280. weight: math.unit(30, "lb"),
  23281. name: "Cumming",
  23282. image: {
  23283. source: "./media/characters/layla/cumming.svg",
  23284. extra: 342 / 279,
  23285. bottom: 595 / 938
  23286. }
  23287. },
  23288. dickFlaccid: {
  23289. height: math.unit(2.595, "feet"),
  23290. name: "Flaccid Genitals",
  23291. image: {
  23292. source: "./media/characters/layla/dick-flaccid.svg"
  23293. }
  23294. },
  23295. dickErect: {
  23296. height: math.unit(2.359, "feet"),
  23297. name: "Erect Genitals",
  23298. image: {
  23299. source: "./media/characters/layla/dick-erect.svg"
  23300. }
  23301. },
  23302. dragon: {
  23303. height: math.unit(40, "feet"),
  23304. name: "Dragon",
  23305. image: {
  23306. source: "./media/characters/layla/dragon.svg",
  23307. extra: 610/535,
  23308. bottom: 367/977
  23309. }
  23310. },
  23311. taur: {
  23312. height: math.unit(30, "feet"),
  23313. name: "Taur",
  23314. image: {
  23315. source: "./media/characters/layla/taur.svg",
  23316. extra: 1268/1199,
  23317. bottom: 112/1380
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Micro",
  23324. height: math.unit(1, "inch")
  23325. },
  23326. {
  23327. name: "Small",
  23328. height: math.unit(1, "foot")
  23329. },
  23330. {
  23331. name: "Normal",
  23332. height: math.unit(2 + 6 / 12, "feet"),
  23333. default: true
  23334. },
  23335. {
  23336. name: "Macro",
  23337. height: math.unit(200, "feet")
  23338. },
  23339. {
  23340. name: "Megamacro",
  23341. height: math.unit(1000, "miles")
  23342. },
  23343. {
  23344. name: "Planetary",
  23345. height: math.unit(8000, "miles")
  23346. },
  23347. {
  23348. name: "True Layla",
  23349. height: math.unit(200000 * 7, "multiverses")
  23350. },
  23351. ]
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23355. {
  23356. back: {
  23357. height: math.unit(10.5, "feet"),
  23358. weight: math.unit(800, "lb"),
  23359. name: "Back",
  23360. image: {
  23361. source: "./media/characters/knox/back.svg",
  23362. extra: 1486 / 1089,
  23363. bottom: 107 / 1601.4
  23364. }
  23365. },
  23366. side: {
  23367. height: math.unit(10.5, "feet"),
  23368. weight: math.unit(800, "lb"),
  23369. name: "Side",
  23370. image: {
  23371. source: "./media/characters/knox/side.svg",
  23372. extra: 244 / 218,
  23373. bottom: 14 / 260
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Compact",
  23380. height: math.unit(10.5, "feet"),
  23381. default: true
  23382. },
  23383. {
  23384. name: "Dynamax",
  23385. height: math.unit(210, "feet")
  23386. },
  23387. {
  23388. name: "Full Macro",
  23389. height: math.unit(850, "feet")
  23390. },
  23391. ]
  23392. ))
  23393. characterMakers.push(() => makeCharacter(
  23394. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23395. {
  23396. front: {
  23397. height: math.unit(6, "feet"),
  23398. weight: math.unit(152, "lb"),
  23399. name: "Front",
  23400. image: {
  23401. source: "./media/characters/shin-pikachu/front.svg",
  23402. extra: 1854/1602,
  23403. bottom: 166/2020
  23404. }
  23405. },
  23406. hand: {
  23407. height: math.unit(1.055, "feet"),
  23408. name: "Hand",
  23409. image: {
  23410. source: "./media/characters/shin-pikachu/hand.svg"
  23411. }
  23412. },
  23413. foot: {
  23414. height: math.unit(1.1, "feet"),
  23415. name: "Foot",
  23416. image: {
  23417. source: "./media/characters/shin-pikachu/foot.svg"
  23418. }
  23419. },
  23420. collar: {
  23421. height: math.unit(0.386, "feet"),
  23422. name: "Collar",
  23423. image: {
  23424. source: "./media/characters/shin-pikachu/collar.svg"
  23425. }
  23426. },
  23427. },
  23428. [
  23429. {
  23430. name: "Smallest",
  23431. height: math.unit(0.5, "inches")
  23432. },
  23433. {
  23434. name: "Micro",
  23435. height: math.unit(6, "inches")
  23436. },
  23437. {
  23438. name: "Normal",
  23439. height: math.unit(6, "feet"),
  23440. default: true
  23441. },
  23442. {
  23443. name: "Macro",
  23444. height: math.unit(150, "feet")
  23445. },
  23446. ]
  23447. ))
  23448. characterMakers.push(() => makeCharacter(
  23449. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23450. {
  23451. front: {
  23452. height: math.unit(28, "feet"),
  23453. weight: math.unit(10500, "lb"),
  23454. name: "Front",
  23455. image: {
  23456. source: "./media/characters/kayda/front.svg",
  23457. extra: 1536 / 1428,
  23458. bottom: 68.7 / 1603
  23459. }
  23460. },
  23461. back: {
  23462. height: math.unit(28, "feet"),
  23463. weight: math.unit(10500, "lb"),
  23464. name: "Back",
  23465. image: {
  23466. source: "./media/characters/kayda/back.svg",
  23467. extra: 1557 / 1464,
  23468. bottom: 39.5 / 1597.49
  23469. }
  23470. },
  23471. dick: {
  23472. height: math.unit(3.858, "feet"),
  23473. name: "Dick",
  23474. image: {
  23475. source: "./media/characters/kayda/dick.svg"
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "Macro",
  23482. height: math.unit(28, "feet"),
  23483. default: true
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23489. {
  23490. front: {
  23491. height: math.unit(10 + 11 / 12, "feet"),
  23492. weight: math.unit(1400, "lb"),
  23493. name: "Front",
  23494. image: {
  23495. source: "./media/characters/brian/front.svg",
  23496. extra: 737 / 692,
  23497. bottom: 55.4 / 785
  23498. }
  23499. },
  23500. },
  23501. [
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(10 + 11 / 12, "feet"),
  23505. default: true
  23506. },
  23507. ]
  23508. ))
  23509. characterMakers.push(() => makeCharacter(
  23510. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23511. {
  23512. front: {
  23513. height: math.unit(5 + 8 / 12, "feet"),
  23514. weight: math.unit(140, "lb"),
  23515. name: "Front",
  23516. image: {
  23517. source: "./media/characters/khemri/front.svg",
  23518. extra: 4780 / 4059,
  23519. bottom: 80.1 / 4859.25
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Micro",
  23526. height: math.unit(6, "inches")
  23527. },
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(5 + 8 / 12, "feet"),
  23531. default: true
  23532. },
  23533. ]
  23534. ))
  23535. characterMakers.push(() => makeCharacter(
  23536. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23537. {
  23538. front: {
  23539. height: math.unit(13, "feet"),
  23540. weight: math.unit(1700, "lb"),
  23541. name: "Front",
  23542. image: {
  23543. source: "./media/characters/felix-braveheart/front.svg",
  23544. extra: 1222 / 1157,
  23545. bottom: 53.2 / 1280
  23546. }
  23547. },
  23548. back: {
  23549. height: math.unit(13, "feet"),
  23550. weight: math.unit(1700, "lb"),
  23551. name: "Back",
  23552. image: {
  23553. source: "./media/characters/felix-braveheart/back.svg",
  23554. extra: 1277 / 1203,
  23555. bottom: 50.2 / 1327
  23556. }
  23557. },
  23558. feral: {
  23559. height: math.unit(6, "feet"),
  23560. weight: math.unit(400, "lb"),
  23561. name: "Feral",
  23562. image: {
  23563. source: "./media/characters/felix-braveheart/feral.svg",
  23564. extra: 682 / 625,
  23565. bottom: 6.9 / 688
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Normal",
  23572. height: math.unit(13, "feet"),
  23573. default: true
  23574. },
  23575. ]
  23576. ))
  23577. characterMakers.push(() => makeCharacter(
  23578. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23579. {
  23580. side: {
  23581. height: math.unit(5 + 11 / 12, "feet"),
  23582. weight: math.unit(1400, "lb"),
  23583. name: "Side",
  23584. image: {
  23585. source: "./media/characters/shadow-blade/side.svg",
  23586. extra: 1726 / 1267,
  23587. bottom: 58.4 / 1785
  23588. }
  23589. },
  23590. },
  23591. [
  23592. {
  23593. name: "Normal",
  23594. height: math.unit(5 + 11 / 12, "feet"),
  23595. default: true
  23596. },
  23597. ]
  23598. ))
  23599. characterMakers.push(() => makeCharacter(
  23600. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23601. {
  23602. front: {
  23603. height: math.unit(1 + 6 / 12, "feet"),
  23604. weight: math.unit(25, "lb"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/karla-halldor/front.svg",
  23608. extra: 1459 / 1383,
  23609. bottom: 12 / 1472
  23610. }
  23611. },
  23612. },
  23613. [
  23614. {
  23615. name: "Normal",
  23616. height: math.unit(1 + 6 / 12, "feet"),
  23617. default: true
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23623. {
  23624. front: {
  23625. height: math.unit(6 + 2 / 12, "feet"),
  23626. weight: math.unit(160, "lb"),
  23627. name: "Front",
  23628. image: {
  23629. source: "./media/characters/ariam/front.svg",
  23630. extra: 714 / 617,
  23631. bottom: 23.4 / 737,
  23632. }
  23633. },
  23634. squatting: {
  23635. height: math.unit(4.1, "feet"),
  23636. weight: math.unit(160, "lb"),
  23637. name: "Squatting",
  23638. image: {
  23639. source: "./media/characters/ariam/squatting.svg",
  23640. extra: 2617 / 2112,
  23641. bottom: 61.2 / 2681,
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Normal",
  23648. height: math.unit(6 + 2 / 12, "feet"),
  23649. default: true
  23650. },
  23651. {
  23652. name: "Normal+",
  23653. height: math.unit(4, "meters")
  23654. },
  23655. {
  23656. name: "Macro",
  23657. height: math.unit(50, "meters")
  23658. },
  23659. {
  23660. name: "Macro+",
  23661. height: math.unit(100, "meters")
  23662. },
  23663. {
  23664. name: "Megamacro",
  23665. height: math.unit(20, "km")
  23666. },
  23667. ]
  23668. ))
  23669. characterMakers.push(() => makeCharacter(
  23670. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23671. {
  23672. front: {
  23673. height: math.unit(1.67, "meters"),
  23674. weight: math.unit(140, "lb"),
  23675. name: "Front",
  23676. image: {
  23677. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23678. extra: 438 / 410,
  23679. bottom: 0.75 / 439
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Shrunken",
  23686. height: math.unit(7.6, "cm")
  23687. },
  23688. {
  23689. name: "Human Scale",
  23690. height: math.unit(1.67, "meters")
  23691. },
  23692. {
  23693. name: "Wolxi Scale",
  23694. height: math.unit(36.7, "meters"),
  23695. default: true
  23696. },
  23697. ]
  23698. ))
  23699. characterMakers.push(() => makeCharacter(
  23700. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23701. {
  23702. front: {
  23703. height: math.unit(1.73, "meters"),
  23704. weight: math.unit(240, "lb"),
  23705. name: "Front",
  23706. image: {
  23707. source: "./media/characters/izue-two-mothers/front.svg",
  23708. extra: 469 / 437,
  23709. bottom: 1.24 / 470.6
  23710. }
  23711. },
  23712. },
  23713. [
  23714. {
  23715. name: "Shrunken",
  23716. height: math.unit(7.86, "cm")
  23717. },
  23718. {
  23719. name: "Human Scale",
  23720. height: math.unit(1.73, "meters")
  23721. },
  23722. {
  23723. name: "Wolxi Scale",
  23724. height: math.unit(38, "meters"),
  23725. default: true
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23731. {
  23732. front: {
  23733. height: math.unit(1.55, "meters"),
  23734. weight: math.unit(120, "lb"),
  23735. name: "Front",
  23736. image: {
  23737. source: "./media/characters/teeku-love-shack/front.svg",
  23738. extra: 387 / 362,
  23739. bottom: 1.51 / 388
  23740. }
  23741. },
  23742. },
  23743. [
  23744. {
  23745. name: "Shrunken",
  23746. height: math.unit(7, "cm")
  23747. },
  23748. {
  23749. name: "Human Scale",
  23750. height: math.unit(1.55, "meters")
  23751. },
  23752. {
  23753. name: "Wolxi Scale",
  23754. height: math.unit(34.1, "meters"),
  23755. default: true
  23756. },
  23757. ]
  23758. ))
  23759. characterMakers.push(() => makeCharacter(
  23760. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23761. {
  23762. front: {
  23763. height: math.unit(1.83, "meters"),
  23764. weight: math.unit(135, "lb"),
  23765. name: "Front",
  23766. image: {
  23767. source: "./media/characters/dejma-the-red/front.svg",
  23768. extra: 480 / 458,
  23769. bottom: 1.8 / 482
  23770. }
  23771. },
  23772. },
  23773. [
  23774. {
  23775. name: "Shrunken",
  23776. height: math.unit(8.3, "cm")
  23777. },
  23778. {
  23779. name: "Human Scale",
  23780. height: math.unit(1.83, "meters")
  23781. },
  23782. {
  23783. name: "Wolxi Scale",
  23784. height: math.unit(40, "meters"),
  23785. default: true
  23786. },
  23787. ]
  23788. ))
  23789. characterMakers.push(() => makeCharacter(
  23790. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23791. {
  23792. front: {
  23793. height: math.unit(1.78, "meters"),
  23794. weight: math.unit(65, "kg"),
  23795. name: "Front",
  23796. image: {
  23797. source: "./media/characters/aki/front.svg",
  23798. extra: 452 / 415
  23799. }
  23800. },
  23801. frontNsfw: {
  23802. height: math.unit(1.78, "meters"),
  23803. weight: math.unit(65, "kg"),
  23804. name: "Front (NSFW)",
  23805. image: {
  23806. source: "./media/characters/aki/front-nsfw.svg",
  23807. extra: 452 / 415
  23808. }
  23809. },
  23810. back: {
  23811. height: math.unit(1.78, "meters"),
  23812. weight: math.unit(65, "kg"),
  23813. name: "Back",
  23814. image: {
  23815. source: "./media/characters/aki/back.svg",
  23816. extra: 452 / 415
  23817. }
  23818. },
  23819. rump: {
  23820. height: math.unit(2.05, "feet"),
  23821. name: "Rump",
  23822. image: {
  23823. source: "./media/characters/aki/rump.svg"
  23824. }
  23825. },
  23826. dick: {
  23827. height: math.unit(0.95, "feet"),
  23828. name: "Dick",
  23829. image: {
  23830. source: "./media/characters/aki/dick.svg"
  23831. }
  23832. },
  23833. },
  23834. [
  23835. {
  23836. name: "Micro",
  23837. height: math.unit(15, "cm")
  23838. },
  23839. {
  23840. name: "Normal",
  23841. height: math.unit(178, "cm"),
  23842. default: true
  23843. },
  23844. {
  23845. name: "Macro",
  23846. height: math.unit(214, "m")
  23847. },
  23848. {
  23849. name: "Macro+",
  23850. height: math.unit(534, "m")
  23851. },
  23852. ]
  23853. ))
  23854. characterMakers.push(() => makeCharacter(
  23855. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23856. {
  23857. front: {
  23858. height: math.unit(5 + 5 / 12, "feet"),
  23859. weight: math.unit(120, "lb"),
  23860. name: "Front",
  23861. image: {
  23862. source: "./media/characters/ari/front.svg",
  23863. extra: 714.5 / 682,
  23864. bottom: 8 / 722.5
  23865. }
  23866. },
  23867. },
  23868. [
  23869. {
  23870. name: "Normal",
  23871. height: math.unit(5 + 5 / 12, "feet")
  23872. },
  23873. {
  23874. name: "Macro",
  23875. height: math.unit(100, "feet"),
  23876. default: true
  23877. },
  23878. {
  23879. name: "Megamacro",
  23880. height: math.unit(100, "miles")
  23881. },
  23882. {
  23883. name: "Gigamacro",
  23884. height: math.unit(80000, "miles")
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23890. {
  23891. side: {
  23892. height: math.unit(9, "feet"),
  23893. weight: math.unit(400, "kg"),
  23894. name: "Side",
  23895. image: {
  23896. source: "./media/characters/bolt/side.svg",
  23897. extra: 1126 / 896,
  23898. bottom: 60 / 1187.3,
  23899. }
  23900. },
  23901. },
  23902. [
  23903. {
  23904. name: "Micro",
  23905. height: math.unit(5, "inches")
  23906. },
  23907. {
  23908. name: "Normal",
  23909. height: math.unit(9, "feet"),
  23910. default: true
  23911. },
  23912. {
  23913. name: "Macro",
  23914. height: math.unit(700, "feet")
  23915. },
  23916. {
  23917. name: "Max Size",
  23918. height: math.unit(1.52e22, "yottameters")
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23924. {
  23925. front: {
  23926. height: math.unit(4.53, "meters"),
  23927. weight: math.unit(3, "tons"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/draekon-sylviar/front.svg",
  23931. extra: 1228 / 1068,
  23932. bottom: 41 / 1270
  23933. }
  23934. },
  23935. tail: {
  23936. height: math.unit(1.772, "meter"),
  23937. name: "Tail",
  23938. image: {
  23939. source: "./media/characters/draekon-sylviar/tail.svg"
  23940. }
  23941. },
  23942. head: {
  23943. height: math.unit(1.331, "meter"),
  23944. name: "Head",
  23945. image: {
  23946. source: "./media/characters/draekon-sylviar/head.svg"
  23947. }
  23948. },
  23949. hand: {
  23950. height: math.unit(0.564, "meter"),
  23951. name: "Hand",
  23952. image: {
  23953. source: "./media/characters/draekon-sylviar/hand.svg"
  23954. }
  23955. },
  23956. foot: {
  23957. height: math.unit(0.621, "meter"),
  23958. name: "Foot",
  23959. image: {
  23960. source: "./media/characters/draekon-sylviar/foot.svg",
  23961. bottom: 32 / 324
  23962. }
  23963. },
  23964. dick: {
  23965. height: math.unit(61, "cm"),
  23966. name: "Dick",
  23967. image: {
  23968. source: "./media/characters/draekon-sylviar/dick.svg"
  23969. }
  23970. },
  23971. dickseparated: {
  23972. height: math.unit(61, "cm"),
  23973. name: "Dick-separated",
  23974. image: {
  23975. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23976. }
  23977. },
  23978. },
  23979. [
  23980. {
  23981. name: "Small",
  23982. height: math.unit(4.53 / 2, "meters"),
  23983. default: true
  23984. },
  23985. {
  23986. name: "Normal",
  23987. height: math.unit(4.53, "meters"),
  23988. default: true
  23989. },
  23990. {
  23991. name: "Large",
  23992. height: math.unit(4.53 * 2, "meters"),
  23993. },
  23994. ]
  23995. ))
  23996. characterMakers.push(() => makeCharacter(
  23997. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23998. {
  23999. front: {
  24000. height: math.unit(6 + 2 / 12, "feet"),
  24001. weight: math.unit(180, "lb"),
  24002. name: "Front",
  24003. image: {
  24004. source: "./media/characters/brawler/front.svg",
  24005. extra: 3301 / 3027,
  24006. bottom: 138 / 3439
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Normal",
  24013. height: math.unit(6 + 2 / 12, "feet"),
  24014. default: true
  24015. },
  24016. ]
  24017. ))
  24018. characterMakers.push(() => makeCharacter(
  24019. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24020. {
  24021. front: {
  24022. height: math.unit(11, "feet"),
  24023. weight: math.unit(1000, "lb"),
  24024. name: "Front",
  24025. image: {
  24026. source: "./media/characters/alex/front.svg",
  24027. bottom: 44.5 / 620
  24028. }
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Micro",
  24034. height: math.unit(5, "inches")
  24035. },
  24036. {
  24037. name: "Normal",
  24038. height: math.unit(11, "feet"),
  24039. default: true
  24040. },
  24041. {
  24042. name: "Macro",
  24043. height: math.unit(9.5e9, "feet")
  24044. },
  24045. {
  24046. name: "Max Size",
  24047. height: math.unit(1.4e283, "yottameters")
  24048. },
  24049. ]
  24050. ))
  24051. characterMakers.push(() => makeCharacter(
  24052. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24053. {
  24054. female: {
  24055. height: math.unit(29.9, "m"),
  24056. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24057. name: "Female",
  24058. image: {
  24059. source: "./media/characters/zenari/female.svg",
  24060. extra: 3281.6 / 3217,
  24061. bottom: 72.2 / 3353
  24062. }
  24063. },
  24064. male: {
  24065. height: math.unit(27.7, "m"),
  24066. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24067. name: "Male",
  24068. image: {
  24069. source: "./media/characters/zenari/male.svg",
  24070. extra: 3008 / 2991,
  24071. bottom: 54.6 / 3069
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Macro",
  24078. height: math.unit(29.7, "meters"),
  24079. default: true
  24080. },
  24081. ]
  24082. ))
  24083. characterMakers.push(() => makeCharacter(
  24084. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24085. {
  24086. female: {
  24087. height: math.unit(23.8, "m"),
  24088. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24089. name: "Female",
  24090. image: {
  24091. source: "./media/characters/mactarian/female.svg",
  24092. extra: 2662 / 2569,
  24093. bottom: 73 / 2736
  24094. }
  24095. },
  24096. male: {
  24097. height: math.unit(23.8, "m"),
  24098. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24099. name: "Male",
  24100. image: {
  24101. source: "./media/characters/mactarian/male.svg",
  24102. extra: 2673 / 2600,
  24103. bottom: 76 / 2750
  24104. }
  24105. },
  24106. },
  24107. [
  24108. {
  24109. name: "Macro",
  24110. height: math.unit(23.8, "meters"),
  24111. default: true
  24112. },
  24113. ]
  24114. ))
  24115. characterMakers.push(() => makeCharacter(
  24116. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24117. {
  24118. female: {
  24119. height: math.unit(19.3, "m"),
  24120. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24121. name: "Female",
  24122. image: {
  24123. source: "./media/characters/umok/female.svg",
  24124. extra: 2186 / 2078,
  24125. bottom: 87 / 2277
  24126. }
  24127. },
  24128. male: {
  24129. height: math.unit(19.5, "m"),
  24130. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24131. name: "Male",
  24132. image: {
  24133. source: "./media/characters/umok/male.svg",
  24134. extra: 2233 / 2140,
  24135. bottom: 24.4 / 2258
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Macro",
  24142. height: math.unit(19.3, "meters"),
  24143. default: true
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24149. {
  24150. female: {
  24151. height: math.unit(26.15, "m"),
  24152. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24153. name: "Female",
  24154. image: {
  24155. source: "./media/characters/joraxian/female.svg",
  24156. extra: 2912 / 2824,
  24157. bottom: 36 / 2956
  24158. }
  24159. },
  24160. male: {
  24161. height: math.unit(25.4, "m"),
  24162. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24163. name: "Male",
  24164. image: {
  24165. source: "./media/characters/joraxian/male.svg",
  24166. extra: 2877 / 2721,
  24167. bottom: 82 / 2967
  24168. }
  24169. },
  24170. },
  24171. [
  24172. {
  24173. name: "Macro",
  24174. height: math.unit(26.15, "meters"),
  24175. default: true
  24176. },
  24177. ]
  24178. ))
  24179. characterMakers.push(() => makeCharacter(
  24180. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24181. {
  24182. female: {
  24183. height: math.unit(21.6, "m"),
  24184. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24185. name: "Female",
  24186. image: {
  24187. source: "./media/characters/sthara/female.svg",
  24188. extra: 2516 / 2347,
  24189. bottom: 21.5 / 2537
  24190. }
  24191. },
  24192. male: {
  24193. height: math.unit(24, "m"),
  24194. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24195. name: "Male",
  24196. image: {
  24197. source: "./media/characters/sthara/male.svg",
  24198. extra: 2732 / 2607,
  24199. bottom: 23 / 2732
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Macro",
  24206. height: math.unit(21.6, "meters"),
  24207. default: true
  24208. },
  24209. ]
  24210. ))
  24211. characterMakers.push(() => makeCharacter(
  24212. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24213. {
  24214. front: {
  24215. height: math.unit(6 + 4 / 12, "feet"),
  24216. weight: math.unit(175, "lb"),
  24217. name: "Front",
  24218. image: {
  24219. source: "./media/characters/luka-bryzant/front.svg",
  24220. extra: 311 / 289,
  24221. bottom: 4 / 315
  24222. }
  24223. },
  24224. back: {
  24225. height: math.unit(6 + 4 / 12, "feet"),
  24226. weight: math.unit(175, "lb"),
  24227. name: "Back",
  24228. image: {
  24229. source: "./media/characters/luka-bryzant/back.svg",
  24230. extra: 311 / 289,
  24231. bottom: 3.8 / 313.7
  24232. }
  24233. },
  24234. },
  24235. [
  24236. {
  24237. name: "Micro",
  24238. height: math.unit(10, "inches")
  24239. },
  24240. {
  24241. name: "Normal",
  24242. height: math.unit(6 + 4 / 12, "feet"),
  24243. default: true
  24244. },
  24245. {
  24246. name: "Large",
  24247. height: math.unit(12, "feet")
  24248. },
  24249. ]
  24250. ))
  24251. characterMakers.push(() => makeCharacter(
  24252. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24253. {
  24254. front: {
  24255. height: math.unit(5 + 7 / 12, "feet"),
  24256. weight: math.unit(185, "lb"),
  24257. name: "Front",
  24258. image: {
  24259. source: "./media/characters/aman-aquila/front.svg",
  24260. extra: 1013 / 976,
  24261. bottom: 45.6 / 1057
  24262. }
  24263. },
  24264. side: {
  24265. height: math.unit(5 + 7 / 12, "feet"),
  24266. weight: math.unit(185, "lb"),
  24267. name: "Side",
  24268. image: {
  24269. source: "./media/characters/aman-aquila/side.svg",
  24270. extra: 1054 / 1011,
  24271. bottom: 15 / 1070
  24272. }
  24273. },
  24274. back: {
  24275. height: math.unit(5 + 7 / 12, "feet"),
  24276. weight: math.unit(185, "lb"),
  24277. name: "Back",
  24278. image: {
  24279. source: "./media/characters/aman-aquila/back.svg",
  24280. extra: 1026 / 970,
  24281. bottom: 12 / 1039
  24282. }
  24283. },
  24284. head: {
  24285. height: math.unit(1.211, "feet"),
  24286. name: "Head",
  24287. image: {
  24288. source: "./media/characters/aman-aquila/head.svg",
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Minimicro",
  24295. height: math.unit(0.057, "inches")
  24296. },
  24297. {
  24298. name: "Micro",
  24299. height: math.unit(7, "inches")
  24300. },
  24301. {
  24302. name: "Mini",
  24303. height: math.unit(3 + 7 / 12, "feet")
  24304. },
  24305. {
  24306. name: "Normal",
  24307. height: math.unit(5 + 7 / 12, "feet"),
  24308. default: true
  24309. },
  24310. {
  24311. name: "Macro",
  24312. height: math.unit(157 + 7 / 12, "feet")
  24313. },
  24314. {
  24315. name: "Megamacro",
  24316. height: math.unit(1557 + 7 / 12, "feet")
  24317. },
  24318. {
  24319. name: "Gigamacro",
  24320. height: math.unit(15557 + 7 / 12, "feet")
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24326. {
  24327. front: {
  24328. height: math.unit(3 + 2 / 12, "inches"),
  24329. weight: math.unit(0.3, "ounces"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/hiphae/front.svg",
  24333. extra: 1931 / 1683,
  24334. bottom: 24 / 1955
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Normal",
  24341. height: math.unit(3 + 1 / 2, "inches"),
  24342. default: true
  24343. },
  24344. ]
  24345. ))
  24346. characterMakers.push(() => makeCharacter(
  24347. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24348. {
  24349. front: {
  24350. height: math.unit(5 + 10 / 12, "feet"),
  24351. weight: math.unit(165, "lb"),
  24352. name: "Front",
  24353. image: {
  24354. source: "./media/characters/nicky/front.svg",
  24355. extra: 3144 / 2886,
  24356. bottom: 45.6 / 3192
  24357. }
  24358. },
  24359. back: {
  24360. height: math.unit(5 + 10 / 12, "feet"),
  24361. weight: math.unit(165, "lb"),
  24362. name: "Back",
  24363. image: {
  24364. source: "./media/characters/nicky/back.svg",
  24365. extra: 3055 / 2804,
  24366. bottom: 28.4 / 3087
  24367. }
  24368. },
  24369. frontclothed: {
  24370. height: math.unit(5 + 10 / 12, "feet"),
  24371. weight: math.unit(165, "lb"),
  24372. name: "Front-clothed",
  24373. image: {
  24374. source: "./media/characters/nicky/front-clothed.svg",
  24375. extra: 3184.9 / 2926.9,
  24376. bottom: 86.5 / 3239.9
  24377. }
  24378. },
  24379. foot: {
  24380. height: math.unit(1.16, "feet"),
  24381. name: "Foot",
  24382. image: {
  24383. source: "./media/characters/nicky/foot.svg"
  24384. }
  24385. },
  24386. feet: {
  24387. height: math.unit(1.34, "feet"),
  24388. name: "Feet",
  24389. image: {
  24390. source: "./media/characters/nicky/feet.svg"
  24391. }
  24392. },
  24393. maw: {
  24394. height: math.unit(0.9, "feet"),
  24395. name: "Maw",
  24396. image: {
  24397. source: "./media/characters/nicky/maw.svg"
  24398. }
  24399. },
  24400. },
  24401. [
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(5 + 10 / 12, "feet"),
  24405. default: true
  24406. },
  24407. {
  24408. name: "Macro",
  24409. height: math.unit(60, "feet")
  24410. },
  24411. {
  24412. name: "Megamacro",
  24413. height: math.unit(1, "mile")
  24414. },
  24415. ]
  24416. ))
  24417. characterMakers.push(() => makeCharacter(
  24418. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24419. {
  24420. side: {
  24421. height: math.unit(10, "feet"),
  24422. weight: math.unit(600, "lb"),
  24423. name: "Side",
  24424. image: {
  24425. source: "./media/characters/blair/side.svg",
  24426. bottom: 16.6 / 475,
  24427. extra: 458 / 431
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Micro",
  24434. height: math.unit(8, "inches")
  24435. },
  24436. {
  24437. name: "Normal",
  24438. height: math.unit(10, "feet"),
  24439. default: true
  24440. },
  24441. {
  24442. name: "Macro",
  24443. height: math.unit(180, "feet")
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24449. {
  24450. front: {
  24451. height: math.unit(5 + 4 / 12, "feet"),
  24452. weight: math.unit(125, "lb"),
  24453. name: "Front",
  24454. image: {
  24455. source: "./media/characters/fisher/front.svg",
  24456. extra: 444 / 390,
  24457. bottom: 2 / 444.8
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Micro",
  24464. height: math.unit(4, "inches")
  24465. },
  24466. {
  24467. name: "Normal",
  24468. height: math.unit(5 + 4 / 12, "feet"),
  24469. default: true
  24470. },
  24471. {
  24472. name: "Macro",
  24473. height: math.unit(100, "feet")
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(6.71, "feet"),
  24482. weight: math.unit(200, "lb"),
  24483. capacity: math.unit(1000000, "people"),
  24484. name: "Front",
  24485. image: {
  24486. source: "./media/characters/gliss/front.svg",
  24487. extra: 2347 / 2231,
  24488. bottom: 113 / 2462
  24489. }
  24490. },
  24491. hammerspaceSize: {
  24492. height: math.unit(6.71 * 717, "feet"),
  24493. weight: math.unit(200, "lb"),
  24494. capacity: math.unit(1000000, "people"),
  24495. name: "Hammerspace Size",
  24496. image: {
  24497. source: "./media/characters/gliss/front.svg",
  24498. extra: 2347 / 2231,
  24499. bottom: 113 / 2462
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Normal",
  24506. height: math.unit(6.71, "feet"),
  24507. default: true
  24508. },
  24509. ]
  24510. ))
  24511. characterMakers.push(() => makeCharacter(
  24512. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24513. {
  24514. side: {
  24515. height: math.unit(1.44, "m"),
  24516. weight: math.unit(80, "kg"),
  24517. name: "Side",
  24518. image: {
  24519. source: "./media/characters/dune-anderson/side.svg",
  24520. bottom: 49 / 1426
  24521. }
  24522. },
  24523. },
  24524. [
  24525. {
  24526. name: "Wolf-sized",
  24527. height: math.unit(1.44, "meters")
  24528. },
  24529. {
  24530. name: "Normal",
  24531. height: math.unit(5.05, "meters"),
  24532. default: true
  24533. },
  24534. {
  24535. name: "Big",
  24536. height: math.unit(14.4, "meters")
  24537. },
  24538. {
  24539. name: "Huge",
  24540. height: math.unit(144, "meters")
  24541. },
  24542. ]
  24543. ))
  24544. characterMakers.push(() => makeCharacter(
  24545. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24546. {
  24547. front: {
  24548. height: math.unit(7, "feet"),
  24549. weight: math.unit(425, "lb"),
  24550. name: "Front",
  24551. image: {
  24552. source: "./media/characters/hind/front.svg",
  24553. extra: 2091 / 1860,
  24554. bottom: 129 / 2220
  24555. }
  24556. },
  24557. back: {
  24558. height: math.unit(7, "feet"),
  24559. weight: math.unit(425, "lb"),
  24560. name: "Back",
  24561. image: {
  24562. source: "./media/characters/hind/back.svg",
  24563. extra: 2091 / 1860,
  24564. bottom: 24.6 / 2309
  24565. }
  24566. },
  24567. tail: {
  24568. height: math.unit(2.8, "feet"),
  24569. name: "Tail",
  24570. image: {
  24571. source: "./media/characters/hind/tail.svg"
  24572. }
  24573. },
  24574. head: {
  24575. height: math.unit(2.55, "feet"),
  24576. name: "Head",
  24577. image: {
  24578. source: "./media/characters/hind/head.svg"
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "XS",
  24585. height: math.unit(0.7, "feet")
  24586. },
  24587. {
  24588. name: "Normal",
  24589. height: math.unit(7, "feet"),
  24590. default: true
  24591. },
  24592. {
  24593. name: "XL",
  24594. height: math.unit(70, "feet")
  24595. },
  24596. ]
  24597. ))
  24598. characterMakers.push(() => makeCharacter(
  24599. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24600. {
  24601. front: {
  24602. height: math.unit(6, "feet"),
  24603. weight: math.unit(150, "lb"),
  24604. name: "Front",
  24605. image: {
  24606. source: "./media/characters/dylan-skaven/front.svg",
  24607. extra: 2318 / 2063,
  24608. bottom: 93.4 / 2410
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Nano",
  24615. height: math.unit(1, "mm")
  24616. },
  24617. {
  24618. name: "Micro",
  24619. height: math.unit(1, "cm")
  24620. },
  24621. {
  24622. name: "Normal",
  24623. height: math.unit(2.1, "meters"),
  24624. default: true
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24630. {
  24631. front: {
  24632. height: math.unit(7 + 5 / 12, "feet"),
  24633. weight: math.unit(357, "lb"),
  24634. name: "Front",
  24635. image: {
  24636. source: "./media/characters/solex-draconov/front.svg",
  24637. extra: 1993 / 1865,
  24638. bottom: 117 / 2111
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Natural Height",
  24645. height: math.unit(7 + 5 / 12, "feet"),
  24646. default: true
  24647. },
  24648. {
  24649. name: "Macro",
  24650. height: math.unit(350, "feet")
  24651. },
  24652. {
  24653. name: "Macro+",
  24654. height: math.unit(1000, "feet")
  24655. },
  24656. {
  24657. name: "Megamacro",
  24658. height: math.unit(20, "km")
  24659. },
  24660. {
  24661. name: "Megamacro+",
  24662. height: math.unit(1000, "km")
  24663. },
  24664. {
  24665. name: "Gigamacro",
  24666. height: math.unit(2.5, "Gm")
  24667. },
  24668. {
  24669. name: "Teramacro",
  24670. height: math.unit(15, "Tm")
  24671. },
  24672. {
  24673. name: "Galactic",
  24674. height: math.unit(30, "Zm")
  24675. },
  24676. {
  24677. name: "Universal",
  24678. height: math.unit(21000, "Ym")
  24679. },
  24680. {
  24681. name: "Omniversal",
  24682. height: math.unit(9.861e50, "Ym")
  24683. },
  24684. {
  24685. name: "Existential",
  24686. height: math.unit(1e300, "meters")
  24687. },
  24688. ]
  24689. ))
  24690. characterMakers.push(() => makeCharacter(
  24691. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24692. {
  24693. side: {
  24694. height: math.unit(25, "feet"),
  24695. weight: math.unit(90000, "lb"),
  24696. name: "Side",
  24697. image: {
  24698. source: "./media/characters/mandarax/side.svg",
  24699. extra: 614 / 332,
  24700. bottom: 55 / 630
  24701. }
  24702. },
  24703. head: {
  24704. height: math.unit(11.4, "feet"),
  24705. name: "Head",
  24706. image: {
  24707. source: "./media/characters/mandarax/head.svg"
  24708. }
  24709. },
  24710. belly: {
  24711. height: math.unit(33, "feet"),
  24712. name: "Belly",
  24713. capacity: math.unit(500, "people"),
  24714. image: {
  24715. source: "./media/characters/mandarax/belly.svg"
  24716. }
  24717. },
  24718. dick: {
  24719. height: math.unit(8.46, "feet"),
  24720. name: "Dick",
  24721. image: {
  24722. source: "./media/characters/mandarax/dick.svg"
  24723. }
  24724. },
  24725. top: {
  24726. height: math.unit(28, "meters"),
  24727. name: "Top",
  24728. image: {
  24729. source: "./media/characters/mandarax/top.svg"
  24730. }
  24731. },
  24732. },
  24733. [
  24734. {
  24735. name: "Normal",
  24736. height: math.unit(25, "feet"),
  24737. default: true
  24738. },
  24739. ]
  24740. ))
  24741. characterMakers.push(() => makeCharacter(
  24742. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24743. {
  24744. front: {
  24745. height: math.unit(5, "feet"),
  24746. weight: math.unit(90, "lb"),
  24747. name: "Front",
  24748. image: {
  24749. source: "./media/characters/pixil/front.svg",
  24750. extra: 2000 / 1618,
  24751. bottom: 12.3 / 2011
  24752. }
  24753. },
  24754. },
  24755. [
  24756. {
  24757. name: "Normal",
  24758. height: math.unit(5, "feet"),
  24759. default: true
  24760. },
  24761. {
  24762. name: "Megamacro",
  24763. height: math.unit(10, "miles"),
  24764. },
  24765. ]
  24766. ))
  24767. characterMakers.push(() => makeCharacter(
  24768. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24769. {
  24770. front: {
  24771. height: math.unit(7 + 2 / 12, "feet"),
  24772. weight: math.unit(200, "lb"),
  24773. name: "Front",
  24774. image: {
  24775. source: "./media/characters/angel/front.svg",
  24776. extra: 1830 / 1737,
  24777. bottom: 22.6 / 1854,
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Normal",
  24784. height: math.unit(7 + 2 / 12, "feet"),
  24785. default: true
  24786. },
  24787. {
  24788. name: "Macro",
  24789. height: math.unit(1000, "feet")
  24790. },
  24791. {
  24792. name: "Megamacro",
  24793. height: math.unit(2, "miles")
  24794. },
  24795. {
  24796. name: "Gigamacro",
  24797. height: math.unit(20, "earths")
  24798. },
  24799. ]
  24800. ))
  24801. characterMakers.push(() => makeCharacter(
  24802. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24803. {
  24804. front: {
  24805. height: math.unit(5, "feet"),
  24806. weight: math.unit(180, "lb"),
  24807. name: "Front",
  24808. image: {
  24809. source: "./media/characters/mekana/front.svg",
  24810. extra: 1671 / 1605,
  24811. bottom: 3.5 / 1691
  24812. }
  24813. },
  24814. side: {
  24815. height: math.unit(5, "feet"),
  24816. weight: math.unit(180, "lb"),
  24817. name: "Side",
  24818. image: {
  24819. source: "./media/characters/mekana/side.svg",
  24820. extra: 1671 / 1605,
  24821. bottom: 3.5 / 1691
  24822. }
  24823. },
  24824. back: {
  24825. height: math.unit(5, "feet"),
  24826. weight: math.unit(180, "lb"),
  24827. name: "Back",
  24828. image: {
  24829. source: "./media/characters/mekana/back.svg",
  24830. extra: 1671 / 1605,
  24831. bottom: 3.5 / 1691
  24832. }
  24833. },
  24834. },
  24835. [
  24836. {
  24837. name: "Normal",
  24838. height: math.unit(5, "feet"),
  24839. default: true
  24840. },
  24841. ]
  24842. ))
  24843. characterMakers.push(() => makeCharacter(
  24844. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24845. {
  24846. front: {
  24847. height: math.unit(4 + 6 / 12, "feet"),
  24848. weight: math.unit(80, "lb"),
  24849. name: "Front",
  24850. image: {
  24851. source: "./media/characters/pixie/front.svg",
  24852. extra: 1924 / 1825,
  24853. bottom: 22.4 / 1946
  24854. }
  24855. },
  24856. },
  24857. [
  24858. {
  24859. name: "Normal",
  24860. height: math.unit(4 + 6 / 12, "feet"),
  24861. default: true
  24862. },
  24863. {
  24864. name: "Macro",
  24865. height: math.unit(40, "feet")
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24871. {
  24872. front: {
  24873. height: math.unit(2.1, "meters"),
  24874. weight: math.unit(200, "lb"),
  24875. name: "Front",
  24876. image: {
  24877. source: "./media/characters/the-lascivious/front.svg",
  24878. extra: 1 / 0.893,
  24879. bottom: 3.5 / 573.7
  24880. }
  24881. },
  24882. },
  24883. [
  24884. {
  24885. name: "Human Scale",
  24886. height: math.unit(2.1, "meters")
  24887. },
  24888. {
  24889. name: "Wolxi Scale",
  24890. height: math.unit(46.2, "m"),
  24891. default: true
  24892. },
  24893. {
  24894. name: "Boinker of Buildings",
  24895. height: math.unit(10, "km")
  24896. },
  24897. {
  24898. name: "Shagger of Skyscrapers",
  24899. height: math.unit(40, "km")
  24900. },
  24901. {
  24902. name: "Banger of Boroughs",
  24903. height: math.unit(4000, "km")
  24904. },
  24905. {
  24906. name: "Screwer of States",
  24907. height: math.unit(100000, "km")
  24908. },
  24909. {
  24910. name: "Pounder of Planets",
  24911. height: math.unit(2000000, "km")
  24912. },
  24913. ]
  24914. ))
  24915. characterMakers.push(() => makeCharacter(
  24916. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24917. {
  24918. front: {
  24919. height: math.unit(6, "feet"),
  24920. weight: math.unit(150, "lb"),
  24921. name: "Front",
  24922. image: {
  24923. source: "./media/characters/aj/front.svg",
  24924. extra: 2039 / 1562,
  24925. bottom: 40 / 2079
  24926. }
  24927. },
  24928. },
  24929. [
  24930. {
  24931. name: "Normal",
  24932. height: math.unit(11 + 6 / 12, "feet"),
  24933. default: true
  24934. },
  24935. {
  24936. name: "Megamacro",
  24937. height: math.unit(60, "megameters")
  24938. },
  24939. ]
  24940. ))
  24941. characterMakers.push(() => makeCharacter(
  24942. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24943. {
  24944. side: {
  24945. height: math.unit(31 + 8 / 12, "feet"),
  24946. weight: math.unit(75000, "kg"),
  24947. name: "Side",
  24948. image: {
  24949. source: "./media/characters/koros/side.svg",
  24950. extra: 1442 / 1297,
  24951. bottom: 122.7 / 1562
  24952. }
  24953. },
  24954. dicksKingsCrown: {
  24955. height: math.unit(6, "feet"),
  24956. name: "Dicks (King's Crown)",
  24957. image: {
  24958. source: "./media/characters/koros/dicks-kings-crown.svg"
  24959. }
  24960. },
  24961. dicksTailSet: {
  24962. height: math.unit(3, "feet"),
  24963. name: "Dicks (Tail Set)",
  24964. image: {
  24965. source: "./media/characters/koros/dicks-tail-set.svg"
  24966. }
  24967. },
  24968. dickCumming: {
  24969. height: math.unit(7.98, "feet"),
  24970. name: "Dick (Cumming)",
  24971. image: {
  24972. source: "./media/characters/koros/dick-cumming.svg"
  24973. }
  24974. },
  24975. dicksBack: {
  24976. height: math.unit(5.9, "feet"),
  24977. name: "Dicks (Back)",
  24978. image: {
  24979. source: "./media/characters/koros/dicks-back.svg"
  24980. }
  24981. },
  24982. dicksFront: {
  24983. height: math.unit(3.72, "feet"),
  24984. name: "Dicks (Front)",
  24985. image: {
  24986. source: "./media/characters/koros/dicks-front.svg"
  24987. }
  24988. },
  24989. dicksPeeking: {
  24990. height: math.unit(3.0, "feet"),
  24991. name: "Dicks (Peeking)",
  24992. image: {
  24993. source: "./media/characters/koros/dicks-peeking.svg"
  24994. }
  24995. },
  24996. eye: {
  24997. height: math.unit(1.7, "feet"),
  24998. name: "Eye",
  24999. image: {
  25000. source: "./media/characters/koros/eye.svg"
  25001. }
  25002. },
  25003. headFront: {
  25004. height: math.unit(11.69, "feet"),
  25005. name: "Head (Front)",
  25006. image: {
  25007. source: "./media/characters/koros/head-front.svg"
  25008. }
  25009. },
  25010. headSide: {
  25011. height: math.unit(14, "feet"),
  25012. name: "Head (Side)",
  25013. image: {
  25014. source: "./media/characters/koros/head-side.svg"
  25015. }
  25016. },
  25017. leg: {
  25018. height: math.unit(17, "feet"),
  25019. name: "Leg",
  25020. image: {
  25021. source: "./media/characters/koros/leg.svg"
  25022. }
  25023. },
  25024. mawSide: {
  25025. height: math.unit(12.8, "feet"),
  25026. name: "Maw (Side)",
  25027. image: {
  25028. source: "./media/characters/koros/maw-side.svg"
  25029. }
  25030. },
  25031. mawSpitting: {
  25032. height: math.unit(17, "feet"),
  25033. name: "Maw (Spitting)",
  25034. image: {
  25035. source: "./media/characters/koros/maw-spitting.svg"
  25036. }
  25037. },
  25038. slit: {
  25039. height: math.unit(2.8, "feet"),
  25040. name: "Slit",
  25041. image: {
  25042. source: "./media/characters/koros/slit.svg"
  25043. }
  25044. },
  25045. stomach: {
  25046. height: math.unit(6.8, "feet"),
  25047. capacity: math.unit(20, "people"),
  25048. name: "Stomach",
  25049. image: {
  25050. source: "./media/characters/koros/stomach.svg"
  25051. }
  25052. },
  25053. wingspanBottom: {
  25054. height: math.unit(114, "feet"),
  25055. name: "Wingspan (Bottom)",
  25056. image: {
  25057. source: "./media/characters/koros/wingspan-bottom.svg"
  25058. }
  25059. },
  25060. wingspanTop: {
  25061. height: math.unit(104, "feet"),
  25062. name: "Wingspan (Top)",
  25063. image: {
  25064. source: "./media/characters/koros/wingspan-top.svg"
  25065. }
  25066. },
  25067. },
  25068. [
  25069. {
  25070. name: "Normal",
  25071. height: math.unit(31 + 8 / 12, "feet"),
  25072. default: true
  25073. },
  25074. ]
  25075. ))
  25076. characterMakers.push(() => makeCharacter(
  25077. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25078. {
  25079. front: {
  25080. height: math.unit(18 + 5 / 12, "feet"),
  25081. weight: math.unit(3750, "kg"),
  25082. name: "Front",
  25083. image: {
  25084. source: "./media/characters/vexx/front.svg",
  25085. extra: 426 / 396,
  25086. bottom: 31.5 / 458
  25087. }
  25088. },
  25089. maw: {
  25090. height: math.unit(6, "feet"),
  25091. name: "Maw",
  25092. image: {
  25093. source: "./media/characters/vexx/maw.svg"
  25094. }
  25095. },
  25096. },
  25097. [
  25098. {
  25099. name: "Normal",
  25100. height: math.unit(18 + 5 / 12, "feet"),
  25101. default: true
  25102. },
  25103. ]
  25104. ))
  25105. characterMakers.push(() => makeCharacter(
  25106. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25107. {
  25108. front: {
  25109. height: math.unit(17 + 6 / 12, "feet"),
  25110. weight: math.unit(150, "lb"),
  25111. name: "Front",
  25112. image: {
  25113. source: "./media/characters/baadra/front.svg",
  25114. extra: 3137 / 2890,
  25115. bottom: 168.4 / 3305
  25116. }
  25117. },
  25118. back: {
  25119. height: math.unit(17 + 6 / 12, "feet"),
  25120. weight: math.unit(150, "lb"),
  25121. name: "Back",
  25122. image: {
  25123. source: "./media/characters/baadra/back.svg",
  25124. extra: 3142 / 2890,
  25125. bottom: 220 / 3371
  25126. }
  25127. },
  25128. head: {
  25129. height: math.unit(5.45, "feet"),
  25130. name: "Head",
  25131. image: {
  25132. source: "./media/characters/baadra/head.svg"
  25133. }
  25134. },
  25135. headAngry: {
  25136. height: math.unit(4.95, "feet"),
  25137. name: "Head (Angry)",
  25138. image: {
  25139. source: "./media/characters/baadra/head-angry.svg"
  25140. }
  25141. },
  25142. headOpen: {
  25143. height: math.unit(6, "feet"),
  25144. name: "Head (Open)",
  25145. image: {
  25146. source: "./media/characters/baadra/head-open.svg"
  25147. }
  25148. },
  25149. },
  25150. [
  25151. {
  25152. name: "Normal",
  25153. height: math.unit(17 + 6 / 12, "feet"),
  25154. default: true
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25160. {
  25161. front: {
  25162. height: math.unit(7 + 3 / 12, "feet"),
  25163. weight: math.unit(180, "lb"),
  25164. name: "Front",
  25165. image: {
  25166. source: "./media/characters/juri/front.svg",
  25167. extra: 1401 / 1237,
  25168. bottom: 18.5 / 1418
  25169. }
  25170. },
  25171. side: {
  25172. height: math.unit(7 + 3 / 12, "feet"),
  25173. weight: math.unit(180, "lb"),
  25174. name: "Side",
  25175. image: {
  25176. source: "./media/characters/juri/side.svg",
  25177. extra: 1424 / 1242,
  25178. bottom: 18.5 / 1447
  25179. }
  25180. },
  25181. sitting: {
  25182. height: math.unit(6, "feet"),
  25183. weight: math.unit(180, "lb"),
  25184. name: "Sitting",
  25185. image: {
  25186. source: "./media/characters/juri/sitting.svg",
  25187. extra: 1270 / 1143,
  25188. bottom: 100 / 1343
  25189. }
  25190. },
  25191. back: {
  25192. height: math.unit(7 + 3 / 12, "feet"),
  25193. weight: math.unit(180, "lb"),
  25194. name: "Back",
  25195. image: {
  25196. source: "./media/characters/juri/back.svg",
  25197. extra: 1377 / 1240,
  25198. bottom: 23.7 / 1405
  25199. }
  25200. },
  25201. maw: {
  25202. height: math.unit(2.8, "feet"),
  25203. name: "Maw",
  25204. image: {
  25205. source: "./media/characters/juri/maw.svg"
  25206. }
  25207. },
  25208. stomach: {
  25209. height: math.unit(0.89, "feet"),
  25210. capacity: math.unit(4, "liters"),
  25211. name: "Stomach",
  25212. image: {
  25213. source: "./media/characters/juri/stomach.svg"
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Normal",
  25220. height: math.unit(7 + 3 / 12, "feet"),
  25221. default: true
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25227. {
  25228. fox: {
  25229. height: math.unit(5 + 6 / 12, "feet"),
  25230. weight: math.unit(140, "lb"),
  25231. name: "Fox",
  25232. image: {
  25233. source: "./media/characters/maxene-sita/fox.svg",
  25234. extra: 146 / 138,
  25235. bottom: 2.1 / 148.19
  25236. }
  25237. },
  25238. foxLaying: {
  25239. height: math.unit(1.70, "feet"),
  25240. weight: math.unit(140, "lb"),
  25241. name: "Fox (Laying)",
  25242. image: {
  25243. source: "./media/characters/maxene-sita/fox-laying.svg",
  25244. extra: 910 / 572,
  25245. bottom: 71 / 981
  25246. }
  25247. },
  25248. kitsune: {
  25249. height: math.unit(10, "feet"),
  25250. weight: math.unit(800, "lb"),
  25251. name: "Kitsune",
  25252. image: {
  25253. source: "./media/characters/maxene-sita/kitsune.svg",
  25254. extra: 185 / 176,
  25255. bottom: 4.7 / 189.9
  25256. }
  25257. },
  25258. hellhound: {
  25259. height: math.unit(10, "feet"),
  25260. weight: math.unit(700, "lb"),
  25261. name: "Hellhound",
  25262. image: {
  25263. source: "./media/characters/maxene-sita/hellhound.svg",
  25264. extra: 1600 / 1545,
  25265. bottom: 81 / 1681
  25266. }
  25267. },
  25268. },
  25269. [
  25270. {
  25271. name: "Normal",
  25272. height: math.unit(5 + 6 / 12, "feet"),
  25273. default: true
  25274. },
  25275. ]
  25276. ))
  25277. characterMakers.push(() => makeCharacter(
  25278. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25279. {
  25280. front: {
  25281. height: math.unit(3 + 4 / 12, "feet"),
  25282. weight: math.unit(70, "lb"),
  25283. name: "Front",
  25284. image: {
  25285. source: "./media/characters/maia/front.svg",
  25286. extra: 227 / 219.5,
  25287. bottom: 40 / 267
  25288. }
  25289. },
  25290. back: {
  25291. height: math.unit(3 + 4 / 12, "feet"),
  25292. weight: math.unit(70, "lb"),
  25293. name: "Back",
  25294. image: {
  25295. source: "./media/characters/maia/back.svg",
  25296. extra: 237 / 225
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Normal",
  25303. height: math.unit(3 + 4 / 12, "feet"),
  25304. default: true
  25305. },
  25306. ]
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25310. {
  25311. front: {
  25312. height: math.unit(5 + 10 / 12, "feet"),
  25313. weight: math.unit(197, "lb"),
  25314. name: "Front",
  25315. image: {
  25316. source: "./media/characters/jabaro/front.svg",
  25317. extra: 225 / 216,
  25318. bottom: 5.06 / 230
  25319. }
  25320. },
  25321. back: {
  25322. height: math.unit(5 + 10 / 12, "feet"),
  25323. weight: math.unit(197, "lb"),
  25324. name: "Back",
  25325. image: {
  25326. source: "./media/characters/jabaro/back.svg",
  25327. extra: 225 / 219,
  25328. bottom: 1.9 / 227
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Normal",
  25335. height: math.unit(5 + 10 / 12, "feet"),
  25336. default: true
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(5 + 8 / 12, "feet"),
  25345. weight: math.unit(139, "lb"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/risa/front.svg",
  25349. extra: 270 / 260,
  25350. bottom: 11.2 / 282
  25351. }
  25352. },
  25353. back: {
  25354. height: math.unit(5 + 8 / 12, "feet"),
  25355. weight: math.unit(139, "lb"),
  25356. name: "Back",
  25357. image: {
  25358. source: "./media/characters/risa/back.svg",
  25359. extra: 264 / 255,
  25360. bottom: 4 / 268
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Normal",
  25367. height: math.unit(5 + 8 / 12, "feet"),
  25368. default: true
  25369. },
  25370. ]
  25371. ))
  25372. characterMakers.push(() => makeCharacter(
  25373. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25374. {
  25375. front: {
  25376. height: math.unit(2 + 11 / 12, "feet"),
  25377. weight: math.unit(30, "lb"),
  25378. name: "Front",
  25379. image: {
  25380. source: "./media/characters/weatley/front.svg",
  25381. bottom: 10.7 / 414,
  25382. extra: 403.5 / 362
  25383. }
  25384. },
  25385. back: {
  25386. height: math.unit(2 + 11 / 12, "feet"),
  25387. weight: math.unit(30, "lb"),
  25388. name: "Back",
  25389. image: {
  25390. source: "./media/characters/weatley/back.svg",
  25391. bottom: 10.7 / 414,
  25392. extra: 403.5 / 362
  25393. }
  25394. },
  25395. },
  25396. [
  25397. {
  25398. name: "Normal",
  25399. height: math.unit(2 + 11 / 12, "feet"),
  25400. default: true
  25401. },
  25402. ]
  25403. ))
  25404. characterMakers.push(() => makeCharacter(
  25405. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25406. {
  25407. front: {
  25408. height: math.unit(5 + 2 / 12, "feet"),
  25409. weight: math.unit(50, "kg"),
  25410. name: "Front",
  25411. image: {
  25412. source: "./media/characters/mercury-crescent/front.svg",
  25413. extra: 1088 / 1033,
  25414. bottom: 18.9 / 1109
  25415. }
  25416. },
  25417. },
  25418. [
  25419. {
  25420. name: "Normal",
  25421. height: math.unit(5 + 2 / 12, "feet"),
  25422. default: true
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25428. {
  25429. front: {
  25430. height: math.unit(2, "feet"),
  25431. weight: math.unit(15, "kg"),
  25432. name: "Front",
  25433. image: {
  25434. source: "./media/characters/diamond-jones/front.svg",
  25435. extra: 727/723,
  25436. bottom: 46/773
  25437. }
  25438. },
  25439. },
  25440. [
  25441. {
  25442. name: "Normal",
  25443. height: math.unit(2, "feet"),
  25444. default: true
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25450. {
  25451. front: {
  25452. height: math.unit(3, "feet"),
  25453. weight: math.unit(30, "kg"),
  25454. name: "Front",
  25455. image: {
  25456. source: "./media/characters/sweet-bit/front.svg",
  25457. extra: 675 / 567,
  25458. bottom: 27.7 / 703
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "Normal",
  25465. height: math.unit(3, "feet"),
  25466. default: true
  25467. },
  25468. ]
  25469. ))
  25470. characterMakers.push(() => makeCharacter(
  25471. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25472. {
  25473. side: {
  25474. height: math.unit(9.178, "feet"),
  25475. weight: math.unit(500, "lb"),
  25476. name: "Side",
  25477. image: {
  25478. source: "./media/characters/umbrazen/side.svg",
  25479. extra: 1730 / 1473,
  25480. bottom: 34.6 / 1765
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Normal",
  25487. height: math.unit(9.178, "feet"),
  25488. default: true
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(10, "feet"),
  25497. weight: math.unit(750, "lb"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/arlist/front.svg",
  25501. extra: 961 / 778,
  25502. bottom: 6.2 / 986
  25503. }
  25504. },
  25505. },
  25506. [
  25507. {
  25508. name: "Normal",
  25509. height: math.unit(10, "feet"),
  25510. default: true
  25511. },
  25512. ]
  25513. ))
  25514. characterMakers.push(() => makeCharacter(
  25515. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25516. {
  25517. front: {
  25518. height: math.unit(5 + 1 / 12, "feet"),
  25519. weight: math.unit(110, "lb"),
  25520. name: "Front",
  25521. image: {
  25522. source: "./media/characters/aradel/front.svg",
  25523. extra: 324 / 303,
  25524. bottom: 3.6 / 329.4
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(5 + 1 / 12, "feet"),
  25532. default: true
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25538. {
  25539. front: {
  25540. height: math.unit(3 + 8 / 12, "feet"),
  25541. weight: math.unit(50, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/serryn/front.svg",
  25545. extra: 1792 / 1656,
  25546. bottom: 43.5 / 1840
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Normal",
  25553. height: math.unit(3 + 8 / 12, "feet"),
  25554. default: true
  25555. },
  25556. ]
  25557. ))
  25558. characterMakers.push(() => makeCharacter(
  25559. { name: "Xavier Thyme" },
  25560. {
  25561. front: {
  25562. height: math.unit(7 + 10 / 12, "feet"),
  25563. weight: math.unit(255, "lb"),
  25564. name: "Front",
  25565. image: {
  25566. source: "./media/characters/xavier-thyme/front.svg",
  25567. extra: 3733 / 3642,
  25568. bottom: 131 / 3869
  25569. }
  25570. },
  25571. frontRaven: {
  25572. height: math.unit(7 + 10 / 12, "feet"),
  25573. weight: math.unit(255, "lb"),
  25574. name: "Front (Raven)",
  25575. image: {
  25576. source: "./media/characters/xavier-thyme/front-raven.svg",
  25577. extra: 4385 / 3642,
  25578. bottom: 131 / 4517
  25579. }
  25580. },
  25581. },
  25582. [
  25583. {
  25584. name: "Normal",
  25585. height: math.unit(7 + 10 / 12, "feet"),
  25586. default: true
  25587. },
  25588. ]
  25589. ))
  25590. characterMakers.push(() => makeCharacter(
  25591. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25592. {
  25593. front: {
  25594. height: math.unit(1.6, "m"),
  25595. weight: math.unit(50, "kg"),
  25596. name: "Front",
  25597. image: {
  25598. source: "./media/characters/kiki/front.svg",
  25599. extra: 4682 / 3610,
  25600. bottom: 115 / 4777
  25601. }
  25602. },
  25603. },
  25604. [
  25605. {
  25606. name: "Normal",
  25607. height: math.unit(1.6, "meters"),
  25608. default: true
  25609. },
  25610. ]
  25611. ))
  25612. characterMakers.push(() => makeCharacter(
  25613. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25614. {
  25615. front: {
  25616. height: math.unit(50, "m"),
  25617. weight: math.unit(500, "tonnes"),
  25618. name: "Front",
  25619. image: {
  25620. source: "./media/characters/ryoko/front.svg",
  25621. extra: 4632 / 3926,
  25622. bottom: 193 / 4823
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Normal",
  25629. height: math.unit(50, "meters"),
  25630. default: true
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(30, "m"),
  25639. weight: math.unit(22, "tonnes"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/elio/front.svg",
  25643. extra: 4582 / 3720,
  25644. bottom: 236 / 4828
  25645. }
  25646. },
  25647. },
  25648. [
  25649. {
  25650. name: "Normal",
  25651. height: math.unit(30, "meters"),
  25652. default: true
  25653. },
  25654. ]
  25655. ))
  25656. characterMakers.push(() => makeCharacter(
  25657. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25658. {
  25659. front: {
  25660. height: math.unit(6 + 3 / 12, "feet"),
  25661. weight: math.unit(120, "lb"),
  25662. name: "Front",
  25663. image: {
  25664. source: "./media/characters/azura/front.svg",
  25665. extra: 1149 / 1135,
  25666. bottom: 45 / 1194
  25667. }
  25668. },
  25669. frontClothed: {
  25670. height: math.unit(6 + 3 / 12, "feet"),
  25671. weight: math.unit(120, "lb"),
  25672. name: "Front (Clothed)",
  25673. image: {
  25674. source: "./media/characters/azura/front-clothed.svg",
  25675. extra: 1149 / 1135,
  25676. bottom: 45 / 1194
  25677. }
  25678. },
  25679. },
  25680. [
  25681. {
  25682. name: "Normal",
  25683. height: math.unit(6 + 3 / 12, "feet"),
  25684. default: true
  25685. },
  25686. {
  25687. name: "Macro",
  25688. height: math.unit(20 + 6 / 12, "feet")
  25689. },
  25690. {
  25691. name: "Megamacro",
  25692. height: math.unit(12, "miles")
  25693. },
  25694. {
  25695. name: "Gigamacro",
  25696. height: math.unit(10000, "miles")
  25697. },
  25698. {
  25699. name: "Teramacro",
  25700. height: math.unit(900000, "miles")
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25706. {
  25707. front: {
  25708. height: math.unit(12, "feet"),
  25709. weight: math.unit(1, "ton"),
  25710. capacity: math.unit(660000, "gallons"),
  25711. name: "Front",
  25712. image: {
  25713. source: "./media/characters/zeus/front.svg",
  25714. extra: 5005 / 4717,
  25715. bottom: 363 / 5388
  25716. }
  25717. },
  25718. },
  25719. [
  25720. {
  25721. name: "Normal",
  25722. height: math.unit(12, "feet")
  25723. },
  25724. {
  25725. name: "Preferred Size",
  25726. height: math.unit(0.5, "miles"),
  25727. default: true
  25728. },
  25729. {
  25730. name: "Giga Horse",
  25731. height: math.unit(300, "miles")
  25732. },
  25733. {
  25734. name: "Riding Planets",
  25735. height: math.unit(30, "megameters")
  25736. },
  25737. {
  25738. name: "Cosmic Giant",
  25739. height: math.unit(3, "zettameters")
  25740. },
  25741. {
  25742. name: "Breeding God",
  25743. height: math.unit(9.92e22, "yottameters")
  25744. },
  25745. ]
  25746. ))
  25747. characterMakers.push(() => makeCharacter(
  25748. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25749. {
  25750. side: {
  25751. height: math.unit(9, "feet"),
  25752. weight: math.unit(1500, "kg"),
  25753. name: "Side",
  25754. image: {
  25755. source: "./media/characters/fang/side.svg",
  25756. extra: 924 / 866,
  25757. bottom: 47.5 / 972.3
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Normal",
  25764. height: math.unit(9, "feet"),
  25765. default: true
  25766. },
  25767. {
  25768. name: "Macro",
  25769. height: math.unit(75 + 6 / 12, "feet")
  25770. },
  25771. {
  25772. name: "Teramacro",
  25773. height: math.unit(50000, "miles")
  25774. },
  25775. ]
  25776. ))
  25777. characterMakers.push(() => makeCharacter(
  25778. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25779. {
  25780. front: {
  25781. height: math.unit(10, "feet"),
  25782. weight: math.unit(2, "tons"),
  25783. name: "Front",
  25784. image: {
  25785. source: "./media/characters/rekhit/front.svg",
  25786. extra: 2796 / 2590,
  25787. bottom: 225 / 3022
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Normal",
  25794. height: math.unit(10, "feet"),
  25795. default: true
  25796. },
  25797. {
  25798. name: "Macro",
  25799. height: math.unit(500, "feet")
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Dahlia Verrick" },
  25805. {
  25806. front: {
  25807. height: math.unit(7 + 6.451 / 12, "feet"),
  25808. weight: math.unit(310, "lb"),
  25809. name: "Front",
  25810. image: {
  25811. source: "./media/characters/dahlia-verrick/front.svg",
  25812. extra: 1488 / 1365,
  25813. bottom: 6.2 / 1495
  25814. }
  25815. },
  25816. back: {
  25817. height: math.unit(7 + 6.451 / 12, "feet"),
  25818. weight: math.unit(310, "lb"),
  25819. name: "Back",
  25820. image: {
  25821. source: "./media/characters/dahlia-verrick/back.svg",
  25822. extra: 1472 / 1351,
  25823. bottom: 5.28 / 1477
  25824. }
  25825. },
  25826. frontBusiness: {
  25827. height: math.unit(7 + 6.451 / 12, "feet"),
  25828. weight: math.unit(200, "lb"),
  25829. name: "Front (Business)",
  25830. image: {
  25831. source: "./media/characters/dahlia-verrick/front-business.svg",
  25832. extra: 1478 / 1381,
  25833. bottom: 5.5 / 1484
  25834. }
  25835. },
  25836. frontCasual: {
  25837. height: math.unit(7 + 6.451 / 12, "feet"),
  25838. weight: math.unit(200, "lb"),
  25839. name: "Front (Casual)",
  25840. image: {
  25841. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25842. extra: 1478 / 1381,
  25843. bottom: 5.5 / 1484
  25844. }
  25845. },
  25846. },
  25847. [
  25848. {
  25849. name: "Travel-Sized",
  25850. height: math.unit(7.45, "inches")
  25851. },
  25852. {
  25853. name: "Normal",
  25854. height: math.unit(7 + 6.451 / 12, "feet"),
  25855. default: true
  25856. },
  25857. {
  25858. name: "Hitting the Town",
  25859. height: math.unit(37 + 8 / 12, "feet")
  25860. },
  25861. {
  25862. name: "Stomp in the Suburbs",
  25863. height: math.unit(964 + 9.728 / 12, "feet")
  25864. },
  25865. {
  25866. name: "Sit on the City",
  25867. height: math.unit(61747 + 10.592 / 12, "feet")
  25868. },
  25869. {
  25870. name: "Glomp the Globe",
  25871. height: math.unit(252919327 + 4.832 / 12, "feet")
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25877. {
  25878. front: {
  25879. height: math.unit(6 + 4 / 12, "feet"),
  25880. weight: math.unit(320, "lb"),
  25881. name: "Front",
  25882. image: {
  25883. source: "./media/characters/balina-mahigan/front.svg",
  25884. extra: 447 / 428,
  25885. bottom: 18 / 466
  25886. }
  25887. },
  25888. back: {
  25889. height: math.unit(6 + 4 / 12, "feet"),
  25890. weight: math.unit(320, "lb"),
  25891. name: "Back",
  25892. image: {
  25893. source: "./media/characters/balina-mahigan/back.svg",
  25894. extra: 445 / 428,
  25895. bottom: 4.07 / 448
  25896. }
  25897. },
  25898. arm: {
  25899. height: math.unit(1.88, "feet"),
  25900. name: "Arm",
  25901. image: {
  25902. source: "./media/characters/balina-mahigan/arm.svg"
  25903. }
  25904. },
  25905. backPort: {
  25906. height: math.unit(0.685, "feet"),
  25907. name: "Back Port",
  25908. image: {
  25909. source: "./media/characters/balina-mahigan/back-port.svg"
  25910. }
  25911. },
  25912. hoofpaw: {
  25913. height: math.unit(1.41, "feet"),
  25914. name: "Hoofpaw",
  25915. image: {
  25916. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25917. }
  25918. },
  25919. leftHandBack: {
  25920. height: math.unit(0.938, "feet"),
  25921. name: "Left Hand (Back)",
  25922. image: {
  25923. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25924. }
  25925. },
  25926. leftHandFront: {
  25927. height: math.unit(0.938, "feet"),
  25928. name: "Left Hand (Front)",
  25929. image: {
  25930. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25931. }
  25932. },
  25933. rightHandBack: {
  25934. height: math.unit(0.95, "feet"),
  25935. name: "Right Hand (Back)",
  25936. image: {
  25937. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25938. }
  25939. },
  25940. rightHandFront: {
  25941. height: math.unit(0.95, "feet"),
  25942. name: "Right Hand (Front)",
  25943. image: {
  25944. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25945. }
  25946. },
  25947. },
  25948. [
  25949. {
  25950. name: "Normal",
  25951. height: math.unit(6 + 4 / 12, "feet"),
  25952. default: true
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25958. {
  25959. front: {
  25960. height: math.unit(6, "feet"),
  25961. weight: math.unit(320, "lb"),
  25962. name: "Front",
  25963. image: {
  25964. source: "./media/characters/balina-mejeri/front.svg",
  25965. extra: 517 / 488,
  25966. bottom: 44.2 / 561
  25967. }
  25968. },
  25969. },
  25970. [
  25971. {
  25972. name: "Normal",
  25973. height: math.unit(6 + 4 / 12, "feet")
  25974. },
  25975. {
  25976. name: "Business",
  25977. height: math.unit(155, "feet"),
  25978. default: true
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25984. {
  25985. kneeling: {
  25986. height: math.unit(6 + 4 / 12, "feet"),
  25987. weight: math.unit(300 * 20, "lb"),
  25988. name: "Kneeling",
  25989. image: {
  25990. source: "./media/characters/balbarian/kneeling.svg",
  25991. extra: 922 / 862,
  25992. bottom: 42.4 / 965
  25993. }
  25994. },
  25995. },
  25996. [
  25997. {
  25998. name: "Normal",
  25999. height: math.unit(6 + 4 / 12, "feet")
  26000. },
  26001. {
  26002. name: "Treasured",
  26003. height: math.unit(18 + 9 / 12, "feet"),
  26004. default: true
  26005. },
  26006. {
  26007. name: "Macro",
  26008. height: math.unit(900, "feet")
  26009. },
  26010. ]
  26011. ))
  26012. characterMakers.push(() => makeCharacter(
  26013. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26014. {
  26015. front: {
  26016. height: math.unit(6 + 4 / 12, "feet"),
  26017. weight: math.unit(325, "lb"),
  26018. name: "Front",
  26019. image: {
  26020. source: "./media/characters/balina-amarini/front.svg",
  26021. extra: 415 / 403,
  26022. bottom: 19 / 433.4
  26023. }
  26024. },
  26025. back: {
  26026. height: math.unit(6 + 4 / 12, "feet"),
  26027. weight: math.unit(325, "lb"),
  26028. name: "Back",
  26029. image: {
  26030. source: "./media/characters/balina-amarini/back.svg",
  26031. extra: 415 / 403,
  26032. bottom: 13.5 / 432
  26033. }
  26034. },
  26035. overdrive: {
  26036. height: math.unit(6 + 4 / 12, "feet"),
  26037. weight: math.unit(400, "lb"),
  26038. name: "Overdrive",
  26039. image: {
  26040. source: "./media/characters/balina-amarini/overdrive.svg",
  26041. extra: 269 / 259,
  26042. bottom: 12 / 282
  26043. }
  26044. },
  26045. },
  26046. [
  26047. {
  26048. name: "Boom",
  26049. height: math.unit(9 + 10 / 12, "feet"),
  26050. default: true
  26051. },
  26052. {
  26053. name: "Macro",
  26054. height: math.unit(280, "feet")
  26055. },
  26056. ]
  26057. ))
  26058. characterMakers.push(() => makeCharacter(
  26059. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26060. {
  26061. goddess: {
  26062. height: math.unit(600, "feet"),
  26063. weight: math.unit(2000000, "tons"),
  26064. name: "Goddess",
  26065. image: {
  26066. source: "./media/characters/lady-kubwa/goddess.svg",
  26067. extra: 1240.5 / 1223,
  26068. bottom: 22 / 1263
  26069. }
  26070. },
  26071. goddesser: {
  26072. height: math.unit(900, "feet"),
  26073. weight: math.unit(20000000, "lb"),
  26074. name: "Goddess-er",
  26075. image: {
  26076. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26077. extra: 899 / 888,
  26078. bottom: 12.6 / 912
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Macro",
  26085. height: math.unit(600, "feet"),
  26086. default: true
  26087. },
  26088. {
  26089. name: "Megamacro",
  26090. height: math.unit(250, "miles")
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(7 + 7 / 12, "feet"),
  26099. weight: math.unit(250, "lb"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/tala-grovehorn/front.svg",
  26103. extra: 2636 / 2525,
  26104. bottom: 147 / 2781
  26105. }
  26106. },
  26107. back: {
  26108. height: math.unit(7 + 7 / 12, "feet"),
  26109. weight: math.unit(250, "lb"),
  26110. name: "Back",
  26111. image: {
  26112. source: "./media/characters/tala-grovehorn/back.svg",
  26113. extra: 2635 / 2539,
  26114. bottom: 100 / 2732.8
  26115. }
  26116. },
  26117. mouth: {
  26118. height: math.unit(1.15, "feet"),
  26119. name: "Mouth",
  26120. image: {
  26121. source: "./media/characters/tala-grovehorn/mouth.svg"
  26122. }
  26123. },
  26124. dick: {
  26125. height: math.unit(2.36, "feet"),
  26126. name: "Dick",
  26127. image: {
  26128. source: "./media/characters/tala-grovehorn/dick.svg"
  26129. }
  26130. },
  26131. slit: {
  26132. height: math.unit(0.61, "feet"),
  26133. name: "Slit",
  26134. image: {
  26135. source: "./media/characters/tala-grovehorn/slit.svg"
  26136. }
  26137. },
  26138. },
  26139. [
  26140. ]
  26141. ))
  26142. characterMakers.push(() => makeCharacter(
  26143. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26144. {
  26145. front: {
  26146. height: math.unit(7 + 7 / 12, "feet"),
  26147. weight: math.unit(225, "lb"),
  26148. name: "Front",
  26149. image: {
  26150. source: "./media/characters/epona/front.svg",
  26151. extra: 2445 / 2290,
  26152. bottom: 251 / 2696
  26153. }
  26154. },
  26155. back: {
  26156. height: math.unit(7 + 7 / 12, "feet"),
  26157. weight: math.unit(225, "lb"),
  26158. name: "Back",
  26159. image: {
  26160. source: "./media/characters/epona/back.svg",
  26161. extra: 2546 / 2408,
  26162. bottom: 44 / 2589
  26163. }
  26164. },
  26165. genitals: {
  26166. height: math.unit(1.5, "feet"),
  26167. name: "Genitals",
  26168. image: {
  26169. source: "./media/characters/epona/genitals.svg"
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Normal",
  26176. height: math.unit(7 + 7 / 12, "feet"),
  26177. default: true
  26178. },
  26179. ]
  26180. ))
  26181. characterMakers.push(() => makeCharacter(
  26182. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26183. {
  26184. front: {
  26185. height: math.unit(7, "feet"),
  26186. weight: math.unit(518, "lb"),
  26187. name: "Front",
  26188. image: {
  26189. source: "./media/characters/avia-bloodbourn/front.svg",
  26190. extra: 1466 / 1350,
  26191. bottom: 65 / 1527
  26192. }
  26193. },
  26194. },
  26195. [
  26196. ]
  26197. ))
  26198. characterMakers.push(() => makeCharacter(
  26199. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26200. {
  26201. front: {
  26202. height: math.unit(9.35, "feet"),
  26203. weight: math.unit(600, "lb"),
  26204. name: "Front",
  26205. image: {
  26206. source: "./media/characters/amera/front.svg",
  26207. extra: 891 / 818,
  26208. bottom: 30 / 922.7
  26209. }
  26210. },
  26211. back: {
  26212. height: math.unit(9.35, "feet"),
  26213. weight: math.unit(600, "lb"),
  26214. name: "Back",
  26215. image: {
  26216. source: "./media/characters/amera/back.svg",
  26217. extra: 876 / 824,
  26218. bottom: 6.8 / 884
  26219. }
  26220. },
  26221. dick: {
  26222. height: math.unit(2.14, "feet"),
  26223. name: "Dick",
  26224. image: {
  26225. source: "./media/characters/amera/dick.svg"
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Normal",
  26232. height: math.unit(9.35, "feet"),
  26233. default: true
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26239. {
  26240. kneeling: {
  26241. height: math.unit(3 + 4 / 12, "feet"),
  26242. weight: math.unit(90, "lb"),
  26243. name: "Kneeling",
  26244. image: {
  26245. source: "./media/characters/rosewen/kneeling.svg",
  26246. extra: 1835 / 1571,
  26247. bottom: 27.7 / 1862
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(3 + 4 / 12, "feet"),
  26255. default: true
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(5 + 10 / 12, "feet"),
  26264. weight: math.unit(200, "lb"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/sabah/front.svg",
  26268. extra: 849 / 763,
  26269. bottom: 33.9 / 881
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Normal",
  26276. height: math.unit(5 + 10 / 12, "feet"),
  26277. default: true
  26278. },
  26279. ]
  26280. ))
  26281. characterMakers.push(() => makeCharacter(
  26282. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26283. {
  26284. front: {
  26285. height: math.unit(3 + 5 / 12, "feet"),
  26286. weight: math.unit(40, "kg"),
  26287. name: "Front",
  26288. image: {
  26289. source: "./media/characters/purple-flame/front.svg",
  26290. extra: 1577 / 1412,
  26291. bottom: 97 / 1694
  26292. }
  26293. },
  26294. frontDressed: {
  26295. height: math.unit(3 + 5 / 12, "feet"),
  26296. weight: math.unit(40, "kg"),
  26297. name: "Front (Dressed)",
  26298. image: {
  26299. source: "./media/characters/purple-flame/front-dressed.svg",
  26300. extra: 1577 / 1412,
  26301. bottom: 97 / 1694
  26302. }
  26303. },
  26304. headphones: {
  26305. height: math.unit(0.85, "feet"),
  26306. name: "Headphones",
  26307. image: {
  26308. source: "./media/characters/purple-flame/headphones.svg"
  26309. }
  26310. },
  26311. },
  26312. [
  26313. {
  26314. name: "Really Small",
  26315. height: math.unit(5, "cm")
  26316. },
  26317. {
  26318. name: "Micro",
  26319. height: math.unit(1 + 5 / 12, "feet")
  26320. },
  26321. {
  26322. name: "Normal",
  26323. height: math.unit(3 + 5 / 12, "feet"),
  26324. default: true
  26325. },
  26326. {
  26327. name: "Minimacro",
  26328. height: math.unit(125, "feet")
  26329. },
  26330. {
  26331. name: "Macro",
  26332. height: math.unit(0.5, "miles")
  26333. },
  26334. {
  26335. name: "Megamacro",
  26336. height: math.unit(50, "miles")
  26337. },
  26338. {
  26339. name: "Gigantic",
  26340. height: math.unit(750, "miles")
  26341. },
  26342. {
  26343. name: "Planetary",
  26344. height: math.unit(15000, "miles")
  26345. },
  26346. ]
  26347. ))
  26348. characterMakers.push(() => makeCharacter(
  26349. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26350. {
  26351. front: {
  26352. height: math.unit(14, "feet"),
  26353. weight: math.unit(959, "lb"),
  26354. name: "Front",
  26355. image: {
  26356. source: "./media/characters/arsenal/front.svg",
  26357. extra: 2357 / 2157,
  26358. bottom: 93 / 2458
  26359. }
  26360. },
  26361. },
  26362. [
  26363. {
  26364. name: "Normal",
  26365. height: math.unit(14, "feet"),
  26366. default: true
  26367. },
  26368. ]
  26369. ))
  26370. characterMakers.push(() => makeCharacter(
  26371. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26372. {
  26373. front: {
  26374. height: math.unit(6, "feet"),
  26375. weight: math.unit(150, "lb"),
  26376. name: "Front",
  26377. image: {
  26378. source: "./media/characters/adira/front.svg",
  26379. extra: 1078 / 1029,
  26380. bottom: 87 / 1166
  26381. }
  26382. },
  26383. },
  26384. [
  26385. {
  26386. name: "Micro",
  26387. height: math.unit(4, "inches"),
  26388. default: true
  26389. },
  26390. {
  26391. name: "Macro",
  26392. height: math.unit(50, "feet")
  26393. },
  26394. ]
  26395. ))
  26396. characterMakers.push(() => makeCharacter(
  26397. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26398. {
  26399. front: {
  26400. height: math.unit(16, "feet"),
  26401. weight: math.unit(1000, "lb"),
  26402. name: "Front",
  26403. image: {
  26404. source: "./media/characters/grim/front.svg",
  26405. extra: 622 / 614,
  26406. bottom: 18.1 / 642
  26407. }
  26408. },
  26409. back: {
  26410. height: math.unit(16, "feet"),
  26411. weight: math.unit(1000, "lb"),
  26412. name: "Back",
  26413. image: {
  26414. source: "./media/characters/grim/back.svg",
  26415. extra: 610.6 / 602,
  26416. bottom: 40.8 / 652
  26417. }
  26418. },
  26419. hunched: {
  26420. height: math.unit(9.75, "feet"),
  26421. weight: math.unit(1000, "lb"),
  26422. name: "Hunched",
  26423. image: {
  26424. source: "./media/characters/grim/hunched.svg",
  26425. extra: 304 / 297,
  26426. bottom: 35.4 / 394
  26427. }
  26428. },
  26429. },
  26430. [
  26431. {
  26432. name: "Normal",
  26433. height: math.unit(16, "feet"),
  26434. default: true
  26435. },
  26436. ]
  26437. ))
  26438. characterMakers.push(() => makeCharacter(
  26439. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26440. {
  26441. front: {
  26442. height: math.unit(2.3, "meters"),
  26443. weight: math.unit(300, "lb"),
  26444. name: "Front",
  26445. image: {
  26446. source: "./media/characters/sinja/front-sfw.svg",
  26447. extra: 1393 / 1294,
  26448. bottom: 70 / 1463
  26449. }
  26450. },
  26451. frontNsfw: {
  26452. height: math.unit(2.3, "meters"),
  26453. weight: math.unit(300, "lb"),
  26454. name: "Front (NSFW)",
  26455. image: {
  26456. source: "./media/characters/sinja/front-nsfw.svg",
  26457. extra: 1393 / 1294,
  26458. bottom: 70 / 1463
  26459. }
  26460. },
  26461. back: {
  26462. height: math.unit(2.3, "meters"),
  26463. weight: math.unit(300, "lb"),
  26464. name: "Back",
  26465. image: {
  26466. source: "./media/characters/sinja/back.svg",
  26467. extra: 1393 / 1294,
  26468. bottom: 70 / 1463
  26469. }
  26470. },
  26471. head: {
  26472. height: math.unit(1.771, "feet"),
  26473. name: "Head",
  26474. image: {
  26475. source: "./media/characters/sinja/head.svg"
  26476. }
  26477. },
  26478. slit: {
  26479. height: math.unit(0.8, "feet"),
  26480. name: "Slit",
  26481. image: {
  26482. source: "./media/characters/sinja/slit.svg"
  26483. }
  26484. },
  26485. },
  26486. [
  26487. {
  26488. name: "Normal",
  26489. height: math.unit(2.3, "meters")
  26490. },
  26491. {
  26492. name: "Macro",
  26493. height: math.unit(91, "meters"),
  26494. default: true
  26495. },
  26496. {
  26497. name: "Megamacro",
  26498. height: math.unit(91440, "meters")
  26499. },
  26500. {
  26501. name: "Gigamacro",
  26502. height: math.unit(60960000, "meters")
  26503. },
  26504. {
  26505. name: "Teramacro",
  26506. height: math.unit(9144000000, "meters")
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(1.7, "meters"),
  26515. weight: math.unit(130, "lb"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/kyu/front.svg",
  26519. extra: 415 / 395,
  26520. bottom: 5 / 420
  26521. }
  26522. },
  26523. head: {
  26524. height: math.unit(1.75, "feet"),
  26525. name: "Head",
  26526. image: {
  26527. source: "./media/characters/kyu/head.svg"
  26528. }
  26529. },
  26530. foot: {
  26531. height: math.unit(0.81, "feet"),
  26532. name: "Foot",
  26533. image: {
  26534. source: "./media/characters/kyu/foot.svg"
  26535. }
  26536. },
  26537. },
  26538. [
  26539. {
  26540. name: "Normal",
  26541. height: math.unit(1.7, "meters")
  26542. },
  26543. {
  26544. name: "Macro",
  26545. height: math.unit(131, "feet"),
  26546. default: true
  26547. },
  26548. {
  26549. name: "Megamacro",
  26550. height: math.unit(91440, "meters")
  26551. },
  26552. {
  26553. name: "Gigamacro",
  26554. height: math.unit(60960000, "meters")
  26555. },
  26556. {
  26557. name: "Teramacro",
  26558. height: math.unit(9144000000, "meters")
  26559. },
  26560. ]
  26561. ))
  26562. characterMakers.push(() => makeCharacter(
  26563. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26564. {
  26565. front: {
  26566. height: math.unit(7 + 1 / 12, "feet"),
  26567. weight: math.unit(250, "lb"),
  26568. name: "Front",
  26569. image: {
  26570. source: "./media/characters/joey/front.svg",
  26571. extra: 1791 / 1537,
  26572. bottom: 28 / 1816
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Micro",
  26579. height: math.unit(3, "inches")
  26580. },
  26581. {
  26582. name: "Normal",
  26583. height: math.unit(7 + 1 / 12, "feet"),
  26584. default: true
  26585. },
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26590. {
  26591. front: {
  26592. height: math.unit(165, "cm"),
  26593. weight: math.unit(140, "lb"),
  26594. name: "Front",
  26595. image: {
  26596. source: "./media/characters/sam-evans/front.svg",
  26597. extra: 3417 / 3230,
  26598. bottom: 41.3 / 3417
  26599. }
  26600. },
  26601. frontSixTails: {
  26602. height: math.unit(165, "cm"),
  26603. weight: math.unit(140, "lb"),
  26604. name: "Front-six-tails",
  26605. image: {
  26606. source: "./media/characters/sam-evans/front-six-tails.svg",
  26607. extra: 3417 / 3230,
  26608. bottom: 41.3 / 3417
  26609. }
  26610. },
  26611. back: {
  26612. height: math.unit(165, "cm"),
  26613. weight: math.unit(140, "lb"),
  26614. name: "Back",
  26615. image: {
  26616. source: "./media/characters/sam-evans/back.svg",
  26617. extra: 3227 / 3032,
  26618. bottom: 6.8 / 3234
  26619. }
  26620. },
  26621. face: {
  26622. height: math.unit(0.68, "feet"),
  26623. name: "Face",
  26624. image: {
  26625. source: "./media/characters/sam-evans/face.svg"
  26626. }
  26627. },
  26628. },
  26629. [
  26630. {
  26631. name: "Normal",
  26632. height: math.unit(165, "cm"),
  26633. default: true
  26634. },
  26635. {
  26636. name: "Macro",
  26637. height: math.unit(100, "meters")
  26638. },
  26639. {
  26640. name: "Macro+",
  26641. height: math.unit(800, "meters")
  26642. },
  26643. {
  26644. name: "Macro++",
  26645. height: math.unit(3, "km")
  26646. },
  26647. {
  26648. name: "Macro+++",
  26649. height: math.unit(30, "km")
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(10, "feet"),
  26658. weight: math.unit(750, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/juliet-a/front.svg",
  26662. extra: 1766 / 1720,
  26663. bottom: 43 / 1809
  26664. }
  26665. },
  26666. back: {
  26667. height: math.unit(10, "feet"),
  26668. weight: math.unit(750, "lb"),
  26669. name: "Back",
  26670. image: {
  26671. source: "./media/characters/juliet-a/back.svg",
  26672. extra: 1781 / 1734,
  26673. bottom: 35 / 1810,
  26674. }
  26675. },
  26676. },
  26677. [
  26678. {
  26679. name: "Normal",
  26680. height: math.unit(10, "feet"),
  26681. default: true
  26682. },
  26683. {
  26684. name: "Dragon Form",
  26685. height: math.unit(250, "feet")
  26686. },
  26687. {
  26688. name: "Macro",
  26689. height: math.unit(1000, "feet")
  26690. },
  26691. {
  26692. name: "Megamacro",
  26693. height: math.unit(10000, "feet")
  26694. }
  26695. ]
  26696. ))
  26697. characterMakers.push(() => makeCharacter(
  26698. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26699. {
  26700. regular: {
  26701. height: math.unit(7 + 3 / 12, "feet"),
  26702. weight: math.unit(260, "lb"),
  26703. name: "Regular",
  26704. image: {
  26705. source: "./media/characters/wild/regular.svg",
  26706. extra: 97.45 / 92,
  26707. bottom: 6.8 / 104.3
  26708. }
  26709. },
  26710. biggums: {
  26711. height: math.unit(8 + 6 / 12, "feet"),
  26712. weight: math.unit(425, "lb"),
  26713. name: "Biggums",
  26714. image: {
  26715. source: "./media/characters/wild/biggums.svg",
  26716. extra: 97.45 / 92,
  26717. bottom: 7.5 / 132.34
  26718. }
  26719. },
  26720. mawRegular: {
  26721. height: math.unit(1.24, "feet"),
  26722. name: "Maw (Regular)",
  26723. image: {
  26724. source: "./media/characters/wild/maw.svg"
  26725. }
  26726. },
  26727. mawBiggums: {
  26728. height: math.unit(1.47, "feet"),
  26729. name: "Maw (Biggums)",
  26730. image: {
  26731. source: "./media/characters/wild/maw.svg"
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Normal",
  26738. height: math.unit(7 + 3 / 12, "feet"),
  26739. default: true
  26740. },
  26741. ]
  26742. ))
  26743. characterMakers.push(() => makeCharacter(
  26744. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26745. {
  26746. front: {
  26747. height: math.unit(2.5, "meters"),
  26748. weight: math.unit(200, "kg"),
  26749. name: "Front",
  26750. image: {
  26751. source: "./media/characters/vidar/front.svg",
  26752. extra: 2994 / 2795,
  26753. bottom: 56 / 3061
  26754. }
  26755. },
  26756. back: {
  26757. height: math.unit(2.5, "meters"),
  26758. weight: math.unit(200, "kg"),
  26759. name: "Back",
  26760. image: {
  26761. source: "./media/characters/vidar/back.svg",
  26762. extra: 3131 / 2928,
  26763. bottom: 13.5 / 3141.5
  26764. }
  26765. },
  26766. feral: {
  26767. height: math.unit(2.5, "meters"),
  26768. weight: math.unit(2000, "kg"),
  26769. name: "Feral",
  26770. image: {
  26771. source: "./media/characters/vidar/feral.svg",
  26772. extra: 2790 / 1765,
  26773. bottom: 6 / 2796
  26774. }
  26775. },
  26776. },
  26777. [
  26778. {
  26779. name: "Normal",
  26780. height: math.unit(2.5, "meters"),
  26781. default: true
  26782. },
  26783. {
  26784. name: "Macro",
  26785. height: math.unit(100, "meters")
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26791. {
  26792. front: {
  26793. height: math.unit(5 + 9 / 12, "feet"),
  26794. weight: math.unit(120, "lb"),
  26795. name: "Front",
  26796. image: {
  26797. source: "./media/characters/ash/front.svg",
  26798. extra: 2189 / 1961,
  26799. bottom: 5.2 / 2194
  26800. }
  26801. },
  26802. },
  26803. [
  26804. {
  26805. name: "Normal",
  26806. height: math.unit(5 + 9 / 12, "feet"),
  26807. default: true
  26808. },
  26809. ]
  26810. ))
  26811. characterMakers.push(() => makeCharacter(
  26812. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26813. {
  26814. front: {
  26815. height: math.unit(9, "feet"),
  26816. weight: math.unit(10000, "lb"),
  26817. name: "Front",
  26818. image: {
  26819. source: "./media/characters/gygabite/front.svg",
  26820. bottom: 31.7 / 537.8,
  26821. extra: 505 / 370
  26822. }
  26823. },
  26824. },
  26825. [
  26826. {
  26827. name: "Normal",
  26828. height: math.unit(9, "feet"),
  26829. default: true
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(12, "feet"),
  26838. weight: math.unit(35000, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/p0tat0/front.svg",
  26842. extra: 1065 / 921,
  26843. bottom: 55.7 / 1121.25
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(12, "feet"),
  26851. default: true
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26857. {
  26858. side: {
  26859. height: math.unit(6.5, "feet"),
  26860. weight: math.unit(800, "lb"),
  26861. name: "Side",
  26862. image: {
  26863. source: "./media/characters/dusk/side.svg",
  26864. extra: 615 / 373,
  26865. bottom: 53 / 664
  26866. }
  26867. },
  26868. sitting: {
  26869. height: math.unit(7, "feet"),
  26870. weight: math.unit(800, "lb"),
  26871. name: "Sitting",
  26872. image: {
  26873. source: "./media/characters/dusk/sitting.svg",
  26874. extra: 753 / 425,
  26875. bottom: 33 / 774
  26876. }
  26877. },
  26878. head: {
  26879. height: math.unit(6.1, "feet"),
  26880. name: "Head",
  26881. image: {
  26882. source: "./media/characters/dusk/head.svg"
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Normal",
  26889. height: math.unit(7, "feet"),
  26890. default: true
  26891. },
  26892. ]
  26893. ))
  26894. characterMakers.push(() => makeCharacter(
  26895. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26896. {
  26897. front: {
  26898. height: math.unit(15, "feet"),
  26899. weight: math.unit(7000, "lb"),
  26900. name: "Front",
  26901. image: {
  26902. source: "./media/characters/jay-direwolf/front.svg",
  26903. extra: 1810 / 1732,
  26904. bottom: 66 / 1892
  26905. }
  26906. },
  26907. },
  26908. [
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(15, "feet"),
  26912. default: true
  26913. },
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26918. {
  26919. front: {
  26920. height: math.unit(4 + 9 / 12, "feet"),
  26921. weight: math.unit(130, "lb"),
  26922. name: "Front",
  26923. image: {
  26924. source: "./media/characters/anchovie/front.svg",
  26925. extra: 382 / 350,
  26926. bottom: 25 / 409
  26927. }
  26928. },
  26929. back: {
  26930. height: math.unit(4 + 9 / 12, "feet"),
  26931. weight: math.unit(130, "lb"),
  26932. name: "Back",
  26933. image: {
  26934. source: "./media/characters/anchovie/back.svg",
  26935. extra: 385 / 352,
  26936. bottom: 16.6 / 402
  26937. }
  26938. },
  26939. frontDressed: {
  26940. height: math.unit(4 + 9 / 12, "feet"),
  26941. weight: math.unit(130, "lb"),
  26942. name: "Front (Dressed)",
  26943. image: {
  26944. source: "./media/characters/anchovie/front-dressed.svg",
  26945. extra: 382 / 350,
  26946. bottom: 25 / 409
  26947. }
  26948. },
  26949. backDressed: {
  26950. height: math.unit(4 + 9 / 12, "feet"),
  26951. weight: math.unit(130, "lb"),
  26952. name: "Back (Dressed)",
  26953. image: {
  26954. source: "./media/characters/anchovie/back-dressed.svg",
  26955. extra: 385 / 352,
  26956. bottom: 16.6 / 402
  26957. }
  26958. },
  26959. },
  26960. [
  26961. {
  26962. name: "Micro",
  26963. height: math.unit(6.4, "inches")
  26964. },
  26965. {
  26966. name: "Normal",
  26967. height: math.unit(4 + 9 / 12, "feet"),
  26968. default: true
  26969. },
  26970. ]
  26971. ))
  26972. characterMakers.push(() => makeCharacter(
  26973. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26974. {
  26975. front: {
  26976. height: math.unit(2, "meters"),
  26977. weight: math.unit(180, "lb"),
  26978. name: "Front",
  26979. image: {
  26980. source: "./media/characters/acidrenamon/front.svg",
  26981. extra: 987 / 890,
  26982. bottom: 22.8 / 1009
  26983. }
  26984. },
  26985. back: {
  26986. height: math.unit(2, "meters"),
  26987. weight: math.unit(180, "lb"),
  26988. name: "Back",
  26989. image: {
  26990. source: "./media/characters/acidrenamon/back.svg",
  26991. extra: 983 / 891,
  26992. bottom: 8.4 / 992
  26993. }
  26994. },
  26995. head: {
  26996. height: math.unit(1.92, "feet"),
  26997. name: "Head",
  26998. image: {
  26999. source: "./media/characters/acidrenamon/head.svg"
  27000. }
  27001. },
  27002. rump: {
  27003. height: math.unit(1.72, "feet"),
  27004. name: "Rump",
  27005. image: {
  27006. source: "./media/characters/acidrenamon/rump.svg"
  27007. }
  27008. },
  27009. tail: {
  27010. height: math.unit(4.2, "feet"),
  27011. name: "Tail",
  27012. image: {
  27013. source: "./media/characters/acidrenamon/tail.svg"
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Normal",
  27020. height: math.unit(2, "meters"),
  27021. default: true
  27022. },
  27023. {
  27024. name: "Minimacro",
  27025. height: math.unit(7, "meters")
  27026. },
  27027. {
  27028. name: "Macro",
  27029. height: math.unit(200, "meters")
  27030. },
  27031. {
  27032. name: "Gigamacro",
  27033. height: math.unit(0.2, "earths")
  27034. },
  27035. ]
  27036. ))
  27037. characterMakers.push(() => makeCharacter(
  27038. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27039. {
  27040. front: {
  27041. height: math.unit(6, "feet"),
  27042. weight: math.unit(150, "lb"),
  27043. name: "Front",
  27044. image: {
  27045. source: "./media/characters/kenzie-lee/front.svg",
  27046. extra: 1525 / 1465,
  27047. bottom: 45 / 1570
  27048. }
  27049. },
  27050. side: {
  27051. height: math.unit(6, "feet"),
  27052. weight: math.unit(150, "lb"),
  27053. name: "Side",
  27054. image: {
  27055. source: "./media/characters/kenzie-lee/side.svg",
  27056. extra: 5505 / 5383,
  27057. bottom: 60 / 5573
  27058. }
  27059. },
  27060. paw: {
  27061. height: math.unit(0.57, "feet"),
  27062. name: "Paw",
  27063. image: {
  27064. source: "./media/characters/kenzie-lee/paw.svg"
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Normal",
  27071. height: math.unit(152, "feet"),
  27072. default: true
  27073. },
  27074. {
  27075. name: "Megamacro",
  27076. height: math.unit(7, "miles")
  27077. },
  27078. {
  27079. name: "Gigamacro",
  27080. height: math.unit(8000, "miles")
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27086. {
  27087. side: {
  27088. height: math.unit(6, "feet"),
  27089. weight: math.unit(150, "lb"),
  27090. name: "Side",
  27091. image: {
  27092. source: "./media/characters/withers/side.svg",
  27093. extra: 1830 / 1728,
  27094. bottom: 96 / 1927
  27095. }
  27096. },
  27097. front: {
  27098. height: math.unit(6, "feet"),
  27099. weight: math.unit(150, "lb"),
  27100. name: "Front",
  27101. image: {
  27102. source: "./media/characters/withers/front.svg",
  27103. extra: 1514 / 1438,
  27104. bottom: 118 / 1632
  27105. }
  27106. },
  27107. },
  27108. [
  27109. {
  27110. name: "Macro",
  27111. height: math.unit(168, "feet"),
  27112. default: true
  27113. },
  27114. {
  27115. name: "Megamacro",
  27116. height: math.unit(15, "miles")
  27117. }
  27118. ]
  27119. ))
  27120. characterMakers.push(() => makeCharacter(
  27121. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27122. {
  27123. front: {
  27124. height: math.unit(6 + 7 / 12, "feet"),
  27125. weight: math.unit(250, "lb"),
  27126. name: "Front",
  27127. image: {
  27128. source: "./media/characters/nemoskii/front.svg",
  27129. extra: 2270 / 1734,
  27130. bottom: 86 / 2354
  27131. }
  27132. },
  27133. back: {
  27134. height: math.unit(6 + 7 / 12, "feet"),
  27135. weight: math.unit(250, "lb"),
  27136. name: "Back",
  27137. image: {
  27138. source: "./media/characters/nemoskii/back.svg",
  27139. extra: 1845 / 1788,
  27140. bottom: 10.5 / 1852
  27141. }
  27142. },
  27143. head: {
  27144. height: math.unit(1.31, "feet"),
  27145. name: "Head",
  27146. image: {
  27147. source: "./media/characters/nemoskii/head.svg"
  27148. }
  27149. },
  27150. },
  27151. [
  27152. {
  27153. name: "Micro",
  27154. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27155. },
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(6 + 7 / 12, "feet"),
  27159. default: true
  27160. },
  27161. {
  27162. name: "Macro",
  27163. height: math.unit((6 + 7 / 12) * 150, "feet")
  27164. },
  27165. {
  27166. name: "Macro+",
  27167. height: math.unit((6 + 7 / 12) * 500, "feet")
  27168. },
  27169. {
  27170. name: "Megamacro",
  27171. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27177. {
  27178. front: {
  27179. height: math.unit(1, "mile"),
  27180. weight: math.unit(265261.9, "lb"),
  27181. name: "Front",
  27182. image: {
  27183. source: "./media/characters/shui/front.svg",
  27184. extra: 1633 / 1564,
  27185. bottom: 91.5 / 1726
  27186. }
  27187. },
  27188. },
  27189. [
  27190. {
  27191. name: "Macro",
  27192. height: math.unit(1, "mile"),
  27193. default: true
  27194. },
  27195. ]
  27196. ))
  27197. characterMakers.push(() => makeCharacter(
  27198. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27199. {
  27200. front: {
  27201. height: math.unit(12 + 6 / 12, "feet"),
  27202. weight: math.unit(1342, "lb"),
  27203. name: "Front",
  27204. image: {
  27205. source: "./media/characters/arokh-takakura/front.svg",
  27206. extra: 1089 / 1043,
  27207. bottom: 77.4 / 1176.7
  27208. }
  27209. },
  27210. back: {
  27211. height: math.unit(12 + 6 / 12, "feet"),
  27212. weight: math.unit(1342, "lb"),
  27213. name: "Back",
  27214. image: {
  27215. source: "./media/characters/arokh-takakura/back.svg",
  27216. extra: 1046 / 1019,
  27217. bottom: 102 / 1150
  27218. }
  27219. },
  27220. },
  27221. [
  27222. {
  27223. name: "Big",
  27224. height: math.unit(12 + 6 / 12, "feet"),
  27225. default: true
  27226. },
  27227. ]
  27228. ))
  27229. characterMakers.push(() => makeCharacter(
  27230. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27231. {
  27232. front: {
  27233. height: math.unit(5 + 6 / 12, "feet"),
  27234. weight: math.unit(150, "lb"),
  27235. name: "Front",
  27236. image: {
  27237. source: "./media/characters/theo/front.svg",
  27238. extra: 1184 / 1131,
  27239. bottom: 7.4 / 1191
  27240. }
  27241. },
  27242. },
  27243. [
  27244. {
  27245. name: "Micro",
  27246. height: math.unit(5, "inches")
  27247. },
  27248. {
  27249. name: "Normal",
  27250. height: math.unit(5 + 6 / 12, "feet"),
  27251. default: true
  27252. },
  27253. ]
  27254. ))
  27255. characterMakers.push(() => makeCharacter(
  27256. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27257. {
  27258. front: {
  27259. height: math.unit(5 + 9 / 12, "feet"),
  27260. weight: math.unit(130, "lb"),
  27261. name: "Front",
  27262. image: {
  27263. source: "./media/characters/cecelia-swift/front.svg",
  27264. extra: 502 / 484,
  27265. bottom: 23 / 523
  27266. }
  27267. },
  27268. back: {
  27269. height: math.unit(5 + 9 / 12, "feet"),
  27270. weight: math.unit(130, "lb"),
  27271. name: "Back",
  27272. image: {
  27273. source: "./media/characters/cecelia-swift/back.svg",
  27274. extra: 499 / 485,
  27275. bottom: 12 / 511
  27276. }
  27277. },
  27278. head: {
  27279. height: math.unit(0.90, "feet"),
  27280. name: "Head",
  27281. image: {
  27282. source: "./media/characters/cecelia-swift/head.svg"
  27283. }
  27284. },
  27285. rump: {
  27286. height: math.unit(1.75, "feet"),
  27287. name: "Rump",
  27288. image: {
  27289. source: "./media/characters/cecelia-swift/rump.svg"
  27290. }
  27291. },
  27292. },
  27293. [
  27294. {
  27295. name: "Normal",
  27296. height: math.unit(5 + 9 / 12, "feet"),
  27297. default: true
  27298. },
  27299. {
  27300. name: "Big",
  27301. height: math.unit(50, "feet")
  27302. },
  27303. {
  27304. name: "Macro",
  27305. height: math.unit(100, "feet")
  27306. },
  27307. {
  27308. name: "Macro+",
  27309. height: math.unit(500, "feet")
  27310. },
  27311. {
  27312. name: "Macro++",
  27313. height: math.unit(1000, "feet")
  27314. },
  27315. ]
  27316. ))
  27317. characterMakers.push(() => makeCharacter(
  27318. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27319. {
  27320. front: {
  27321. height: math.unit(6, "feet"),
  27322. weight: math.unit(150, "lb"),
  27323. name: "Front",
  27324. image: {
  27325. source: "./media/characters/kaunan/front.svg",
  27326. extra: 2890 / 2523,
  27327. bottom: 49 / 2939
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Macro",
  27334. height: math.unit(150, "feet"),
  27335. default: true
  27336. },
  27337. ]
  27338. ))
  27339. characterMakers.push(() => makeCharacter(
  27340. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27341. {
  27342. front: {
  27343. height: math.unit(175, "cm"),
  27344. weight: math.unit(60, "kg"),
  27345. name: "Front",
  27346. image: {
  27347. source: "./media/characters/fei/front.svg",
  27348. extra: 1873/1723,
  27349. bottom: 53/1926
  27350. }
  27351. },
  27352. },
  27353. [
  27354. {
  27355. name: "Mortal",
  27356. height: math.unit(175, "cm")
  27357. },
  27358. {
  27359. name: "Normal",
  27360. height: math.unit(3500, "m"),
  27361. default: true
  27362. },
  27363. {
  27364. name: "Stroll",
  27365. height: math.unit(17.5, "km")
  27366. },
  27367. {
  27368. name: "Showoff",
  27369. height: math.unit(175, "km")
  27370. },
  27371. ]
  27372. ))
  27373. characterMakers.push(() => makeCharacter(
  27374. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27375. {
  27376. front: {
  27377. height: math.unit(7, "feet"),
  27378. weight: math.unit(1000, "kg"),
  27379. name: "Front",
  27380. image: {
  27381. source: "./media/characters/edrax/front.svg",
  27382. extra: 2838 / 2550,
  27383. bottom: 130 / 2968
  27384. }
  27385. },
  27386. },
  27387. [
  27388. {
  27389. name: "Small",
  27390. height: math.unit(7, "feet")
  27391. },
  27392. {
  27393. name: "Normal",
  27394. height: math.unit(1500, "meters")
  27395. },
  27396. {
  27397. name: "Mega",
  27398. height: math.unit(12000000, "km"),
  27399. default: true
  27400. },
  27401. {
  27402. name: "Megamacro",
  27403. height: math.unit(10600000, "lightyears")
  27404. },
  27405. {
  27406. name: "Hypermacro",
  27407. height: math.unit(256, "yottameters")
  27408. },
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27413. {
  27414. front: {
  27415. height: math.unit(10, "feet"),
  27416. weight: math.unit(750, "lb"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/clove/front.svg",
  27420. extra: 2031 / 1860,
  27421. bottom: 47.8 / 2080
  27422. }
  27423. },
  27424. back: {
  27425. height: math.unit(10, "feet"),
  27426. weight: math.unit(750, "lb"),
  27427. name: "Back",
  27428. image: {
  27429. source: "./media/characters/clove/back.svg",
  27430. extra: 2025 / 1859,
  27431. bottom: 46 / 2071
  27432. }
  27433. },
  27434. },
  27435. [
  27436. {
  27437. name: "Normal",
  27438. height: math.unit(10, "feet"),
  27439. default: true
  27440. },
  27441. ]
  27442. ))
  27443. characterMakers.push(() => makeCharacter(
  27444. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27445. {
  27446. front: {
  27447. height: math.unit(4, "feet"),
  27448. weight: math.unit(50, "lb"),
  27449. name: "Front",
  27450. image: {
  27451. source: "./media/characters/alex-rabbit/front.svg",
  27452. extra: 507 / 458,
  27453. bottom: 18.5 / 527
  27454. }
  27455. },
  27456. back: {
  27457. height: math.unit(4, "feet"),
  27458. weight: math.unit(50, "lb"),
  27459. name: "Back",
  27460. image: {
  27461. source: "./media/characters/alex-rabbit/back.svg",
  27462. extra: 502 / 460,
  27463. bottom: 18.9 / 521
  27464. }
  27465. },
  27466. },
  27467. [
  27468. {
  27469. name: "Normal",
  27470. height: math.unit(4, "feet"),
  27471. default: true
  27472. },
  27473. ]
  27474. ))
  27475. characterMakers.push(() => makeCharacter(
  27476. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27477. {
  27478. front: {
  27479. height: math.unit(1 + 3 / 12, "feet"),
  27480. weight: math.unit(80, "lb"),
  27481. name: "Front",
  27482. image: {
  27483. source: "./media/characters/zander-rose/front.svg",
  27484. extra: 916 / 797,
  27485. bottom: 17 / 933
  27486. }
  27487. },
  27488. back: {
  27489. height: math.unit(1 + 3 / 12, "feet"),
  27490. weight: math.unit(80, "lb"),
  27491. name: "Back",
  27492. image: {
  27493. source: "./media/characters/zander-rose/back.svg",
  27494. extra: 903 / 779,
  27495. bottom: 31 / 934
  27496. }
  27497. },
  27498. },
  27499. [
  27500. {
  27501. name: "Normal",
  27502. height: math.unit(1 + 3 / 12, "feet"),
  27503. default: true
  27504. },
  27505. ]
  27506. ))
  27507. characterMakers.push(() => makeCharacter(
  27508. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27509. {
  27510. anthro: {
  27511. height: math.unit(6, "feet"),
  27512. weight: math.unit(150, "lb"),
  27513. name: "Anthro",
  27514. image: {
  27515. source: "./media/characters/razz/anthro.svg",
  27516. extra: 1437 / 1343,
  27517. bottom: 48 / 1485
  27518. }
  27519. },
  27520. feral: {
  27521. height: math.unit(6, "feet"),
  27522. weight: math.unit(150, "lb"),
  27523. name: "Feral",
  27524. image: {
  27525. source: "./media/characters/razz/feral.svg",
  27526. extra: 2569 / 1385,
  27527. bottom: 95 / 2664
  27528. }
  27529. },
  27530. },
  27531. [
  27532. {
  27533. name: "Normal",
  27534. height: math.unit(6, "feet"),
  27535. default: true
  27536. },
  27537. ]
  27538. ))
  27539. characterMakers.push(() => makeCharacter(
  27540. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27541. {
  27542. front: {
  27543. height: math.unit(9 + 4 / 12, "feet"),
  27544. weight: math.unit(500, "lb"),
  27545. name: "Front",
  27546. image: {
  27547. source: "./media/characters/morrigan/front.svg",
  27548. extra: 2707 / 2579,
  27549. bottom: 156 / 2863
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(9 + 4 / 12, "feet"),
  27557. default: true
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27563. {
  27564. front: {
  27565. height: math.unit(5, "stories"),
  27566. weight: math.unit(4000, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/jenene/front.svg",
  27570. extra: 1780 / 1710,
  27571. bottom: 57 / 1837
  27572. }
  27573. },
  27574. },
  27575. [
  27576. {
  27577. name: "Normal",
  27578. height: math.unit(5, "stories"),
  27579. default: true
  27580. },
  27581. ]
  27582. ))
  27583. characterMakers.push(() => makeCharacter(
  27584. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27585. {
  27586. front: {
  27587. height: math.unit(6, "feet"),
  27588. weight: math.unit(150, "lb"),
  27589. name: "Front",
  27590. image: {
  27591. source: "./media/characters/vix-archaser/front.svg",
  27592. extra: 2767 / 2562,
  27593. bottom: 36 / 2803
  27594. }
  27595. },
  27596. },
  27597. [
  27598. {
  27599. name: "Micro",
  27600. height: math.unit(1, "foot")
  27601. },
  27602. {
  27603. name: "Normal",
  27604. height: math.unit(6 + 5 / 12, "feet")
  27605. },
  27606. {
  27607. name: "Minimacro",
  27608. height: math.unit(500, "feet")
  27609. },
  27610. {
  27611. name: "Macro",
  27612. height: math.unit(4, "miles")
  27613. },
  27614. {
  27615. name: "Megamacro",
  27616. height: math.unit(250, "miles"),
  27617. default: true
  27618. },
  27619. {
  27620. name: "Gigamacro",
  27621. height: math.unit(1, "universe")
  27622. },
  27623. {
  27624. name: "Endgame",
  27625. height: math.unit(100, "multiverses")
  27626. }
  27627. ]
  27628. ))
  27629. characterMakers.push(() => makeCharacter(
  27630. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27631. {
  27632. taurSfw: {
  27633. height: math.unit(10, "meters"),
  27634. weight: math.unit(17500, "kg"),
  27635. name: "Taur",
  27636. image: {
  27637. source: "./media/characters/faey/taur-sfw.svg",
  27638. extra: 1200 / 968,
  27639. bottom: 41 / 1241
  27640. }
  27641. },
  27642. chestmaw: {
  27643. height: math.unit(2.01, "meters"),
  27644. name: "Chestmaw",
  27645. image: {
  27646. source: "./media/characters/faey/chestmaw.svg"
  27647. }
  27648. },
  27649. foot: {
  27650. height: math.unit(2.43, "meters"),
  27651. name: "Foot",
  27652. image: {
  27653. source: "./media/characters/faey/foot.svg"
  27654. }
  27655. },
  27656. jaws: {
  27657. height: math.unit(1.66, "meters"),
  27658. name: "Jaws",
  27659. image: {
  27660. source: "./media/characters/faey/jaws.svg"
  27661. }
  27662. },
  27663. tongues: {
  27664. height: math.unit(2.01, "meters"),
  27665. name: "Tongues",
  27666. image: {
  27667. source: "./media/characters/faey/tongues.svg"
  27668. }
  27669. },
  27670. },
  27671. [
  27672. {
  27673. name: "Small",
  27674. height: math.unit(10, "meters"),
  27675. default: true
  27676. },
  27677. {
  27678. name: "Big",
  27679. height: math.unit(500000, "km")
  27680. },
  27681. ]
  27682. ))
  27683. characterMakers.push(() => makeCharacter(
  27684. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27685. {
  27686. front: {
  27687. height: math.unit(7, "feet"),
  27688. weight: math.unit(275, "lb"),
  27689. name: "Front",
  27690. image: {
  27691. source: "./media/characters/roku/front.svg",
  27692. extra: 903 / 878,
  27693. bottom: 37 / 940
  27694. }
  27695. },
  27696. },
  27697. [
  27698. {
  27699. name: "Normal",
  27700. height: math.unit(7, "feet"),
  27701. default: true
  27702. },
  27703. {
  27704. name: "Macro",
  27705. height: math.unit(500, "feet")
  27706. },
  27707. {
  27708. name: "Megamacro",
  27709. height: math.unit(200, "miles")
  27710. },
  27711. ]
  27712. ))
  27713. characterMakers.push(() => makeCharacter(
  27714. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27715. {
  27716. front: {
  27717. height: math.unit(6 + 2 / 12, "feet"),
  27718. weight: math.unit(150, "lb"),
  27719. name: "Front",
  27720. image: {
  27721. source: "./media/characters/lira/front.svg",
  27722. extra: 1727 / 1605,
  27723. bottom: 26 / 1753
  27724. }
  27725. },
  27726. back: {
  27727. height: math.unit(6 + 2 / 12, "feet"),
  27728. weight: math.unit(150, "lb"),
  27729. name: "Back",
  27730. image: {
  27731. source: "./media/characters/lira/back.svg",
  27732. extra: 1713/1621,
  27733. bottom: 20/1733
  27734. }
  27735. },
  27736. hand: {
  27737. height: math.unit(0.75, "feet"),
  27738. name: "Hand",
  27739. image: {
  27740. source: "./media/characters/lira/hand.svg"
  27741. }
  27742. },
  27743. maw: {
  27744. height: math.unit(0.65, "feet"),
  27745. name: "Maw",
  27746. image: {
  27747. source: "./media/characters/lira/maw.svg"
  27748. }
  27749. },
  27750. pawDigi: {
  27751. height: math.unit(1.6, "feet"),
  27752. name: "Paw Digi",
  27753. image: {
  27754. source: "./media/characters/lira/paw-digi.svg"
  27755. }
  27756. },
  27757. pawPlanti: {
  27758. height: math.unit(1.4, "feet"),
  27759. name: "Paw Planti",
  27760. image: {
  27761. source: "./media/characters/lira/paw-planti.svg"
  27762. }
  27763. },
  27764. },
  27765. [
  27766. {
  27767. name: "Normal",
  27768. height: math.unit(6 + 2 / 12, "feet"),
  27769. default: true
  27770. },
  27771. {
  27772. name: "Macro",
  27773. height: math.unit(100, "feet")
  27774. },
  27775. {
  27776. name: "Macro²",
  27777. height: math.unit(1600, "feet")
  27778. },
  27779. {
  27780. name: "Planetary",
  27781. height: math.unit(20, "earths")
  27782. },
  27783. ]
  27784. ))
  27785. characterMakers.push(() => makeCharacter(
  27786. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27787. {
  27788. front: {
  27789. height: math.unit(6, "feet"),
  27790. weight: math.unit(150, "lb"),
  27791. name: "Front",
  27792. image: {
  27793. source: "./media/characters/hadjet/front.svg",
  27794. extra: 1480 / 1346,
  27795. bottom: 26 / 1506
  27796. }
  27797. },
  27798. frontNsfw: {
  27799. height: math.unit(6, "feet"),
  27800. weight: math.unit(150, "lb"),
  27801. name: "Front (NSFW)",
  27802. image: {
  27803. source: "./media/characters/hadjet/front-nsfw.svg",
  27804. extra: 1440 / 1358,
  27805. bottom: 52 / 1492
  27806. }
  27807. },
  27808. },
  27809. [
  27810. {
  27811. name: "Macro",
  27812. height: math.unit(10, "stories"),
  27813. default: true
  27814. },
  27815. {
  27816. name: "Megamacro",
  27817. height: math.unit(1.5, "miles")
  27818. },
  27819. {
  27820. name: "Megamacro+",
  27821. height: math.unit(5, "miles")
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27827. {
  27828. side: {
  27829. height: math.unit(106, "feet"),
  27830. weight: math.unit(500, "tonnes"),
  27831. name: "Side",
  27832. image: {
  27833. source: "./media/characters/kodran/side.svg",
  27834. extra: 553 / 480,
  27835. bottom: 33 / 586
  27836. }
  27837. },
  27838. front: {
  27839. height: math.unit(132, "feet"),
  27840. weight: math.unit(500, "tonnes"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/kodran/front.svg",
  27844. extra: 667 / 643,
  27845. bottom: 42 / 709
  27846. }
  27847. },
  27848. flying: {
  27849. height: math.unit(350, "feet"),
  27850. weight: math.unit(500, "tonnes"),
  27851. name: "Flying",
  27852. image: {
  27853. source: "./media/characters/kodran/flying.svg"
  27854. }
  27855. },
  27856. foot: {
  27857. height: math.unit(33, "feet"),
  27858. name: "Foot",
  27859. image: {
  27860. source: "./media/characters/kodran/foot.svg"
  27861. }
  27862. },
  27863. footFront: {
  27864. height: math.unit(19, "feet"),
  27865. name: "Foot (Front)",
  27866. image: {
  27867. source: "./media/characters/kodran/foot-front.svg",
  27868. extra: 261 / 261,
  27869. bottom: 91 / 352
  27870. }
  27871. },
  27872. headFront: {
  27873. height: math.unit(53, "feet"),
  27874. name: "Head (Front)",
  27875. image: {
  27876. source: "./media/characters/kodran/head-front.svg"
  27877. }
  27878. },
  27879. headSide: {
  27880. height: math.unit(65, "feet"),
  27881. name: "Head (Side)",
  27882. image: {
  27883. source: "./media/characters/kodran/head-side.svg"
  27884. }
  27885. },
  27886. throat: {
  27887. height: math.unit(79, "feet"),
  27888. name: "Throat",
  27889. image: {
  27890. source: "./media/characters/kodran/throat.svg"
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Large",
  27897. height: math.unit(106, "feet"),
  27898. default: true
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27904. {
  27905. side: {
  27906. height: math.unit(11, "feet"),
  27907. weight: math.unit(150, "lb"),
  27908. name: "Side",
  27909. image: {
  27910. source: "./media/characters/pyxaron/side.svg",
  27911. extra: 305 / 195,
  27912. bottom: 17 / 322
  27913. }
  27914. },
  27915. },
  27916. [
  27917. {
  27918. name: "Normal",
  27919. height: math.unit(11, "feet"),
  27920. default: true
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(6, "feet"),
  27929. weight: math.unit(150, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/meep/front.svg",
  27933. extra: 88 / 80,
  27934. bottom: 6 / 94
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Fun Sized",
  27941. height: math.unit(2, "inches"),
  27942. default: true
  27943. },
  27944. {
  27945. name: "Friend Sized",
  27946. height: math.unit(8, "inches")
  27947. },
  27948. ]
  27949. ))
  27950. characterMakers.push(() => makeCharacter(
  27951. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27952. {
  27953. front: {
  27954. height: math.unit(15, "feet"),
  27955. weight: math.unit(2500, "lb"),
  27956. name: "Front",
  27957. image: {
  27958. source: "./media/characters/holly-rabbit/front.svg",
  27959. extra: 1433 / 1233,
  27960. bottom: 125 / 1558
  27961. }
  27962. },
  27963. dick: {
  27964. height: math.unit(4.6, "feet"),
  27965. name: "Dick",
  27966. image: {
  27967. source: "./media/characters/holly-rabbit/dick.svg"
  27968. }
  27969. },
  27970. },
  27971. [
  27972. {
  27973. name: "Normal",
  27974. height: math.unit(15, "feet"),
  27975. default: true
  27976. },
  27977. {
  27978. name: "Macro",
  27979. height: math.unit(250, "feet")
  27980. },
  27981. {
  27982. name: "Macro+",
  27983. height: math.unit(2500, "feet")
  27984. },
  27985. ]
  27986. ))
  27987. characterMakers.push(() => makeCharacter(
  27988. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27989. {
  27990. front: {
  27991. height: math.unit(3.02, "meters"),
  27992. weight: math.unit(500, "kg"),
  27993. name: "Front",
  27994. image: {
  27995. source: "./media/characters/drena/front.svg",
  27996. extra: 282 / 243,
  27997. bottom: 8 / 290
  27998. }
  27999. },
  28000. side: {
  28001. height: math.unit(3.02, "meters"),
  28002. weight: math.unit(500, "kg"),
  28003. name: "Side",
  28004. image: {
  28005. source: "./media/characters/drena/side.svg",
  28006. extra: 280 / 245,
  28007. bottom: 10 / 290
  28008. }
  28009. },
  28010. back: {
  28011. height: math.unit(3.02, "meters"),
  28012. weight: math.unit(500, "kg"),
  28013. name: "Back",
  28014. image: {
  28015. source: "./media/characters/drena/back.svg",
  28016. extra: 278 / 243,
  28017. bottom: 2 / 280
  28018. }
  28019. },
  28020. foot: {
  28021. height: math.unit(0.75, "meters"),
  28022. name: "Foot",
  28023. image: {
  28024. source: "./media/characters/drena/foot.svg"
  28025. }
  28026. },
  28027. maw: {
  28028. height: math.unit(0.82, "meters"),
  28029. name: "Maw",
  28030. image: {
  28031. source: "./media/characters/drena/maw.svg"
  28032. }
  28033. },
  28034. rump: {
  28035. height: math.unit(0.93, "meters"),
  28036. name: "Rump",
  28037. image: {
  28038. source: "./media/characters/drena/rump.svg"
  28039. }
  28040. },
  28041. },
  28042. [
  28043. {
  28044. name: "Normal",
  28045. height: math.unit(3.02, "meters"),
  28046. default: true
  28047. },
  28048. ]
  28049. ))
  28050. characterMakers.push(() => makeCharacter(
  28051. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28052. {
  28053. front: {
  28054. height: math.unit(6 + 4 / 12, "feet"),
  28055. weight: math.unit(250, "lb"),
  28056. name: "Front",
  28057. image: {
  28058. source: "./media/characters/remmyzilla/front.svg",
  28059. extra: 4033 / 3588,
  28060. bottom: 123 / 4156
  28061. }
  28062. },
  28063. back: {
  28064. height: math.unit(6 + 4 / 12, "feet"),
  28065. weight: math.unit(250, "lb"),
  28066. name: "Back",
  28067. image: {
  28068. source: "./media/characters/remmyzilla/back.svg",
  28069. extra: 2687 / 2555,
  28070. bottom: 48 / 2735
  28071. }
  28072. },
  28073. frontFancy: {
  28074. height: math.unit(6 + 4 / 12, "feet"),
  28075. weight: math.unit(250, "lb"),
  28076. name: "Front (Fancy)",
  28077. image: {
  28078. source: "./media/characters/remmyzilla/front-fancy.svg",
  28079. extra: 4119 / 3419,
  28080. bottom: 237 / 4356
  28081. }
  28082. },
  28083. paw: {
  28084. height: math.unit(1.73, "feet"),
  28085. name: "Paw",
  28086. image: {
  28087. source: "./media/characters/remmyzilla/paw.svg"
  28088. }
  28089. },
  28090. maw: {
  28091. height: math.unit(1.73, "feet"),
  28092. name: "Maw",
  28093. image: {
  28094. source: "./media/characters/remmyzilla/maw.svg"
  28095. }
  28096. },
  28097. },
  28098. [
  28099. {
  28100. name: "Normal",
  28101. height: math.unit(6 + 4 / 12, "feet")
  28102. },
  28103. {
  28104. name: "Minimacro",
  28105. height: math.unit(12 + 8 / 12, "feet")
  28106. },
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(640, "feet"),
  28110. default: true
  28111. },
  28112. {
  28113. name: "Megamacro",
  28114. height: math.unit(6400, "feet")
  28115. },
  28116. {
  28117. name: "Gigamacro",
  28118. height: math.unit(64000, "miles")
  28119. },
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28124. {
  28125. front: {
  28126. height: math.unit(2.5, "meters"),
  28127. weight: math.unit(300, "lb"),
  28128. name: "Front",
  28129. image: {
  28130. source: "./media/characters/lawrence/front.svg",
  28131. extra: 357 / 335,
  28132. bottom: 30 / 387
  28133. }
  28134. },
  28135. back: {
  28136. height: math.unit(2.5, "meters"),
  28137. weight: math.unit(300, "lb"),
  28138. name: "Back",
  28139. image: {
  28140. source: "./media/characters/lawrence/back.svg",
  28141. extra: 357 / 338,
  28142. bottom: 16 / 373
  28143. }
  28144. },
  28145. head: {
  28146. height: math.unit(0.9, "meter"),
  28147. name: "Head",
  28148. image: {
  28149. source: "./media/characters/lawrence/head.svg"
  28150. }
  28151. },
  28152. maw: {
  28153. height: math.unit(0.7, "meter"),
  28154. name: "Maw",
  28155. image: {
  28156. source: "./media/characters/lawrence/maw.svg"
  28157. }
  28158. },
  28159. footBottom: {
  28160. height: math.unit(0.5, "meter"),
  28161. name: "Foot (Bottom)",
  28162. image: {
  28163. source: "./media/characters/lawrence/foot-bottom.svg"
  28164. }
  28165. },
  28166. footTop: {
  28167. height: math.unit(0.5, "meter"),
  28168. name: "Foot (Top)",
  28169. image: {
  28170. source: "./media/characters/lawrence/foot-top.svg"
  28171. }
  28172. },
  28173. },
  28174. [
  28175. {
  28176. name: "Normal",
  28177. height: math.unit(2.5, "meters"),
  28178. default: true
  28179. },
  28180. {
  28181. name: "Macro",
  28182. height: math.unit(95, "meters")
  28183. },
  28184. {
  28185. name: "Megamacro",
  28186. height: math.unit(150, "km")
  28187. },
  28188. ]
  28189. ))
  28190. characterMakers.push(() => makeCharacter(
  28191. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28192. {
  28193. front: {
  28194. height: math.unit(4.2, "meters"),
  28195. name: "Front",
  28196. image: {
  28197. source: "./media/characters/sydney/front.svg",
  28198. extra: 1323 / 1277,
  28199. bottom: 111 / 1434
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(4.2, "meters"),
  28207. default: true
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28213. {
  28214. back: {
  28215. height: math.unit(201, "feet"),
  28216. name: "Back",
  28217. image: {
  28218. source: "./media/characters/jessica/back.svg",
  28219. extra: 273 / 259,
  28220. bottom: 7 / 280
  28221. }
  28222. },
  28223. },
  28224. [
  28225. {
  28226. name: "Normal",
  28227. height: math.unit(201, "feet"),
  28228. default: true
  28229. },
  28230. {
  28231. name: "Megamacro",
  28232. height: math.unit(8, "miles")
  28233. },
  28234. ]
  28235. ))
  28236. characterMakers.push(() => makeCharacter(
  28237. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28238. {
  28239. side: {
  28240. height: math.unit(320, "cm"),
  28241. name: "Side",
  28242. image: {
  28243. source: "./media/characters/victoria/side.svg",
  28244. extra: 778 / 346,
  28245. bottom: 56 / 834
  28246. }
  28247. },
  28248. maw: {
  28249. height: math.unit(5.9, "feet"),
  28250. name: "Maw",
  28251. image: {
  28252. source: "./media/characters/victoria/maw.svg"
  28253. }
  28254. },
  28255. },
  28256. [
  28257. {
  28258. name: "Normal",
  28259. height: math.unit(320, "cm"),
  28260. default: true
  28261. },
  28262. ]
  28263. ))
  28264. characterMakers.push(() => makeCharacter(
  28265. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28266. {
  28267. front: {
  28268. height: math.unit(5 + 6 / 12, "feet"),
  28269. name: "Front",
  28270. image: {
  28271. source: "./media/characters/cat/front.svg",
  28272. extra: 1374 / 1257,
  28273. bottom: 59 / 1433
  28274. }
  28275. },
  28276. back: {
  28277. height: math.unit(5 + 6 / 12, "feet"),
  28278. name: "Back",
  28279. image: {
  28280. source: "./media/characters/cat/back.svg",
  28281. extra: 1337 / 1226,
  28282. bottom: 34 / 1371
  28283. }
  28284. },
  28285. taur: {
  28286. height: math.unit(7, "feet"),
  28287. name: "Taur",
  28288. image: {
  28289. source: "./media/characters/cat/taur.svg",
  28290. extra: 1345 / 1231,
  28291. bottom: 66 / 1411
  28292. }
  28293. },
  28294. lucario: {
  28295. height: math.unit(4, "feet"),
  28296. name: "Lucario",
  28297. image: {
  28298. source: "./media/characters/cat/lucario.svg",
  28299. extra: 1470 / 1318,
  28300. bottom: 65 / 1535
  28301. }
  28302. },
  28303. megaLucario: {
  28304. height: math.unit(4, "feet"),
  28305. name: "Mega Lucario",
  28306. image: {
  28307. source: "./media/characters/cat/mega-lucario.svg",
  28308. extra: 1515 / 1319,
  28309. bottom: 63 / 1578
  28310. }
  28311. },
  28312. nickit: {
  28313. height: math.unit(2, "feet"),
  28314. name: "Nickit",
  28315. image: {
  28316. source: "./media/characters/cat/nickit.svg",
  28317. extra: 1980 / 1585,
  28318. bottom: 102 / 2082
  28319. }
  28320. },
  28321. lopunnyFront: {
  28322. height: math.unit(5, "feet"),
  28323. name: "Lopunny (Front)",
  28324. image: {
  28325. source: "./media/characters/cat/lopunny-front.svg",
  28326. extra: 1782 / 1469,
  28327. bottom: 38 / 1820
  28328. }
  28329. },
  28330. lopunnyBack: {
  28331. height: math.unit(5, "feet"),
  28332. name: "Lopunny (Back)",
  28333. image: {
  28334. source: "./media/characters/cat/lopunny-back.svg",
  28335. extra: 1660 / 1490,
  28336. bottom: 25 / 1685
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Really small",
  28343. height: math.unit(1, "nm")
  28344. },
  28345. {
  28346. name: "Micro",
  28347. height: math.unit(5, "inches")
  28348. },
  28349. {
  28350. name: "Normal",
  28351. height: math.unit(5 + 6 / 12, "feet"),
  28352. default: true
  28353. },
  28354. {
  28355. name: "Macro",
  28356. height: math.unit(50, "feet")
  28357. },
  28358. {
  28359. name: "Macro+",
  28360. height: math.unit(150, "feet")
  28361. },
  28362. {
  28363. name: "Megamacro",
  28364. height: math.unit(100, "miles")
  28365. },
  28366. ]
  28367. ))
  28368. characterMakers.push(() => makeCharacter(
  28369. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28370. {
  28371. front: {
  28372. height: math.unit(63.4, "meters"),
  28373. weight: math.unit(3.28349e+6, "kilograms"),
  28374. name: "Front",
  28375. image: {
  28376. source: "./media/characters/kirina-violet/front.svg",
  28377. extra: 2812 / 2725,
  28378. bottom: 0 / 2812
  28379. }
  28380. },
  28381. back: {
  28382. height: math.unit(63.4, "meters"),
  28383. weight: math.unit(3.28349e+6, "kilograms"),
  28384. name: "Back",
  28385. image: {
  28386. source: "./media/characters/kirina-violet/back.svg",
  28387. extra: 2812 / 2725,
  28388. bottom: 0 / 2812
  28389. }
  28390. },
  28391. mouth: {
  28392. height: math.unit(4.35, "meters"),
  28393. name: "Mouth",
  28394. image: {
  28395. source: "./media/characters/kirina-violet/mouth.svg"
  28396. }
  28397. },
  28398. paw: {
  28399. height: math.unit(5.6, "meters"),
  28400. name: "Paw",
  28401. image: {
  28402. source: "./media/characters/kirina-violet/paw.svg"
  28403. }
  28404. },
  28405. tail: {
  28406. height: math.unit(18, "meters"),
  28407. name: "Tail",
  28408. image: {
  28409. source: "./media/characters/kirina-violet/tail.svg"
  28410. }
  28411. },
  28412. },
  28413. [
  28414. {
  28415. name: "Macro",
  28416. height: math.unit(63.4, "meters"),
  28417. default: true
  28418. },
  28419. ]
  28420. ))
  28421. characterMakers.push(() => makeCharacter(
  28422. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28423. {
  28424. front: {
  28425. height: math.unit(75, "feet"),
  28426. name: "Front",
  28427. image: {
  28428. source: "./media/characters/cat-gigachu/front.svg",
  28429. extra: 1239/1027,
  28430. bottom: 32/1271
  28431. }
  28432. },
  28433. back: {
  28434. height: math.unit(75, "feet"),
  28435. name: "Back",
  28436. image: {
  28437. source: "./media/characters/cat-gigachu/back.svg",
  28438. extra: 1229/1030,
  28439. bottom: 9/1238
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Dynamax",
  28446. height: math.unit(75, "feet"),
  28447. default: true
  28448. },
  28449. ]
  28450. ))
  28451. characterMakers.push(() => makeCharacter(
  28452. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28453. {
  28454. front: {
  28455. height: math.unit(6, "feet"),
  28456. weight: math.unit(150, "lb"),
  28457. name: "Front",
  28458. image: {
  28459. source: "./media/characters/sfaiyan/front.svg",
  28460. extra: 999 / 978,
  28461. bottom: 5 / 1004
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Normal",
  28468. height: math.unit(1.82, "meters")
  28469. },
  28470. {
  28471. name: "Giant",
  28472. height: math.unit(2.27, "km"),
  28473. default: true
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(179, "cm"),
  28482. weight: math.unit(100, "kg"),
  28483. name: "Front",
  28484. image: {
  28485. source: "./media/characters/raunehkeli/front.svg",
  28486. extra: 1934 / 1926,
  28487. bottom: 0 / 1934
  28488. }
  28489. },
  28490. },
  28491. [
  28492. {
  28493. name: "Normal",
  28494. height: math.unit(179, "cm")
  28495. },
  28496. {
  28497. name: "Maximum",
  28498. height: math.unit(575, "meters"),
  28499. default: true
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28505. {
  28506. front: {
  28507. height: math.unit(6, "feet"),
  28508. weight: math.unit(150, "lb"),
  28509. name: "Front",
  28510. image: {
  28511. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28512. extra: 2625 / 2518,
  28513. bottom: 60 / 2685
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(6 + 2 / 12, "feet")
  28521. },
  28522. {
  28523. name: "Macro",
  28524. height: math.unit(1180, "feet"),
  28525. default: true
  28526. },
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28531. {
  28532. front: {
  28533. height: math.unit(5 + 6 / 12, "feet"),
  28534. weight: math.unit(108, "lb"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/lilith-zott/front.svg",
  28538. extra: 2510 / 2238,
  28539. bottom: 100 / 2610
  28540. }
  28541. },
  28542. frontDressed: {
  28543. height: math.unit(5 + 6 / 12, "feet"),
  28544. weight: math.unit(108, "lb"),
  28545. name: "Front (Dressed)",
  28546. image: {
  28547. source: "./media/characters/lilith-zott/front-dressed.svg",
  28548. extra: 2510 / 2238,
  28549. bottom: 100 / 2610
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Normal",
  28556. height: math.unit(5 + 6 / 12, "feet")
  28557. },
  28558. {
  28559. name: "Macro",
  28560. height: math.unit(1030, "feet"),
  28561. default: true
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28567. {
  28568. front: {
  28569. height: math.unit(6, "feet"),
  28570. weight: math.unit(150, "lb"),
  28571. name: "Front",
  28572. image: {
  28573. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28574. extra: 2567 / 2435,
  28575. bottom: 39 / 2606
  28576. }
  28577. },
  28578. frontSuper: {
  28579. height: math.unit(6, "feet"),
  28580. name: "Front (Super)",
  28581. image: {
  28582. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28583. extra: 2567 / 2435,
  28584. bottom: 39 / 2606
  28585. }
  28586. },
  28587. },
  28588. [
  28589. {
  28590. name: "Normal",
  28591. height: math.unit(5 + 10 / 12, "feet")
  28592. },
  28593. {
  28594. name: "Macro",
  28595. height: math.unit(1100, "feet"),
  28596. default: true
  28597. },
  28598. ]
  28599. ))
  28600. characterMakers.push(() => makeCharacter(
  28601. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28602. {
  28603. front: {
  28604. height: math.unit(100, "miles"),
  28605. name: "Front",
  28606. image: {
  28607. source: "./media/characters/sona/front.svg",
  28608. extra: 2433 / 2201,
  28609. bottom: 53 / 2486
  28610. }
  28611. },
  28612. foot: {
  28613. height: math.unit(16.1, "miles"),
  28614. name: "Foot",
  28615. image: {
  28616. source: "./media/characters/sona/foot.svg"
  28617. }
  28618. },
  28619. },
  28620. [
  28621. {
  28622. name: "Macro",
  28623. height: math.unit(100, "miles"),
  28624. default: true
  28625. },
  28626. ]
  28627. ))
  28628. characterMakers.push(() => makeCharacter(
  28629. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28630. {
  28631. front: {
  28632. height: math.unit(6, "feet"),
  28633. weight: math.unit(150, "lb"),
  28634. name: "Front",
  28635. image: {
  28636. source: "./media/characters/bailey/front.svg",
  28637. extra: 1778 / 1724,
  28638. bottom: 30 / 1808
  28639. }
  28640. },
  28641. },
  28642. [
  28643. {
  28644. name: "Micro",
  28645. height: math.unit(4, "inches")
  28646. },
  28647. {
  28648. name: "Normal",
  28649. height: math.unit(5 + 5 / 12, "feet"),
  28650. default: true
  28651. },
  28652. {
  28653. name: "Macro",
  28654. height: math.unit(250, "feet")
  28655. },
  28656. {
  28657. name: "Megamacro",
  28658. height: math.unit(100, "miles")
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28664. {
  28665. front: {
  28666. height: math.unit(5 + 2 / 12, "feet"),
  28667. weight: math.unit(120, "lb"),
  28668. name: "Front",
  28669. image: {
  28670. source: "./media/characters/snaps/front.svg",
  28671. extra: 2370 / 2177,
  28672. bottom: 48 / 2418
  28673. }
  28674. },
  28675. back: {
  28676. height: math.unit(5 + 2 / 12, "feet"),
  28677. weight: math.unit(120, "lb"),
  28678. name: "Back",
  28679. image: {
  28680. source: "./media/characters/snaps/back.svg",
  28681. extra: 2408 / 2258,
  28682. bottom: 15 / 2423
  28683. }
  28684. },
  28685. },
  28686. [
  28687. {
  28688. name: "Micro",
  28689. height: math.unit(9, "inches")
  28690. },
  28691. {
  28692. name: "Normal",
  28693. height: math.unit(5 + 2 / 12, "feet"),
  28694. default: true
  28695. },
  28696. {
  28697. name: "Mini Macro",
  28698. height: math.unit(10, "feet")
  28699. },
  28700. ]
  28701. ))
  28702. characterMakers.push(() => makeCharacter(
  28703. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28704. {
  28705. front: {
  28706. height: math.unit(1.8, "meters"),
  28707. weight: math.unit(85, "kg"),
  28708. name: "Front",
  28709. image: {
  28710. source: "./media/characters/azteck/front.svg",
  28711. extra: 2815 / 2625,
  28712. bottom: 89 / 2904
  28713. }
  28714. },
  28715. back: {
  28716. height: math.unit(1.8, "meters"),
  28717. weight: math.unit(85, "kg"),
  28718. name: "Back",
  28719. image: {
  28720. source: "./media/characters/azteck/back.svg",
  28721. extra: 2856 / 2648,
  28722. bottom: 85 / 2941
  28723. }
  28724. },
  28725. frontDressed: {
  28726. height: math.unit(1.8, "meters"),
  28727. weight: math.unit(85, "kg"),
  28728. name: "Front (Dressed)",
  28729. image: {
  28730. source: "./media/characters/azteck/front-dressed.svg",
  28731. extra: 2147 / 2003,
  28732. bottom: 68 / 2215
  28733. }
  28734. },
  28735. head: {
  28736. height: math.unit(0.47, "meters"),
  28737. weight: math.unit(85, "kg"),
  28738. name: "Head",
  28739. image: {
  28740. source: "./media/characters/azteck/head.svg"
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Bite sized",
  28747. height: math.unit(16, "cm")
  28748. },
  28749. {
  28750. name: "Normal",
  28751. height: math.unit(1.8, "meters"),
  28752. default: true
  28753. },
  28754. ]
  28755. ))
  28756. characterMakers.push(() => makeCharacter(
  28757. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28758. {
  28759. front: {
  28760. height: math.unit(6, "feet"),
  28761. weight: math.unit(150, "lb"),
  28762. name: "Front",
  28763. image: {
  28764. source: "./media/characters/pidge/front.svg",
  28765. extra: 620 / 588,
  28766. bottom: 9 / 629
  28767. }
  28768. },
  28769. back: {
  28770. height: math.unit(6, "feet"),
  28771. weight: math.unit(150, "lb"),
  28772. name: "Back",
  28773. image: {
  28774. source: "./media/characters/pidge/back.svg",
  28775. extra: 620 / 588,
  28776. bottom: 9 / 629
  28777. }
  28778. },
  28779. },
  28780. [
  28781. {
  28782. name: "Macro",
  28783. height: math.unit(1, "mile"),
  28784. default: true
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(6, "feet"),
  28793. weight: math.unit(150, "lb"),
  28794. name: "Front",
  28795. image: {
  28796. source: "./media/characters/en/front.svg",
  28797. extra: 1697 / 1563,
  28798. bottom: 103 / 1800
  28799. }
  28800. },
  28801. back: {
  28802. height: math.unit(6, "feet"),
  28803. weight: math.unit(150, "lb"),
  28804. name: "Back",
  28805. image: {
  28806. source: "./media/characters/en/back.svg",
  28807. extra: 1700 / 1570,
  28808. bottom: 51 / 1751
  28809. }
  28810. },
  28811. frontDressed: {
  28812. height: math.unit(6, "feet"),
  28813. weight: math.unit(150, "lb"),
  28814. name: "Front (Dressed)",
  28815. image: {
  28816. source: "./media/characters/en/front-dressed.svg",
  28817. extra: 1697 / 1563,
  28818. bottom: 103 / 1800
  28819. }
  28820. },
  28821. backDressed: {
  28822. height: math.unit(6, "feet"),
  28823. weight: math.unit(150, "lb"),
  28824. name: "Back (Dressed)",
  28825. image: {
  28826. source: "./media/characters/en/back-dressed.svg",
  28827. extra: 1700 / 1570,
  28828. bottom: 51 / 1751
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Macro",
  28835. height: math.unit(210, "feet"),
  28836. default: true
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28842. {
  28843. front: {
  28844. height: math.unit(6, "feet"),
  28845. weight: math.unit(150, "lb"),
  28846. name: "Front",
  28847. image: {
  28848. source: "./media/characters/haze-orris/front.svg",
  28849. extra: 3975 / 3525,
  28850. bottom: 137 / 4112
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Micro",
  28857. height: math.unit(150, "mm"),
  28858. default: true
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28864. {
  28865. front: {
  28866. height: math.unit(6, "feet"),
  28867. weight: math.unit(150, "lb"),
  28868. name: "Front",
  28869. image: {
  28870. source: "./media/characters/casselene-yaro/front.svg",
  28871. extra: 4721 / 4541,
  28872. bottom: 82 / 4803
  28873. }
  28874. },
  28875. back: {
  28876. height: math.unit(6, "feet"),
  28877. weight: math.unit(150, "lb"),
  28878. name: "Back",
  28879. image: {
  28880. source: "./media/characters/casselene-yaro/back.svg",
  28881. extra: 4569 / 4377,
  28882. bottom: 69 / 4638
  28883. }
  28884. },
  28885. frontDressed: {
  28886. height: math.unit(6, "feet"),
  28887. weight: math.unit(150, "lb"),
  28888. name: "Front-dressed",
  28889. image: {
  28890. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28891. extra: 4721 / 4541,
  28892. bottom: 82 / 4803
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Macro",
  28899. height: math.unit(190, "feet"),
  28900. default: true
  28901. },
  28902. ]
  28903. ))
  28904. characterMakers.push(() => makeCharacter(
  28905. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28906. {
  28907. front: {
  28908. height: math.unit(6, "feet"),
  28909. weight: math.unit(150, "lb"),
  28910. name: "Front",
  28911. image: {
  28912. source: "./media/characters/myra-rue-delore/front.svg",
  28913. extra: 1340 / 1308,
  28914. bottom: 67 / 1407
  28915. }
  28916. },
  28917. back: {
  28918. height: math.unit(6, "feet"),
  28919. weight: math.unit(150, "lb"),
  28920. name: "Back",
  28921. image: {
  28922. source: "./media/characters/myra-rue-delore/back.svg",
  28923. extra: 1341 / 1310,
  28924. bottom: 40 / 1381
  28925. }
  28926. },
  28927. frontDressed: {
  28928. height: math.unit(6, "feet"),
  28929. weight: math.unit(150, "lb"),
  28930. name: "Front (Dressed)",
  28931. image: {
  28932. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28933. extra: 1340 / 1308,
  28934. bottom: 67 / 1407
  28935. }
  28936. },
  28937. },
  28938. [
  28939. {
  28940. name: "Macro",
  28941. height: math.unit(150, "feet"),
  28942. default: true
  28943. },
  28944. ]
  28945. ))
  28946. characterMakers.push(() => makeCharacter(
  28947. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28948. {
  28949. front: {
  28950. height: math.unit(10, "feet"),
  28951. weight: math.unit(15015, "lb"),
  28952. name: "Front",
  28953. image: {
  28954. source: "./media/characters/fem!plat/front.svg",
  28955. extra: 2799 / 2604,
  28956. bottom: 149 / 2948
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Normal",
  28963. height: math.unit(10, "feet"),
  28964. default: true
  28965. },
  28966. {
  28967. name: "Macro",
  28968. height: math.unit(100, "feet")
  28969. },
  28970. {
  28971. name: "Megamacro",
  28972. height: math.unit(1000, "feet")
  28973. },
  28974. ]
  28975. ))
  28976. characterMakers.push(() => makeCharacter(
  28977. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28978. {
  28979. front: {
  28980. height: math.unit(15 + 5 / 12, "feet"),
  28981. weight: math.unit(4600, "lb"),
  28982. name: "Front",
  28983. image: {
  28984. source: "./media/characters/neapolitan-ananassa/front.svg",
  28985. extra: 2903 / 2736,
  28986. bottom: 0 / 2903
  28987. }
  28988. },
  28989. side: {
  28990. height: math.unit(15 + 5 / 12, "feet"),
  28991. weight: math.unit(4600, "lb"),
  28992. name: "Side",
  28993. image: {
  28994. source: "./media/characters/neapolitan-ananassa/side.svg",
  28995. extra: 2925 / 2719,
  28996. bottom: 0 / 2925
  28997. }
  28998. },
  28999. back: {
  29000. height: math.unit(15 + 5 / 12, "feet"),
  29001. weight: math.unit(4600, "lb"),
  29002. name: "Back",
  29003. image: {
  29004. source: "./media/characters/neapolitan-ananassa/back.svg",
  29005. extra: 2903 / 2736,
  29006. bottom: 0 / 2903
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Normal",
  29013. height: math.unit(15 + 5 / 12, "feet"),
  29014. default: true
  29015. },
  29016. {
  29017. name: "Post-Millenium",
  29018. height: math.unit(35 + 5 / 12, "feet")
  29019. },
  29020. {
  29021. name: "Post-Era",
  29022. height: math.unit(450 + 5 / 12, "feet")
  29023. },
  29024. ]
  29025. ))
  29026. characterMakers.push(() => makeCharacter(
  29027. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29028. {
  29029. front: {
  29030. height: math.unit(300, "meters"),
  29031. weight: math.unit(125000, "tonnes"),
  29032. name: "Front",
  29033. image: {
  29034. source: "./media/characters/pazuzu/front.svg",
  29035. extra: 877 / 794,
  29036. bottom: 47 / 924
  29037. }
  29038. },
  29039. },
  29040. [
  29041. {
  29042. name: "Macro",
  29043. height: math.unit(300, "meters"),
  29044. default: true
  29045. },
  29046. ]
  29047. ))
  29048. characterMakers.push(() => makeCharacter(
  29049. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29050. {
  29051. side: {
  29052. height: math.unit(10 + 7 / 12, "feet"),
  29053. weight: math.unit(2.5, "tons"),
  29054. name: "Side",
  29055. image: {
  29056. source: "./media/characters/aasha/side.svg",
  29057. extra: 1345 / 1245,
  29058. bottom: 111 / 1456
  29059. }
  29060. },
  29061. back: {
  29062. height: math.unit(10 + 7 / 12, "feet"),
  29063. weight: math.unit(2.5, "tons"),
  29064. name: "Back",
  29065. image: {
  29066. source: "./media/characters/aasha/back.svg",
  29067. extra: 1133 / 1057,
  29068. bottom: 257 / 1390
  29069. }
  29070. },
  29071. },
  29072. [
  29073. {
  29074. name: "Normal",
  29075. height: math.unit(10 + 7 / 12, "feet"),
  29076. default: true
  29077. },
  29078. ]
  29079. ))
  29080. characterMakers.push(() => makeCharacter(
  29081. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29082. {
  29083. front: {
  29084. height: math.unit(6 + 3 / 12, "feet"),
  29085. name: "Front",
  29086. image: {
  29087. source: "./media/characters/nevan/front.svg",
  29088. extra: 704 / 704,
  29089. bottom: 28 / 732
  29090. }
  29091. },
  29092. back: {
  29093. height: math.unit(6 + 3 / 12, "feet"),
  29094. name: "Back",
  29095. image: {
  29096. source: "./media/characters/nevan/back.svg",
  29097. extra: 714 / 714,
  29098. bottom: 21 / 735
  29099. }
  29100. },
  29101. frontFlaccid: {
  29102. height: math.unit(6 + 3 / 12, "feet"),
  29103. name: "Front (Flaccid)",
  29104. image: {
  29105. source: "./media/characters/nevan/front-flaccid.svg",
  29106. extra: 704 / 704,
  29107. bottom: 28 / 732
  29108. }
  29109. },
  29110. frontErect: {
  29111. height: math.unit(6 + 3 / 12, "feet"),
  29112. name: "Front (Erect)",
  29113. image: {
  29114. source: "./media/characters/nevan/front-erect.svg",
  29115. extra: 704 / 704,
  29116. bottom: 28 / 732
  29117. }
  29118. },
  29119. backFlaccid: {
  29120. height: math.unit(6 + 3 / 12, "feet"),
  29121. name: "Back (Flaccid)",
  29122. image: {
  29123. source: "./media/characters/nevan/back-flaccid.svg",
  29124. extra: 714 / 714,
  29125. bottom: 21 / 735
  29126. }
  29127. },
  29128. },
  29129. [
  29130. {
  29131. name: "Normal",
  29132. height: math.unit(6 + 3 / 12, "feet"),
  29133. default: true
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(4, "feet"),
  29142. name: "Front",
  29143. image: {
  29144. source: "./media/characters/arhan/front.svg",
  29145. extra: 3368 / 3133,
  29146. bottom: 0 / 3368
  29147. }
  29148. },
  29149. side: {
  29150. height: math.unit(4, "feet"),
  29151. name: "Side",
  29152. image: {
  29153. source: "./media/characters/arhan/side.svg",
  29154. extra: 3347 / 3105,
  29155. bottom: 0 / 3347
  29156. }
  29157. },
  29158. tongue: {
  29159. height: math.unit(1.42, "feet"),
  29160. name: "Tongue",
  29161. image: {
  29162. source: "./media/characters/arhan/tongue.svg"
  29163. }
  29164. },
  29165. head: {
  29166. height: math.unit(0.85, "feet"),
  29167. name: "Head",
  29168. image: {
  29169. source: "./media/characters/arhan/head.svg"
  29170. }
  29171. },
  29172. },
  29173. [
  29174. {
  29175. name: "Normal",
  29176. height: math.unit(4, "feet"),
  29177. default: true
  29178. },
  29179. ]
  29180. ))
  29181. characterMakers.push(() => makeCharacter(
  29182. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29183. {
  29184. front: {
  29185. height: math.unit(5 + 7.5 / 12, "feet"),
  29186. weight: math.unit(120, "lb"),
  29187. name: "Front",
  29188. image: {
  29189. source: "./media/characters/digi-duncan/front.svg",
  29190. extra: 330 / 326,
  29191. bottom: 16 / 346
  29192. }
  29193. },
  29194. side: {
  29195. height: math.unit(5 + 7.5 / 12, "feet"),
  29196. weight: math.unit(120, "lb"),
  29197. name: "Side",
  29198. image: {
  29199. source: "./media/characters/digi-duncan/side.svg",
  29200. extra: 341 / 337,
  29201. bottom: 1 / 342
  29202. }
  29203. },
  29204. back: {
  29205. height: math.unit(5 + 7.5 / 12, "feet"),
  29206. weight: math.unit(120, "lb"),
  29207. name: "Back",
  29208. image: {
  29209. source: "./media/characters/digi-duncan/back.svg",
  29210. extra: 330 / 326,
  29211. bottom: 12 / 342
  29212. }
  29213. },
  29214. },
  29215. [
  29216. {
  29217. name: "Speck",
  29218. height: math.unit(0.25, "mm")
  29219. },
  29220. {
  29221. name: "Micro",
  29222. height: math.unit(5, "mm")
  29223. },
  29224. {
  29225. name: "Tiny",
  29226. height: math.unit(0.5, "inches"),
  29227. default: true
  29228. },
  29229. {
  29230. name: "Human",
  29231. height: math.unit(5 + 7.5 / 12, "feet")
  29232. },
  29233. {
  29234. name: "Minigiant",
  29235. height: math.unit(8 + 5.25, "feet")
  29236. },
  29237. {
  29238. name: "Giant",
  29239. height: math.unit(2000, "feet")
  29240. },
  29241. {
  29242. name: "Mega",
  29243. height: math.unit(371.1, "miles")
  29244. },
  29245. ]
  29246. ))
  29247. characterMakers.push(() => makeCharacter(
  29248. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29249. {
  29250. front: {
  29251. height: math.unit(2, "meters"),
  29252. weight: math.unit(350, "kg"),
  29253. name: "Front",
  29254. image: {
  29255. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29256. extra: 898 / 838,
  29257. bottom: 9 / 907
  29258. }
  29259. },
  29260. },
  29261. [
  29262. {
  29263. name: "Micro",
  29264. height: math.unit(8, "meters")
  29265. },
  29266. {
  29267. name: "Normal",
  29268. height: math.unit(50, "meters"),
  29269. default: true
  29270. },
  29271. {
  29272. name: "Macro",
  29273. height: math.unit(500, "meters")
  29274. },
  29275. ]
  29276. ))
  29277. characterMakers.push(() => makeCharacter(
  29278. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29279. {
  29280. front: {
  29281. height: math.unit(6 + 6 / 12, "feet"),
  29282. name: "Front",
  29283. image: {
  29284. source: "./media/characters/khardesh/front.svg",
  29285. extra: 888 / 797,
  29286. bottom: 25 / 913
  29287. }
  29288. },
  29289. },
  29290. [
  29291. {
  29292. name: "Normal",
  29293. height: math.unit(6 + 6 / 12, "feet"),
  29294. default: true
  29295. },
  29296. {
  29297. name: "Normal+",
  29298. height: math.unit(4, "meters")
  29299. },
  29300. {
  29301. name: "Macro",
  29302. height: math.unit(50, "meters")
  29303. },
  29304. {
  29305. name: "Macro+",
  29306. height: math.unit(100, "meters")
  29307. },
  29308. {
  29309. name: "Megamacro",
  29310. height: math.unit(20, "km")
  29311. },
  29312. ]
  29313. ))
  29314. characterMakers.push(() => makeCharacter(
  29315. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29316. {
  29317. front: {
  29318. height: math.unit(6, "feet"),
  29319. weight: math.unit(150, "lb"),
  29320. name: "Front",
  29321. image: {
  29322. source: "./media/characters/kosho/front.svg",
  29323. extra: 1847 / 1847,
  29324. bottom: 86 / 1933
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Second-stage micro",
  29331. height: math.unit(0.5, "inches")
  29332. },
  29333. {
  29334. name: "First-stage micro",
  29335. height: math.unit(6, "inches")
  29336. },
  29337. {
  29338. name: "Normal",
  29339. height: math.unit(6, "feet"),
  29340. default: true
  29341. },
  29342. {
  29343. name: "First-stage macro",
  29344. height: math.unit(72, "feet")
  29345. },
  29346. {
  29347. name: "Second-stage macro",
  29348. height: math.unit(864, "feet")
  29349. },
  29350. ]
  29351. ))
  29352. characterMakers.push(() => makeCharacter(
  29353. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29354. {
  29355. normal: {
  29356. height: math.unit(4 + 6 / 12, "feet"),
  29357. name: "Normal",
  29358. image: {
  29359. source: "./media/characters/hydra/normal.svg",
  29360. extra: 2833 / 2634,
  29361. bottom: 68 / 2901
  29362. }
  29363. },
  29364. smol: {
  29365. height: math.unit(0.705, "inches"),
  29366. name: "Smol",
  29367. image: {
  29368. source: "./media/characters/hydra/smol.svg",
  29369. extra: 2715 / 2540,
  29370. bottom: 0 / 2715
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Normal",
  29377. height: math.unit(4 + 6 / 12, "feet"),
  29378. default: true
  29379. }
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(0.6, "cm"),
  29387. name: "Front",
  29388. image: {
  29389. source: "./media/characters/daz/front.svg",
  29390. extra: 1682 / 1164,
  29391. bottom: 42 / 1724
  29392. }
  29393. },
  29394. },
  29395. [
  29396. {
  29397. name: "Normal",
  29398. height: math.unit(0.6, "cm"),
  29399. default: true
  29400. },
  29401. ]
  29402. ))
  29403. characterMakers.push(() => makeCharacter(
  29404. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29405. {
  29406. front: {
  29407. height: math.unit(6, "feet"),
  29408. weight: math.unit(235, "lb"),
  29409. name: "Front",
  29410. image: {
  29411. source: "./media/characters/theo-pangolin/front.svg",
  29412. extra: 1996 / 1969,
  29413. bottom: 115 / 2111
  29414. }
  29415. },
  29416. back: {
  29417. height: math.unit(6, "feet"),
  29418. weight: math.unit(235, "lb"),
  29419. name: "Back",
  29420. image: {
  29421. source: "./media/characters/theo-pangolin/back.svg",
  29422. extra: 1979 / 1979,
  29423. bottom: 40 / 2019
  29424. }
  29425. },
  29426. feral: {
  29427. height: math.unit(2, "feet"),
  29428. weight: math.unit(30, "lb"),
  29429. name: "Feral",
  29430. image: {
  29431. source: "./media/characters/theo-pangolin/feral.svg",
  29432. extra: 803 / 791,
  29433. bottom: 181 / 984
  29434. }
  29435. },
  29436. footFive: {
  29437. height: math.unit(1.43, "feet"),
  29438. name: "Foot (Five Toes)",
  29439. image: {
  29440. source: "./media/characters/theo-pangolin/foot-five.svg"
  29441. }
  29442. },
  29443. footFour: {
  29444. height: math.unit(1.43, "feet"),
  29445. name: "Foot (Four Toes)",
  29446. image: {
  29447. source: "./media/characters/theo-pangolin/foot-four.svg"
  29448. }
  29449. },
  29450. handFour: {
  29451. height: math.unit(0.81, "feet"),
  29452. name: "Hand (Four Fingers)",
  29453. image: {
  29454. source: "./media/characters/theo-pangolin/hand-four.svg"
  29455. }
  29456. },
  29457. handThree: {
  29458. height: math.unit(0.81, "feet"),
  29459. name: "Hand (Three Fingers)",
  29460. image: {
  29461. source: "./media/characters/theo-pangolin/hand-three.svg"
  29462. }
  29463. },
  29464. headFront: {
  29465. height: math.unit(1.37, "feet"),
  29466. name: "Head (Front)",
  29467. image: {
  29468. source: "./media/characters/theo-pangolin/head-front.svg"
  29469. }
  29470. },
  29471. headSide: {
  29472. height: math.unit(1.43, "feet"),
  29473. name: "Head (Side)",
  29474. image: {
  29475. source: "./media/characters/theo-pangolin/head-side.svg"
  29476. }
  29477. },
  29478. tongue: {
  29479. height: math.unit(2.29, "feet"),
  29480. name: "Tongue",
  29481. image: {
  29482. source: "./media/characters/theo-pangolin/tongue.svg"
  29483. }
  29484. },
  29485. },
  29486. [
  29487. {
  29488. name: "Normal",
  29489. height: math.unit(6, "feet")
  29490. },
  29491. {
  29492. name: "Macro",
  29493. height: math.unit(400, "feet"),
  29494. default: true
  29495. },
  29496. ]
  29497. ))
  29498. characterMakers.push(() => makeCharacter(
  29499. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29500. {
  29501. front: {
  29502. height: math.unit(6, "inches"),
  29503. weight: math.unit(0.036, "kg"),
  29504. name: "Front",
  29505. image: {
  29506. source: "./media/characters/renée/front.svg",
  29507. extra: 900 / 886,
  29508. bottom: 8 / 908
  29509. }
  29510. },
  29511. },
  29512. [
  29513. {
  29514. name: "Nano",
  29515. height: math.unit(1, "nm")
  29516. },
  29517. {
  29518. name: "Micro",
  29519. height: math.unit(1, "mm")
  29520. },
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(6, "inches")
  29524. },
  29525. {
  29526. name: "Macro",
  29527. height: math.unit(2000, "feet"),
  29528. default: true
  29529. },
  29530. {
  29531. name: "Megamacro",
  29532. height: math.unit(2, "km")
  29533. },
  29534. {
  29535. name: "Gigamacro",
  29536. height: math.unit(2000, "km")
  29537. },
  29538. {
  29539. name: "Teramacro",
  29540. height: math.unit(250000, "km")
  29541. },
  29542. ]
  29543. ))
  29544. characterMakers.push(() => makeCharacter(
  29545. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29546. {
  29547. front: {
  29548. height: math.unit(4, "meters"),
  29549. weight: math.unit(150, "kg"),
  29550. name: "Front",
  29551. image: {
  29552. source: "./media/characters/caledvwlch/front.svg",
  29553. extra: 1760 / 1551,
  29554. bottom: 28 / 1788
  29555. }
  29556. },
  29557. side: {
  29558. height: math.unit(4, "meters"),
  29559. weight: math.unit(150, "kg"),
  29560. name: "Side",
  29561. image: {
  29562. source: "./media/characters/caledvwlch/side.svg",
  29563. extra: 1605 / 1536,
  29564. bottom: 31 / 1636
  29565. }
  29566. },
  29567. back: {
  29568. height: math.unit(4, "meters"),
  29569. weight: math.unit(150, "kg"),
  29570. name: "Back",
  29571. image: {
  29572. source: "./media/characters/caledvwlch/back.svg",
  29573. extra: 1635 / 1565,
  29574. bottom: 27 / 1662
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "\"Incognito\"",
  29581. height: math.unit(4, "meters")
  29582. },
  29583. {
  29584. name: "Small rampage",
  29585. height: math.unit(600, "meters")
  29586. },
  29587. {
  29588. name: "Mega",
  29589. height: math.unit(30, "km")
  29590. },
  29591. {
  29592. name: "Home-size",
  29593. height: math.unit(50, "km"),
  29594. default: true
  29595. },
  29596. {
  29597. name: "Giga",
  29598. height: math.unit(300, "km")
  29599. },
  29600. {
  29601. name: "Lounging",
  29602. height: math.unit(11000, "km")
  29603. },
  29604. {
  29605. name: "Planet snacking",
  29606. height: math.unit(2000000, "km")
  29607. },
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29612. {
  29613. front: {
  29614. height: math.unit(6, "feet"),
  29615. weight: math.unit(215, "lb"),
  29616. name: "Front",
  29617. image: {
  29618. source: "./media/characters/sapphire-svell/front.svg",
  29619. extra: 495 / 455,
  29620. bottom: 20 / 515
  29621. }
  29622. },
  29623. back: {
  29624. height: math.unit(6, "feet"),
  29625. weight: math.unit(216, "lb"),
  29626. name: "Back",
  29627. image: {
  29628. source: "./media/characters/sapphire-svell/back.svg",
  29629. extra: 497 / 477,
  29630. bottom: 7 / 504
  29631. }
  29632. },
  29633. maw: {
  29634. height: math.unit(1.57, "feet"),
  29635. name: "Maw",
  29636. image: {
  29637. source: "./media/characters/sapphire-svell/maw.svg"
  29638. }
  29639. },
  29640. foot: {
  29641. height: math.unit(1.07, "feet"),
  29642. name: "Foot",
  29643. image: {
  29644. source: "./media/characters/sapphire-svell/foot.svg"
  29645. }
  29646. },
  29647. toering: {
  29648. height: math.unit(1.7, "inch"),
  29649. name: "Toering",
  29650. image: {
  29651. source: "./media/characters/sapphire-svell/toering.svg"
  29652. }
  29653. },
  29654. },
  29655. [
  29656. {
  29657. name: "Normal",
  29658. height: math.unit(300, "feet"),
  29659. default: true
  29660. },
  29661. {
  29662. name: "Augmented",
  29663. height: math.unit(1250, "feet")
  29664. },
  29665. {
  29666. name: "Unleashed",
  29667. height: math.unit(3000, "feet")
  29668. },
  29669. ]
  29670. ))
  29671. characterMakers.push(() => makeCharacter(
  29672. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29673. {
  29674. side: {
  29675. height: math.unit(2 + 3 / 12, "feet"),
  29676. weight: math.unit(110, "lb"),
  29677. name: "Side",
  29678. image: {
  29679. source: "./media/characters/glitch-flux/side.svg",
  29680. extra: 997 / 805,
  29681. bottom: 20 / 1017
  29682. }
  29683. },
  29684. },
  29685. [
  29686. {
  29687. name: "Normal",
  29688. height: math.unit(2 + 3 / 12, "feet"),
  29689. default: true
  29690. },
  29691. ]
  29692. ))
  29693. characterMakers.push(() => makeCharacter(
  29694. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29695. {
  29696. front: {
  29697. height: math.unit(4, "meters"),
  29698. name: "Front",
  29699. image: {
  29700. source: "./media/characters/mid/front.svg",
  29701. extra: 507 / 476,
  29702. bottom: 17 / 524
  29703. }
  29704. },
  29705. back: {
  29706. height: math.unit(4, "meters"),
  29707. name: "Back",
  29708. image: {
  29709. source: "./media/characters/mid/back.svg",
  29710. extra: 519 / 487,
  29711. bottom: 7 / 526
  29712. }
  29713. },
  29714. stuck: {
  29715. height: math.unit(2.2, "meters"),
  29716. name: "Stuck",
  29717. image: {
  29718. source: "./media/characters/mid/stuck.svg",
  29719. extra: 1951 / 1869,
  29720. bottom: 88 / 2039
  29721. }
  29722. }
  29723. },
  29724. [
  29725. {
  29726. name: "Normal",
  29727. height: math.unit(4, "meters"),
  29728. default: true
  29729. },
  29730. {
  29731. name: "Big",
  29732. height: math.unit(10, "meters")
  29733. },
  29734. {
  29735. name: "Macro",
  29736. height: math.unit(800, "meters")
  29737. },
  29738. {
  29739. name: "Megamacro",
  29740. height: math.unit(100, "km")
  29741. },
  29742. {
  29743. name: "Overgrown",
  29744. height: math.unit(1, "parsec")
  29745. },
  29746. ]
  29747. ))
  29748. characterMakers.push(() => makeCharacter(
  29749. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29750. {
  29751. front: {
  29752. height: math.unit(2.5, "meters"),
  29753. weight: math.unit(225, "kg"),
  29754. name: "Front",
  29755. image: {
  29756. source: "./media/characters/iris/front.svg",
  29757. extra: 3348 / 3251,
  29758. bottom: 205 / 3553
  29759. }
  29760. },
  29761. maw: {
  29762. height: math.unit(0.56, "meter"),
  29763. name: "Maw",
  29764. image: {
  29765. source: "./media/characters/iris/maw.svg"
  29766. }
  29767. },
  29768. },
  29769. [
  29770. {
  29771. name: "Mewter cat",
  29772. height: math.unit(1.2, "meters")
  29773. },
  29774. {
  29775. name: "Minimacro",
  29776. height: math.unit(2.5, "meters"),
  29777. default: true
  29778. },
  29779. {
  29780. name: "Macro",
  29781. height: math.unit(180, "meters")
  29782. },
  29783. {
  29784. name: "Megamacro",
  29785. height: math.unit(2746, "meters")
  29786. },
  29787. ]
  29788. ))
  29789. characterMakers.push(() => makeCharacter(
  29790. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29791. {
  29792. front: {
  29793. height: math.unit(6, "feet"),
  29794. weight: math.unit(135, "lb"),
  29795. name: "Front",
  29796. image: {
  29797. source: "./media/characters/axel/front.svg",
  29798. extra: 908 / 908,
  29799. bottom: 58 / 966
  29800. }
  29801. },
  29802. side: {
  29803. height: math.unit(6, "feet"),
  29804. weight: math.unit(135, "lb"),
  29805. name: "Side",
  29806. image: {
  29807. source: "./media/characters/axel/side.svg",
  29808. extra: 958 / 958,
  29809. bottom: 11 / 969
  29810. }
  29811. },
  29812. back: {
  29813. height: math.unit(6, "feet"),
  29814. weight: math.unit(135, "lb"),
  29815. name: "Back",
  29816. image: {
  29817. source: "./media/characters/axel/back.svg",
  29818. extra: 887 / 887,
  29819. bottom: 34 / 921
  29820. }
  29821. },
  29822. head: {
  29823. height: math.unit(1.07, "feet"),
  29824. name: "Head",
  29825. image: {
  29826. source: "./media/characters/axel/head.svg"
  29827. }
  29828. },
  29829. beak: {
  29830. height: math.unit(1.4, "feet"),
  29831. name: "Beak",
  29832. image: {
  29833. source: "./media/characters/axel/beak.svg"
  29834. }
  29835. },
  29836. beakSide: {
  29837. height: math.unit(1.4, "feet"),
  29838. name: "Beak Side",
  29839. image: {
  29840. source: "./media/characters/axel/beak-side.svg"
  29841. }
  29842. },
  29843. sheath: {
  29844. height: math.unit(0.5, "feet"),
  29845. name: "Sheath",
  29846. image: {
  29847. source: "./media/characters/axel/sheath.svg"
  29848. }
  29849. },
  29850. dick: {
  29851. height: math.unit(0.98, "feet"),
  29852. name: "Dick",
  29853. image: {
  29854. source: "./media/characters/axel/dick.svg"
  29855. }
  29856. },
  29857. },
  29858. [
  29859. {
  29860. name: "Macro",
  29861. height: math.unit(68, "meters"),
  29862. default: true
  29863. },
  29864. ]
  29865. ))
  29866. characterMakers.push(() => makeCharacter(
  29867. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29868. {
  29869. front: {
  29870. height: math.unit(3.5, "meters"),
  29871. weight: math.unit(1200, "kg"),
  29872. name: "Front",
  29873. image: {
  29874. source: "./media/characters/joanna/front.svg",
  29875. extra: 1596 / 1488,
  29876. bottom: 29 / 1625
  29877. }
  29878. },
  29879. back: {
  29880. height: math.unit(3.5, "meters"),
  29881. weight: math.unit(1200, "kg"),
  29882. name: "Back",
  29883. image: {
  29884. source: "./media/characters/joanna/back.svg",
  29885. extra: 1594 / 1495,
  29886. bottom: 26 / 1620
  29887. }
  29888. },
  29889. frontShorts: {
  29890. height: math.unit(3.5, "meters"),
  29891. weight: math.unit(1200, "kg"),
  29892. name: "Front (Shorts)",
  29893. image: {
  29894. source: "./media/characters/joanna/front-shorts.svg",
  29895. extra: 1596 / 1488,
  29896. bottom: 29 / 1625
  29897. }
  29898. },
  29899. frontBiker: {
  29900. height: math.unit(3.5, "meters"),
  29901. weight: math.unit(1200, "kg"),
  29902. name: "Front (Biker)",
  29903. image: {
  29904. source: "./media/characters/joanna/front-biker.svg",
  29905. extra: 1596 / 1488,
  29906. bottom: 29 / 1625
  29907. }
  29908. },
  29909. backBiker: {
  29910. height: math.unit(3.5, "meters"),
  29911. weight: math.unit(1200, "kg"),
  29912. name: "Back (Biker)",
  29913. image: {
  29914. source: "./media/characters/joanna/back-biker.svg",
  29915. extra: 1594 / 1495,
  29916. bottom: 88 / 1682
  29917. }
  29918. },
  29919. bikeLeft: {
  29920. height: math.unit(2.4, "meters"),
  29921. weight: math.unit(1600, "kg"),
  29922. name: "Bike (Left)",
  29923. image: {
  29924. source: "./media/characters/joanna/bike-left.svg",
  29925. extra: 720 / 720,
  29926. bottom: 8 / 728
  29927. }
  29928. },
  29929. bikeRight: {
  29930. height: math.unit(2.4, "meters"),
  29931. weight: math.unit(1600, "kg"),
  29932. name: "Bike (Right)",
  29933. image: {
  29934. source: "./media/characters/joanna/bike-right.svg",
  29935. extra: 720 / 720,
  29936. bottom: 8 / 728
  29937. }
  29938. },
  29939. },
  29940. [
  29941. {
  29942. name: "Incognito",
  29943. height: math.unit(3.5, "meters")
  29944. },
  29945. {
  29946. name: "Casual Big",
  29947. height: math.unit(200, "meters")
  29948. },
  29949. {
  29950. name: "Macro",
  29951. height: math.unit(600, "meters")
  29952. },
  29953. {
  29954. name: "Original",
  29955. height: math.unit(20, "km"),
  29956. default: true
  29957. },
  29958. {
  29959. name: "Giga",
  29960. height: math.unit(400, "km")
  29961. },
  29962. {
  29963. name: "Lounging",
  29964. height: math.unit(1500, "km")
  29965. },
  29966. {
  29967. name: "Planetary",
  29968. height: math.unit(200000, "km")
  29969. },
  29970. ]
  29971. ))
  29972. characterMakers.push(() => makeCharacter(
  29973. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29974. {
  29975. front: {
  29976. height: math.unit(6, "feet"),
  29977. weight: math.unit(150, "lb"),
  29978. name: "Front",
  29979. image: {
  29980. source: "./media/characters/hugo-sigil/front.svg",
  29981. extra: 522 / 500,
  29982. bottom: 2 / 524
  29983. }
  29984. },
  29985. back: {
  29986. height: math.unit(6, "feet"),
  29987. weight: math.unit(150, "lb"),
  29988. name: "Back",
  29989. image: {
  29990. source: "./media/characters/hugo-sigil/back.svg",
  29991. extra: 519 / 495,
  29992. bottom: 5 / 524
  29993. }
  29994. },
  29995. maw: {
  29996. height: math.unit(1.4, "feet"),
  29997. weight: math.unit(150, "lb"),
  29998. name: "Maw",
  29999. image: {
  30000. source: "./media/characters/hugo-sigil/maw.svg"
  30001. }
  30002. },
  30003. feet: {
  30004. height: math.unit(1.56, "feet"),
  30005. weight: math.unit(150, "lb"),
  30006. name: "Feet",
  30007. image: {
  30008. source: "./media/characters/hugo-sigil/feet.svg",
  30009. extra: 177 / 177,
  30010. bottom: 12 / 189
  30011. }
  30012. },
  30013. },
  30014. [
  30015. {
  30016. name: "Normal",
  30017. height: math.unit(6, "feet")
  30018. },
  30019. {
  30020. name: "Macro",
  30021. height: math.unit(200, "feet"),
  30022. default: true
  30023. },
  30024. ]
  30025. ))
  30026. characterMakers.push(() => makeCharacter(
  30027. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30028. {
  30029. front: {
  30030. height: math.unit(6, "feet"),
  30031. weight: math.unit(150, "lb"),
  30032. name: "Front",
  30033. image: {
  30034. source: "./media/characters/peri/front.svg",
  30035. extra: 2354 / 2233,
  30036. bottom: 49 / 2403
  30037. }
  30038. },
  30039. },
  30040. [
  30041. {
  30042. name: "Really Small",
  30043. height: math.unit(1, "nm")
  30044. },
  30045. {
  30046. name: "Micro",
  30047. height: math.unit(4, "inches")
  30048. },
  30049. {
  30050. name: "Normal",
  30051. height: math.unit(7, "inches"),
  30052. default: true
  30053. },
  30054. {
  30055. name: "Macro",
  30056. height: math.unit(400, "feet")
  30057. },
  30058. {
  30059. name: "Megamacro",
  30060. height: math.unit(100, "miles")
  30061. },
  30062. ]
  30063. ))
  30064. characterMakers.push(() => makeCharacter(
  30065. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30066. {
  30067. frontSlim: {
  30068. height: math.unit(7, "feet"),
  30069. name: "Front (Slim)",
  30070. image: {
  30071. source: "./media/characters/issilora/front-slim.svg",
  30072. extra: 529 / 449,
  30073. bottom: 53 / 582
  30074. }
  30075. },
  30076. sideSlim: {
  30077. height: math.unit(7, "feet"),
  30078. name: "Side (Slim)",
  30079. image: {
  30080. source: "./media/characters/issilora/side-slim.svg",
  30081. extra: 570 / 480,
  30082. bottom: 30 / 600
  30083. }
  30084. },
  30085. backSlim: {
  30086. height: math.unit(7, "feet"),
  30087. name: "Back (Slim)",
  30088. image: {
  30089. source: "./media/characters/issilora/back-slim.svg",
  30090. extra: 537 / 455,
  30091. bottom: 46 / 583
  30092. }
  30093. },
  30094. frontBuff: {
  30095. height: math.unit(7, "feet"),
  30096. name: "Front (Buff)",
  30097. image: {
  30098. source: "./media/characters/issilora/front-buff.svg",
  30099. extra: 2310 / 2035,
  30100. bottom: 335 / 2645
  30101. }
  30102. },
  30103. head: {
  30104. height: math.unit(1.94, "feet"),
  30105. name: "Head",
  30106. image: {
  30107. source: "./media/characters/issilora/head.svg"
  30108. }
  30109. },
  30110. },
  30111. [
  30112. {
  30113. name: "Minimum",
  30114. height: math.unit(7, "feet")
  30115. },
  30116. {
  30117. name: "Comfortable",
  30118. height: math.unit(17, "feet")
  30119. },
  30120. {
  30121. name: "Fun Size",
  30122. height: math.unit(47, "feet")
  30123. },
  30124. {
  30125. name: "Natural Macro",
  30126. height: math.unit(137, "feet"),
  30127. default: true
  30128. },
  30129. {
  30130. name: "Maximum Kaiju",
  30131. height: math.unit(397, "feet")
  30132. },
  30133. ]
  30134. ))
  30135. characterMakers.push(() => makeCharacter(
  30136. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30137. {
  30138. front: {
  30139. height: math.unit(50 + 9/12, "feet"),
  30140. weight: math.unit(32.8, "tons"),
  30141. name: "Front",
  30142. image: {
  30143. source: "./media/characters/irb'iiritaahn/front.svg",
  30144. extra: 1878/1826,
  30145. bottom: 326/2204
  30146. }
  30147. },
  30148. back: {
  30149. height: math.unit(50 + 9/12, "feet"),
  30150. weight: math.unit(32.8, "tons"),
  30151. name: "Back",
  30152. image: {
  30153. source: "./media/characters/irb'iiritaahn/back.svg",
  30154. extra: 2052/2018,
  30155. bottom: 152/2204
  30156. }
  30157. },
  30158. head: {
  30159. height: math.unit(12.86, "feet"),
  30160. name: "Head",
  30161. image: {
  30162. source: "./media/characters/irb'iiritaahn/head.svg"
  30163. }
  30164. },
  30165. maw: {
  30166. height: math.unit(9.66, "feet"),
  30167. name: "Maw",
  30168. image: {
  30169. source: "./media/characters/irb'iiritaahn/maw.svg"
  30170. }
  30171. },
  30172. frontDick: {
  30173. height: math.unit(8.78461, "feet"),
  30174. name: "Front Dick",
  30175. image: {
  30176. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30177. }
  30178. },
  30179. rearDick: {
  30180. height: math.unit(8.78461, "feet"),
  30181. name: "Rear Dick",
  30182. image: {
  30183. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30184. }
  30185. },
  30186. rearDickUnfolded: {
  30187. height: math.unit(8.78, "feet"),
  30188. name: "Rear Dick (Unfolded)",
  30189. image: {
  30190. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30191. }
  30192. },
  30193. wings: {
  30194. height: math.unit(43, "feet"),
  30195. name: "Wings",
  30196. image: {
  30197. source: "./media/characters/irb'iiritaahn/wings.svg"
  30198. }
  30199. },
  30200. },
  30201. [
  30202. {
  30203. name: "Macro",
  30204. height: math.unit(50 + 9/12, "feet"),
  30205. default: true
  30206. },
  30207. ]
  30208. ))
  30209. characterMakers.push(() => makeCharacter(
  30210. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30211. {
  30212. front: {
  30213. height: math.unit(205, "cm"),
  30214. weight: math.unit(102, "kg"),
  30215. name: "Front",
  30216. image: {
  30217. source: "./media/characters/irbisgreif/front.svg",
  30218. extra: 785/706,
  30219. bottom: 13/798
  30220. }
  30221. },
  30222. back: {
  30223. height: math.unit(205, "cm"),
  30224. weight: math.unit(102, "kg"),
  30225. name: "Back",
  30226. image: {
  30227. source: "./media/characters/irbisgreif/back.svg",
  30228. extra: 713/701,
  30229. bottom: 26/739
  30230. }
  30231. },
  30232. frontDressed: {
  30233. height: math.unit(216, "cm"),
  30234. weight: math.unit(102, "kg"),
  30235. name: "Front-dressed",
  30236. image: {
  30237. source: "./media/characters/irbisgreif/front-dressed.svg",
  30238. extra: 902/776,
  30239. bottom: 14/916
  30240. }
  30241. },
  30242. sideDressed: {
  30243. height: math.unit(195, "cm"),
  30244. weight: math.unit(102, "kg"),
  30245. name: "Side-dressed",
  30246. image: {
  30247. source: "./media/characters/irbisgreif/side-dressed.svg",
  30248. extra: 788/688,
  30249. bottom: 21/809
  30250. }
  30251. },
  30252. backDressed: {
  30253. height: math.unit(216, "cm"),
  30254. weight: math.unit(102, "kg"),
  30255. name: "Back-dressed",
  30256. image: {
  30257. source: "./media/characters/irbisgreif/back-dressed.svg",
  30258. extra: 901/783,
  30259. bottom: 10/911
  30260. }
  30261. },
  30262. dick: {
  30263. height: math.unit(0.49, "feet"),
  30264. name: "Dick",
  30265. image: {
  30266. source: "./media/characters/irbisgreif/dick.svg"
  30267. }
  30268. },
  30269. wingTop: {
  30270. height: math.unit(1.93 , "feet"),
  30271. name: "Wing-top",
  30272. image: {
  30273. source: "./media/characters/irbisgreif/wing-top.svg"
  30274. }
  30275. },
  30276. wingBottom: {
  30277. height: math.unit(1.93 , "feet"),
  30278. name: "Wing-bottom",
  30279. image: {
  30280. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Normal",
  30287. height: math.unit(216, "cm"),
  30288. default: true
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30294. {
  30295. front: {
  30296. height: math.unit(6, "feet"),
  30297. weight: math.unit(150, "lb"),
  30298. name: "Front",
  30299. image: {
  30300. source: "./media/characters/pride/front.svg",
  30301. extra: 1299/1230,
  30302. bottom: 18/1317
  30303. }
  30304. },
  30305. },
  30306. [
  30307. {
  30308. name: "Normal",
  30309. height: math.unit(7, "feet")
  30310. },
  30311. {
  30312. name: "Mini-macro",
  30313. height: math.unit(11, "feet")
  30314. },
  30315. {
  30316. name: "Macro",
  30317. height: math.unit(15, "meters"),
  30318. default: true
  30319. },
  30320. {
  30321. name: "Macro+",
  30322. height: math.unit(40, "meters")
  30323. },
  30324. ]
  30325. ))
  30326. characterMakers.push(() => makeCharacter(
  30327. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30328. {
  30329. front: {
  30330. height: math.unit(4 + 2 / 12, "feet"),
  30331. weight: math.unit(95, "lb"),
  30332. name: "Front",
  30333. image: {
  30334. source: "./media/characters/vaelophis-nyx/front.svg",
  30335. extra: 2532/2330,
  30336. bottom: 0/2532
  30337. }
  30338. },
  30339. back: {
  30340. height: math.unit(4 + 2 / 12, "feet"),
  30341. weight: math.unit(95, "lb"),
  30342. name: "Back",
  30343. image: {
  30344. source: "./media/characters/vaelophis-nyx/back.svg",
  30345. extra: 2484/2361,
  30346. bottom: 0/2484
  30347. }
  30348. },
  30349. feralSide: {
  30350. height: math.unit(2 + 1/12, "feet"),
  30351. weight: math.unit(20, "lb"),
  30352. name: "Feral (Side)",
  30353. image: {
  30354. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30355. extra: 1721/1581,
  30356. bottom: 70/1791
  30357. }
  30358. },
  30359. feralLazing: {
  30360. height: math.unit(1.08, "feet"),
  30361. weight: math.unit(20, "lb"),
  30362. name: "Feral (Lazing)",
  30363. image: {
  30364. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30365. extra: 822/822,
  30366. bottom: 248/1070
  30367. }
  30368. },
  30369. ear: {
  30370. height: math.unit(0.416, "feet"),
  30371. name: "Ear",
  30372. image: {
  30373. source: "./media/characters/vaelophis-nyx/ear.svg"
  30374. }
  30375. },
  30376. eye: {
  30377. height: math.unit(0.0748, "feet"),
  30378. name: "Eye",
  30379. image: {
  30380. source: "./media/characters/vaelophis-nyx/eye.svg"
  30381. }
  30382. },
  30383. mouth: {
  30384. height: math.unit(0.378, "feet"),
  30385. name: "Mouth",
  30386. image: {
  30387. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30388. }
  30389. },
  30390. spade: {
  30391. height: math.unit(0.55, "feet"),
  30392. name: "Spade",
  30393. image: {
  30394. source: "./media/characters/vaelophis-nyx/spade.svg"
  30395. }
  30396. },
  30397. },
  30398. [
  30399. {
  30400. name: "Normal",
  30401. height: math.unit(4 + 2/12, "feet"),
  30402. default: true
  30403. },
  30404. ]
  30405. ))
  30406. characterMakers.push(() => makeCharacter(
  30407. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30408. {
  30409. front: {
  30410. height: math.unit(7, "feet"),
  30411. weight: math.unit(231, "lb"),
  30412. name: "Front",
  30413. image: {
  30414. source: "./media/characters/flux/front.svg",
  30415. extra: 919/871,
  30416. bottom: 0/919
  30417. }
  30418. },
  30419. back: {
  30420. height: math.unit(7, "feet"),
  30421. weight: math.unit(231, "lb"),
  30422. name: "Back",
  30423. image: {
  30424. source: "./media/characters/flux/back.svg",
  30425. extra: 1040/992,
  30426. bottom: 0/1040
  30427. }
  30428. },
  30429. frontDressed: {
  30430. height: math.unit(7, "feet"),
  30431. weight: math.unit(231, "lb"),
  30432. name: "Front (Dressed)",
  30433. image: {
  30434. source: "./media/characters/flux/front-dressed.svg",
  30435. extra: 919/871,
  30436. bottom: 0/919
  30437. }
  30438. },
  30439. feralSide: {
  30440. height: math.unit(5, "feet"),
  30441. weight: math.unit(150, "lb"),
  30442. name: "Feral (Side)",
  30443. image: {
  30444. source: "./media/characters/flux/feral-side.svg",
  30445. extra: 598/528,
  30446. bottom: 28/626
  30447. }
  30448. },
  30449. head: {
  30450. height: math.unit(1.585, "feet"),
  30451. name: "Head",
  30452. image: {
  30453. source: "./media/characters/flux/head.svg"
  30454. }
  30455. },
  30456. headSide: {
  30457. height: math.unit(1.74, "feet"),
  30458. name: "Head (Side)",
  30459. image: {
  30460. source: "./media/characters/flux/head-side.svg"
  30461. }
  30462. },
  30463. headSideFire: {
  30464. height: math.unit(1.76, "feet"),
  30465. name: "Head (Side, Fire)",
  30466. image: {
  30467. source: "./media/characters/flux/head-side-fire.svg"
  30468. }
  30469. },
  30470. },
  30471. [
  30472. {
  30473. name: "Normal",
  30474. height: math.unit(7, "feet"),
  30475. default: true
  30476. },
  30477. ]
  30478. ))
  30479. characterMakers.push(() => makeCharacter(
  30480. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30481. {
  30482. front: {
  30483. height: math.unit(9, "feet"),
  30484. weight: math.unit(1012, "lb"),
  30485. name: "Front",
  30486. image: {
  30487. source: "./media/characters/ulfra-lupae/front.svg",
  30488. extra: 1083/1011,
  30489. bottom: 67/1150
  30490. }
  30491. },
  30492. },
  30493. [
  30494. {
  30495. name: "Micro",
  30496. height: math.unit(6, "inches")
  30497. },
  30498. {
  30499. name: "Socializing",
  30500. height: math.unit(6 + 5/12, "feet")
  30501. },
  30502. {
  30503. name: "Normal",
  30504. height: math.unit(9, "feet"),
  30505. default: true
  30506. },
  30507. {
  30508. name: "Macro",
  30509. height: math.unit(150, "feet")
  30510. },
  30511. ]
  30512. ))
  30513. characterMakers.push(() => makeCharacter(
  30514. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30515. {
  30516. front: {
  30517. height: math.unit(5 + 2/12, "feet"),
  30518. weight: math.unit(120, "lb"),
  30519. name: "Front",
  30520. image: {
  30521. source: "./media/characters/timber/front.svg",
  30522. extra: 2814/2705,
  30523. bottom: 181/2995
  30524. }
  30525. },
  30526. },
  30527. [
  30528. {
  30529. name: "Normal",
  30530. height: math.unit(5 + 2/12, "feet"),
  30531. default: true
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30537. {
  30538. front: {
  30539. height: math.unit(5 + 7/12, "feet"),
  30540. weight: math.unit(220, "lb"),
  30541. name: "Front",
  30542. image: {
  30543. source: "./media/characters/nicki/front.svg",
  30544. extra: 453/419,
  30545. bottom: 7/460
  30546. }
  30547. },
  30548. frontAlt: {
  30549. height: math.unit(5 + 7/12, "feet"),
  30550. weight: math.unit(220, "lb"),
  30551. name: "Front-alt",
  30552. image: {
  30553. source: "./media/characters/nicki/front-alt.svg",
  30554. extra: 435/411,
  30555. bottom: 12/447
  30556. }
  30557. },
  30558. back: {
  30559. height: math.unit(5 + 7/12, "feet"),
  30560. weight: math.unit(220, "lb"),
  30561. name: "Back",
  30562. image: {
  30563. source: "./media/characters/nicki/back.svg",
  30564. extra: 440/413,
  30565. bottom: 19/459
  30566. }
  30567. },
  30568. taur: {
  30569. height: math.unit(7 + 6/12, "feet"),
  30570. weight: math.unit(700, "lb"),
  30571. name: "Taur",
  30572. image: {
  30573. source: "./media/characters/nicki/taur.svg",
  30574. extra: 975/773,
  30575. bottom: 0/975
  30576. }
  30577. },
  30578. frontNsfw: {
  30579. height: math.unit(5 + 7/12, "feet"),
  30580. weight: math.unit(220, "lb"),
  30581. name: "Front (NSFW)",
  30582. image: {
  30583. source: "./media/characters/nicki/front-nsfw.svg",
  30584. extra: 453/419,
  30585. bottom: 7/460
  30586. }
  30587. },
  30588. frontNsfwAlt: {
  30589. height: math.unit(5 + 7/12, "feet"),
  30590. weight: math.unit(220, "lb"),
  30591. name: "Front (Alt, NSFW)",
  30592. image: {
  30593. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30594. extra: 435/411,
  30595. bottom: 12/447
  30596. }
  30597. },
  30598. backNsfw: {
  30599. height: math.unit(5 + 7/12, "feet"),
  30600. weight: math.unit(220, "lb"),
  30601. name: "Back (NSFW)",
  30602. image: {
  30603. source: "./media/characters/nicki/back-nsfw.svg",
  30604. extra: 440/413,
  30605. bottom: 19/459
  30606. }
  30607. },
  30608. head: {
  30609. height: math.unit(2.1, "feet"),
  30610. name: "Head",
  30611. image: {
  30612. source: "./media/characters/nicki/head.svg"
  30613. }
  30614. },
  30615. paw: {
  30616. height: math.unit(1.88, "feet"),
  30617. name: "Paw",
  30618. image: {
  30619. source: "./media/characters/nicki/paw.svg"
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Normal",
  30626. height: math.unit(5 + 7/12, "feet"),
  30627. default: true
  30628. },
  30629. ]
  30630. ))
  30631. characterMakers.push(() => makeCharacter(
  30632. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30633. {
  30634. front: {
  30635. height: math.unit(7 + 10/12, "feet"),
  30636. weight: math.unit(3.5, "tons"),
  30637. name: "Front",
  30638. image: {
  30639. source: "./media/characters/lee/front.svg",
  30640. extra: 1773/1615,
  30641. bottom: 86/1859
  30642. }
  30643. },
  30644. hand: {
  30645. height: math.unit(1.78, "feet"),
  30646. name: "Hand",
  30647. image: {
  30648. source: "./media/characters/lee/hand.svg"
  30649. }
  30650. },
  30651. maw: {
  30652. height: math.unit(1.18, "feet"),
  30653. name: "Maw",
  30654. image: {
  30655. source: "./media/characters/lee/maw.svg"
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Normal",
  30662. height: math.unit(7 + 10/12, "feet"),
  30663. default: true
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30669. {
  30670. front: {
  30671. height: math.unit(9, "feet"),
  30672. name: "Front",
  30673. image: {
  30674. source: "./media/characters/guti/front.svg",
  30675. extra: 4551/4355,
  30676. bottom: 123/4674
  30677. }
  30678. },
  30679. tongue: {
  30680. height: math.unit(1, "feet"),
  30681. name: "Tongue",
  30682. image: {
  30683. source: "./media/characters/guti/tongue.svg"
  30684. }
  30685. },
  30686. paw: {
  30687. height: math.unit(1.18, "feet"),
  30688. name: "Paw",
  30689. image: {
  30690. source: "./media/characters/guti/paw.svg"
  30691. }
  30692. },
  30693. },
  30694. [
  30695. {
  30696. name: "Normal",
  30697. height: math.unit(9, "feet"),
  30698. default: true
  30699. },
  30700. ]
  30701. ))
  30702. characterMakers.push(() => makeCharacter(
  30703. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30704. {
  30705. side: {
  30706. height: math.unit(5, "meters"),
  30707. name: "Side",
  30708. image: {
  30709. source: "./media/characters/vesper/side.svg",
  30710. extra: 1605/1518,
  30711. bottom: 0/1605
  30712. }
  30713. },
  30714. },
  30715. [
  30716. {
  30717. name: "Small",
  30718. height: math.unit(5, "meters")
  30719. },
  30720. {
  30721. name: "Sage",
  30722. height: math.unit(100, "meters"),
  30723. default: true
  30724. },
  30725. {
  30726. name: "Fun Size",
  30727. height: math.unit(600, "meters")
  30728. },
  30729. {
  30730. name: "Goddess",
  30731. height: math.unit(20000, "km")
  30732. },
  30733. {
  30734. name: "Maximum",
  30735. height: math.unit(5, "galaxies")
  30736. },
  30737. ]
  30738. ))
  30739. characterMakers.push(() => makeCharacter(
  30740. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30741. {
  30742. front: {
  30743. height: math.unit(6 + 3/12, "feet"),
  30744. weight: math.unit(190, "lb"),
  30745. name: "Front",
  30746. image: {
  30747. source: "./media/characters/gawain/front.svg",
  30748. extra: 2222/2139,
  30749. bottom: 90/2312
  30750. }
  30751. },
  30752. back: {
  30753. height: math.unit(6 + 3/12, "feet"),
  30754. weight: math.unit(190, "lb"),
  30755. name: "Back",
  30756. image: {
  30757. source: "./media/characters/gawain/back.svg",
  30758. extra: 2199/2111,
  30759. bottom: 73/2272
  30760. }
  30761. },
  30762. },
  30763. [
  30764. {
  30765. name: "Normal",
  30766. height: math.unit(6 + 3/12, "feet"),
  30767. default: true
  30768. },
  30769. ]
  30770. ))
  30771. characterMakers.push(() => makeCharacter(
  30772. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30773. {
  30774. side: {
  30775. height: math.unit(3.5, "meters"),
  30776. weight: math.unit(16000, "lb"),
  30777. name: "Side",
  30778. image: {
  30779. source: "./media/characters/dascalti/side.svg",
  30780. extra: 392/273,
  30781. bottom: 47/439
  30782. }
  30783. },
  30784. breath: {
  30785. height: math.unit(7.4, "feet"),
  30786. name: "Breath",
  30787. image: {
  30788. source: "./media/characters/dascalti/breath.svg"
  30789. }
  30790. },
  30791. fed: {
  30792. height: math.unit(3.6, "meters"),
  30793. weight: math.unit(16000, "lb"),
  30794. name: "Fed",
  30795. image: {
  30796. source: "./media/characters/dascalti/fed.svg",
  30797. extra: 1419/820,
  30798. bottom: 95/1514
  30799. }
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Normal",
  30805. height: math.unit(3.5, "meters"),
  30806. default: true
  30807. },
  30808. ]
  30809. ))
  30810. characterMakers.push(() => makeCharacter(
  30811. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30812. {
  30813. front: {
  30814. height: math.unit(3 + 5/12, "feet"),
  30815. name: "Front",
  30816. image: {
  30817. source: "./media/characters/mauve/front.svg",
  30818. extra: 1126/1033,
  30819. bottom: 65/1191
  30820. }
  30821. },
  30822. side: {
  30823. height: math.unit(3 + 5/12, "feet"),
  30824. name: "Side",
  30825. image: {
  30826. source: "./media/characters/mauve/side.svg",
  30827. extra: 1089/1001,
  30828. bottom: 29/1118
  30829. }
  30830. },
  30831. back: {
  30832. height: math.unit(3 + 5/12, "feet"),
  30833. name: "Back",
  30834. image: {
  30835. source: "./media/characters/mauve/back.svg",
  30836. extra: 1173/1053,
  30837. bottom: 109/1282
  30838. }
  30839. },
  30840. },
  30841. [
  30842. {
  30843. name: "Normal",
  30844. height: math.unit(3 + 5/12, "feet"),
  30845. default: true
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30851. {
  30852. front: {
  30853. height: math.unit(6 + 3/12, "feet"),
  30854. weight: math.unit(430, "lb"),
  30855. name: "Front",
  30856. image: {
  30857. source: "./media/characters/carlos/front.svg",
  30858. extra: 1964/1913,
  30859. bottom: 70/2034
  30860. }
  30861. },
  30862. },
  30863. [
  30864. {
  30865. name: "Normal",
  30866. height: math.unit(6 + 3/12, "feet"),
  30867. default: true
  30868. },
  30869. ]
  30870. ))
  30871. characterMakers.push(() => makeCharacter(
  30872. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30873. {
  30874. back: {
  30875. height: math.unit(5 + 10/12, "feet"),
  30876. weight: math.unit(200, "lb"),
  30877. name: "Back",
  30878. image: {
  30879. source: "./media/characters/jax/back.svg",
  30880. extra: 764/739,
  30881. bottom: 25/789
  30882. }
  30883. },
  30884. },
  30885. [
  30886. {
  30887. name: "Normal",
  30888. height: math.unit(5 + 10/12, "feet"),
  30889. default: true
  30890. },
  30891. ]
  30892. ))
  30893. characterMakers.push(() => makeCharacter(
  30894. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30895. {
  30896. front: {
  30897. height: math.unit(8, "feet"),
  30898. weight: math.unit(250, "lb"),
  30899. name: "Front",
  30900. image: {
  30901. source: "./media/characters/eikthynir/front.svg",
  30902. extra: 1332/1166,
  30903. bottom: 82/1414
  30904. }
  30905. },
  30906. back: {
  30907. height: math.unit(8, "feet"),
  30908. weight: math.unit(250, "lb"),
  30909. name: "Back",
  30910. image: {
  30911. source: "./media/characters/eikthynir/back.svg",
  30912. extra: 1342/1190,
  30913. bottom: 19/1361
  30914. }
  30915. },
  30916. dick: {
  30917. height: math.unit(2.35, "feet"),
  30918. name: "Dick",
  30919. image: {
  30920. source: "./media/characters/eikthynir/dick.svg"
  30921. }
  30922. },
  30923. },
  30924. [
  30925. {
  30926. name: "Normal",
  30927. height: math.unit(8, "feet"),
  30928. default: true
  30929. },
  30930. ]
  30931. ))
  30932. characterMakers.push(() => makeCharacter(
  30933. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30934. {
  30935. front: {
  30936. height: math.unit(99, "meters"),
  30937. weight: math.unit(13000, "tons"),
  30938. name: "Front",
  30939. image: {
  30940. source: "./media/characters/zlmos/front.svg",
  30941. extra: 2202/1992,
  30942. bottom: 315/2517
  30943. }
  30944. },
  30945. },
  30946. [
  30947. {
  30948. name: "Macro",
  30949. height: math.unit(99, "meters"),
  30950. default: true
  30951. },
  30952. ]
  30953. ))
  30954. characterMakers.push(() => makeCharacter(
  30955. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30956. {
  30957. front: {
  30958. height: math.unit(6 + 5/12, "feet"),
  30959. name: "Front",
  30960. image: {
  30961. source: "./media/characters/purri/front.svg",
  30962. extra: 1698/1610,
  30963. bottom: 32/1730
  30964. }
  30965. },
  30966. frontAlt: {
  30967. height: math.unit(6 + 5/12, "feet"),
  30968. name: "Front (Alt)",
  30969. image: {
  30970. source: "./media/characters/purri/front-alt.svg",
  30971. extra: 450/420,
  30972. bottom: 26/476
  30973. }
  30974. },
  30975. boots: {
  30976. height: math.unit(5.5, "feet"),
  30977. name: "Boots",
  30978. image: {
  30979. source: "./media/characters/purri/boots.svg",
  30980. extra: 905/853,
  30981. bottom: 18/923
  30982. }
  30983. },
  30984. lying: {
  30985. height: math.unit(2, "feet"),
  30986. name: "Lying",
  30987. image: {
  30988. source: "./media/characters/purri/lying.svg",
  30989. extra: 940/843,
  30990. bottom: 146/1086
  30991. }
  30992. },
  30993. devious: {
  30994. height: math.unit(1.77, "feet"),
  30995. name: "Devious",
  30996. image: {
  30997. source: "./media/characters/purri/devious.svg",
  30998. extra: 1440/1155,
  30999. bottom: 147/1587
  31000. }
  31001. },
  31002. bean: {
  31003. height: math.unit(1.94, "feet"),
  31004. name: "Bean",
  31005. image: {
  31006. source: "./media/characters/purri/bean.svg"
  31007. }
  31008. },
  31009. },
  31010. [
  31011. {
  31012. name: "Micro",
  31013. height: math.unit(1, "mm")
  31014. },
  31015. {
  31016. name: "Normal",
  31017. height: math.unit(6 + 5/12, "feet"),
  31018. default: true
  31019. },
  31020. {
  31021. name: "Macro :3c",
  31022. height: math.unit(2, "miles")
  31023. },
  31024. ]
  31025. ))
  31026. characterMakers.push(() => makeCharacter(
  31027. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31028. {
  31029. front: {
  31030. height: math.unit(6 + 2/12, "feet"),
  31031. weight: math.unit(250, "lb"),
  31032. name: "Front",
  31033. image: {
  31034. source: "./media/characters/moonlight/front.svg",
  31035. extra: 1044/908,
  31036. bottom: 56/1100
  31037. }
  31038. },
  31039. feral: {
  31040. height: math.unit(3 + 1/12, "feet"),
  31041. weight: math.unit(50, "kg"),
  31042. name: "Feral",
  31043. image: {
  31044. source: "./media/characters/moonlight/feral.svg",
  31045. extra: 3705/2791,
  31046. bottom: 145/3850
  31047. }
  31048. },
  31049. paw: {
  31050. height: math.unit(1, "feet"),
  31051. name: "Paw",
  31052. image: {
  31053. source: "./media/characters/moonlight/paw.svg"
  31054. }
  31055. },
  31056. paws: {
  31057. height: math.unit(0.98, "feet"),
  31058. name: "Paws",
  31059. image: {
  31060. source: "./media/characters/moonlight/paws.svg",
  31061. extra: 939/939,
  31062. bottom: 50/989
  31063. }
  31064. },
  31065. mouth: {
  31066. height: math.unit(0.48, "feet"),
  31067. name: "Mouth",
  31068. image: {
  31069. source: "./media/characters/moonlight/mouth.svg"
  31070. }
  31071. },
  31072. dick: {
  31073. height: math.unit(1.46, "feet"),
  31074. name: "Dick",
  31075. image: {
  31076. source: "./media/characters/moonlight/dick.svg"
  31077. }
  31078. },
  31079. },
  31080. [
  31081. {
  31082. name: "Normal",
  31083. height: math.unit(6 + 2/12, "feet"),
  31084. default: true
  31085. },
  31086. {
  31087. name: "Macro",
  31088. height: math.unit(300, "feet")
  31089. },
  31090. {
  31091. name: "Macro+",
  31092. height: math.unit(1, "mile")
  31093. },
  31094. {
  31095. name: "Mt. Moon",
  31096. height: math.unit(5, "miles")
  31097. },
  31098. {
  31099. name: "Megamacro",
  31100. height: math.unit(15, "miles")
  31101. },
  31102. ]
  31103. ))
  31104. characterMakers.push(() => makeCharacter(
  31105. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31106. {
  31107. back: {
  31108. height: math.unit(6, "feet"),
  31109. weight: math.unit(150, "lb"),
  31110. name: "Back",
  31111. image: {
  31112. source: "./media/characters/sylen/back.svg",
  31113. extra: 1335/1273,
  31114. bottom: 107/1442
  31115. }
  31116. },
  31117. },
  31118. [
  31119. {
  31120. name: "Normal",
  31121. height: math.unit(5 + 5/12, "feet")
  31122. },
  31123. {
  31124. name: "Megamacro",
  31125. height: math.unit(3, "miles"),
  31126. default: true
  31127. },
  31128. ]
  31129. ))
  31130. characterMakers.push(() => makeCharacter(
  31131. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31132. {
  31133. front: {
  31134. height: math.unit(6, "feet"),
  31135. weight: math.unit(190, "lb"),
  31136. name: "Front",
  31137. image: {
  31138. source: "./media/characters/huttser/front.svg",
  31139. extra: 1152/1058,
  31140. bottom: 23/1175
  31141. }
  31142. },
  31143. side: {
  31144. height: math.unit(6, "feet"),
  31145. weight: math.unit(190, "lb"),
  31146. name: "Side",
  31147. image: {
  31148. source: "./media/characters/huttser/side.svg",
  31149. extra: 1174/1065,
  31150. bottom: 18/1192
  31151. }
  31152. },
  31153. back: {
  31154. height: math.unit(6, "feet"),
  31155. weight: math.unit(190, "lb"),
  31156. name: "Back",
  31157. image: {
  31158. source: "./media/characters/huttser/back.svg",
  31159. extra: 1158/1056,
  31160. bottom: 12/1170
  31161. }
  31162. },
  31163. },
  31164. [
  31165. ]
  31166. ))
  31167. characterMakers.push(() => makeCharacter(
  31168. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31169. {
  31170. side: {
  31171. height: math.unit(12 + 9/12, "feet"),
  31172. weight: math.unit(15000, "lb"),
  31173. name: "Side",
  31174. image: {
  31175. source: "./media/characters/faan/side.svg",
  31176. extra: 2747/2697,
  31177. bottom: 0/2747
  31178. }
  31179. },
  31180. front: {
  31181. height: math.unit(12 + 9/12, "feet"),
  31182. weight: math.unit(15000, "lb"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/faan/front.svg",
  31186. extra: 607/571,
  31187. bottom: 24/631
  31188. }
  31189. },
  31190. head: {
  31191. height: math.unit(2.85, "feet"),
  31192. name: "Head",
  31193. image: {
  31194. source: "./media/characters/faan/head.svg"
  31195. }
  31196. },
  31197. headAlt: {
  31198. height: math.unit(3.13, "feet"),
  31199. name: "Head-alt",
  31200. image: {
  31201. source: "./media/characters/faan/head-alt.svg"
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Normal",
  31208. height: math.unit(12 + 9/12, "feet"),
  31209. default: true
  31210. },
  31211. ]
  31212. ))
  31213. characterMakers.push(() => makeCharacter(
  31214. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31215. {
  31216. front: {
  31217. height: math.unit(6, "feet"),
  31218. weight: math.unit(300, "lb"),
  31219. name: "Front",
  31220. image: {
  31221. source: "./media/characters/tanio/front.svg",
  31222. extra: 711/673,
  31223. bottom: 25/736
  31224. }
  31225. },
  31226. },
  31227. [
  31228. {
  31229. name: "Normal",
  31230. height: math.unit(6, "feet"),
  31231. default: true
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31237. {
  31238. front: {
  31239. height: math.unit(3, "inches"),
  31240. name: "Front",
  31241. image: {
  31242. source: "./media/characters/noboru/front.svg",
  31243. extra: 1039/932,
  31244. bottom: 18/1057
  31245. }
  31246. },
  31247. },
  31248. [
  31249. {
  31250. name: "Micro",
  31251. height: math.unit(3, "inches"),
  31252. default: true
  31253. },
  31254. ]
  31255. ))
  31256. characterMakers.push(() => makeCharacter(
  31257. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31258. {
  31259. front: {
  31260. height: math.unit(1.85, "meters"),
  31261. weight: math.unit(80, "kg"),
  31262. name: "Front",
  31263. image: {
  31264. source: "./media/characters/daniel-barrett/front.svg",
  31265. extra: 355/337,
  31266. bottom: 9/364
  31267. }
  31268. },
  31269. },
  31270. [
  31271. {
  31272. name: "Pico",
  31273. height: math.unit(0.0433, "mm")
  31274. },
  31275. {
  31276. name: "Nano",
  31277. height: math.unit(1.5, "mm")
  31278. },
  31279. {
  31280. name: "Micro",
  31281. height: math.unit(5.3, "cm"),
  31282. default: true
  31283. },
  31284. {
  31285. name: "Normal",
  31286. height: math.unit(1.85, "meters")
  31287. },
  31288. {
  31289. name: "Macro",
  31290. height: math.unit(64.7, "meters")
  31291. },
  31292. {
  31293. name: "Megamacro",
  31294. height: math.unit(2.26, "km")
  31295. },
  31296. {
  31297. name: "Gigamacro",
  31298. height: math.unit(79, "km")
  31299. },
  31300. {
  31301. name: "Teramacro",
  31302. height: math.unit(2765, "km")
  31303. },
  31304. {
  31305. name: "Petamacro",
  31306. height: math.unit(96678, "km")
  31307. },
  31308. ]
  31309. ))
  31310. characterMakers.push(() => makeCharacter(
  31311. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31312. {
  31313. front: {
  31314. height: math.unit(30, "meters"),
  31315. weight: math.unit(400, "tons"),
  31316. name: "Front",
  31317. image: {
  31318. source: "./media/characters/zeel/front.svg",
  31319. extra: 2599/2599,
  31320. bottom: 226/2825
  31321. }
  31322. },
  31323. },
  31324. [
  31325. {
  31326. name: "Macro",
  31327. height: math.unit(30, "meters"),
  31328. default: true
  31329. },
  31330. ]
  31331. ))
  31332. characterMakers.push(() => makeCharacter(
  31333. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31334. {
  31335. front: {
  31336. height: math.unit(6 + 7/12, "feet"),
  31337. weight: math.unit(210, "lb"),
  31338. name: "Front",
  31339. image: {
  31340. source: "./media/characters/tarn/front.svg",
  31341. extra: 3517/3220,
  31342. bottom: 91/3608
  31343. }
  31344. },
  31345. back: {
  31346. height: math.unit(6 + 7/12, "feet"),
  31347. weight: math.unit(210, "lb"),
  31348. name: "Back",
  31349. image: {
  31350. source: "./media/characters/tarn/back.svg",
  31351. extra: 3566/3241,
  31352. bottom: 34/3600
  31353. }
  31354. },
  31355. dick: {
  31356. height: math.unit(1.65, "feet"),
  31357. name: "Dick",
  31358. image: {
  31359. source: "./media/characters/tarn/dick.svg"
  31360. }
  31361. },
  31362. paw: {
  31363. height: math.unit(1.80, "feet"),
  31364. name: "Paw",
  31365. image: {
  31366. source: "./media/characters/tarn/paw.svg"
  31367. }
  31368. },
  31369. tongue: {
  31370. height: math.unit(0.97, "feet"),
  31371. name: "Tongue",
  31372. image: {
  31373. source: "./media/characters/tarn/tongue.svg"
  31374. }
  31375. },
  31376. },
  31377. [
  31378. {
  31379. name: "Micro",
  31380. height: math.unit(4, "inches")
  31381. },
  31382. {
  31383. name: "Normal",
  31384. height: math.unit(6 + 7/12, "feet"),
  31385. default: true
  31386. },
  31387. {
  31388. name: "Macro",
  31389. height: math.unit(300, "feet")
  31390. },
  31391. ]
  31392. ))
  31393. characterMakers.push(() => makeCharacter(
  31394. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31395. {
  31396. front: {
  31397. height: math.unit(5 + 7/12, "feet"),
  31398. weight: math.unit(80, "kg"),
  31399. name: "Front",
  31400. image: {
  31401. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31402. extra: 3023/2865,
  31403. bottom: 33/3056
  31404. }
  31405. },
  31406. back: {
  31407. height: math.unit(5 + 7/12, "feet"),
  31408. weight: math.unit(80, "kg"),
  31409. name: "Back",
  31410. image: {
  31411. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31412. extra: 3020/2886,
  31413. bottom: 30/3050
  31414. }
  31415. },
  31416. dick: {
  31417. height: math.unit(0.98, "feet"),
  31418. name: "Dick",
  31419. image: {
  31420. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31421. }
  31422. },
  31423. anatomy: {
  31424. height: math.unit(2.86, "feet"),
  31425. name: "Anatomy",
  31426. image: {
  31427. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31428. }
  31429. },
  31430. },
  31431. [
  31432. {
  31433. name: "Really Small",
  31434. height: math.unit(2, "inches")
  31435. },
  31436. {
  31437. name: "Micro",
  31438. height: math.unit(5.583, "inches")
  31439. },
  31440. {
  31441. name: "Normal",
  31442. height: math.unit(5 + 7/12, "feet"),
  31443. default: true
  31444. },
  31445. {
  31446. name: "Macro",
  31447. height: math.unit(67, "feet")
  31448. },
  31449. {
  31450. name: "Megamacro",
  31451. height: math.unit(134, "feet")
  31452. },
  31453. ]
  31454. ))
  31455. characterMakers.push(() => makeCharacter(
  31456. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31457. {
  31458. front: {
  31459. height: math.unit(9, "feet"),
  31460. weight: math.unit(120, "lb"),
  31461. name: "Front",
  31462. image: {
  31463. source: "./media/characters/sally/front.svg",
  31464. extra: 1506/1349,
  31465. bottom: 66/1572
  31466. }
  31467. },
  31468. },
  31469. [
  31470. {
  31471. name: "Normal",
  31472. height: math.unit(9, "feet"),
  31473. default: true
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31479. {
  31480. front: {
  31481. height: math.unit(8, "feet"),
  31482. weight: math.unit(900, "lb"),
  31483. name: "Front",
  31484. image: {
  31485. source: "./media/characters/owen/front.svg",
  31486. extra: 1761/1657,
  31487. bottom: 74/1835
  31488. }
  31489. },
  31490. side: {
  31491. height: math.unit(8, "feet"),
  31492. weight: math.unit(900, "lb"),
  31493. name: "Side",
  31494. image: {
  31495. source: "./media/characters/owen/side.svg",
  31496. extra: 1797/1734,
  31497. bottom: 30/1827
  31498. }
  31499. },
  31500. back: {
  31501. height: math.unit(8, "feet"),
  31502. weight: math.unit(900, "lb"),
  31503. name: "Back",
  31504. image: {
  31505. source: "./media/characters/owen/back.svg",
  31506. extra: 1796/1706,
  31507. bottom: 59/1855
  31508. }
  31509. },
  31510. maw: {
  31511. height: math.unit(1.76, "feet"),
  31512. name: "Maw",
  31513. image: {
  31514. source: "./media/characters/owen/maw.svg"
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Normal",
  31521. height: math.unit(8, "feet"),
  31522. default: true
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31528. {
  31529. front: {
  31530. height: math.unit(4, "feet"),
  31531. weight: math.unit(400, "lb"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/ryth/front.svg",
  31535. extra: 876/691,
  31536. bottom: 25/901
  31537. }
  31538. },
  31539. goia: {
  31540. height: math.unit(12, "feet"),
  31541. weight: math.unit(10800, "lb"),
  31542. name: "Goia",
  31543. image: {
  31544. source: "./media/characters/ryth/goia.svg",
  31545. extra: 3450/3198,
  31546. bottom: 61/3511
  31547. }
  31548. },
  31549. },
  31550. [
  31551. {
  31552. name: "Normal",
  31553. height: math.unit(4, "feet"),
  31554. default: true
  31555. },
  31556. ]
  31557. ))
  31558. characterMakers.push(() => makeCharacter(
  31559. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31560. {
  31561. front: {
  31562. height: math.unit(7, "feet"),
  31563. weight: math.unit(180, "lb"),
  31564. name: "Front",
  31565. image: {
  31566. source: "./media/characters/necrolance/front.svg",
  31567. extra: 1062/947,
  31568. bottom: 41/1103
  31569. }
  31570. },
  31571. back: {
  31572. height: math.unit(7, "feet"),
  31573. weight: math.unit(180, "lb"),
  31574. name: "Back",
  31575. image: {
  31576. source: "./media/characters/necrolance/back.svg",
  31577. extra: 1045/984,
  31578. bottom: 14/1059
  31579. }
  31580. },
  31581. wing: {
  31582. height: math.unit(2.67, "feet"),
  31583. name: "Wing",
  31584. image: {
  31585. source: "./media/characters/necrolance/wing.svg"
  31586. }
  31587. },
  31588. },
  31589. [
  31590. {
  31591. name: "Normal",
  31592. height: math.unit(7, "feet"),
  31593. default: true
  31594. },
  31595. ]
  31596. ))
  31597. characterMakers.push(() => makeCharacter(
  31598. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31599. {
  31600. front: {
  31601. height: math.unit(76, "meters"),
  31602. weight: math.unit(30000, "tons"),
  31603. name: "Front",
  31604. image: {
  31605. source: "./media/characters/tyler/front.svg",
  31606. extra: 1640/1640,
  31607. bottom: 114/1754
  31608. }
  31609. },
  31610. },
  31611. [
  31612. {
  31613. name: "Macro",
  31614. height: math.unit(76, "meters"),
  31615. default: true
  31616. },
  31617. ]
  31618. ))
  31619. characterMakers.push(() => makeCharacter(
  31620. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31621. {
  31622. front: {
  31623. height: math.unit(4 + 11/12, "feet"),
  31624. weight: math.unit(132, "lb"),
  31625. name: "Front",
  31626. image: {
  31627. source: "./media/characters/icey/front.svg",
  31628. extra: 2750/2550,
  31629. bottom: 33/2783
  31630. }
  31631. },
  31632. back: {
  31633. height: math.unit(4 + 11/12, "feet"),
  31634. weight: math.unit(132, "lb"),
  31635. name: "Back",
  31636. image: {
  31637. source: "./media/characters/icey/back.svg",
  31638. extra: 2624/2481,
  31639. bottom: 35/2659
  31640. }
  31641. },
  31642. },
  31643. [
  31644. {
  31645. name: "Normal",
  31646. height: math.unit(4 + 11/12, "feet"),
  31647. default: true
  31648. },
  31649. ]
  31650. ))
  31651. characterMakers.push(() => makeCharacter(
  31652. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31653. {
  31654. front: {
  31655. height: math.unit(100, "feet"),
  31656. weight: math.unit(0, "lb"),
  31657. name: "Front",
  31658. image: {
  31659. source: "./media/characters/smile/front.svg",
  31660. extra: 2983/2912,
  31661. bottom: 162/3145
  31662. }
  31663. },
  31664. back: {
  31665. height: math.unit(100, "feet"),
  31666. weight: math.unit(0, "lb"),
  31667. name: "Back",
  31668. image: {
  31669. source: "./media/characters/smile/back.svg",
  31670. extra: 3143/3031,
  31671. bottom: 91/3234
  31672. }
  31673. },
  31674. head: {
  31675. height: math.unit(26.3, "feet"),
  31676. weight: math.unit(0, "lb"),
  31677. name: "Head",
  31678. image: {
  31679. source: "./media/characters/smile/head.svg"
  31680. }
  31681. },
  31682. collar: {
  31683. height: math.unit(5.3, "feet"),
  31684. weight: math.unit(0, "lb"),
  31685. name: "Collar",
  31686. image: {
  31687. source: "./media/characters/smile/collar.svg"
  31688. }
  31689. },
  31690. },
  31691. [
  31692. {
  31693. name: "Macro",
  31694. height: math.unit(100, "feet"),
  31695. default: true
  31696. },
  31697. ]
  31698. ))
  31699. characterMakers.push(() => makeCharacter(
  31700. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31701. {
  31702. dragon: {
  31703. height: math.unit(26, "feet"),
  31704. weight: math.unit(36, "tons"),
  31705. name: "Dragon",
  31706. image: {
  31707. source: "./media/characters/arimphae/dragon.svg",
  31708. extra: 1574/983,
  31709. bottom: 357/1931
  31710. }
  31711. },
  31712. drake: {
  31713. height: math.unit(9, "feet"),
  31714. weight: math.unit(1.5, "tons"),
  31715. name: "Drake",
  31716. image: {
  31717. source: "./media/characters/arimphae/drake.svg",
  31718. extra: 1120/925,
  31719. bottom: 435/1555
  31720. }
  31721. },
  31722. },
  31723. [
  31724. {
  31725. name: "Small",
  31726. height: math.unit(26*5/9, "feet")
  31727. },
  31728. {
  31729. name: "Normal",
  31730. height: math.unit(26, "feet"),
  31731. default: true
  31732. },
  31733. ]
  31734. ))
  31735. characterMakers.push(() => makeCharacter(
  31736. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31737. {
  31738. front: {
  31739. height: math.unit(8 + 9/12, "feet"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/xander/front.svg",
  31743. extra: 848/673,
  31744. bottom: 62/910
  31745. }
  31746. },
  31747. },
  31748. [
  31749. {
  31750. name: "Normal",
  31751. height: math.unit(8 + 9/12, "feet"),
  31752. default: true
  31753. },
  31754. {
  31755. name: "Gaze Grabber",
  31756. height: math.unit(13 + 8/12, "feet")
  31757. },
  31758. {
  31759. name: "Jaw Dropper",
  31760. height: math.unit(27, "feet")
  31761. },
  31762. {
  31763. name: "Show Stopper",
  31764. height: math.unit(136, "feet")
  31765. },
  31766. {
  31767. name: "Superstar",
  31768. height: math.unit(1.9e6, "miles")
  31769. },
  31770. ]
  31771. ))
  31772. characterMakers.push(() => makeCharacter(
  31773. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31774. {
  31775. side: {
  31776. height: math.unit(2100, "feet"),
  31777. name: "Side",
  31778. image: {
  31779. source: "./media/characters/osiris/side.svg",
  31780. extra: 1105/939,
  31781. bottom: 167/1272
  31782. }
  31783. },
  31784. },
  31785. [
  31786. {
  31787. name: "Macro",
  31788. height: math.unit(2100, "feet"),
  31789. default: true
  31790. },
  31791. ]
  31792. ))
  31793. characterMakers.push(() => makeCharacter(
  31794. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31795. {
  31796. front: {
  31797. height: math.unit(6 + 8/12, "feet"),
  31798. weight: math.unit(225, "lb"),
  31799. name: "Front",
  31800. image: {
  31801. source: "./media/characters/rhys-londe/front.svg",
  31802. extra: 2258/2141,
  31803. bottom: 188/2446
  31804. }
  31805. },
  31806. back: {
  31807. height: math.unit(6 + 8/12, "feet"),
  31808. weight: math.unit(225, "lb"),
  31809. name: "Back",
  31810. image: {
  31811. source: "./media/characters/rhys-londe/back.svg",
  31812. extra: 2237/2137,
  31813. bottom: 63/2300
  31814. }
  31815. },
  31816. frontNsfw: {
  31817. height: math.unit(6 + 8/12, "feet"),
  31818. weight: math.unit(225, "lb"),
  31819. name: "Front (NSFW)",
  31820. image: {
  31821. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31822. extra: 2258/2141,
  31823. bottom: 188/2446
  31824. }
  31825. },
  31826. backNsfw: {
  31827. height: math.unit(6 + 8/12, "feet"),
  31828. weight: math.unit(225, "lb"),
  31829. name: "Back (NSFW)",
  31830. image: {
  31831. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31832. extra: 2237/2137,
  31833. bottom: 63/2300
  31834. }
  31835. },
  31836. dick: {
  31837. height: math.unit(30, "inches"),
  31838. name: "Dick",
  31839. image: {
  31840. source: "./media/characters/rhys-londe/dick.svg"
  31841. }
  31842. },
  31843. maw: {
  31844. height: math.unit(1.6, "feet"),
  31845. name: "Maw",
  31846. image: {
  31847. source: "./media/characters/rhys-londe/maw.svg"
  31848. }
  31849. },
  31850. },
  31851. [
  31852. {
  31853. name: "Normal",
  31854. height: math.unit(6 + 8/12, "feet"),
  31855. default: true
  31856. },
  31857. ]
  31858. ))
  31859. characterMakers.push(() => makeCharacter(
  31860. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31861. {
  31862. front: {
  31863. height: math.unit(3 + 10/12, "feet"),
  31864. weight: math.unit(90, "lb"),
  31865. name: "Front",
  31866. image: {
  31867. source: "./media/characters/taivas-ensim/front.svg",
  31868. extra: 1327/1216,
  31869. bottom: 96/1423
  31870. }
  31871. },
  31872. back: {
  31873. height: math.unit(3 + 10/12, "feet"),
  31874. weight: math.unit(90, "lb"),
  31875. name: "Back",
  31876. image: {
  31877. source: "./media/characters/taivas-ensim/back.svg",
  31878. extra: 1355/1247,
  31879. bottom: 11/1366
  31880. }
  31881. },
  31882. frontNsfw: {
  31883. height: math.unit(3 + 10/12, "feet"),
  31884. weight: math.unit(90, "lb"),
  31885. name: "Front (NSFW)",
  31886. image: {
  31887. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31888. extra: 1327/1216,
  31889. bottom: 96/1423
  31890. }
  31891. },
  31892. backNsfw: {
  31893. height: math.unit(3 + 10/12, "feet"),
  31894. weight: math.unit(90, "lb"),
  31895. name: "Back (NSFW)",
  31896. image: {
  31897. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31898. extra: 1355/1247,
  31899. bottom: 11/1366
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(3 + 10/12, "feet"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(9 + 6/12, "feet"),
  31916. weight: math.unit(940, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/byliss/front.svg",
  31920. extra: 1327/1290,
  31921. bottom: 82/1409
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(9 + 6/12, "feet"),
  31926. weight: math.unit(940, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/byliss/back.svg",
  31930. extra: 1376/1349,
  31931. bottom: 9/1385
  31932. }
  31933. },
  31934. frontNsfw: {
  31935. height: math.unit(9 + 6/12, "feet"),
  31936. weight: math.unit(940, "lb"),
  31937. name: "Front (NSFW)",
  31938. image: {
  31939. source: "./media/characters/byliss/front-nsfw.svg",
  31940. extra: 1327/1290,
  31941. bottom: 82/1409
  31942. }
  31943. },
  31944. backNsfw: {
  31945. height: math.unit(9 + 6/12, "feet"),
  31946. weight: math.unit(940, "lb"),
  31947. name: "Back (NSFW)",
  31948. image: {
  31949. source: "./media/characters/byliss/back-nsfw.svg",
  31950. extra: 1376/1349,
  31951. bottom: 9/1385
  31952. }
  31953. },
  31954. },
  31955. [
  31956. {
  31957. name: "Normal",
  31958. height: math.unit(9 + 6/12, "feet"),
  31959. default: true
  31960. },
  31961. ]
  31962. ))
  31963. characterMakers.push(() => makeCharacter(
  31964. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31965. {
  31966. front: {
  31967. height: math.unit(5 + 2/12, "feet"),
  31968. weight: math.unit(200, "lb"),
  31969. name: "Front",
  31970. image: {
  31971. source: "./media/characters/noraly/front.svg",
  31972. extra: 4985/4773,
  31973. bottom: 150/5135
  31974. }
  31975. },
  31976. full: {
  31977. height: math.unit(5 + 2/12, "feet"),
  31978. weight: math.unit(164, "lb"),
  31979. name: "Full",
  31980. image: {
  31981. source: "./media/characters/noraly/full.svg",
  31982. extra: 1114/1059,
  31983. bottom: 35/1149
  31984. }
  31985. },
  31986. fuller: {
  31987. height: math.unit(5 + 2/12, "feet"),
  31988. weight: math.unit(230, "lb"),
  31989. name: "Fuller",
  31990. image: {
  31991. source: "./media/characters/noraly/fuller.svg",
  31992. extra: 1114/1059,
  31993. bottom: 35/1149
  31994. }
  31995. },
  31996. fullest: {
  31997. height: math.unit(5 + 2/12, "feet"),
  31998. weight: math.unit(300, "lb"),
  31999. name: "Fullest",
  32000. image: {
  32001. source: "./media/characters/noraly/fullest.svg",
  32002. extra: 1114/1059,
  32003. bottom: 35/1149
  32004. }
  32005. },
  32006. },
  32007. [
  32008. {
  32009. name: "Normal",
  32010. height: math.unit(5 + 2/12, "feet"),
  32011. default: true
  32012. },
  32013. ]
  32014. ))
  32015. characterMakers.push(() => makeCharacter(
  32016. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32017. {
  32018. front: {
  32019. height: math.unit(5 + 2/12, "feet"),
  32020. weight: math.unit(210, "lb"),
  32021. name: "Front",
  32022. image: {
  32023. source: "./media/characters/pera/front.svg",
  32024. extra: 1560/1531,
  32025. bottom: 165/1725
  32026. }
  32027. },
  32028. back: {
  32029. height: math.unit(5 + 2/12, "feet"),
  32030. weight: math.unit(210, "lb"),
  32031. name: "Back",
  32032. image: {
  32033. source: "./media/characters/pera/back.svg",
  32034. extra: 1523/1493,
  32035. bottom: 152/1675
  32036. }
  32037. },
  32038. dick: {
  32039. height: math.unit(2.4, "feet"),
  32040. name: "Dick",
  32041. image: {
  32042. source: "./media/characters/pera/dick.svg"
  32043. }
  32044. },
  32045. },
  32046. [
  32047. {
  32048. name: "Normal",
  32049. height: math.unit(5 + 2/12, "feet"),
  32050. default: true
  32051. },
  32052. ]
  32053. ))
  32054. characterMakers.push(() => makeCharacter(
  32055. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32056. {
  32057. front: {
  32058. height: math.unit(12, "feet"),
  32059. weight: math.unit(3200, "lb"),
  32060. name: "Front",
  32061. image: {
  32062. source: "./media/characters/julian/front.svg",
  32063. extra: 2962/2701,
  32064. bottom: 184/3146
  32065. }
  32066. },
  32067. maw: {
  32068. height: math.unit(5.35, "feet"),
  32069. name: "Maw",
  32070. image: {
  32071. source: "./media/characters/julian/maw.svg"
  32072. }
  32073. },
  32074. paw: {
  32075. height: math.unit(3.07, "feet"),
  32076. name: "Paw",
  32077. image: {
  32078. source: "./media/characters/julian/paw.svg"
  32079. }
  32080. },
  32081. },
  32082. [
  32083. {
  32084. name: "Default",
  32085. height: math.unit(12, "feet"),
  32086. default: true
  32087. },
  32088. {
  32089. name: "Big",
  32090. height: math.unit(50, "feet")
  32091. },
  32092. {
  32093. name: "Really Big",
  32094. height: math.unit(1, "mile")
  32095. },
  32096. {
  32097. name: "Extremely Big",
  32098. height: math.unit(100, "miles")
  32099. },
  32100. {
  32101. name: "Planet Hugger",
  32102. height: math.unit(200, "megameters")
  32103. },
  32104. {
  32105. name: "Unreasonably Big",
  32106. height: math.unit(1e300, "meters")
  32107. },
  32108. ]
  32109. ))
  32110. characterMakers.push(() => makeCharacter(
  32111. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32112. {
  32113. solgooleo: {
  32114. height: math.unit(4, "meters"),
  32115. weight: math.unit(6000*1.5, "kg"),
  32116. volume: math.unit(6000, "liters"),
  32117. name: "Solgooleo",
  32118. image: {
  32119. source: "./media/characters/pi/solgooleo.svg",
  32120. extra: 388/331,
  32121. bottom: 29/417
  32122. }
  32123. },
  32124. },
  32125. [
  32126. {
  32127. name: "Normal",
  32128. height: math.unit(4, "meters"),
  32129. default: true
  32130. },
  32131. ]
  32132. ))
  32133. characterMakers.push(() => makeCharacter(
  32134. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32135. {
  32136. front: {
  32137. height: math.unit(8 + 2/12, "feet"),
  32138. weight: math.unit(4, "tons"),
  32139. name: "Front",
  32140. image: {
  32141. source: "./media/characters/shaun/front.svg",
  32142. extra: 1550/1505,
  32143. bottom: 353/1903
  32144. }
  32145. },
  32146. },
  32147. [
  32148. {
  32149. name: "Lorg",
  32150. height: math.unit(8 + 2/12, "feet"),
  32151. default: true
  32152. },
  32153. ]
  32154. ))
  32155. characterMakers.push(() => makeCharacter(
  32156. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32157. {
  32158. front: {
  32159. height: math.unit(7, "feet"),
  32160. name: "Front",
  32161. image: {
  32162. source: "./media/characters/sini/front.svg",
  32163. extra: 726/678,
  32164. bottom: 35/761
  32165. }
  32166. },
  32167. back: {
  32168. height: math.unit(7, "feet"),
  32169. name: "Back",
  32170. image: {
  32171. source: "./media/characters/sini/back.svg",
  32172. extra: 743/701,
  32173. bottom: 12/755
  32174. }
  32175. },
  32176. mawAnthro: {
  32177. height: math.unit(2.14, "feet"),
  32178. name: "Maw (Anthro)",
  32179. image: {
  32180. source: "./media/characters/sini/maw-anthro.svg"
  32181. }
  32182. },
  32183. dick: {
  32184. height: math.unit(1.45, "feet"),
  32185. name: "Dick (Anthro)",
  32186. image: {
  32187. source: "./media/characters/sini/dick-anthro.svg"
  32188. }
  32189. },
  32190. feral: {
  32191. height: math.unit(13, "feet"),
  32192. name: "Feral",
  32193. image: {
  32194. source: "./media/characters/sini/feral.svg",
  32195. extra: 814/605,
  32196. bottom: 11/825
  32197. }
  32198. },
  32199. mawFeral: {
  32200. height: math.unit(4.6, "feet"),
  32201. name: "Maw-feral",
  32202. image: {
  32203. source: "./media/characters/sini/maw-feral.svg"
  32204. }
  32205. },
  32206. footFeral: {
  32207. height: math.unit(4.2, "feet"),
  32208. name: "Foot-feral",
  32209. image: {
  32210. source: "./media/characters/sini/foot-feral.svg"
  32211. }
  32212. },
  32213. },
  32214. [
  32215. {
  32216. name: "Normal",
  32217. height: math.unit(7, "feet"),
  32218. default: true
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32224. {
  32225. side: {
  32226. height: math.unit(13, "meters"),
  32227. weight: math.unit(9072, "kg"),
  32228. name: "Side",
  32229. image: {
  32230. source: "./media/characters/raylldo/side.svg",
  32231. extra: 403/344,
  32232. bottom: 42/445
  32233. }
  32234. },
  32235. leaping: {
  32236. height: math.unit(12.3, "meters"),
  32237. weight: math.unit(9072, "kg"),
  32238. name: "Leaping",
  32239. image: {
  32240. source: "./media/characters/raylldo/leaping.svg",
  32241. extra: 470/249,
  32242. bottom: 13/483
  32243. }
  32244. },
  32245. flying: {
  32246. height: math.unit(18, "meters"),
  32247. weight: math.unit(9072, "kg"),
  32248. name: "Flying",
  32249. image: {
  32250. source: "./media/characters/raylldo/flying.svg"
  32251. }
  32252. },
  32253. head: {
  32254. height: math.unit(5.85, "meters"),
  32255. name: "Head",
  32256. image: {
  32257. source: "./media/characters/raylldo/head.svg"
  32258. }
  32259. },
  32260. maw: {
  32261. height: math.unit(5.32, "meters"),
  32262. name: "Maw",
  32263. image: {
  32264. source: "./media/characters/raylldo/maw.svg"
  32265. }
  32266. },
  32267. eye: {
  32268. height: math.unit(0.54, "meters"),
  32269. name: "Eye",
  32270. image: {
  32271. source: "./media/characters/raylldo/eye.svg"
  32272. }
  32273. },
  32274. },
  32275. [
  32276. {
  32277. name: "Normal",
  32278. height: math.unit(13, "meters"),
  32279. default: true
  32280. },
  32281. ]
  32282. ))
  32283. characterMakers.push(() => makeCharacter(
  32284. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32285. {
  32286. anthroFront: {
  32287. height: math.unit(9, "feet"),
  32288. weight: math.unit(600, "lb"),
  32289. name: "Anthro (Front)",
  32290. image: {
  32291. source: "./media/characters/glint/anthro-front.svg",
  32292. extra: 1097/1018,
  32293. bottom: 28/1125
  32294. }
  32295. },
  32296. anthroBack: {
  32297. height: math.unit(9, "feet"),
  32298. weight: math.unit(600, "lb"),
  32299. name: "Anthro (Back)",
  32300. image: {
  32301. source: "./media/characters/glint/anthro-back.svg",
  32302. extra: 1154/997,
  32303. bottom: 36/1190
  32304. }
  32305. },
  32306. feral: {
  32307. height: math.unit(11, "feet"),
  32308. weight: math.unit(50000, "lb"),
  32309. name: "Feral",
  32310. image: {
  32311. source: "./media/characters/glint/feral.svg",
  32312. extra: 3035/1585,
  32313. bottom: 1169/4204
  32314. }
  32315. },
  32316. dickAnthro: {
  32317. height: math.unit(0.7, "meters"),
  32318. name: "Dick (Anthro)",
  32319. image: {
  32320. source: "./media/characters/glint/dick-anthro.svg"
  32321. }
  32322. },
  32323. dickFeral: {
  32324. height: math.unit(2.65, "meters"),
  32325. name: "Dick (Feral)",
  32326. image: {
  32327. source: "./media/characters/glint/dick-feral.svg"
  32328. }
  32329. },
  32330. slitHidden: {
  32331. height: math.unit(5.85, "meters"),
  32332. name: "Slit (Hidden)",
  32333. image: {
  32334. source: "./media/characters/glint/slit-hidden.svg"
  32335. }
  32336. },
  32337. slitErect: {
  32338. height: math.unit(5.85, "meters"),
  32339. name: "Slit (Erect)",
  32340. image: {
  32341. source: "./media/characters/glint/slit-erect.svg"
  32342. }
  32343. },
  32344. mawAnthro: {
  32345. height: math.unit(0.63, "meters"),
  32346. name: "Maw (Anthro)",
  32347. image: {
  32348. source: "./media/characters/glint/maw.svg"
  32349. }
  32350. },
  32351. mawFeral: {
  32352. height: math.unit(2.89, "meters"),
  32353. name: "Maw (Feral)",
  32354. image: {
  32355. source: "./media/characters/glint/maw.svg"
  32356. }
  32357. },
  32358. },
  32359. [
  32360. {
  32361. name: "Normal",
  32362. height: math.unit(9, "feet"),
  32363. default: true
  32364. },
  32365. ]
  32366. ))
  32367. characterMakers.push(() => makeCharacter(
  32368. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32369. {
  32370. side: {
  32371. height: math.unit(15, "feet"),
  32372. weight: math.unit(5000, "kg"),
  32373. name: "Side",
  32374. image: {
  32375. source: "./media/characters/kairne/side.svg",
  32376. extra: 979/811,
  32377. bottom: 13/992
  32378. }
  32379. },
  32380. front: {
  32381. height: math.unit(15, "feet"),
  32382. weight: math.unit(5000, "kg"),
  32383. name: "Front",
  32384. image: {
  32385. source: "./media/characters/kairne/front.svg",
  32386. extra: 908/814,
  32387. bottom: 26/934
  32388. }
  32389. },
  32390. sideNsfw: {
  32391. height: math.unit(15, "feet"),
  32392. weight: math.unit(5000, "kg"),
  32393. name: "Side (NSFW)",
  32394. image: {
  32395. source: "./media/characters/kairne/side-nsfw.svg",
  32396. extra: 979/811,
  32397. bottom: 13/992
  32398. }
  32399. },
  32400. frontNsfw: {
  32401. height: math.unit(15, "feet"),
  32402. weight: math.unit(5000, "kg"),
  32403. name: "Front (NSFW)",
  32404. image: {
  32405. source: "./media/characters/kairne/front-nsfw.svg",
  32406. extra: 908/814,
  32407. bottom: 26/934
  32408. }
  32409. },
  32410. dickCaged: {
  32411. height: math.unit(0.65, "meters"),
  32412. name: "Dick-caged",
  32413. image: {
  32414. source: "./media/characters/kairne/dick-caged.svg"
  32415. }
  32416. },
  32417. dick: {
  32418. height: math.unit(0.79, "meters"),
  32419. name: "Dick",
  32420. image: {
  32421. source: "./media/characters/kairne/dick.svg"
  32422. }
  32423. },
  32424. genitals: {
  32425. height: math.unit(1.29, "meters"),
  32426. name: "Genitals",
  32427. image: {
  32428. source: "./media/characters/kairne/genitals.svg"
  32429. }
  32430. },
  32431. maw: {
  32432. height: math.unit(1.73, "meters"),
  32433. name: "Maw",
  32434. image: {
  32435. source: "./media/characters/kairne/maw.svg"
  32436. }
  32437. },
  32438. },
  32439. [
  32440. {
  32441. name: "Normal",
  32442. height: math.unit(15, "feet"),
  32443. default: true
  32444. },
  32445. ]
  32446. ))
  32447. characterMakers.push(() => makeCharacter(
  32448. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32449. {
  32450. front: {
  32451. height: math.unit(5 + 8/12, "feet"),
  32452. weight: math.unit(139, "lb"),
  32453. name: "Front",
  32454. image: {
  32455. source: "./media/characters/biscuit-jackal/front.svg",
  32456. extra: 2106/1961,
  32457. bottom: 58/2164
  32458. }
  32459. },
  32460. back: {
  32461. height: math.unit(5 + 8/12, "feet"),
  32462. weight: math.unit(139, "lb"),
  32463. name: "Back",
  32464. image: {
  32465. source: "./media/characters/biscuit-jackal/back.svg",
  32466. extra: 2132/1976,
  32467. bottom: 57/2189
  32468. }
  32469. },
  32470. werejackal: {
  32471. height: math.unit(6 + 3/12, "feet"),
  32472. weight: math.unit(188, "lb"),
  32473. name: "Werejackal",
  32474. image: {
  32475. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32476. extra: 2373/2178,
  32477. bottom: 53/2426
  32478. }
  32479. },
  32480. },
  32481. [
  32482. {
  32483. name: "Normal",
  32484. height: math.unit(5 + 8/12, "feet"),
  32485. default: true
  32486. },
  32487. ]
  32488. ))
  32489. characterMakers.push(() => makeCharacter(
  32490. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32491. {
  32492. front: {
  32493. height: math.unit(140, "cm"),
  32494. weight: math.unit(45, "kg"),
  32495. name: "Front",
  32496. image: {
  32497. source: "./media/characters/tayra-white/front.svg",
  32498. extra: 2229/2192,
  32499. bottom: 75/2304
  32500. }
  32501. },
  32502. },
  32503. [
  32504. {
  32505. name: "Normal",
  32506. height: math.unit(140, "cm"),
  32507. default: true
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32513. {
  32514. front: {
  32515. height: math.unit(4 + 5/12, "feet"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/scoop/front.svg",
  32519. extra: 1257/1136,
  32520. bottom: 69/1326
  32521. }
  32522. },
  32523. back: {
  32524. height: math.unit(4 + 5/12, "feet"),
  32525. name: "Back",
  32526. image: {
  32527. source: "./media/characters/scoop/back.svg",
  32528. extra: 1321/1152,
  32529. bottom: 32/1353
  32530. }
  32531. },
  32532. maw: {
  32533. height: math.unit(0.68, "feet"),
  32534. name: "Maw",
  32535. image: {
  32536. source: "./media/characters/scoop/maw.svg"
  32537. }
  32538. },
  32539. },
  32540. [
  32541. {
  32542. name: "Really Small",
  32543. height: math.unit(1, "mm")
  32544. },
  32545. {
  32546. name: "Micro",
  32547. height: math.unit(1, "inch")
  32548. },
  32549. {
  32550. name: "Normal",
  32551. height: math.unit(4 + 5/12, "feet"),
  32552. default: true
  32553. },
  32554. {
  32555. name: "Macro",
  32556. height: math.unit(200, "feet")
  32557. },
  32558. {
  32559. name: "Megamacro",
  32560. height: math.unit(3240, "feet")
  32561. },
  32562. {
  32563. name: "Teramacro",
  32564. height: math.unit(2500, "miles")
  32565. },
  32566. ]
  32567. ))
  32568. characterMakers.push(() => makeCharacter(
  32569. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32570. {
  32571. front: {
  32572. height: math.unit(15 + 7/12, "feet"),
  32573. name: "Front",
  32574. image: {
  32575. source: "./media/characters/saphinara/front.svg",
  32576. extra: 604/546,
  32577. bottom: 19/623
  32578. }
  32579. },
  32580. side: {
  32581. height: math.unit(15 + 7/12, "feet"),
  32582. name: "Side",
  32583. image: {
  32584. source: "./media/characters/saphinara/side.svg",
  32585. extra: 605/547,
  32586. bottom: 6/611
  32587. }
  32588. },
  32589. back: {
  32590. height: math.unit(15 + 7/12, "feet"),
  32591. name: "Back",
  32592. image: {
  32593. source: "./media/characters/saphinara/back.svg",
  32594. extra: 591/531,
  32595. bottom: 13/604
  32596. }
  32597. },
  32598. frontTail: {
  32599. height: math.unit(15 + 7/12, "feet"),
  32600. name: "Front (Full Tail)",
  32601. image: {
  32602. source: "./media/characters/saphinara/front-tail.svg",
  32603. extra: 748/547,
  32604. bottom: 66/814
  32605. }
  32606. },
  32607. },
  32608. [
  32609. {
  32610. name: "Normal",
  32611. height: math.unit(15 + 7/12, "feet"),
  32612. default: true
  32613. },
  32614. {
  32615. name: "Angry",
  32616. height: math.unit(30 + 6/12, "feet")
  32617. },
  32618. {
  32619. name: "Enraged",
  32620. height: math.unit(102 + 1/12, "feet")
  32621. },
  32622. ]
  32623. ))
  32624. characterMakers.push(() => makeCharacter(
  32625. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32626. {
  32627. front: {
  32628. height: math.unit(6 + 8/12, "feet"),
  32629. weight: math.unit(300, "lb"),
  32630. name: "Front",
  32631. image: {
  32632. source: "./media/characters/jrain/front.svg",
  32633. extra: 3039/2865,
  32634. bottom: 399/3438
  32635. }
  32636. },
  32637. back: {
  32638. height: math.unit(6 + 8/12, "feet"),
  32639. weight: math.unit(300, "lb"),
  32640. name: "Back",
  32641. image: {
  32642. source: "./media/characters/jrain/back.svg",
  32643. extra: 3089/2938,
  32644. bottom: 172/3261
  32645. }
  32646. },
  32647. head: {
  32648. height: math.unit(2.14, "feet"),
  32649. name: "Head",
  32650. image: {
  32651. source: "./media/characters/jrain/head.svg"
  32652. }
  32653. },
  32654. maw: {
  32655. height: math.unit(1.77, "feet"),
  32656. name: "Maw",
  32657. image: {
  32658. source: "./media/characters/jrain/maw.svg"
  32659. }
  32660. },
  32661. leftHand: {
  32662. height: math.unit(1.1, "feet"),
  32663. name: "Left Hand",
  32664. image: {
  32665. source: "./media/characters/jrain/left-hand.svg"
  32666. }
  32667. },
  32668. rightHand: {
  32669. height: math.unit(1.1, "feet"),
  32670. name: "Right Hand",
  32671. image: {
  32672. source: "./media/characters/jrain/right-hand.svg"
  32673. }
  32674. },
  32675. eye: {
  32676. height: math.unit(0.35, "feet"),
  32677. name: "Eye",
  32678. image: {
  32679. source: "./media/characters/jrain/eye.svg"
  32680. }
  32681. },
  32682. },
  32683. [
  32684. {
  32685. name: "Normal",
  32686. height: math.unit(6 + 8/12, "feet"),
  32687. default: true
  32688. },
  32689. {
  32690. name: "Casually Large",
  32691. height: math.unit(25, "feet")
  32692. },
  32693. {
  32694. name: "Giant",
  32695. height: math.unit(100, "feet")
  32696. },
  32697. {
  32698. name: "Kaiju",
  32699. height: math.unit(300, "feet")
  32700. },
  32701. ]
  32702. ))
  32703. characterMakers.push(() => makeCharacter(
  32704. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32705. {
  32706. dragon: {
  32707. height: math.unit(5, "meters"),
  32708. name: "Dragon",
  32709. image: {
  32710. source: "./media/characters/sabrina/dragon.svg",
  32711. extra: 3670 / 2365,
  32712. bottom: 333 / 4003
  32713. }
  32714. },
  32715. gryphon: {
  32716. height: math.unit(3, "meters"),
  32717. name: "Gryphon",
  32718. image: {
  32719. source: "./media/characters/sabrina/gryphon.svg",
  32720. extra: 1576 / 945,
  32721. bottom: 71 / 1647
  32722. }
  32723. },
  32724. snake: {
  32725. height: math.unit(12, "meters"),
  32726. name: "Snake",
  32727. image: {
  32728. source: "./media/characters/sabrina/snake.svg",
  32729. extra: 1758 / 1320,
  32730. bottom: 186 / 1944
  32731. }
  32732. },
  32733. collar: {
  32734. height: math.unit(1.86, "meters"),
  32735. name: "Collar",
  32736. image: {
  32737. source: "./media/characters/sabrina/collar.svg"
  32738. }
  32739. },
  32740. eye: {
  32741. height: math.unit(0.53, "meters"),
  32742. name: "Eye",
  32743. image: {
  32744. source: "./media/characters/sabrina/eye.svg"
  32745. }
  32746. },
  32747. foot: {
  32748. height: math.unit(1.86, "meters"),
  32749. name: "Foot",
  32750. image: {
  32751. source: "./media/characters/sabrina/foot.svg"
  32752. }
  32753. },
  32754. hand: {
  32755. height: math.unit(1.32, "meters"),
  32756. name: "Hand",
  32757. image: {
  32758. source: "./media/characters/sabrina/hand.svg"
  32759. }
  32760. },
  32761. head: {
  32762. height: math.unit(2.44, "meters"),
  32763. name: "Head",
  32764. image: {
  32765. source: "./media/characters/sabrina/head.svg"
  32766. }
  32767. },
  32768. headAngry: {
  32769. height: math.unit(2.44, "meters"),
  32770. name: "Head (Angry))",
  32771. image: {
  32772. source: "./media/characters/sabrina/head-angry.svg"
  32773. }
  32774. },
  32775. maw: {
  32776. height: math.unit(1.65, "meters"),
  32777. name: "Maw",
  32778. image: {
  32779. source: "./media/characters/sabrina/maw.svg"
  32780. }
  32781. },
  32782. spikes: {
  32783. height: math.unit(1.69, "meters"),
  32784. name: "Spikes",
  32785. image: {
  32786. source: "./media/characters/sabrina/spikes.svg"
  32787. }
  32788. },
  32789. stomach: {
  32790. height: math.unit(1.15, "meters"),
  32791. name: "Stomach",
  32792. image: {
  32793. source: "./media/characters/sabrina/stomach.svg"
  32794. }
  32795. },
  32796. tongue: {
  32797. height: math.unit(1.27, "meters"),
  32798. name: "Tongue",
  32799. image: {
  32800. source: "./media/characters/sabrina/tongue.svg"
  32801. }
  32802. },
  32803. wingDorsal: {
  32804. height: math.unit(4.85, "meters"),
  32805. name: "Wing (Dorsal)",
  32806. image: {
  32807. source: "./media/characters/sabrina/wing-dorsal.svg"
  32808. }
  32809. },
  32810. wingVentral: {
  32811. height: math.unit(4.85, "meters"),
  32812. name: "Wing (Ventral)",
  32813. image: {
  32814. source: "./media/characters/sabrina/wing-ventral.svg"
  32815. }
  32816. },
  32817. },
  32818. [
  32819. {
  32820. name: "Normal",
  32821. height: math.unit(5, "meters"),
  32822. default: true
  32823. },
  32824. ]
  32825. ))
  32826. characterMakers.push(() => makeCharacter(
  32827. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32828. {
  32829. frontMaid: {
  32830. height: math.unit(5 + 5/12, "feet"),
  32831. weight: math.unit(130, "lb"),
  32832. name: "Front (Maid)",
  32833. image: {
  32834. source: "./media/characters/midnight-tales/front-maid.svg",
  32835. extra: 489/454,
  32836. bottom: 61/550
  32837. }
  32838. },
  32839. frontFormal: {
  32840. height: math.unit(5 + 5/12, "feet"),
  32841. weight: math.unit(130, "lb"),
  32842. name: "Front (Formal)",
  32843. image: {
  32844. source: "./media/characters/midnight-tales/front-formal.svg",
  32845. extra: 489/454,
  32846. bottom: 61/550
  32847. }
  32848. },
  32849. back: {
  32850. height: math.unit(5 + 5/12, "feet"),
  32851. weight: math.unit(130, "lb"),
  32852. name: "Back",
  32853. image: {
  32854. source: "./media/characters/midnight-tales/back.svg",
  32855. extra: 498/456,
  32856. bottom: 33/531
  32857. }
  32858. },
  32859. frontBeast: {
  32860. height: math.unit(40, "feet"),
  32861. weight: math.unit(64000, "lb"),
  32862. name: "Front (Beast)",
  32863. image: {
  32864. source: "./media/characters/midnight-tales/front-beast.svg",
  32865. extra: 927/860,
  32866. bottom: 53/980
  32867. }
  32868. },
  32869. backBeast: {
  32870. height: math.unit(40, "feet"),
  32871. weight: math.unit(64000, "lb"),
  32872. name: "Back (Beast)",
  32873. image: {
  32874. source: "./media/characters/midnight-tales/back-beast.svg",
  32875. extra: 929/855,
  32876. bottom: 16/945
  32877. }
  32878. },
  32879. footBeast: {
  32880. height: math.unit(6.7, "feet"),
  32881. name: "Foot (Beast)",
  32882. image: {
  32883. source: "./media/characters/midnight-tales/foot-beast.svg"
  32884. }
  32885. },
  32886. headBeast: {
  32887. height: math.unit(8, "feet"),
  32888. name: "Head (Beast)",
  32889. image: {
  32890. source: "./media/characters/midnight-tales/head-beast.svg"
  32891. }
  32892. },
  32893. },
  32894. [
  32895. {
  32896. name: "Normal",
  32897. height: math.unit(5 + 5 / 12, "feet"),
  32898. default: true
  32899. },
  32900. {
  32901. name: "Macro",
  32902. height: math.unit(25, "feet")
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32908. {
  32909. front: {
  32910. height: math.unit(5 + 10/12, "feet"),
  32911. name: "Front",
  32912. image: {
  32913. source: "./media/characters/argon/front.svg",
  32914. extra: 2009/1935,
  32915. bottom: 118/2127
  32916. }
  32917. },
  32918. back: {
  32919. height: math.unit(5 + 10/12, "feet"),
  32920. name: "Back",
  32921. image: {
  32922. source: "./media/characters/argon/back.svg",
  32923. extra: 2047/1992,
  32924. bottom: 20/2067
  32925. }
  32926. },
  32927. frontDressed: {
  32928. height: math.unit(5 + 10/12, "feet"),
  32929. name: "Front (Dressed)",
  32930. image: {
  32931. source: "./media/characters/argon/front-dressed.svg",
  32932. extra: 2009/1935,
  32933. bottom: 118/2127
  32934. }
  32935. },
  32936. },
  32937. [
  32938. {
  32939. name: "Normal",
  32940. height: math.unit(5 + 10/12, "feet"),
  32941. default: true
  32942. },
  32943. ]
  32944. ))
  32945. characterMakers.push(() => makeCharacter(
  32946. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32947. {
  32948. front: {
  32949. height: math.unit(8 + 6/12, "feet"),
  32950. weight: math.unit(1150, "lb"),
  32951. name: "Front",
  32952. image: {
  32953. source: "./media/characters/kichi/front.svg",
  32954. extra: 1267/1164,
  32955. bottom: 61/1328
  32956. }
  32957. },
  32958. back: {
  32959. height: math.unit(8 + 6/12, "feet"),
  32960. weight: math.unit(1150, "lb"),
  32961. name: "Back",
  32962. image: {
  32963. source: "./media/characters/kichi/back.svg",
  32964. extra: 1273/1166,
  32965. bottom: 33/1306
  32966. }
  32967. },
  32968. },
  32969. [
  32970. {
  32971. name: "Normal",
  32972. height: math.unit(8 + 6/12, "feet"),
  32973. default: true
  32974. },
  32975. ]
  32976. ))
  32977. characterMakers.push(() => makeCharacter(
  32978. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32979. {
  32980. front: {
  32981. height: math.unit(6, "feet"),
  32982. weight: math.unit(210, "lb"),
  32983. name: "Front",
  32984. image: {
  32985. source: "./media/characters/manetel-greyscale/front.svg",
  32986. extra: 350/312,
  32987. bottom: 8/358
  32988. }
  32989. },
  32990. },
  32991. [
  32992. {
  32993. name: "Micro",
  32994. height: math.unit(2, "inches")
  32995. },
  32996. {
  32997. name: "Normal",
  32998. height: math.unit(6, "feet"),
  32999. default: true
  33000. },
  33001. {
  33002. name: "Minimacro",
  33003. height: math.unit(17, "feet")
  33004. },
  33005. {
  33006. name: "Macro",
  33007. height: math.unit(117, "feet")
  33008. },
  33009. ]
  33010. ))
  33011. characterMakers.push(() => makeCharacter(
  33012. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33013. {
  33014. side: {
  33015. height: math.unit(5 + 1/12, "feet"),
  33016. weight: math.unit(418, "lb"),
  33017. name: "Side",
  33018. image: {
  33019. source: "./media/characters/softpurr/side.svg",
  33020. extra: 1993/1945,
  33021. bottom: 134/2127
  33022. }
  33023. },
  33024. front: {
  33025. height: math.unit(5 + 1/12, "feet"),
  33026. weight: math.unit(418, "lb"),
  33027. name: "Front",
  33028. image: {
  33029. source: "./media/characters/softpurr/front.svg",
  33030. extra: 1950/1856,
  33031. bottom: 174/2124
  33032. }
  33033. },
  33034. paw: {
  33035. height: math.unit(1, "feet"),
  33036. name: "Paw",
  33037. image: {
  33038. source: "./media/characters/softpurr/paw.svg"
  33039. }
  33040. },
  33041. },
  33042. [
  33043. {
  33044. name: "Normal",
  33045. height: math.unit(5 + 1/12, "feet"),
  33046. default: true
  33047. },
  33048. ]
  33049. ))
  33050. characterMakers.push(() => makeCharacter(
  33051. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33052. {
  33053. front: {
  33054. height: math.unit(260, "meters"),
  33055. name: "Front",
  33056. image: {
  33057. source: "./media/characters/anahita/front.svg",
  33058. extra: 665/635,
  33059. bottom: 89/754
  33060. }
  33061. },
  33062. },
  33063. [
  33064. {
  33065. name: "Macro",
  33066. height: math.unit(260, "meters"),
  33067. default: true
  33068. },
  33069. ]
  33070. ))
  33071. characterMakers.push(() => makeCharacter(
  33072. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33073. {
  33074. front: {
  33075. height: math.unit(4 + 10/12, "feet"),
  33076. weight: math.unit(160, "lb"),
  33077. name: "Front",
  33078. image: {
  33079. source: "./media/characters/chip-mouse/front.svg",
  33080. extra: 3528/3408,
  33081. bottom: 0/3528
  33082. }
  33083. },
  33084. frontNsfw: {
  33085. height: math.unit(4 + 10/12, "feet"),
  33086. weight: math.unit(160, "lb"),
  33087. name: "Front (NSFW)",
  33088. image: {
  33089. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33090. extra: 3528/3408,
  33091. bottom: 0/3528
  33092. }
  33093. },
  33094. },
  33095. [
  33096. {
  33097. name: "Normal",
  33098. height: math.unit(4 + 10/12, "feet"),
  33099. default: true
  33100. },
  33101. ]
  33102. ))
  33103. characterMakers.push(() => makeCharacter(
  33104. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33105. {
  33106. side: {
  33107. height: math.unit(10, "feet"),
  33108. weight: math.unit(14000, "lb"),
  33109. name: "Side",
  33110. image: {
  33111. source: "./media/characters/kremm/side.svg",
  33112. extra: 1390/1053,
  33113. bottom: 90/1480
  33114. }
  33115. },
  33116. gut: {
  33117. height: math.unit(5.8, "feet"),
  33118. name: "Gut",
  33119. image: {
  33120. source: "./media/characters/kremm/gut.svg"
  33121. }
  33122. },
  33123. ass: {
  33124. height: math.unit(6.1, "feet"),
  33125. name: "Ass",
  33126. image: {
  33127. source: "./media/characters/kremm/ass.svg"
  33128. }
  33129. },
  33130. jaws: {
  33131. height: math.unit(2.2, "feet"),
  33132. name: "Jaws",
  33133. image: {
  33134. source: "./media/characters/kremm/jaws.svg"
  33135. }
  33136. },
  33137. dick: {
  33138. height: math.unit(4.26, "feet"),
  33139. name: "Dick",
  33140. image: {
  33141. source: "./media/characters/kremm/dick.svg"
  33142. }
  33143. },
  33144. },
  33145. [
  33146. {
  33147. name: "Normal",
  33148. height: math.unit(10, "feet"),
  33149. default: true
  33150. },
  33151. ]
  33152. ))
  33153. characterMakers.push(() => makeCharacter(
  33154. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33155. {
  33156. front: {
  33157. height: math.unit(30, "stories"),
  33158. name: "Front",
  33159. image: {
  33160. source: "./media/characters/kai/front.svg",
  33161. extra: 1892/1718,
  33162. bottom: 162/2054
  33163. }
  33164. },
  33165. },
  33166. [
  33167. {
  33168. name: "Macro",
  33169. height: math.unit(30, "stories"),
  33170. default: true
  33171. },
  33172. ]
  33173. ))
  33174. characterMakers.push(() => makeCharacter(
  33175. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33176. {
  33177. front: {
  33178. height: math.unit(6 + 4/12, "feet"),
  33179. weight: math.unit(145, "lb"),
  33180. name: "Front",
  33181. image: {
  33182. source: "./media/characters/sykes/front.svg",
  33183. extra: 1321 / 1187,
  33184. bottom: 66 / 1387
  33185. }
  33186. },
  33187. back: {
  33188. height: math.unit(6 + 4/12, "feet"),
  33189. weight: math.unit(145, "lb"),
  33190. name: "Back",
  33191. image: {
  33192. source: "./media/characters/sykes/back.svg",
  33193. extra: 1326/1181,
  33194. bottom: 31/1357
  33195. }
  33196. },
  33197. handBack: {
  33198. height: math.unit(0.9, "feet"),
  33199. name: "Hand (Back)",
  33200. image: {
  33201. source: "./media/characters/sykes/hand-back.svg"
  33202. }
  33203. },
  33204. handFront: {
  33205. height: math.unit(0.839, "feet"),
  33206. name: "Hand (Front)",
  33207. image: {
  33208. source: "./media/characters/sykes/hand-front.svg"
  33209. }
  33210. },
  33211. leftFoot: {
  33212. height: math.unit(1.2, "feet"),
  33213. name: "Foot (Left)",
  33214. image: {
  33215. source: "./media/characters/sykes/foot-left.svg"
  33216. }
  33217. },
  33218. rightFoot: {
  33219. height: math.unit(1.2, "feet"),
  33220. name: "Foot (Right)",
  33221. image: {
  33222. source: "./media/characters/sykes/foot-right.svg"
  33223. }
  33224. },
  33225. maw: {
  33226. height: math.unit(1.93, "feet"),
  33227. name: "Maw",
  33228. image: {
  33229. source: "./media/characters/sykes/maw.svg"
  33230. }
  33231. },
  33232. teeth: {
  33233. height: math.unit(0.51, "feet"),
  33234. name: "Teeth",
  33235. image: {
  33236. source: "./media/characters/sykes/teeth.svg"
  33237. }
  33238. },
  33239. tongue: {
  33240. height: math.unit(2.13, "feet"),
  33241. name: "Tongue",
  33242. image: {
  33243. source: "./media/characters/sykes/tongue.svg"
  33244. }
  33245. },
  33246. uvula: {
  33247. height: math.unit(0.16, "feet"),
  33248. name: "Uvula",
  33249. image: {
  33250. source: "./media/characters/sykes/uvula.svg"
  33251. }
  33252. },
  33253. collar: {
  33254. height: math.unit(0.287, "feet"),
  33255. name: "Collar",
  33256. image: {
  33257. source: "./media/characters/sykes/collar.svg"
  33258. }
  33259. },
  33260. },
  33261. [
  33262. {
  33263. name: "Shrunken",
  33264. height: math.unit(5, "inches")
  33265. },
  33266. {
  33267. name: "Normal",
  33268. height: math.unit(6 + 4 / 12, "feet"),
  33269. default: true
  33270. },
  33271. {
  33272. name: "Big",
  33273. height: math.unit(15, "feet")
  33274. },
  33275. ]
  33276. ))
  33277. characterMakers.push(() => makeCharacter(
  33278. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33279. {
  33280. front: {
  33281. height: math.unit(5 + 8/12, "feet"),
  33282. weight: math.unit(190, "lb"),
  33283. name: "Front",
  33284. image: {
  33285. source: "./media/characters/oven-otter/front.svg",
  33286. extra: 1809/1740,
  33287. bottom: 181/1990
  33288. }
  33289. },
  33290. back: {
  33291. height: math.unit(5 + 8/12, "feet"),
  33292. weight: math.unit(190, "lb"),
  33293. name: "Back",
  33294. image: {
  33295. source: "./media/characters/oven-otter/back.svg",
  33296. extra: 1709/1635,
  33297. bottom: 118/1827
  33298. }
  33299. },
  33300. hand: {
  33301. height: math.unit(1.07, "feet"),
  33302. name: "Hand",
  33303. image: {
  33304. source: "./media/characters/oven-otter/hand.svg"
  33305. }
  33306. },
  33307. beans: {
  33308. height: math.unit(1.74, "feet"),
  33309. name: "Beans",
  33310. image: {
  33311. source: "./media/characters/oven-otter/beans.svg"
  33312. }
  33313. },
  33314. },
  33315. [
  33316. {
  33317. name: "Micro",
  33318. height: math.unit(0.5, "inches")
  33319. },
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(5 + 8/12, "feet"),
  33323. default: true
  33324. },
  33325. {
  33326. name: "Macro",
  33327. height: math.unit(250, "feet")
  33328. },
  33329. {
  33330. name: "Really High",
  33331. height: math.unit(420, "feet")
  33332. },
  33333. ]
  33334. ))
  33335. characterMakers.push(() => makeCharacter(
  33336. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33337. {
  33338. front: {
  33339. height: math.unit(5, "meters"),
  33340. weight: math.unit(292000000000000, "kg"),
  33341. name: "Front",
  33342. image: {
  33343. source: "./media/characters/devourer/front.svg",
  33344. extra: 1800/1733,
  33345. bottom: 211/2011
  33346. }
  33347. },
  33348. maw: {
  33349. height: math.unit(1.1, "meter"),
  33350. name: "Maw",
  33351. image: {
  33352. source: "./media/characters/devourer/maw.svg"
  33353. }
  33354. },
  33355. },
  33356. [
  33357. {
  33358. name: "Small",
  33359. height: math.unit(3, "meters")
  33360. },
  33361. {
  33362. name: "Large",
  33363. height: math.unit(5, "meters"),
  33364. default: true
  33365. },
  33366. ]
  33367. ))
  33368. characterMakers.push(() => makeCharacter(
  33369. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33370. {
  33371. front: {
  33372. height: math.unit(6, "feet"),
  33373. weight: math.unit(400, "lb"),
  33374. name: "Front",
  33375. image: {
  33376. source: "./media/characters/ellarby/front.svg",
  33377. extra: 1909/1763,
  33378. bottom: 80/1989
  33379. }
  33380. },
  33381. back: {
  33382. height: math.unit(6, "feet"),
  33383. weight: math.unit(400, "lb"),
  33384. name: "Back",
  33385. image: {
  33386. source: "./media/characters/ellarby/back.svg",
  33387. extra: 1914/1784,
  33388. bottom: 172/2086
  33389. }
  33390. },
  33391. },
  33392. [
  33393. {
  33394. name: "Mischief",
  33395. height: math.unit(18, "inches")
  33396. },
  33397. {
  33398. name: "Trouble",
  33399. height: math.unit(12, "feet")
  33400. },
  33401. {
  33402. name: "Havoc",
  33403. height: math.unit(200, "feet"),
  33404. default: true
  33405. },
  33406. {
  33407. name: "Pandemonium",
  33408. height: math.unit(1, "mile")
  33409. },
  33410. {
  33411. name: "Catastrophe",
  33412. height: math.unit(100, "miles")
  33413. },
  33414. ]
  33415. ))
  33416. characterMakers.push(() => makeCharacter(
  33417. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33418. {
  33419. front: {
  33420. height: math.unit(4.7, "meters"),
  33421. weight: math.unit(6500, "kg"),
  33422. name: "Front",
  33423. image: {
  33424. source: "./media/characters/vex/front.svg",
  33425. extra: 1288/1140,
  33426. bottom: 100/1388
  33427. }
  33428. },
  33429. },
  33430. [
  33431. {
  33432. name: "Normal",
  33433. height: math.unit(4.7, "meters"),
  33434. default: true
  33435. },
  33436. ]
  33437. ))
  33438. characterMakers.push(() => makeCharacter(
  33439. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33440. {
  33441. normal: {
  33442. height: math.unit(6, "feet"),
  33443. weight: math.unit(350, "lb"),
  33444. name: "Normal",
  33445. image: {
  33446. source: "./media/characters/teshy/normal.svg",
  33447. extra: 1795/1735,
  33448. bottom: 16/1811
  33449. }
  33450. },
  33451. monsterFront: {
  33452. height: math.unit(12, "feet"),
  33453. weight: math.unit(4700, "lb"),
  33454. name: "Monster (Front)",
  33455. image: {
  33456. source: "./media/characters/teshy/monster-front.svg",
  33457. extra: 2042/2034,
  33458. bottom: 128/2170
  33459. }
  33460. },
  33461. monsterSide: {
  33462. height: math.unit(12, "feet"),
  33463. weight: math.unit(4700, "lb"),
  33464. name: "Monster (Side)",
  33465. image: {
  33466. source: "./media/characters/teshy/monster-side.svg",
  33467. extra: 2067/2056,
  33468. bottom: 70/2137
  33469. }
  33470. },
  33471. monsterBack: {
  33472. height: math.unit(12, "feet"),
  33473. weight: math.unit(4700, "lb"),
  33474. name: "Monster (Back)",
  33475. image: {
  33476. source: "./media/characters/teshy/monster-back.svg",
  33477. extra: 1921/1914,
  33478. bottom: 171/2092
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(6, "feet"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(6, "feet"),
  33495. name: "Front",
  33496. image: {
  33497. source: "./media/characters/ramey/front.svg",
  33498. extra: 790/787,
  33499. bottom: 27/817
  33500. }
  33501. },
  33502. },
  33503. [
  33504. {
  33505. name: "Normal",
  33506. height: math.unit(6, "feet"),
  33507. default: true
  33508. },
  33509. ]
  33510. ))
  33511. characterMakers.push(() => makeCharacter(
  33512. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33513. {
  33514. front: {
  33515. height: math.unit(5 + 5/12, "feet"),
  33516. weight: math.unit(120, "lb"),
  33517. name: "Front",
  33518. image: {
  33519. source: "./media/characters/phirae/front.svg",
  33520. extra: 2491/2436,
  33521. bottom: 38/2529
  33522. }
  33523. },
  33524. },
  33525. [
  33526. {
  33527. name: "Normal",
  33528. height: math.unit(5 + 5/12, "feet"),
  33529. default: true
  33530. },
  33531. ]
  33532. ))
  33533. characterMakers.push(() => makeCharacter(
  33534. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33535. {
  33536. front: {
  33537. height: math.unit(6, "feet"),
  33538. weight: math.unit(150, "lb"),
  33539. name: "Front",
  33540. image: {
  33541. source: "./media/characters/stagglas/front.svg",
  33542. extra: 962/882,
  33543. bottom: 53/1015
  33544. }
  33545. },
  33546. },
  33547. [
  33548. {
  33549. name: "Normal",
  33550. height: math.unit(5 + 3/12, "feet"),
  33551. default: true
  33552. },
  33553. ]
  33554. ))
  33555. characterMakers.push(() => makeCharacter(
  33556. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33557. {
  33558. front: {
  33559. height: math.unit(5 + 4/12, "feet"),
  33560. weight: math.unit(145, "lb"),
  33561. name: "Front",
  33562. image: {
  33563. source: "./media/characters/starra/front.svg",
  33564. extra: 1790/1691,
  33565. bottom: 91/1881
  33566. }
  33567. },
  33568. },
  33569. [
  33570. {
  33571. name: "Normal",
  33572. height: math.unit(5 + 4/12, "feet"),
  33573. default: true
  33574. },
  33575. ]
  33576. ))
  33577. characterMakers.push(() => makeCharacter(
  33578. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33579. {
  33580. front: {
  33581. height: math.unit(2.2, "meters"),
  33582. name: "Front",
  33583. image: {
  33584. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33585. extra: 1194/1005,
  33586. bottom: 25/1219
  33587. }
  33588. },
  33589. },
  33590. [
  33591. {
  33592. name: "Normal",
  33593. height: math.unit(2.2, "meters"),
  33594. default: true
  33595. },
  33596. ]
  33597. ))
  33598. characterMakers.push(() => makeCharacter(
  33599. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33600. {
  33601. side: {
  33602. height: math.unit(8 + 2/12, "feet"),
  33603. weight: math.unit(1240, "lb"),
  33604. name: "Side",
  33605. image: {
  33606. source: "./media/characters/mika-valentine/side.svg",
  33607. extra: 2670/2501,
  33608. bottom: 250/2920
  33609. }
  33610. },
  33611. },
  33612. [
  33613. {
  33614. name: "Normal",
  33615. height: math.unit(8 + 2/12, "feet"),
  33616. default: true
  33617. },
  33618. ]
  33619. ))
  33620. characterMakers.push(() => makeCharacter(
  33621. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33622. {
  33623. front: {
  33624. height: math.unit(7 + 2/12, "feet"),
  33625. name: "Front",
  33626. image: {
  33627. source: "./media/characters/xoltol/front.svg",
  33628. extra: 2212/2124,
  33629. bottom: 84/2296
  33630. }
  33631. },
  33632. side: {
  33633. height: math.unit(7 + 2/12, "feet"),
  33634. name: "Side",
  33635. image: {
  33636. source: "./media/characters/xoltol/side.svg",
  33637. extra: 2273/2197,
  33638. bottom: 26/2299
  33639. }
  33640. },
  33641. hand: {
  33642. height: math.unit(2.5, "feet"),
  33643. name: "Hand",
  33644. image: {
  33645. source: "./media/characters/xoltol/hand.svg"
  33646. }
  33647. },
  33648. },
  33649. [
  33650. {
  33651. name: "Small-ish",
  33652. height: math.unit(5 + 11/12, "feet")
  33653. },
  33654. {
  33655. name: "Normal",
  33656. height: math.unit(7 + 2/12, "feet")
  33657. },
  33658. {
  33659. name: "\"Macro\"",
  33660. height: math.unit(14 + 9/12, "feet"),
  33661. default: true
  33662. },
  33663. {
  33664. name: "Alternate Height",
  33665. height: math.unit(20, "feet")
  33666. },
  33667. {
  33668. name: "Actually Macro",
  33669. height: math.unit(100, "feet")
  33670. },
  33671. ]
  33672. ))
  33673. characterMakers.push(() => makeCharacter(
  33674. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33675. {
  33676. front: {
  33677. height: math.unit(5 + 2/12, "feet"),
  33678. name: "Front",
  33679. image: {
  33680. source: "./media/characters/kotetsu-redwood/front.svg",
  33681. extra: 1053/942,
  33682. bottom: 60/1113
  33683. }
  33684. },
  33685. },
  33686. [
  33687. {
  33688. name: "Normal",
  33689. height: math.unit(5 + 2/12, "feet"),
  33690. default: true
  33691. },
  33692. ]
  33693. ))
  33694. characterMakers.push(() => makeCharacter(
  33695. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33696. {
  33697. front: {
  33698. height: math.unit(2.4, "meters"),
  33699. weight: math.unit(125, "kg"),
  33700. name: "Front",
  33701. image: {
  33702. source: "./media/characters/lilith/front.svg",
  33703. extra: 1590/1513,
  33704. bottom: 203/1793
  33705. }
  33706. },
  33707. },
  33708. [
  33709. {
  33710. name: "Humanoid",
  33711. height: math.unit(2.4, "meters")
  33712. },
  33713. {
  33714. name: "Normal",
  33715. height: math.unit(6, "meters"),
  33716. default: true
  33717. },
  33718. {
  33719. name: "Largest",
  33720. height: math.unit(55, "meters")
  33721. },
  33722. ]
  33723. ))
  33724. characterMakers.push(() => makeCharacter(
  33725. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33726. {
  33727. front: {
  33728. height: math.unit(8 + 4/12, "feet"),
  33729. weight: math.unit(535, "lb"),
  33730. name: "Front",
  33731. image: {
  33732. source: "./media/characters/beh'kah-bolger/front.svg",
  33733. extra: 1660/1603,
  33734. bottom: 37/1697
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Normal",
  33741. height: math.unit(8 + 4/12, "feet"),
  33742. default: true
  33743. },
  33744. {
  33745. name: "Kaiju",
  33746. height: math.unit(250, "feet")
  33747. },
  33748. {
  33749. name: "Still Growing",
  33750. height: math.unit(10, "miles")
  33751. },
  33752. {
  33753. name: "Continental",
  33754. height: math.unit(5000, "miles")
  33755. },
  33756. {
  33757. name: "Final Form",
  33758. height: math.unit(2500000, "miles")
  33759. },
  33760. ]
  33761. ))
  33762. characterMakers.push(() => makeCharacter(
  33763. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33764. {
  33765. front: {
  33766. height: math.unit(7 + 2/12, "feet"),
  33767. weight: math.unit(230, "kg"),
  33768. name: "Front",
  33769. image: {
  33770. source: "./media/characters/tatyana-milewska/front.svg",
  33771. extra: 1199/1150,
  33772. bottom: 86/1285
  33773. }
  33774. },
  33775. },
  33776. [
  33777. {
  33778. name: "Normal",
  33779. height: math.unit(7 + 2/12, "feet"),
  33780. default: true
  33781. },
  33782. {
  33783. name: "Big",
  33784. height: math.unit(12, "feet")
  33785. },
  33786. {
  33787. name: "Minimacro",
  33788. height: math.unit(20, "feet")
  33789. },
  33790. {
  33791. name: "Macro",
  33792. height: math.unit(120, "feet")
  33793. },
  33794. ]
  33795. ))
  33796. characterMakers.push(() => makeCharacter(
  33797. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33798. {
  33799. front: {
  33800. height: math.unit(7 + 8/12, "feet"),
  33801. weight: math.unit(152, "kg"),
  33802. name: "Front",
  33803. image: {
  33804. source: "./media/characters/helen-arri/front.svg",
  33805. extra: 440/423,
  33806. bottom: 14/454
  33807. }
  33808. },
  33809. back: {
  33810. height: math.unit(7 + 8/12, "feet"),
  33811. weight: math.unit(152, "kg"),
  33812. name: "Back",
  33813. image: {
  33814. source: "./media/characters/helen-arri/back.svg",
  33815. extra: 443/426,
  33816. bottom: 8/451
  33817. }
  33818. },
  33819. },
  33820. [
  33821. {
  33822. name: "Normal",
  33823. height: math.unit(7 + 8/12, "feet"),
  33824. default: true
  33825. },
  33826. {
  33827. name: "Big",
  33828. height: math.unit(14, "feet")
  33829. },
  33830. {
  33831. name: "Minimacro",
  33832. height: math.unit(24, "feet")
  33833. },
  33834. {
  33835. name: "Macro",
  33836. height: math.unit(140, "feet")
  33837. },
  33838. ]
  33839. ))
  33840. characterMakers.push(() => makeCharacter(
  33841. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33842. {
  33843. front: {
  33844. height: math.unit(6, "meters"),
  33845. name: "Front",
  33846. image: {
  33847. source: "./media/characters/ehanu-rehu/front.svg",
  33848. extra: 1800/1800,
  33849. bottom: 59/1859
  33850. }
  33851. },
  33852. },
  33853. [
  33854. {
  33855. name: "Normal",
  33856. height: math.unit(6, "meters"),
  33857. default: true
  33858. },
  33859. ]
  33860. ))
  33861. characterMakers.push(() => makeCharacter(
  33862. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33863. {
  33864. front: {
  33865. height: math.unit(7 + 3/12, "feet"),
  33866. name: "Front",
  33867. image: {
  33868. source: "./media/characters/renholder/front.svg",
  33869. extra: 3096/2960,
  33870. bottom: 250/3346
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Normal Bat",
  33877. height: math.unit(7 + 3/12, "feet"),
  33878. default: true
  33879. },
  33880. {
  33881. name: "Slightly Tall Bat",
  33882. height: math.unit(100, "feet")
  33883. },
  33884. {
  33885. name: "Big Bat",
  33886. height: math.unit(1000, "feet")
  33887. },
  33888. {
  33889. name: "City-Sized Bat",
  33890. height: math.unit(200000, "feet")
  33891. },
  33892. {
  33893. name: "Bigger Bat",
  33894. height: math.unit(10000, "miles")
  33895. },
  33896. {
  33897. name: "Solar Sized Bat",
  33898. height: math.unit(100, "AU")
  33899. },
  33900. {
  33901. name: "Galactic Bat",
  33902. height: math.unit(200000, "lightyears")
  33903. },
  33904. {
  33905. name: "Universally Known Bat",
  33906. height: math.unit(1, "universe")
  33907. },
  33908. ]
  33909. ))
  33910. characterMakers.push(() => makeCharacter(
  33911. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33912. {
  33913. front: {
  33914. height: math.unit(6 + 11/12, "feet"),
  33915. weight: math.unit(250, "lb"),
  33916. name: "Front",
  33917. image: {
  33918. source: "./media/characters/cookiecat/front.svg",
  33919. extra: 893/827,
  33920. bottom: 14/907
  33921. }
  33922. },
  33923. },
  33924. [
  33925. {
  33926. name: "Micro",
  33927. height: math.unit(3, "inches")
  33928. },
  33929. {
  33930. name: "Normal",
  33931. height: math.unit(6 + 11/12, "feet"),
  33932. default: true
  33933. },
  33934. {
  33935. name: "Macro",
  33936. height: math.unit(100, "feet")
  33937. },
  33938. {
  33939. name: "Macro+",
  33940. height: math.unit(404, "feet")
  33941. },
  33942. {
  33943. name: "Megamacro",
  33944. height: math.unit(165, "miles")
  33945. },
  33946. {
  33947. name: "Planetary",
  33948. height: math.unit(4600, "miles")
  33949. },
  33950. ]
  33951. ))
  33952. characterMakers.push(() => makeCharacter(
  33953. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33954. {
  33955. front: {
  33956. height: math.unit(10 + 3/12, "feet"),
  33957. weight: math.unit(1500, "lb"),
  33958. name: "Front",
  33959. image: {
  33960. source: "./media/characters/tux-kusanagi/front.svg",
  33961. extra: 944/840,
  33962. bottom: 39/983
  33963. }
  33964. },
  33965. back: {
  33966. height: math.unit(10 + 3/12, "feet"),
  33967. weight: math.unit(1500, "lb"),
  33968. name: "Back",
  33969. image: {
  33970. source: "./media/characters/tux-kusanagi/back.svg",
  33971. extra: 941/842,
  33972. bottom: 28/969
  33973. }
  33974. },
  33975. rump: {
  33976. height: math.unit(5.25, "feet"),
  33977. name: "Rump",
  33978. image: {
  33979. source: "./media/characters/tux-kusanagi/rump.svg"
  33980. }
  33981. },
  33982. beak: {
  33983. height: math.unit(1.54, "feet"),
  33984. name: "Beak",
  33985. image: {
  33986. source: "./media/characters/tux-kusanagi/beak.svg"
  33987. }
  33988. },
  33989. },
  33990. [
  33991. {
  33992. name: "Normal",
  33993. height: math.unit(10 + 3/12, "feet"),
  33994. default: true
  33995. },
  33996. ]
  33997. ))
  33998. characterMakers.push(() => makeCharacter(
  33999. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34000. {
  34001. front: {
  34002. height: math.unit(58, "feet"),
  34003. weight: math.unit(200, "tons"),
  34004. name: "Front",
  34005. image: {
  34006. source: "./media/characters/uzarmazari/front.svg",
  34007. extra: 1575/1455,
  34008. bottom: 152/1727
  34009. }
  34010. },
  34011. back: {
  34012. height: math.unit(58, "feet"),
  34013. weight: math.unit(200, "tons"),
  34014. name: "Back",
  34015. image: {
  34016. source: "./media/characters/uzarmazari/back.svg",
  34017. extra: 1585/1510,
  34018. bottom: 157/1742
  34019. }
  34020. },
  34021. head: {
  34022. height: math.unit(26, "feet"),
  34023. name: "Head",
  34024. image: {
  34025. source: "./media/characters/uzarmazari/head.svg"
  34026. }
  34027. },
  34028. },
  34029. [
  34030. {
  34031. name: "Normal",
  34032. height: math.unit(58, "feet"),
  34033. default: true
  34034. },
  34035. ]
  34036. ))
  34037. characterMakers.push(() => makeCharacter(
  34038. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34039. {
  34040. side: {
  34041. height: math.unit(15, "feet"),
  34042. name: "Side",
  34043. image: {
  34044. source: "./media/characters/akitu/side.svg",
  34045. extra: 1421/1321,
  34046. bottom: 157/1578
  34047. }
  34048. },
  34049. front: {
  34050. height: math.unit(15, "feet"),
  34051. name: "Front",
  34052. image: {
  34053. source: "./media/characters/akitu/front.svg",
  34054. extra: 1435/1326,
  34055. bottom: 232/1667
  34056. }
  34057. },
  34058. },
  34059. [
  34060. {
  34061. name: "Normal",
  34062. height: math.unit(15, "feet"),
  34063. default: true
  34064. },
  34065. ]
  34066. ))
  34067. characterMakers.push(() => makeCharacter(
  34068. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34069. {
  34070. front: {
  34071. height: math.unit(10 + 8/12, "feet"),
  34072. name: "Front",
  34073. image: {
  34074. source: "./media/characters/azalie-croixland/front.svg",
  34075. extra: 1972/1856,
  34076. bottom: 31/2003
  34077. }
  34078. },
  34079. },
  34080. [
  34081. {
  34082. name: "Original Height",
  34083. height: math.unit(5 + 4/12, "feet")
  34084. },
  34085. {
  34086. name: "Normal Height",
  34087. height: math.unit(10 + 8/12, "feet"),
  34088. default: true
  34089. },
  34090. ]
  34091. ))
  34092. characterMakers.push(() => makeCharacter(
  34093. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34094. {
  34095. side: {
  34096. height: math.unit(7 + 1/12, "feet"),
  34097. weight: math.unit(245, "lb"),
  34098. name: "Side",
  34099. image: {
  34100. source: "./media/characters/kavus-kazian/side.svg",
  34101. extra: 349/342,
  34102. bottom: 15/364
  34103. }
  34104. },
  34105. },
  34106. [
  34107. {
  34108. name: "Normal",
  34109. height: math.unit(7 + 1/12, "feet"),
  34110. default: true
  34111. },
  34112. ]
  34113. ))
  34114. characterMakers.push(() => makeCharacter(
  34115. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34116. {
  34117. normal: {
  34118. height: math.unit(5 + 11/12, "feet"),
  34119. name: "Normal",
  34120. image: {
  34121. source: "./media/characters/moonlight-rose/normal.svg",
  34122. extra: 1979/1835,
  34123. bottom: 14/1993
  34124. }
  34125. },
  34126. demon: {
  34127. height: math.unit(5, "km"),
  34128. name: "Demon",
  34129. image: {
  34130. source: "./media/characters/moonlight-rose/demon.svg",
  34131. extra: 986/916,
  34132. bottom: 28/1014
  34133. }
  34134. },
  34135. },
  34136. [
  34137. {
  34138. name: "\"Natural\" height",
  34139. height: math.unit(5 + 11/12, "feet")
  34140. },
  34141. {
  34142. name: "Comfortable Size",
  34143. height: math.unit(40, "meters")
  34144. },
  34145. {
  34146. name: "Common Size",
  34147. height: math.unit(50, "km"),
  34148. default: true
  34149. },
  34150. {
  34151. name: "Demonic",
  34152. height: math.unit(1.24415e+21, "meters")
  34153. },
  34154. ]
  34155. ))
  34156. characterMakers.push(() => makeCharacter(
  34157. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34158. {
  34159. front: {
  34160. height: math.unit(16, "feet"),
  34161. weight: math.unit(610, "kg"),
  34162. name: "Front",
  34163. image: {
  34164. source: "./media/characters/huckle/front.svg",
  34165. extra: 1731/1625,
  34166. bottom: 33/1764
  34167. }
  34168. },
  34169. back: {
  34170. height: math.unit(16, "feet"),
  34171. weight: math.unit(610, "kg"),
  34172. name: "Back",
  34173. image: {
  34174. source: "./media/characters/huckle/back.svg",
  34175. extra: 1738/1651,
  34176. bottom: 37/1775
  34177. }
  34178. },
  34179. laughing: {
  34180. height: math.unit(3.75, "feet"),
  34181. name: "Laughing",
  34182. image: {
  34183. source: "./media/characters/huckle/laughing.svg"
  34184. }
  34185. },
  34186. angry: {
  34187. height: math.unit(4.15, "feet"),
  34188. name: "Angry",
  34189. image: {
  34190. source: "./media/characters/huckle/angry.svg"
  34191. }
  34192. },
  34193. },
  34194. [
  34195. {
  34196. name: "Normal",
  34197. height: math.unit(16, "feet"),
  34198. default: true
  34199. },
  34200. {
  34201. name: "Mini Macro",
  34202. height: math.unit(463, "feet")
  34203. },
  34204. {
  34205. name: "Macro",
  34206. height: math.unit(1680, "meters")
  34207. },
  34208. {
  34209. name: "Mega Macro",
  34210. height: math.unit(175, "km")
  34211. },
  34212. {
  34213. name: "Terra Macro",
  34214. height: math.unit(32, "gigameters")
  34215. },
  34216. {
  34217. name: "Multiverse+",
  34218. height: math.unit(2.56e23, "yottameters")
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34224. {
  34225. front: {
  34226. height: math.unit(6 + 9/12, "feet"),
  34227. weight: math.unit(280, "lb"),
  34228. name: "Front",
  34229. image: {
  34230. source: "./media/characters/candy/front.svg",
  34231. extra: 234/217,
  34232. bottom: 11/245
  34233. }
  34234. },
  34235. },
  34236. [
  34237. {
  34238. name: "Really Small",
  34239. height: math.unit(0.1, "nm")
  34240. },
  34241. {
  34242. name: "Micro",
  34243. height: math.unit(2, "inches")
  34244. },
  34245. {
  34246. name: "Normal",
  34247. height: math.unit(6 + 9/12, "feet"),
  34248. default: true
  34249. },
  34250. {
  34251. name: "Small Macro",
  34252. height: math.unit(69, "feet")
  34253. },
  34254. {
  34255. name: "Macro",
  34256. height: math.unit(160, "feet")
  34257. },
  34258. {
  34259. name: "Megamacro",
  34260. height: math.unit(22000, "miles")
  34261. },
  34262. {
  34263. name: "Gigamacro",
  34264. height: math.unit(50000, "miles")
  34265. },
  34266. ]
  34267. ))
  34268. characterMakers.push(() => makeCharacter(
  34269. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34270. {
  34271. front: {
  34272. height: math.unit(4, "feet"),
  34273. weight: math.unit(90, "lb"),
  34274. name: "Front",
  34275. image: {
  34276. source: "./media/characters/joey-mcdonald/front.svg",
  34277. extra: 1059/852,
  34278. bottom: 33/1092
  34279. }
  34280. },
  34281. back: {
  34282. height: math.unit(4, "feet"),
  34283. weight: math.unit(90, "lb"),
  34284. name: "Back",
  34285. image: {
  34286. source: "./media/characters/joey-mcdonald/back.svg",
  34287. extra: 1077/879,
  34288. bottom: 5/1082
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Normal",
  34295. height: math.unit(4, "feet"),
  34296. default: true
  34297. },
  34298. ]
  34299. ))
  34300. characterMakers.push(() => makeCharacter(
  34301. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34302. {
  34303. front: {
  34304. height: math.unit(12 + 6/12, "feet"),
  34305. name: "Front",
  34306. image: {
  34307. source: "./media/characters/kass-lockheed/front.svg",
  34308. extra: 354/343,
  34309. bottom: 9/363
  34310. }
  34311. },
  34312. back: {
  34313. height: math.unit(12 + 6/12, "feet"),
  34314. name: "Back",
  34315. image: {
  34316. source: "./media/characters/kass-lockheed/back.svg",
  34317. extra: 364/352,
  34318. bottom: 3/367
  34319. }
  34320. },
  34321. dick: {
  34322. height: math.unit(3.12, "feet"),
  34323. name: "Dick",
  34324. image: {
  34325. source: "./media/characters/kass-lockheed/dick.svg"
  34326. }
  34327. },
  34328. head: {
  34329. height: math.unit(2.6, "feet"),
  34330. name: "Head",
  34331. image: {
  34332. source: "./media/characters/kass-lockheed/head.svg"
  34333. }
  34334. },
  34335. bleh: {
  34336. height: math.unit(2.85, "feet"),
  34337. name: "Bleh",
  34338. image: {
  34339. source: "./media/characters/kass-lockheed/bleh.svg"
  34340. }
  34341. },
  34342. smug: {
  34343. height: math.unit(2.85, "feet"),
  34344. name: "Smug",
  34345. image: {
  34346. source: "./media/characters/kass-lockheed/smug.svg"
  34347. }
  34348. },
  34349. },
  34350. [
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(12 + 6/12, "feet"),
  34354. default: true
  34355. },
  34356. ]
  34357. ))
  34358. characterMakers.push(() => makeCharacter(
  34359. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34360. {
  34361. front: {
  34362. height: math.unit(6 + 2/12, "feet"),
  34363. name: "Front",
  34364. image: {
  34365. source: "./media/characters/taylor/front.svg",
  34366. extra: 639/495,
  34367. bottom: 12/651
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(6 + 2/12, "feet"),
  34375. default: true
  34376. },
  34377. {
  34378. name: "Big",
  34379. height: math.unit(15, "feet")
  34380. },
  34381. {
  34382. name: "Lorg",
  34383. height: math.unit(80, "feet")
  34384. },
  34385. {
  34386. name: "Too Lorg",
  34387. height: math.unit(120, "feet")
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34393. {
  34394. front: {
  34395. height: math.unit(15, "feet"),
  34396. name: "Front",
  34397. image: {
  34398. source: "./media/characters/kaizer/front.svg",
  34399. extra: 1612/1436,
  34400. bottom: 43/1655
  34401. }
  34402. },
  34403. },
  34404. [
  34405. {
  34406. name: "Normal",
  34407. height: math.unit(15, "feet"),
  34408. default: true
  34409. },
  34410. ]
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34414. {
  34415. front: {
  34416. height: math.unit(2, "feet"),
  34417. weight: math.unit(30, "lb"),
  34418. name: "Front",
  34419. image: {
  34420. source: "./media/characters/sandy/front.svg",
  34421. extra: 1439/1307,
  34422. bottom: 194/1633
  34423. }
  34424. },
  34425. },
  34426. [
  34427. {
  34428. name: "Normal",
  34429. height: math.unit(2, "feet"),
  34430. default: true
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34436. {
  34437. front: {
  34438. height: math.unit(3, "feet"),
  34439. name: "Front",
  34440. image: {
  34441. source: "./media/characters/mellvi/front.svg",
  34442. extra: 1831/1630,
  34443. bottom: 58/1889
  34444. }
  34445. },
  34446. },
  34447. [
  34448. {
  34449. name: "Normal",
  34450. height: math.unit(3, "feet"),
  34451. default: true
  34452. },
  34453. ]
  34454. ))
  34455. characterMakers.push(() => makeCharacter(
  34456. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34457. {
  34458. front: {
  34459. height: math.unit(5 + 11/12, "feet"),
  34460. weight: math.unit(200, "lb"),
  34461. name: "Front",
  34462. image: {
  34463. source: "./media/characters/shirou/front.svg",
  34464. extra: 2491/2383,
  34465. bottom: 189/2680
  34466. }
  34467. },
  34468. back: {
  34469. height: math.unit(5 + 11/12, "feet"),
  34470. weight: math.unit(200, "lb"),
  34471. name: "Back",
  34472. image: {
  34473. source: "./media/characters/shirou/back.svg",
  34474. extra: 2554/2450,
  34475. bottom: 76/2630
  34476. }
  34477. },
  34478. },
  34479. [
  34480. {
  34481. name: "Normal",
  34482. height: math.unit(5 + 11/12, "feet"),
  34483. default: true
  34484. },
  34485. ]
  34486. ))
  34487. characterMakers.push(() => makeCharacter(
  34488. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34489. {
  34490. front: {
  34491. height: math.unit(6 + 3/12, "feet"),
  34492. weight: math.unit(177, "lb"),
  34493. name: "Front",
  34494. image: {
  34495. source: "./media/characters/noryu/front.svg",
  34496. extra: 973/885,
  34497. bottom: 10/983
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Normal",
  34504. height: math.unit(6 + 3/12, "feet"),
  34505. default: true
  34506. },
  34507. ]
  34508. ))
  34509. characterMakers.push(() => makeCharacter(
  34510. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34511. {
  34512. front: {
  34513. height: math.unit(5 + 6/12, "feet"),
  34514. weight: math.unit(170, "lb"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/mevolas-rubenido/front.svg",
  34518. extra: 2109/1901,
  34519. bottom: 96/2205
  34520. }
  34521. },
  34522. },
  34523. [
  34524. {
  34525. name: "Normal",
  34526. height: math.unit(5 + 6/12, "feet"),
  34527. default: true
  34528. },
  34529. ]
  34530. ))
  34531. characterMakers.push(() => makeCharacter(
  34532. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34533. {
  34534. front: {
  34535. height: math.unit(100, "feet"),
  34536. name: "Front",
  34537. image: {
  34538. source: "./media/characters/dee/front.svg",
  34539. extra: 2153/2036,
  34540. bottom: 59/2212
  34541. }
  34542. },
  34543. back: {
  34544. height: math.unit(100, "feet"),
  34545. name: "Back",
  34546. image: {
  34547. source: "./media/characters/dee/back.svg",
  34548. extra: 2183/2058,
  34549. bottom: 75/2258
  34550. }
  34551. },
  34552. foot: {
  34553. height: math.unit(19.43, "feet"),
  34554. name: "Foot",
  34555. image: {
  34556. source: "./media/characters/dee/foot.svg"
  34557. }
  34558. },
  34559. hoof: {
  34560. height: math.unit(20.6, "feet"),
  34561. name: "Hoof",
  34562. image: {
  34563. source: "./media/characters/dee/hoof.svg"
  34564. }
  34565. },
  34566. },
  34567. [
  34568. {
  34569. name: "Macro",
  34570. height: math.unit(100, "feet"),
  34571. default: true
  34572. },
  34573. ]
  34574. ))
  34575. characterMakers.push(() => makeCharacter(
  34576. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34577. {
  34578. front: {
  34579. height: math.unit(5 + 6/12, "feet"),
  34580. name: "Front",
  34581. image: {
  34582. source: "./media/characters/teh/front.svg",
  34583. extra: 1002/847,
  34584. bottom: 62/1064
  34585. }
  34586. },
  34587. },
  34588. [
  34589. {
  34590. name: "Normal",
  34591. height: math.unit(5 + 6/12, "feet"),
  34592. default: true
  34593. },
  34594. ]
  34595. ))
  34596. characterMakers.push(() => makeCharacter(
  34597. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34598. {
  34599. side: {
  34600. height: math.unit(6 + 1/12, "feet"),
  34601. weight: math.unit(204, "lb"),
  34602. name: "Side",
  34603. image: {
  34604. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34605. extra: 974/775,
  34606. bottom: 169/1143
  34607. }
  34608. },
  34609. sitting: {
  34610. height: math.unit(6 + 2/12, "feet"),
  34611. weight: math.unit(204, "lb"),
  34612. name: "Sitting",
  34613. image: {
  34614. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34615. extra: 1175/964,
  34616. bottom: 378/1553
  34617. }
  34618. },
  34619. },
  34620. [
  34621. {
  34622. name: "Normal",
  34623. height: math.unit(6 + 1/12, "feet"),
  34624. default: true
  34625. },
  34626. ]
  34627. ))
  34628. characterMakers.push(() => makeCharacter(
  34629. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34630. {
  34631. front: {
  34632. height: math.unit(6, "inches"),
  34633. name: "Front",
  34634. image: {
  34635. source: "./media/characters/tululi/front.svg",
  34636. extra: 1997/1876,
  34637. bottom: 20/2017
  34638. }
  34639. },
  34640. },
  34641. [
  34642. {
  34643. name: "Normal",
  34644. height: math.unit(6, "inches"),
  34645. default: true
  34646. },
  34647. ]
  34648. ))
  34649. characterMakers.push(() => makeCharacter(
  34650. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34651. {
  34652. front: {
  34653. height: math.unit(4 + 1/12, "feet"),
  34654. name: "Front",
  34655. image: {
  34656. source: "./media/characters/star/front.svg",
  34657. extra: 1493/1189,
  34658. bottom: 48/1541
  34659. }
  34660. },
  34661. },
  34662. [
  34663. {
  34664. name: "Normal",
  34665. height: math.unit(4 + 1/12, "feet"),
  34666. default: true
  34667. },
  34668. ]
  34669. ))
  34670. characterMakers.push(() => makeCharacter(
  34671. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34672. {
  34673. front: {
  34674. height: math.unit(6 + 3/12, "feet"),
  34675. name: "Front",
  34676. image: {
  34677. source: "./media/characters/comet/front.svg",
  34678. extra: 1681/1462,
  34679. bottom: 26/1707
  34680. }
  34681. },
  34682. },
  34683. [
  34684. {
  34685. name: "Normal",
  34686. height: math.unit(6 + 3/12, "feet"),
  34687. default: true
  34688. },
  34689. ]
  34690. ))
  34691. characterMakers.push(() => makeCharacter(
  34692. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34693. {
  34694. front: {
  34695. height: math.unit(950, "feet"),
  34696. name: "Front",
  34697. image: {
  34698. source: "./media/characters/vortex/front.svg",
  34699. extra: 1497/1434,
  34700. bottom: 56/1553
  34701. }
  34702. },
  34703. maw: {
  34704. height: math.unit(285, "feet"),
  34705. name: "Maw",
  34706. image: {
  34707. source: "./media/characters/vortex/maw.svg"
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Macro",
  34714. height: math.unit(950, "feet"),
  34715. default: true
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34721. {
  34722. front: {
  34723. height: math.unit(600, "feet"),
  34724. weight: math.unit(0.02, "grams"),
  34725. name: "Front",
  34726. image: {
  34727. source: "./media/characters/doodle/front.svg",
  34728. extra: 1578/1413,
  34729. bottom: 37/1615
  34730. }
  34731. },
  34732. },
  34733. [
  34734. {
  34735. name: "Macro",
  34736. height: math.unit(600, "feet"),
  34737. default: true
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34743. {
  34744. front: {
  34745. height: math.unit(6 + 6/12, "feet"),
  34746. name: "Front",
  34747. image: {
  34748. source: "./media/characters/jai/front.svg",
  34749. extra: 1645/1534,
  34750. bottom: 115/1760
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Normal",
  34757. height: math.unit(6 + 6/12, "feet"),
  34758. default: true
  34759. },
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34764. {
  34765. front: {
  34766. height: math.unit(6 + 8/12, "feet"),
  34767. name: "Front",
  34768. image: {
  34769. source: "./media/characters/pixel/front.svg",
  34770. extra: 1900/1735,
  34771. bottom: 63/1963
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Normal",
  34778. height: math.unit(6 + 8/12, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34785. {
  34786. front: {
  34787. height: math.unit(4 + 11/12, "feet"),
  34788. weight: math.unit(111, "lb"),
  34789. name: "Front",
  34790. image: {
  34791. source: "./media/characters/rhett/front.svg",
  34792. extra: 1682/1586,
  34793. bottom: 92/1774
  34794. }
  34795. },
  34796. },
  34797. [
  34798. {
  34799. name: "Mini",
  34800. height: math.unit(1 + 1/12, "feet")
  34801. },
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(4 + 11/12, "feet"),
  34805. default: true
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(3 + 3/12, "feet"),
  34814. name: "Front",
  34815. image: {
  34816. source: "./media/characters/penny/front.svg",
  34817. extra: 1406/1311,
  34818. bottom: 26/1432
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(3 + 3/12, "feet"),
  34826. default: true
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34832. {
  34833. front: {
  34834. height: math.unit(4 + 11/12, "feet"),
  34835. name: "Front",
  34836. image: {
  34837. source: "./media/characters/monty/front.svg",
  34838. extra: 1479/1209,
  34839. bottom: 0/1479
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(4 + 11/12, "feet"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(8 + 4/12, "feet"),
  34856. name: "Front",
  34857. image: {
  34858. source: "./media/characters/sterling/front.svg",
  34859. extra: 1420/1236,
  34860. bottom: 27/1447
  34861. }
  34862. },
  34863. },
  34864. [
  34865. {
  34866. name: "Normal",
  34867. height: math.unit(8 + 4/12, "feet"),
  34868. default: true
  34869. },
  34870. ]
  34871. ))
  34872. characterMakers.push(() => makeCharacter(
  34873. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34874. {
  34875. front: {
  34876. height: math.unit(15, "feet"),
  34877. name: "Front",
  34878. image: {
  34879. source: "./media/characters/marble/front.svg",
  34880. extra: 973/937,
  34881. bottom: 32/1005
  34882. }
  34883. },
  34884. },
  34885. [
  34886. {
  34887. name: "Normal",
  34888. height: math.unit(15, "feet"),
  34889. default: true
  34890. },
  34891. ]
  34892. ))
  34893. characterMakers.push(() => makeCharacter(
  34894. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34895. {
  34896. front: {
  34897. height: math.unit(3, "inches"),
  34898. name: "Front",
  34899. image: {
  34900. source: "./media/characters/powder/front.svg",
  34901. extra: 1504/1334,
  34902. bottom: 518/2022
  34903. }
  34904. },
  34905. },
  34906. [
  34907. {
  34908. name: "Normal",
  34909. height: math.unit(3, "inches"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34916. {
  34917. front: {
  34918. height: math.unit(4 + 5/12, "feet"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/joey-raccoon/front.svg",
  34922. extra: 1273/1197,
  34923. bottom: 0/1273
  34924. }
  34925. },
  34926. },
  34927. [
  34928. {
  34929. name: "Normal",
  34930. height: math.unit(4 + 5/12, "feet"),
  34931. default: true
  34932. },
  34933. ]
  34934. ))
  34935. characterMakers.push(() => makeCharacter(
  34936. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34937. {
  34938. front: {
  34939. height: math.unit(8 + 4/12, "feet"),
  34940. name: "Front",
  34941. image: {
  34942. source: "./media/characters/vick/front.svg",
  34943. extra: 2187/2118,
  34944. bottom: 47/2234
  34945. }
  34946. },
  34947. },
  34948. [
  34949. {
  34950. name: "Normal",
  34951. height: math.unit(8 + 4/12, "feet"),
  34952. default: true
  34953. },
  34954. ]
  34955. ))
  34956. characterMakers.push(() => makeCharacter(
  34957. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34958. {
  34959. front: {
  34960. height: math.unit(5 + 5/12, "feet"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/mitsy/front.svg",
  34964. extra: 1842/1695,
  34965. bottom: 0/1842
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Normal",
  34972. height: math.unit(5 + 5/12, "feet"),
  34973. default: true
  34974. },
  34975. ]
  34976. ))
  34977. characterMakers.push(() => makeCharacter(
  34978. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34979. {
  34980. front: {
  34981. height: math.unit(6 + 3/12, "feet"),
  34982. name: "Front",
  34983. image: {
  34984. source: "./media/characters/silvy/front.svg",
  34985. extra: 1995/1836,
  34986. bottom: 225/2220
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Normal",
  34993. height: math.unit(6 + 3/12, "feet"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35000. {
  35001. front: {
  35002. height: math.unit(3 + 8/12, "feet"),
  35003. name: "Front",
  35004. image: {
  35005. source: "./media/characters/rodney/front.svg",
  35006. extra: 1956/1747,
  35007. bottom: 31/1987
  35008. }
  35009. },
  35010. frontDressed: {
  35011. height: math.unit(2.9, "feet"),
  35012. name: "Front (Dressed)",
  35013. image: {
  35014. source: "./media/characters/rodney/front-dressed.svg",
  35015. extra: 1382/1241,
  35016. bottom: 385/1767
  35017. }
  35018. },
  35019. },
  35020. [
  35021. {
  35022. name: "Normal",
  35023. height: math.unit(3 + 8/12, "feet"),
  35024. default: true
  35025. },
  35026. ]
  35027. ))
  35028. characterMakers.push(() => makeCharacter(
  35029. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35030. {
  35031. front: {
  35032. height: math.unit(5 + 9/12, "feet"),
  35033. weight: math.unit(194, "lbs"),
  35034. name: "Front",
  35035. image: {
  35036. source: "./media/characters/zakail-sudekai/front.svg",
  35037. extra: 2696/2533,
  35038. bottom: 248/2944
  35039. }
  35040. },
  35041. maw: {
  35042. height: math.unit(1.35, "feet"),
  35043. name: "Maw",
  35044. image: {
  35045. source: "./media/characters/zakail-sudekai/maw.svg"
  35046. }
  35047. },
  35048. },
  35049. [
  35050. {
  35051. name: "Normal",
  35052. height: math.unit(5 + 9/12, "feet"),
  35053. default: true
  35054. },
  35055. ]
  35056. ))
  35057. characterMakers.push(() => makeCharacter(
  35058. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35059. {
  35060. front: {
  35061. height: math.unit(8 + 4/12, "feet"),
  35062. weight: math.unit(1200, "lb"),
  35063. name: "Front",
  35064. image: {
  35065. source: "./media/characters/eleanor/front.svg",
  35066. extra: 1226/1192,
  35067. bottom: 52/1278
  35068. }
  35069. },
  35070. back: {
  35071. height: math.unit(8 + 4/12, "feet"),
  35072. weight: math.unit(1200, "lb"),
  35073. name: "Back",
  35074. image: {
  35075. source: "./media/characters/eleanor/back.svg",
  35076. extra: 1242/1184,
  35077. bottom: 60/1302
  35078. }
  35079. },
  35080. head: {
  35081. height: math.unit(2.62, "feet"),
  35082. name: "Head",
  35083. image: {
  35084. source: "./media/characters/eleanor/head.svg"
  35085. }
  35086. },
  35087. },
  35088. [
  35089. {
  35090. name: "Normal",
  35091. height: math.unit(8 + 4/12, "feet"),
  35092. default: true
  35093. },
  35094. ]
  35095. ))
  35096. characterMakers.push(() => makeCharacter(
  35097. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35098. {
  35099. front: {
  35100. height: math.unit(8 + 4/12, "feet"),
  35101. weight: math.unit(750, "lb"),
  35102. name: "Front",
  35103. image: {
  35104. source: "./media/characters/tanya/front.svg",
  35105. extra: 1749/1615,
  35106. bottom: 33/1782
  35107. }
  35108. },
  35109. },
  35110. [
  35111. {
  35112. name: "Normal",
  35113. height: math.unit(8 + 4/12, "feet"),
  35114. default: true
  35115. },
  35116. ]
  35117. ))
  35118. characterMakers.push(() => makeCharacter(
  35119. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35120. {
  35121. front: {
  35122. height: math.unit(5, "feet"),
  35123. weight: math.unit(225, "lb"),
  35124. name: "Front",
  35125. image: {
  35126. source: "./media/characters/cindy/front.svg",
  35127. extra: 1320/1250,
  35128. bottom: 42/1362
  35129. }
  35130. },
  35131. frontDressed: {
  35132. height: math.unit(5, "feet"),
  35133. weight: math.unit(225, "lb"),
  35134. name: "Front (Dressed)",
  35135. image: {
  35136. source: "./media/characters/cindy/front-dressed.svg",
  35137. extra: 1320/1250,
  35138. bottom: 42/1362
  35139. }
  35140. },
  35141. back: {
  35142. height: math.unit(5, "feet"),
  35143. weight: math.unit(225, "lb"),
  35144. name: "Back",
  35145. image: {
  35146. source: "./media/characters/cindy/back.svg",
  35147. extra: 1384/1346,
  35148. bottom: 14/1398
  35149. }
  35150. },
  35151. },
  35152. [
  35153. {
  35154. name: "Normal",
  35155. height: math.unit(5, "feet"),
  35156. default: true
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35162. {
  35163. front: {
  35164. height: math.unit(6 + 9/12, "feet"),
  35165. weight: math.unit(440, "lb"),
  35166. name: "Front",
  35167. image: {
  35168. source: "./media/characters/wilbur-owen/front.svg",
  35169. extra: 1575/1448,
  35170. bottom: 72/1647
  35171. }
  35172. },
  35173. back: {
  35174. height: math.unit(6 + 9/12, "feet"),
  35175. weight: math.unit(440, "lb"),
  35176. name: "Back",
  35177. image: {
  35178. source: "./media/characters/wilbur-owen/back.svg",
  35179. extra: 1578/1445,
  35180. bottom: 36/1614
  35181. }
  35182. },
  35183. },
  35184. [
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(6 + 9/12, "feet"),
  35188. default: true
  35189. },
  35190. ]
  35191. ))
  35192. characterMakers.push(() => makeCharacter(
  35193. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35194. {
  35195. front: {
  35196. height: math.unit(6 + 5/12, "feet"),
  35197. weight: math.unit(650, "lb"),
  35198. name: "Front",
  35199. image: {
  35200. source: "./media/characters/keegan/front.svg",
  35201. extra: 2387/2198,
  35202. bottom: 33/2420
  35203. }
  35204. },
  35205. side: {
  35206. height: math.unit(6 + 5/12, "feet"),
  35207. weight: math.unit(650, "lb"),
  35208. name: "Side",
  35209. image: {
  35210. source: "./media/characters/keegan/side.svg",
  35211. extra: 2390/2202,
  35212. bottom: 47/2437
  35213. }
  35214. },
  35215. back: {
  35216. height: math.unit(6 + 5/12, "feet"),
  35217. weight: math.unit(650, "lb"),
  35218. name: "Back",
  35219. image: {
  35220. source: "./media/characters/keegan/back.svg",
  35221. extra: 2418/2268,
  35222. bottom: 15/2433
  35223. }
  35224. },
  35225. frontSfw: {
  35226. height: math.unit(6 + 5/12, "feet"),
  35227. weight: math.unit(650, "lb"),
  35228. name: "Front (SFW)",
  35229. image: {
  35230. source: "./media/characters/keegan/front-sfw.svg",
  35231. extra: 2387/2198,
  35232. bottom: 33/2420
  35233. }
  35234. },
  35235. beans: {
  35236. height: math.unit(1.85, "feet"),
  35237. name: "Beans",
  35238. image: {
  35239. source: "./media/characters/keegan/beans.svg"
  35240. }
  35241. },
  35242. },
  35243. [
  35244. {
  35245. name: "Normal",
  35246. height: math.unit(6 + 5/12, "feet"),
  35247. default: true
  35248. },
  35249. ]
  35250. ))
  35251. characterMakers.push(() => makeCharacter(
  35252. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35253. {
  35254. front: {
  35255. height: math.unit(9, "feet"),
  35256. name: "Front",
  35257. image: {
  35258. source: "./media/characters/colton/front.svg",
  35259. extra: 1589/1326,
  35260. bottom: 139/1728
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(9, "feet"),
  35268. default: true
  35269. },
  35270. ]
  35271. ))
  35272. characterMakers.push(() => makeCharacter(
  35273. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35274. {
  35275. front: {
  35276. height: math.unit(2 + 9/12, "feet"),
  35277. name: "Front",
  35278. image: {
  35279. source: "./media/characters/bora/front.svg",
  35280. extra: 1265/1250,
  35281. bottom: 24/1289
  35282. }
  35283. },
  35284. },
  35285. [
  35286. {
  35287. name: "Normal",
  35288. height: math.unit(2 + 9/12, "feet"),
  35289. default: true
  35290. },
  35291. ]
  35292. ))
  35293. characterMakers.push(() => makeCharacter(
  35294. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35295. {
  35296. front: {
  35297. height: math.unit(8, "feet"),
  35298. name: "Front",
  35299. image: {
  35300. source: "./media/characters/myu-myu/front.svg",
  35301. extra: 1949/1857,
  35302. bottom: 90/2039
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Normal",
  35309. height: math.unit(8, "feet"),
  35310. default: true
  35311. },
  35312. {
  35313. name: "Big",
  35314. height: math.unit(15, "feet")
  35315. },
  35316. {
  35317. name: "BIG",
  35318. height: math.unit(25, "feet")
  35319. },
  35320. ]
  35321. ))
  35322. characterMakers.push(() => makeCharacter(
  35323. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35324. {
  35325. side: {
  35326. height: math.unit(7 + 5/12, "feet"),
  35327. weight: math.unit(2800, "lb"),
  35328. name: "Side",
  35329. image: {
  35330. source: "./media/characters/haloren/side.svg",
  35331. extra: 1793/409,
  35332. bottom: 59/1852
  35333. }
  35334. },
  35335. frontPaw: {
  35336. height: math.unit(2.36, "feet"),
  35337. name: "Front paw",
  35338. image: {
  35339. source: "./media/characters/haloren/front-paw.svg"
  35340. }
  35341. },
  35342. hindPaw: {
  35343. height: math.unit(3.18, "feet"),
  35344. name: "Hind paw",
  35345. image: {
  35346. source: "./media/characters/haloren/hind-paw.svg"
  35347. }
  35348. },
  35349. maw: {
  35350. height: math.unit(5.05, "feet"),
  35351. name: "Maw",
  35352. image: {
  35353. source: "./media/characters/haloren/maw.svg"
  35354. }
  35355. },
  35356. dick: {
  35357. height: math.unit(2.90, "feet"),
  35358. name: "Dick",
  35359. image: {
  35360. source: "./media/characters/haloren/dick.svg"
  35361. }
  35362. },
  35363. },
  35364. [
  35365. {
  35366. name: "Normal",
  35367. height: math.unit(7 + 5/12, "feet"),
  35368. default: true
  35369. },
  35370. {
  35371. name: "Enhanced",
  35372. height: math.unit(14 + 3/12, "feet")
  35373. },
  35374. ]
  35375. ))
  35376. characterMakers.push(() => makeCharacter(
  35377. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35378. {
  35379. front: {
  35380. height: math.unit(171, "cm"),
  35381. name: "Front",
  35382. image: {
  35383. source: "./media/characters/kimmy/front.svg",
  35384. extra: 1491/1435,
  35385. bottom: 53/1544
  35386. }
  35387. },
  35388. },
  35389. [
  35390. {
  35391. name: "Small",
  35392. height: math.unit(9, "cm")
  35393. },
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(171, "cm"),
  35397. default: true
  35398. },
  35399. ]
  35400. ))
  35401. characterMakers.push(() => makeCharacter(
  35402. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35403. {
  35404. front: {
  35405. height: math.unit(8, "feet"),
  35406. weight: math.unit(300, "lb"),
  35407. name: "Front",
  35408. image: {
  35409. source: "./media/characters/galeboomer/front.svg",
  35410. extra: 4651/4415,
  35411. bottom: 162/4813
  35412. }
  35413. },
  35414. back: {
  35415. height: math.unit(8, "feet"),
  35416. weight: math.unit(300, "lb"),
  35417. name: "Back",
  35418. image: {
  35419. source: "./media/characters/galeboomer/back.svg",
  35420. extra: 4544/4314,
  35421. bottom: 16/4560
  35422. }
  35423. },
  35424. frontAlt: {
  35425. height: math.unit(8, "feet"),
  35426. weight: math.unit(300, "lb"),
  35427. name: "Front (Alt)",
  35428. image: {
  35429. source: "./media/characters/galeboomer/front-alt.svg",
  35430. extra: 4458/4228,
  35431. bottom: 68/4526
  35432. }
  35433. },
  35434. maw: {
  35435. height: math.unit(1.2, "feet"),
  35436. name: "Maw",
  35437. image: {
  35438. source: "./media/characters/galeboomer/maw.svg"
  35439. }
  35440. },
  35441. },
  35442. [
  35443. {
  35444. name: "Normal",
  35445. height: math.unit(8, "feet"),
  35446. default: true
  35447. },
  35448. ]
  35449. ))
  35450. characterMakers.push(() => makeCharacter(
  35451. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35452. {
  35453. front: {
  35454. height: math.unit(5 + 9/12, "feet"),
  35455. weight: math.unit(120, "lb"),
  35456. name: "Front",
  35457. image: {
  35458. source: "./media/characters/chyr/front.svg",
  35459. extra: 1323/1254,
  35460. bottom: 63/1386
  35461. }
  35462. },
  35463. back: {
  35464. height: math.unit(5 + 9/12, "feet"),
  35465. weight: math.unit(120, "lb"),
  35466. name: "Back",
  35467. image: {
  35468. source: "./media/characters/chyr/back.svg",
  35469. extra: 1323/1252,
  35470. bottom: 48/1371
  35471. }
  35472. },
  35473. },
  35474. [
  35475. {
  35476. name: "Normal",
  35477. height: math.unit(5 + 9/12, "feet"),
  35478. default: true
  35479. },
  35480. ]
  35481. ))
  35482. characterMakers.push(() => makeCharacter(
  35483. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35484. {
  35485. front: {
  35486. height: math.unit(7, "feet"),
  35487. weight: math.unit(310, "lb"),
  35488. name: "Front",
  35489. image: {
  35490. source: "./media/characters/solarus/front.svg",
  35491. extra: 2415/2021,
  35492. bottom: 103/2518
  35493. }
  35494. },
  35495. back: {
  35496. height: math.unit(7, "feet"),
  35497. weight: math.unit(310, "lb"),
  35498. name: "Back",
  35499. image: {
  35500. source: "./media/characters/solarus/back.svg",
  35501. extra: 2463/2089,
  35502. bottom: 79/2542
  35503. }
  35504. },
  35505. },
  35506. [
  35507. {
  35508. name: "Normal",
  35509. height: math.unit(7, "feet"),
  35510. default: true
  35511. },
  35512. ]
  35513. ))
  35514. characterMakers.push(() => makeCharacter(
  35515. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35516. {
  35517. front: {
  35518. height: math.unit(16, "feet"),
  35519. name: "Front",
  35520. image: {
  35521. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35522. extra: 1844/1780,
  35523. bottom: 58/1902
  35524. }
  35525. },
  35526. },
  35527. [
  35528. {
  35529. name: "Normal",
  35530. height: math.unit(16, "feet"),
  35531. default: true
  35532. },
  35533. ]
  35534. ))
  35535. characterMakers.push(() => makeCharacter(
  35536. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35537. {
  35538. front: {
  35539. height: math.unit(11 + 6/12, "feet"),
  35540. weight: math.unit(1366, "lb"),
  35541. name: "Front",
  35542. image: {
  35543. source: "./media/characters/lexor/front.svg",
  35544. extra: 1560/1481,
  35545. bottom: 211/1771
  35546. }
  35547. },
  35548. back: {
  35549. height: math.unit(11 + 6/12, "feet"),
  35550. weight: math.unit(1366, "lb"),
  35551. name: "Back",
  35552. image: {
  35553. source: "./media/characters/lexor/back.svg",
  35554. extra: 1614/1533,
  35555. bottom: 76/1690
  35556. }
  35557. },
  35558. maw: {
  35559. height: math.unit(3, "feet"),
  35560. name: "Maw",
  35561. image: {
  35562. source: "./media/characters/lexor/maw.svg"
  35563. }
  35564. },
  35565. dick: {
  35566. height: math.unit(2.59, "feet"),
  35567. name: "Dick",
  35568. image: {
  35569. source: "./media/characters/lexor/dick.svg"
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Normal",
  35576. height: math.unit(11 + 6/12, "feet"),
  35577. default: true
  35578. },
  35579. ]
  35580. ))
  35581. characterMakers.push(() => makeCharacter(
  35582. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35583. {
  35584. front: {
  35585. height: math.unit(5 + 8/12, "feet"),
  35586. name: "Front",
  35587. image: {
  35588. source: "./media/characters/magnum/front.svg",
  35589. extra: 942/855,
  35590. bottom: 26/968
  35591. }
  35592. },
  35593. },
  35594. [
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(5 + 8/12, "feet"),
  35598. default: true
  35599. },
  35600. ]
  35601. ))
  35602. characterMakers.push(() => makeCharacter(
  35603. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35604. {
  35605. front: {
  35606. height: math.unit(18 + 4/12, "feet"),
  35607. weight: math.unit(1500, "kg"),
  35608. name: "Front",
  35609. image: {
  35610. source: "./media/characters/solas-sharpsman/front.svg",
  35611. extra: 1698/1589,
  35612. bottom: 0/1698
  35613. }
  35614. },
  35615. },
  35616. [
  35617. {
  35618. name: "Normal",
  35619. height: math.unit(18 + 4/12, "feet"),
  35620. default: true
  35621. },
  35622. ]
  35623. ))
  35624. characterMakers.push(() => makeCharacter(
  35625. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35626. {
  35627. front: {
  35628. height: math.unit(5 + 5/12, "feet"),
  35629. weight: math.unit(180, "lb"),
  35630. name: "Front",
  35631. image: {
  35632. source: "./media/characters/october/front.svg",
  35633. extra: 1800/1650,
  35634. bottom: 0/1800
  35635. }
  35636. },
  35637. frontNsfw: {
  35638. height: math.unit(5 + 5/12, "feet"),
  35639. weight: math.unit(180, "lb"),
  35640. name: "Front (NSFW)",
  35641. image: {
  35642. source: "./media/characters/october/front-nsfw.svg",
  35643. extra: 1392/1307,
  35644. bottom: 42/1434
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(5 + 5/12, "feet"),
  35652. default: true
  35653. },
  35654. ]
  35655. ))
  35656. characterMakers.push(() => makeCharacter(
  35657. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35658. {
  35659. front: {
  35660. height: math.unit(8 + 6/12, "feet"),
  35661. name: "Front",
  35662. image: {
  35663. source: "./media/characters/essynkardi/front.svg",
  35664. extra: 1914/1846,
  35665. bottom: 22/1936
  35666. }
  35667. },
  35668. },
  35669. [
  35670. {
  35671. name: "Normal",
  35672. height: math.unit(8 + 6/12, "feet"),
  35673. default: true
  35674. },
  35675. ]
  35676. ))
  35677. characterMakers.push(() => makeCharacter(
  35678. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35679. {
  35680. front: {
  35681. height: math.unit(6 + 6/12, "feet"),
  35682. weight: math.unit(7, "lb"),
  35683. name: "Front",
  35684. image: {
  35685. source: "./media/characters/icky/front.svg",
  35686. extra: 813/782,
  35687. bottom: 66/879
  35688. }
  35689. },
  35690. back: {
  35691. height: math.unit(6 + 6/12, "feet"),
  35692. weight: math.unit(7, "lb"),
  35693. name: "Back",
  35694. image: {
  35695. source: "./media/characters/icky/back.svg",
  35696. extra: 754/735,
  35697. bottom: 56/810
  35698. }
  35699. },
  35700. },
  35701. [
  35702. {
  35703. name: "Normal",
  35704. height: math.unit(6 + 6/12, "feet"),
  35705. default: true
  35706. },
  35707. ]
  35708. ))
  35709. characterMakers.push(() => makeCharacter(
  35710. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35711. {
  35712. front: {
  35713. height: math.unit(15, "feet"),
  35714. name: "Front",
  35715. image: {
  35716. source: "./media/characters/rojas/front.svg",
  35717. extra: 1462/1408,
  35718. bottom: 95/1557
  35719. }
  35720. },
  35721. back: {
  35722. height: math.unit(15, "feet"),
  35723. name: "Back",
  35724. image: {
  35725. source: "./media/characters/rojas/back.svg",
  35726. extra: 1023/954,
  35727. bottom: 28/1051
  35728. }
  35729. },
  35730. },
  35731. [
  35732. {
  35733. name: "Normal",
  35734. height: math.unit(15, "feet"),
  35735. default: true
  35736. },
  35737. ]
  35738. ))
  35739. characterMakers.push(() => makeCharacter(
  35740. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35741. {
  35742. frontHuman: {
  35743. height: math.unit(5 + 7/12, "feet"),
  35744. name: "Front (Human)",
  35745. image: {
  35746. source: "./media/characters/alek-dryagan/front-human.svg",
  35747. extra: 1687/1667,
  35748. bottom: 69/1756
  35749. }
  35750. },
  35751. backHuman: {
  35752. height: math.unit(5 + 7/12, "feet"),
  35753. name: "Back (Human)",
  35754. image: {
  35755. source: "./media/characters/alek-dryagan/back-human.svg",
  35756. extra: 1670/1649,
  35757. bottom: 65/1735
  35758. }
  35759. },
  35760. frontDemi: {
  35761. height: math.unit(65, "feet"),
  35762. name: "Front (Demi)",
  35763. image: {
  35764. source: "./media/characters/alek-dryagan/front-demi.svg",
  35765. extra: 1669/1642,
  35766. bottom: 49/1718
  35767. }
  35768. },
  35769. backDemi: {
  35770. height: math.unit(65, "feet"),
  35771. name: "Back (Demi)",
  35772. image: {
  35773. source: "./media/characters/alek-dryagan/back-demi.svg",
  35774. extra: 1658/1637,
  35775. bottom: 40/1698
  35776. }
  35777. },
  35778. mawHuman: {
  35779. height: math.unit(0.3, "feet"),
  35780. name: "Maw (Human)",
  35781. image: {
  35782. source: "./media/characters/alek-dryagan/maw-human.svg"
  35783. }
  35784. },
  35785. mawDemi: {
  35786. height: math.unit(3.8, "feet"),
  35787. name: "Maw (Demi)",
  35788. image: {
  35789. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35790. }
  35791. },
  35792. },
  35793. [
  35794. {
  35795. name: "Normal",
  35796. height: math.unit(5 + 7/12, "feet"),
  35797. default: true
  35798. },
  35799. ]
  35800. ))
  35801. characterMakers.push(() => makeCharacter(
  35802. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35803. {
  35804. frontHuman: {
  35805. height: math.unit(5 + 2/12, "feet"),
  35806. name: "Front (Human)",
  35807. image: {
  35808. source: "./media/characters/gen/front-human.svg",
  35809. extra: 1627/1538,
  35810. bottom: 71/1698
  35811. }
  35812. },
  35813. backHuman: {
  35814. height: math.unit(5 + 2/12, "feet"),
  35815. name: "Back (Human)",
  35816. image: {
  35817. source: "./media/characters/gen/back-human.svg",
  35818. extra: 1638/1548,
  35819. bottom: 69/1707
  35820. }
  35821. },
  35822. frontDemi: {
  35823. height: math.unit(5 + 2/12, "feet"),
  35824. name: "Front (Demi)",
  35825. image: {
  35826. source: "./media/characters/gen/front-demi.svg",
  35827. extra: 1627/1538,
  35828. bottom: 71/1698
  35829. }
  35830. },
  35831. backDemi: {
  35832. height: math.unit(5 + 2/12, "feet"),
  35833. name: "Back (Demi)",
  35834. image: {
  35835. source: "./media/characters/gen/back-demi.svg",
  35836. extra: 1638/1548,
  35837. bottom: 69/1707
  35838. }
  35839. },
  35840. },
  35841. [
  35842. {
  35843. name: "Normal",
  35844. height: math.unit(5 + 2/12, "feet"),
  35845. default: true
  35846. },
  35847. ]
  35848. ))
  35849. characterMakers.push(() => makeCharacter(
  35850. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35851. {
  35852. frontImp: {
  35853. height: math.unit(1 + 11/12, "feet"),
  35854. name: "Front (Imp)",
  35855. image: {
  35856. source: "./media/characters/max-kobold/front-imp.svg",
  35857. extra: 1238/1134,
  35858. bottom: 81/1319
  35859. }
  35860. },
  35861. backImp: {
  35862. height: math.unit(1 + 11/12, "feet"),
  35863. name: "Back (Imp)",
  35864. image: {
  35865. source: "./media/characters/max-kobold/back-imp.svg",
  35866. extra: 1334/1175,
  35867. bottom: 34/1368
  35868. }
  35869. },
  35870. frontDemi: {
  35871. height: math.unit(5 + 9/12, "feet"),
  35872. name: "Front (Demi)",
  35873. image: {
  35874. source: "./media/characters/max-kobold/front-demi.svg",
  35875. extra: 1715/1685,
  35876. bottom: 54/1769
  35877. }
  35878. },
  35879. backDemi: {
  35880. height: math.unit(5 + 9/12, "feet"),
  35881. name: "Back (Demi)",
  35882. image: {
  35883. source: "./media/characters/max-kobold/back-demi.svg",
  35884. extra: 1752/1729,
  35885. bottom: 41/1793
  35886. }
  35887. },
  35888. handImp: {
  35889. height: math.unit(0.45, "feet"),
  35890. name: "Hand (Imp)",
  35891. image: {
  35892. source: "./media/characters/max-kobold/hand.svg"
  35893. }
  35894. },
  35895. pawImp: {
  35896. height: math.unit(0.46, "feet"),
  35897. name: "Paw (Imp)",
  35898. image: {
  35899. source: "./media/characters/max-kobold/paw.svg"
  35900. }
  35901. },
  35902. handDemi: {
  35903. height: math.unit(0.80, "feet"),
  35904. name: "Hand (Demi)",
  35905. image: {
  35906. source: "./media/characters/max-kobold/hand.svg"
  35907. }
  35908. },
  35909. pawDemi: {
  35910. height: math.unit(1.1, "feet"),
  35911. name: "Paw (Demi)",
  35912. image: {
  35913. source: "./media/characters/max-kobold/paw.svg"
  35914. }
  35915. },
  35916. headImp: {
  35917. height: math.unit(1.33, "feet"),
  35918. name: "Head (Imp)",
  35919. image: {
  35920. source: "./media/characters/max-kobold/head-imp.svg"
  35921. }
  35922. },
  35923. mawImp: {
  35924. height: math.unit(0.75, "feet"),
  35925. name: "Maw (Imp)",
  35926. image: {
  35927. source: "./media/characters/max-kobold/maw-imp.svg"
  35928. }
  35929. },
  35930. mawDemi: {
  35931. height: math.unit(0.42, "feet"),
  35932. name: "Maw (Demi)",
  35933. image: {
  35934. source: "./media/characters/max-kobold/maw-demi.svg"
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Normal",
  35941. height: math.unit(1 + 11/12, "feet"),
  35942. default: true
  35943. },
  35944. ]
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35948. {
  35949. front: {
  35950. height: math.unit(7 + 5/12, "feet"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/carbon/front.svg",
  35954. extra: 1754/1689,
  35955. bottom: 65/1819
  35956. }
  35957. },
  35958. back: {
  35959. height: math.unit(7 + 5/12, "feet"),
  35960. name: "Back",
  35961. image: {
  35962. source: "./media/characters/carbon/back.svg",
  35963. extra: 1762/1695,
  35964. bottom: 24/1786
  35965. }
  35966. },
  35967. frontGigantamax: {
  35968. height: math.unit(150, "feet"),
  35969. name: "Front (Gigantamax)",
  35970. image: {
  35971. source: "./media/characters/carbon/front-gigantamax.svg",
  35972. extra: 1826/1669,
  35973. bottom: 59/1885
  35974. }
  35975. },
  35976. backGigantamax: {
  35977. height: math.unit(150, "feet"),
  35978. name: "Back (Gigantamax)",
  35979. image: {
  35980. source: "./media/characters/carbon/back-gigantamax.svg",
  35981. extra: 1796/1653,
  35982. bottom: 53/1849
  35983. }
  35984. },
  35985. maw: {
  35986. height: math.unit(0.48, "feet"),
  35987. name: "Maw",
  35988. image: {
  35989. source: "./media/characters/carbon/maw.svg"
  35990. }
  35991. },
  35992. mawGigantamax: {
  35993. height: math.unit(7.5, "feet"),
  35994. name: "Maw (Gigantamax)",
  35995. image: {
  35996. source: "./media/characters/carbon/maw-gigantamax.svg"
  35997. }
  35998. },
  35999. },
  36000. [
  36001. {
  36002. name: "Normal",
  36003. height: math.unit(7 + 5/12, "feet"),
  36004. default: true
  36005. },
  36006. ]
  36007. ))
  36008. characterMakers.push(() => makeCharacter(
  36009. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36010. {
  36011. front: {
  36012. height: math.unit(6, "feet"),
  36013. name: "Front",
  36014. image: {
  36015. source: "./media/characters/maverick/front.svg",
  36016. extra: 1672/1661,
  36017. bottom: 85/1757
  36018. }
  36019. },
  36020. back: {
  36021. height: math.unit(6, "feet"),
  36022. name: "Back",
  36023. image: {
  36024. source: "./media/characters/maverick/back.svg",
  36025. extra: 1642/1631,
  36026. bottom: 38/1680
  36027. }
  36028. },
  36029. },
  36030. [
  36031. {
  36032. name: "Normal",
  36033. height: math.unit(6, "feet"),
  36034. default: true
  36035. },
  36036. ]
  36037. ))
  36038. characterMakers.push(() => makeCharacter(
  36039. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36040. {
  36041. front: {
  36042. height: math.unit(15, "feet"),
  36043. weight: math.unit(615, "lb"),
  36044. name: "Front",
  36045. image: {
  36046. source: "./media/characters/grockle/front.svg",
  36047. extra: 1535/1427,
  36048. bottom: 56/1591
  36049. }
  36050. },
  36051. },
  36052. [
  36053. {
  36054. name: "Normal",
  36055. height: math.unit(15, "feet"),
  36056. default: true
  36057. },
  36058. {
  36059. name: "Large",
  36060. height: math.unit(150, "feet")
  36061. },
  36062. {
  36063. name: "Macro",
  36064. height: math.unit(1876, "feet")
  36065. },
  36066. {
  36067. name: "Mega Macro",
  36068. height: math.unit(121940, "feet")
  36069. },
  36070. {
  36071. name: "Giga Macro",
  36072. height: math.unit(750, "km")
  36073. },
  36074. {
  36075. name: "Tera Macro",
  36076. height: math.unit(750000, "km")
  36077. },
  36078. {
  36079. name: "Galactic",
  36080. height: math.unit(1.4e5, "km")
  36081. },
  36082. {
  36083. name: "Godlike",
  36084. height: math.unit(9.8e280, "galaxies")
  36085. },
  36086. ]
  36087. ))
  36088. characterMakers.push(() => makeCharacter(
  36089. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36090. {
  36091. front: {
  36092. height: math.unit(11, "meters"),
  36093. weight: math.unit(20, "tonnes"),
  36094. name: "Front",
  36095. image: {
  36096. source: "./media/characters/alistair/front.svg",
  36097. extra: 1265/1009,
  36098. bottom: 93/1358
  36099. }
  36100. },
  36101. },
  36102. [
  36103. {
  36104. name: "Normal",
  36105. height: math.unit(11, "meters"),
  36106. default: true
  36107. },
  36108. ]
  36109. ))
  36110. characterMakers.push(() => makeCharacter(
  36111. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36112. {
  36113. front: {
  36114. height: math.unit(5 + 8/12, "feet"),
  36115. name: "Front",
  36116. image: {
  36117. source: "./media/characters/haruka/front.svg",
  36118. extra: 2012/1952,
  36119. bottom: 0/2012
  36120. }
  36121. },
  36122. },
  36123. [
  36124. {
  36125. name: "Normal",
  36126. height: math.unit(5 + 8/12, "feet"),
  36127. default: true
  36128. },
  36129. ]
  36130. ))
  36131. characterMakers.push(() => makeCharacter(
  36132. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36133. {
  36134. back: {
  36135. height: math.unit(9, "feet"),
  36136. name: "Back",
  36137. image: {
  36138. source: "./media/characters/vivian-sylveon/back.svg",
  36139. extra: 1853/1714,
  36140. bottom: 0/1853
  36141. }
  36142. },
  36143. },
  36144. [
  36145. {
  36146. name: "Normal",
  36147. height: math.unit(9, "feet"),
  36148. default: true
  36149. },
  36150. {
  36151. name: "Macro",
  36152. height: math.unit(500, "feet")
  36153. },
  36154. {
  36155. name: "Megamacro",
  36156. height: math.unit(600, "miles")
  36157. },
  36158. {
  36159. name: "Gigamacro",
  36160. height: math.unit(30000, "miles")
  36161. },
  36162. ]
  36163. ))
  36164. characterMakers.push(() => makeCharacter(
  36165. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36166. {
  36167. anthro: {
  36168. height: math.unit(5 + 10/12, "feet"),
  36169. weight: math.unit(100, "lb"),
  36170. name: "Anthro",
  36171. image: {
  36172. source: "./media/characters/daiki/anthro.svg",
  36173. extra: 1115/1027,
  36174. bottom: 69/1184
  36175. }
  36176. },
  36177. feral: {
  36178. height: math.unit(200, "feet"),
  36179. name: "Feral",
  36180. image: {
  36181. source: "./media/characters/daiki/feral.svg",
  36182. extra: 1256/313,
  36183. bottom: 39/1295
  36184. }
  36185. },
  36186. feralHead: {
  36187. height: math.unit(171, "feet"),
  36188. name: "Feral Head",
  36189. image: {
  36190. source: "./media/characters/daiki/feral-head.svg"
  36191. }
  36192. },
  36193. },
  36194. [
  36195. {
  36196. name: "Normal",
  36197. height: math.unit(5 + 10/12, "feet"),
  36198. default: true
  36199. },
  36200. ]
  36201. ))
  36202. characterMakers.push(() => makeCharacter(
  36203. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36204. {
  36205. fullyEquippedFront: {
  36206. height: math.unit(3 + 1/12, "feet"),
  36207. weight: math.unit(24, "lb"),
  36208. name: "Fully Equipped (Front)",
  36209. image: {
  36210. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36211. extra: 687/605,
  36212. bottom: 18/705
  36213. }
  36214. },
  36215. fullyEquippedBack: {
  36216. height: math.unit(3 + 1/12, "feet"),
  36217. weight: math.unit(24, "lb"),
  36218. name: "Fully Equipped (Back)",
  36219. image: {
  36220. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36221. extra: 689/590,
  36222. bottom: 18/707
  36223. }
  36224. },
  36225. dailyWear: {
  36226. height: math.unit(3 + 1/12, "feet"),
  36227. weight: math.unit(24, "lb"),
  36228. name: "Daily Wear",
  36229. image: {
  36230. source: "./media/characters/tea-spot/daily-wear.svg",
  36231. extra: 701/620,
  36232. bottom: 21/722
  36233. }
  36234. },
  36235. maidWork: {
  36236. height: math.unit(3 + 1/12, "feet"),
  36237. weight: math.unit(24, "lb"),
  36238. name: "Maid Work",
  36239. image: {
  36240. source: "./media/characters/tea-spot/maid-work.svg",
  36241. extra: 693/609,
  36242. bottom: 15/708
  36243. }
  36244. },
  36245. },
  36246. [
  36247. {
  36248. name: "Normal",
  36249. height: math.unit(3 + 1/12, "feet"),
  36250. default: true
  36251. },
  36252. ]
  36253. ))
  36254. characterMakers.push(() => makeCharacter(
  36255. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36256. {
  36257. front: {
  36258. height: math.unit(175, "cm"),
  36259. weight: math.unit(75, "kg"),
  36260. name: "Front",
  36261. image: {
  36262. source: "./media/characters/chee/front.svg",
  36263. extra: 1796/1740,
  36264. bottom: 40/1836
  36265. }
  36266. },
  36267. },
  36268. [
  36269. {
  36270. name: "Micro-Micro",
  36271. height: math.unit(1, "nm")
  36272. },
  36273. {
  36274. name: "Micro-erst",
  36275. height: math.unit(1, "micrometer")
  36276. },
  36277. {
  36278. name: "Micro-er",
  36279. height: math.unit(1, "cm")
  36280. },
  36281. {
  36282. name: "Normal",
  36283. height: math.unit(175, "cm"),
  36284. default: true
  36285. },
  36286. {
  36287. name: "Macro",
  36288. height: math.unit(100, "m")
  36289. },
  36290. {
  36291. name: "Macro-er",
  36292. height: math.unit(1, "km")
  36293. },
  36294. {
  36295. name: "Macro-erst",
  36296. height: math.unit(10, "km")
  36297. },
  36298. {
  36299. name: "Macro-Macro",
  36300. height: math.unit(100, "km")
  36301. },
  36302. ]
  36303. ))
  36304. characterMakers.push(() => makeCharacter(
  36305. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36306. {
  36307. front: {
  36308. height: math.unit(11 + 9/12, "feet"),
  36309. weight: math.unit(935, "lb"),
  36310. name: "Front",
  36311. image: {
  36312. source: "./media/characters/kingsley/front.svg",
  36313. extra: 1803/1674,
  36314. bottom: 127/1930
  36315. }
  36316. },
  36317. frontNude: {
  36318. height: math.unit(11 + 9/12, "feet"),
  36319. weight: math.unit(935, "lb"),
  36320. name: "Front (Nude)",
  36321. image: {
  36322. source: "./media/characters/kingsley/front-nude.svg",
  36323. extra: 1803/1674,
  36324. bottom: 127/1930
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(11 + 9/12, "feet"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36338. {
  36339. side: {
  36340. height: math.unit(9, "feet"),
  36341. name: "Side",
  36342. image: {
  36343. source: "./media/characters/rymel/side.svg",
  36344. extra: 792/469,
  36345. bottom: 121/913
  36346. }
  36347. },
  36348. maw: {
  36349. height: math.unit(2.4, "meters"),
  36350. name: "Maw",
  36351. image: {
  36352. source: "./media/characters/rymel/maw.svg"
  36353. }
  36354. },
  36355. },
  36356. [
  36357. {
  36358. name: "House Drake",
  36359. height: math.unit(2, "feet")
  36360. },
  36361. {
  36362. name: "Reduced",
  36363. height: math.unit(4.5, "feet")
  36364. },
  36365. {
  36366. name: "Normal",
  36367. height: math.unit(9, "feet"),
  36368. default: true
  36369. },
  36370. ]
  36371. ))
  36372. characterMakers.push(() => makeCharacter(
  36373. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36374. {
  36375. front: {
  36376. height: math.unit(1.74, "meters"),
  36377. weight: math.unit(55, "kg"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/rubus/front.svg",
  36381. extra: 1894/1742,
  36382. bottom: 44/1938
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Normal",
  36389. height: math.unit(1.74, "meters"),
  36390. default: true
  36391. },
  36392. ]
  36393. ))
  36394. characterMakers.push(() => makeCharacter(
  36395. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36396. {
  36397. front: {
  36398. height: math.unit(5 + 2/12, "feet"),
  36399. weight: math.unit(112, "lb"),
  36400. name: "Front",
  36401. image: {
  36402. source: "./media/characters/cassie-kingston/front.svg",
  36403. extra: 1438/1390,
  36404. bottom: 47/1485
  36405. }
  36406. },
  36407. },
  36408. [
  36409. {
  36410. name: "Normal",
  36411. height: math.unit(5 + 2/12, "feet"),
  36412. default: true
  36413. },
  36414. {
  36415. name: "Macro",
  36416. height: math.unit(128, "feet")
  36417. },
  36418. {
  36419. name: "Megamacro",
  36420. height: math.unit(2.56, "miles")
  36421. },
  36422. ]
  36423. ))
  36424. characterMakers.push(() => makeCharacter(
  36425. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36426. {
  36427. front: {
  36428. height: math.unit(7, "feet"),
  36429. name: "Front",
  36430. image: {
  36431. source: "./media/characters/fox/front.svg",
  36432. extra: 1798/1703,
  36433. bottom: 55/1853
  36434. }
  36435. },
  36436. back: {
  36437. height: math.unit(7, "feet"),
  36438. name: "Back",
  36439. image: {
  36440. source: "./media/characters/fox/back.svg",
  36441. extra: 1748/1649,
  36442. bottom: 32/1780
  36443. }
  36444. },
  36445. head: {
  36446. height: math.unit(1.95, "feet"),
  36447. name: "Head",
  36448. image: {
  36449. source: "./media/characters/fox/head.svg"
  36450. }
  36451. },
  36452. dick: {
  36453. height: math.unit(1.33, "feet"),
  36454. name: "Dick",
  36455. image: {
  36456. source: "./media/characters/fox/dick.svg"
  36457. }
  36458. },
  36459. foot: {
  36460. height: math.unit(1, "feet"),
  36461. name: "Foot",
  36462. image: {
  36463. source: "./media/characters/fox/foot.svg"
  36464. }
  36465. },
  36466. paw: {
  36467. height: math.unit(0.92, "feet"),
  36468. name: "Paw",
  36469. image: {
  36470. source: "./media/characters/fox/paw.svg"
  36471. }
  36472. },
  36473. },
  36474. [
  36475. {
  36476. name: "Small",
  36477. height: math.unit(3, "inches")
  36478. },
  36479. {
  36480. name: "\"Realistic\"",
  36481. height: math.unit(7, "feet")
  36482. },
  36483. {
  36484. name: "Normal",
  36485. height: math.unit(150, "feet"),
  36486. default: true
  36487. },
  36488. {
  36489. name: "BIG",
  36490. height: math.unit(1200, "feet")
  36491. },
  36492. {
  36493. name: "👀",
  36494. height: math.unit(5, "miles")
  36495. },
  36496. {
  36497. name: "👀👀👀",
  36498. height: math.unit(64, "miles")
  36499. },
  36500. ]
  36501. ))
  36502. characterMakers.push(() => makeCharacter(
  36503. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36504. {
  36505. front: {
  36506. height: math.unit(625, "feet"),
  36507. name: "Front",
  36508. image: {
  36509. source: "./media/characters/asonja-rossa/front.svg",
  36510. extra: 1833/1686,
  36511. bottom: 24/1857
  36512. }
  36513. },
  36514. back: {
  36515. height: math.unit(625, "feet"),
  36516. name: "Back",
  36517. image: {
  36518. source: "./media/characters/asonja-rossa/back.svg",
  36519. extra: 1852/1753,
  36520. bottom: 26/1878
  36521. }
  36522. },
  36523. },
  36524. [
  36525. {
  36526. name: "Macro",
  36527. height: math.unit(625, "feet"),
  36528. default: true
  36529. },
  36530. ]
  36531. ))
  36532. characterMakers.push(() => makeCharacter(
  36533. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36534. {
  36535. side: {
  36536. height: math.unit(6, "feet"),
  36537. weight: math.unit(150, "lb"),
  36538. name: "Side",
  36539. image: {
  36540. source: "./media/characters/rezukii/side.svg",
  36541. extra: 979/542,
  36542. bottom: 87/1066
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Tiny",
  36549. height: math.unit(2, "feet")
  36550. },
  36551. {
  36552. name: "Smol",
  36553. height: math.unit(4, "feet")
  36554. },
  36555. {
  36556. name: "Normal",
  36557. height: math.unit(8, "feet"),
  36558. default: true
  36559. },
  36560. {
  36561. name: "Big",
  36562. height: math.unit(12, "feet")
  36563. },
  36564. {
  36565. name: "Macro",
  36566. height: math.unit(30, "feet")
  36567. },
  36568. ]
  36569. ))
  36570. characterMakers.push(() => makeCharacter(
  36571. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36572. {
  36573. front: {
  36574. height: math.unit(14, "feet"),
  36575. weight: math.unit(9.5, "tonnes"),
  36576. name: "Front",
  36577. image: {
  36578. source: "./media/characters/dawnheart/front.svg",
  36579. extra: 2792/2675,
  36580. bottom: 64/2856
  36581. }
  36582. },
  36583. },
  36584. [
  36585. {
  36586. name: "Normal",
  36587. height: math.unit(14, "feet"),
  36588. default: true
  36589. },
  36590. ]
  36591. ))
  36592. characterMakers.push(() => makeCharacter(
  36593. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36594. {
  36595. front: {
  36596. height: math.unit(1.7, "m"),
  36597. name: "Front",
  36598. image: {
  36599. source: "./media/characters/gladi/front.svg",
  36600. extra: 1460/1362,
  36601. bottom: 19/1479
  36602. }
  36603. },
  36604. back: {
  36605. height: math.unit(1.7, "m"),
  36606. name: "Back",
  36607. image: {
  36608. source: "./media/characters/gladi/back.svg",
  36609. extra: 1459/1357,
  36610. bottom: 12/1471
  36611. }
  36612. },
  36613. feral: {
  36614. height: math.unit(2.05, "m"),
  36615. name: "Feral",
  36616. image: {
  36617. source: "./media/characters/gladi/feral.svg",
  36618. extra: 821/557,
  36619. bottom: 91/912
  36620. }
  36621. },
  36622. },
  36623. [
  36624. {
  36625. name: "Shortest",
  36626. height: math.unit(70, "cm")
  36627. },
  36628. {
  36629. name: "Normal",
  36630. height: math.unit(1.7, "m")
  36631. },
  36632. {
  36633. name: "Macro",
  36634. height: math.unit(10, "m"),
  36635. default: true
  36636. },
  36637. {
  36638. name: "Tallest",
  36639. height: math.unit(200, "m")
  36640. },
  36641. ]
  36642. ))
  36643. characterMakers.push(() => makeCharacter(
  36644. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36645. {
  36646. front: {
  36647. height: math.unit(5 + 7/12, "feet"),
  36648. weight: math.unit(92, "kg"),
  36649. name: "Front",
  36650. image: {
  36651. source: "./media/characters/erdno/front.svg",
  36652. extra: 1954/1889,
  36653. bottom: 22/1976
  36654. }
  36655. },
  36656. },
  36657. [
  36658. {
  36659. name: "Normal",
  36660. height: math.unit(5 + 7/12, "feet"),
  36661. default: true
  36662. },
  36663. ]
  36664. ))
  36665. characterMakers.push(() => makeCharacter(
  36666. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36667. {
  36668. front: {
  36669. height: math.unit(5 + 10/12, "feet"),
  36670. weight: math.unit(150, "lb"),
  36671. name: "Front",
  36672. image: {
  36673. source: "./media/characters/jamie/front.svg",
  36674. extra: 1908/1768,
  36675. bottom: 19/1927
  36676. }
  36677. },
  36678. },
  36679. [
  36680. {
  36681. name: "Minimum",
  36682. height: math.unit(2, "cm")
  36683. },
  36684. {
  36685. name: "Micro",
  36686. height: math.unit(3, "inches")
  36687. },
  36688. {
  36689. name: "Normal",
  36690. height: math.unit(5 + 10/12, "feet"),
  36691. default: true
  36692. },
  36693. {
  36694. name: "Macro",
  36695. height: math.unit(150, "feet")
  36696. },
  36697. {
  36698. name: "Megamacro",
  36699. height: math.unit(10000, "m")
  36700. },
  36701. ]
  36702. ))
  36703. characterMakers.push(() => makeCharacter(
  36704. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36705. {
  36706. front: {
  36707. height: math.unit(2, "meters"),
  36708. weight: math.unit(100, "kg"),
  36709. name: "Front",
  36710. image: {
  36711. source: "./media/characters/shiron/front.svg",
  36712. extra: 2103/1985,
  36713. bottom: 98/2201
  36714. }
  36715. },
  36716. back: {
  36717. height: math.unit(2, "meters"),
  36718. weight: math.unit(100, "kg"),
  36719. name: "Back",
  36720. image: {
  36721. source: "./media/characters/shiron/back.svg",
  36722. extra: 2110/2015,
  36723. bottom: 89/2199
  36724. }
  36725. },
  36726. hand: {
  36727. height: math.unit(0.96, "feet"),
  36728. name: "Hand",
  36729. image: {
  36730. source: "./media/characters/shiron/hand.svg"
  36731. }
  36732. },
  36733. foot: {
  36734. height: math.unit(1.464, "feet"),
  36735. name: "Foot",
  36736. image: {
  36737. source: "./media/characters/shiron/foot.svg"
  36738. }
  36739. },
  36740. },
  36741. [
  36742. {
  36743. name: "Normal",
  36744. height: math.unit(2, "meters")
  36745. },
  36746. {
  36747. name: "Macro",
  36748. height: math.unit(500, "meters"),
  36749. default: true
  36750. },
  36751. {
  36752. name: "Megamacro",
  36753. height: math.unit(20, "km")
  36754. },
  36755. ]
  36756. ))
  36757. characterMakers.push(() => makeCharacter(
  36758. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36759. {
  36760. front: {
  36761. height: math.unit(6, "feet"),
  36762. name: "Front",
  36763. image: {
  36764. source: "./media/characters/sam/front.svg",
  36765. extra: 849/826,
  36766. bottom: 19/868
  36767. }
  36768. },
  36769. },
  36770. [
  36771. {
  36772. name: "Normal",
  36773. height: math.unit(6, "feet"),
  36774. default: true
  36775. },
  36776. ]
  36777. ))
  36778. characterMakers.push(() => makeCharacter(
  36779. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36780. {
  36781. front: {
  36782. height: math.unit(8 + 4/12, "feet"),
  36783. weight: math.unit(122, "kg"),
  36784. name: "Front",
  36785. image: {
  36786. source: "./media/characters/namori-kurogawa/front.svg",
  36787. extra: 1894/1576,
  36788. bottom: 34/1928
  36789. }
  36790. },
  36791. },
  36792. [
  36793. {
  36794. name: "Normal",
  36795. height: math.unit(8 + 4/12, "feet"),
  36796. default: true
  36797. },
  36798. ]
  36799. ))
  36800. characterMakers.push(() => makeCharacter(
  36801. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36802. {
  36803. front: {
  36804. height: math.unit(9, "feet"),
  36805. weight: math.unit(621, "lb"),
  36806. name: "Front",
  36807. image: {
  36808. source: "./media/characters/unmru/front.svg",
  36809. extra: 1853/1747,
  36810. bottom: 73/1926
  36811. }
  36812. },
  36813. side: {
  36814. height: math.unit(9, "feet"),
  36815. weight: math.unit(621, "lb"),
  36816. name: "Side",
  36817. image: {
  36818. source: "./media/characters/unmru/side.svg",
  36819. extra: 1781/1671,
  36820. bottom: 127/1908
  36821. }
  36822. },
  36823. back: {
  36824. height: math.unit(9, "feet"),
  36825. weight: math.unit(621, "lb"),
  36826. name: "Back",
  36827. image: {
  36828. source: "./media/characters/unmru/back.svg",
  36829. extra: 1894/1765,
  36830. bottom: 75/1969
  36831. }
  36832. },
  36833. dick: {
  36834. height: math.unit(3, "feet"),
  36835. weight: math.unit(35, "lb"),
  36836. name: "Dick",
  36837. image: {
  36838. source: "./media/characters/unmru/dick.svg"
  36839. }
  36840. },
  36841. },
  36842. [
  36843. {
  36844. name: "Normal",
  36845. height: math.unit(9, "feet")
  36846. },
  36847. {
  36848. name: "Natural",
  36849. height: math.unit(27, "feet"),
  36850. default: true
  36851. },
  36852. {
  36853. name: "Giant",
  36854. height: math.unit(90, "feet")
  36855. },
  36856. {
  36857. name: "Kaiju",
  36858. height: math.unit(270, "feet")
  36859. },
  36860. {
  36861. name: "Macro",
  36862. height: math.unit(900, "feet")
  36863. },
  36864. {
  36865. name: "Macro+",
  36866. height: math.unit(2700, "feet")
  36867. },
  36868. {
  36869. name: "Megamacro",
  36870. height: math.unit(9000, "feet")
  36871. },
  36872. {
  36873. name: "City-Crushing",
  36874. height: math.unit(27000, "feet")
  36875. },
  36876. {
  36877. name: "Mountain-Mashing",
  36878. height: math.unit(90000, "feet")
  36879. },
  36880. {
  36881. name: "Earth-Eclipsing",
  36882. height: math.unit(2.7e8, "feet")
  36883. },
  36884. {
  36885. name: "Sol-Swallowing",
  36886. height: math.unit(9e10, "feet")
  36887. },
  36888. {
  36889. name: "Majoris-Munching",
  36890. height: math.unit(2.7e13, "feet")
  36891. },
  36892. ]
  36893. ))
  36894. characterMakers.push(() => makeCharacter(
  36895. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36896. {
  36897. front: {
  36898. height: math.unit(1, "inch"),
  36899. name: "Front",
  36900. image: {
  36901. source: "./media/characters/squeaks-mouse/front.svg",
  36902. extra: 352/308,
  36903. bottom: 25/377
  36904. }
  36905. },
  36906. },
  36907. [
  36908. {
  36909. name: "Micro",
  36910. height: math.unit(1, "inch"),
  36911. default: true
  36912. },
  36913. ]
  36914. ))
  36915. characterMakers.push(() => makeCharacter(
  36916. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36917. {
  36918. side: {
  36919. height: math.unit(35, "feet"),
  36920. name: "Side",
  36921. image: {
  36922. source: "./media/characters/sayko/side.svg",
  36923. extra: 1697/1021,
  36924. bottom: 82/1779
  36925. }
  36926. },
  36927. head: {
  36928. height: math.unit(16, "feet"),
  36929. name: "Head",
  36930. image: {
  36931. source: "./media/characters/sayko/head.svg"
  36932. }
  36933. },
  36934. forepaw: {
  36935. height: math.unit(7.85, "feet"),
  36936. name: "Forepaw",
  36937. image: {
  36938. source: "./media/characters/sayko/forepaw.svg"
  36939. }
  36940. },
  36941. hindpaw: {
  36942. height: math.unit(8.8, "feet"),
  36943. name: "Hindpaw",
  36944. image: {
  36945. source: "./media/characters/sayko/hindpaw.svg"
  36946. }
  36947. },
  36948. },
  36949. [
  36950. {
  36951. name: "Normal",
  36952. height: math.unit(35, "feet"),
  36953. default: true
  36954. },
  36955. {
  36956. name: "Colossus",
  36957. height: math.unit(100, "meters")
  36958. },
  36959. {
  36960. name: "\"Small\" Deity",
  36961. height: math.unit(1, "km")
  36962. },
  36963. {
  36964. name: "\"Large\" Deity",
  36965. height: math.unit(15, "km")
  36966. },
  36967. ]
  36968. ))
  36969. characterMakers.push(() => makeCharacter(
  36970. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36971. {
  36972. front: {
  36973. height: math.unit(6, "feet"),
  36974. weight: math.unit(250, "lb"),
  36975. name: "Front",
  36976. image: {
  36977. source: "./media/characters/mukiro/front.svg",
  36978. extra: 1368/1310,
  36979. bottom: 34/1402
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Normal",
  36986. height: math.unit(6, "feet"),
  36987. default: true
  36988. },
  36989. ]
  36990. ))
  36991. characterMakers.push(() => makeCharacter(
  36992. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  36993. {
  36994. front: {
  36995. height: math.unit(12 + 4/12, "feet"),
  36996. name: "Front",
  36997. image: {
  36998. source: "./media/characters/zeph-the-tiger-god/front.svg",
  36999. extra: 1346/1311,
  37000. bottom: 65/1411
  37001. }
  37002. },
  37003. },
  37004. [
  37005. {
  37006. name: "Base",
  37007. height: math.unit(12 + 4/12, "feet"),
  37008. default: true
  37009. },
  37010. {
  37011. name: "Macro",
  37012. height: math.unit(150, "feet")
  37013. },
  37014. {
  37015. name: "Mega",
  37016. height: math.unit(2, "miles")
  37017. },
  37018. {
  37019. name: "Demi God",
  37020. height: math.unit(4, "AU")
  37021. },
  37022. {
  37023. name: "God Size",
  37024. height: math.unit(1, "universe")
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37030. {
  37031. front: {
  37032. height: math.unit(3 + 3/12, "feet"),
  37033. weight: math.unit(88, "lb"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/trey/front.svg",
  37037. extra: 1815/1509,
  37038. bottom: 60/1875
  37039. }
  37040. },
  37041. },
  37042. [
  37043. {
  37044. name: "Normal",
  37045. height: math.unit(3 + 3/12, "feet"),
  37046. default: true
  37047. },
  37048. ]
  37049. ))
  37050. characterMakers.push(() => makeCharacter(
  37051. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37052. {
  37053. front: {
  37054. height: math.unit(4, "meters"),
  37055. name: "Front",
  37056. image: {
  37057. source: "./media/characters/adelonda/front.svg",
  37058. extra: 1942/1775,
  37059. bottom: 33/1975
  37060. }
  37061. },
  37062. back: {
  37063. height: math.unit(4, "meters"),
  37064. name: "Back",
  37065. image: {
  37066. source: "./media/characters/adelonda/back.svg",
  37067. extra: 1932/1780,
  37068. bottom: 42/1974
  37069. }
  37070. },
  37071. bust: {
  37072. height: math.unit(1.8, "meter"),
  37073. name: "Bust",
  37074. image: {
  37075. source: "./media/characters/adelonda/bust.svg"
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Normal",
  37082. height: math.unit(4, "meters"),
  37083. default: true
  37084. },
  37085. ]
  37086. ))
  37087. characterMakers.push(() => makeCharacter(
  37088. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37089. {
  37090. front: {
  37091. height: math.unit(8 + 4/12, "feet"),
  37092. weight: math.unit(670, "lb"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/acadiel/front.svg",
  37096. extra: 1901/1595,
  37097. bottom: 142/2043
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(8 + 4/12, "feet"),
  37105. default: true
  37106. },
  37107. {
  37108. name: "Macro",
  37109. height: math.unit(200, "feet")
  37110. },
  37111. ]
  37112. ))
  37113. characterMakers.push(() => makeCharacter(
  37114. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37115. {
  37116. front: {
  37117. height: math.unit(6 + 2/12, "feet"),
  37118. weight: math.unit(185, "lb"),
  37119. name: "Front",
  37120. image: {
  37121. source: "./media/characters/kayne-ein/front.svg",
  37122. extra: 1780/1560,
  37123. bottom: 81/1861
  37124. }
  37125. },
  37126. },
  37127. [
  37128. {
  37129. name: "Normal",
  37130. height: math.unit(6 + 2/12, "feet"),
  37131. default: true
  37132. },
  37133. {
  37134. name: "Transformation Stage",
  37135. height: math.unit(15, "feet")
  37136. },
  37137. {
  37138. name: "Macro",
  37139. height: math.unit(150, "feet")
  37140. },
  37141. {
  37142. name: "Earth's Shadow",
  37143. height: math.unit(6200, "miles")
  37144. },
  37145. {
  37146. name: "Universal Demon",
  37147. height: math.unit(28e9, "parsecs")
  37148. },
  37149. {
  37150. name: "Multiverse God",
  37151. height: math.unit(3, "multiverses")
  37152. },
  37153. ]
  37154. ))
  37155. characterMakers.push(() => makeCharacter(
  37156. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37157. {
  37158. front: {
  37159. height: math.unit(5 + 5/12, "feet"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/fawn/front.svg",
  37163. extra: 1873/1731,
  37164. bottom: 95/1968
  37165. }
  37166. },
  37167. back: {
  37168. height: math.unit(5 + 5/12, "feet"),
  37169. name: "Back",
  37170. image: {
  37171. source: "./media/characters/fawn/back.svg",
  37172. extra: 1813/1700,
  37173. bottom: 14/1827
  37174. }
  37175. },
  37176. hoof: {
  37177. height: math.unit(1.45, "feet"),
  37178. name: "Hoof",
  37179. image: {
  37180. source: "./media/characters/fawn/hoof.svg"
  37181. }
  37182. },
  37183. },
  37184. [
  37185. {
  37186. name: "Normal",
  37187. height: math.unit(5 + 5/12, "feet"),
  37188. default: true
  37189. },
  37190. ]
  37191. ))
  37192. characterMakers.push(() => makeCharacter(
  37193. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37194. {
  37195. front: {
  37196. height: math.unit(2 + 5/12, "feet"),
  37197. name: "Front",
  37198. image: {
  37199. source: "./media/characters/orion/front.svg",
  37200. extra: 1366/1304,
  37201. bottom: 43/1409
  37202. }
  37203. },
  37204. paw: {
  37205. height: math.unit(0.52, "feet"),
  37206. name: "Paw",
  37207. image: {
  37208. source: "./media/characters/orion/paw.svg"
  37209. }
  37210. },
  37211. },
  37212. [
  37213. {
  37214. name: "Normal",
  37215. height: math.unit(2 + 5/12, "feet"),
  37216. default: true
  37217. },
  37218. ]
  37219. ))
  37220. characterMakers.push(() => makeCharacter(
  37221. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37222. {
  37223. front: {
  37224. height: math.unit(5 + 10/12, "feet"),
  37225. name: "Front",
  37226. image: {
  37227. source: "./media/characters/vera/front.svg",
  37228. extra: 1680/1575,
  37229. bottom: 49/1729
  37230. }
  37231. },
  37232. back: {
  37233. height: math.unit(5 + 10/12, "feet"),
  37234. name: "Back",
  37235. image: {
  37236. source: "./media/characters/vera/back.svg",
  37237. extra: 1700/1588,
  37238. bottom: 18/1718
  37239. }
  37240. },
  37241. arcanine: {
  37242. height: math.unit(6 + 8/12, "feet"),
  37243. name: "Arcanine",
  37244. image: {
  37245. source: "./media/characters/vera/arcanine.svg",
  37246. extra: 1590/1511,
  37247. bottom: 71/1661
  37248. }
  37249. },
  37250. maw: {
  37251. height: math.unit(0.82, "feet"),
  37252. name: "Maw",
  37253. image: {
  37254. source: "./media/characters/vera/maw.svg"
  37255. }
  37256. },
  37257. mawArcanine: {
  37258. height: math.unit(0.97, "feet"),
  37259. name: "Maw (Arcanine)",
  37260. image: {
  37261. source: "./media/characters/vera/maw-arcanine.svg"
  37262. }
  37263. },
  37264. paw: {
  37265. height: math.unit(0.75, "feet"),
  37266. name: "Paw",
  37267. image: {
  37268. source: "./media/characters/vera/paw.svg"
  37269. }
  37270. },
  37271. pawprint: {
  37272. height: math.unit(0.52, "feet"),
  37273. name: "Pawprint",
  37274. image: {
  37275. source: "./media/characters/vera/pawprint.svg"
  37276. }
  37277. },
  37278. },
  37279. [
  37280. {
  37281. name: "Normal",
  37282. height: math.unit(5 + 10/12, "feet"),
  37283. default: true
  37284. },
  37285. {
  37286. name: "Macro",
  37287. height: math.unit(75, "feet")
  37288. },
  37289. ]
  37290. ))
  37291. characterMakers.push(() => makeCharacter(
  37292. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37293. {
  37294. front: {
  37295. height: math.unit(4, "feet"),
  37296. weight: math.unit(40, "lb"),
  37297. name: "Front",
  37298. image: {
  37299. source: "./media/characters/orvan-rabbit/front.svg",
  37300. extra: 1896/1642,
  37301. bottom: 29/1925
  37302. }
  37303. },
  37304. },
  37305. [
  37306. {
  37307. name: "Normal",
  37308. height: math.unit(4, "feet"),
  37309. default: true
  37310. },
  37311. ]
  37312. ))
  37313. characterMakers.push(() => makeCharacter(
  37314. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37315. {
  37316. front: {
  37317. height: math.unit(6, "feet"),
  37318. weight: math.unit(168, "lb"),
  37319. name: "Front",
  37320. image: {
  37321. source: "./media/characters/lisa/front.svg",
  37322. extra: 2065/1867,
  37323. bottom: 46/2111
  37324. }
  37325. },
  37326. back: {
  37327. height: math.unit(6, "feet"),
  37328. weight: math.unit(168, "lb"),
  37329. name: "Back",
  37330. image: {
  37331. source: "./media/characters/lisa/back.svg",
  37332. extra: 1982/1838,
  37333. bottom: 29/2011
  37334. }
  37335. },
  37336. maw: {
  37337. height: math.unit(0.81, "feet"),
  37338. name: "Maw",
  37339. image: {
  37340. source: "./media/characters/lisa/maw.svg"
  37341. }
  37342. },
  37343. paw: {
  37344. height: math.unit(0.9, "feet"),
  37345. name: "Paw",
  37346. image: {
  37347. source: "./media/characters/lisa/paw.svg"
  37348. }
  37349. },
  37350. caribousune: {
  37351. height: math.unit(7 + 2/12, "feet"),
  37352. weight: math.unit(268, "lb"),
  37353. name: "Caribousune",
  37354. image: {
  37355. source: "./media/characters/lisa/caribousune.svg",
  37356. extra: 1843/1633,
  37357. bottom: 29/1872
  37358. }
  37359. },
  37360. frontCaribousune: {
  37361. height: math.unit(7 + 2/12, "feet"),
  37362. weight: math.unit(268, "lb"),
  37363. name: "Front (Caribousune)",
  37364. image: {
  37365. source: "./media/characters/lisa/front-caribousune.svg",
  37366. extra: 1818/1638,
  37367. bottom: 52/1870
  37368. }
  37369. },
  37370. sideCaribousune: {
  37371. height: math.unit(7 + 2/12, "feet"),
  37372. weight: math.unit(268, "lb"),
  37373. name: "Side (Caribousune)",
  37374. image: {
  37375. source: "./media/characters/lisa/side-caribousune.svg",
  37376. extra: 1851/1635,
  37377. bottom: 16/1867
  37378. }
  37379. },
  37380. backCaribousune: {
  37381. height: math.unit(7 + 2/12, "feet"),
  37382. weight: math.unit(268, "lb"),
  37383. name: "Back (Caribousune)",
  37384. image: {
  37385. source: "./media/characters/lisa/back-caribousune.svg",
  37386. extra: 1801/1604,
  37387. bottom: 44/1845
  37388. }
  37389. },
  37390. caribou: {
  37391. height: math.unit(7 + 2/12, "feet"),
  37392. weight: math.unit(268, "lb"),
  37393. name: "Caribou",
  37394. image: {
  37395. source: "./media/characters/lisa/caribou.svg",
  37396. extra: 1843/1633,
  37397. bottom: 29/1872
  37398. }
  37399. },
  37400. frontCaribou: {
  37401. height: math.unit(7 + 2/12, "feet"),
  37402. weight: math.unit(268, "lb"),
  37403. name: "Front (Caribou)",
  37404. image: {
  37405. source: "./media/characters/lisa/front-caribou.svg",
  37406. extra: 1818/1638,
  37407. bottom: 52/1870
  37408. }
  37409. },
  37410. sideCaribou: {
  37411. height: math.unit(7 + 2/12, "feet"),
  37412. weight: math.unit(268, "lb"),
  37413. name: "Side (Caribou)",
  37414. image: {
  37415. source: "./media/characters/lisa/side-caribou.svg",
  37416. extra: 1851/1635,
  37417. bottom: 16/1867
  37418. }
  37419. },
  37420. backCaribou: {
  37421. height: math.unit(7 + 2/12, "feet"),
  37422. weight: math.unit(268, "lb"),
  37423. name: "Back (Caribou)",
  37424. image: {
  37425. source: "./media/characters/lisa/back-caribou.svg",
  37426. extra: 1801/1604,
  37427. bottom: 44/1845
  37428. }
  37429. },
  37430. mawCaribou: {
  37431. height: math.unit(1.45, "feet"),
  37432. name: "Maw (Caribou)",
  37433. image: {
  37434. source: "./media/characters/lisa/maw-caribou.svg"
  37435. }
  37436. },
  37437. mawCaribousune: {
  37438. height: math.unit(1.45, "feet"),
  37439. name: "Maw (Caribousune)",
  37440. image: {
  37441. source: "./media/characters/lisa/maw-caribousune.svg"
  37442. }
  37443. },
  37444. pawCaribousune: {
  37445. height: math.unit(1.61, "feet"),
  37446. name: "Paw (Caribou)",
  37447. image: {
  37448. source: "./media/characters/lisa/paw-caribousune.svg"
  37449. }
  37450. },
  37451. },
  37452. [
  37453. {
  37454. name: "Normal",
  37455. height: math.unit(6, "feet")
  37456. },
  37457. {
  37458. name: "God Size",
  37459. height: math.unit(72, "feet"),
  37460. default: true
  37461. },
  37462. {
  37463. name: "Towering",
  37464. height: math.unit(288, "feet")
  37465. },
  37466. {
  37467. name: "City Size",
  37468. height: math.unit(48384, "feet")
  37469. },
  37470. {
  37471. name: "Continental",
  37472. height: math.unit(4200, "miles")
  37473. },
  37474. {
  37475. name: "Planet Eater",
  37476. height: math.unit(42, "earths")
  37477. },
  37478. {
  37479. name: "Star Swallower",
  37480. height: math.unit(42, "solarradii")
  37481. },
  37482. {
  37483. name: "System Swallower",
  37484. height: math.unit(84000, "AU")
  37485. },
  37486. {
  37487. name: "Galaxy Gobbler",
  37488. height: math.unit(42, "galaxies")
  37489. },
  37490. {
  37491. name: "Universe Devourer",
  37492. height: math.unit(42, "universes")
  37493. },
  37494. {
  37495. name: "Multiverse Muncher",
  37496. height: math.unit(42, "multiverses")
  37497. },
  37498. ]
  37499. ))
  37500. characterMakers.push(() => makeCharacter(
  37501. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37502. {
  37503. front: {
  37504. height: math.unit(36, "feet"),
  37505. name: "Front",
  37506. image: {
  37507. source: "./media/characters/shadow-rat/front.svg",
  37508. extra: 1845/1758,
  37509. bottom: 83/1928
  37510. }
  37511. },
  37512. },
  37513. [
  37514. {
  37515. name: "Macro",
  37516. height: math.unit(36, "feet"),
  37517. default: true
  37518. },
  37519. ]
  37520. ))
  37521. characterMakers.push(() => makeCharacter(
  37522. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37523. {
  37524. side: {
  37525. height: math.unit(8, "feet"),
  37526. weight: math.unit(2630, "lb"),
  37527. name: "Side",
  37528. image: {
  37529. source: "./media/characters/torallia/side.svg",
  37530. extra: 2164/2021,
  37531. bottom: 371/2535
  37532. }
  37533. },
  37534. },
  37535. [
  37536. {
  37537. name: "Mortal Interaction",
  37538. height: math.unit(8, "feet")
  37539. },
  37540. {
  37541. name: "Natural",
  37542. height: math.unit(24, "feet"),
  37543. default: true
  37544. },
  37545. {
  37546. name: "Giant",
  37547. height: math.unit(80, "feet")
  37548. },
  37549. {
  37550. name: "Kaiju",
  37551. height: math.unit(240, "feet")
  37552. },
  37553. {
  37554. name: "Macro",
  37555. height: math.unit(800, "feet")
  37556. },
  37557. {
  37558. name: "Macro+",
  37559. height: math.unit(2400, "feet")
  37560. },
  37561. {
  37562. name: "Macro++",
  37563. height: math.unit(8000, "feet")
  37564. },
  37565. {
  37566. name: "City-Crushing",
  37567. height: math.unit(24000, "feet")
  37568. },
  37569. {
  37570. name: "Mountain-Mashing",
  37571. height: math.unit(80000, "feet")
  37572. },
  37573. {
  37574. name: "District Demolisher",
  37575. height: math.unit(240000, "feet")
  37576. },
  37577. {
  37578. name: "Tri-County Terror",
  37579. height: math.unit(800000, "feet")
  37580. },
  37581. {
  37582. name: "State Smasher",
  37583. height: math.unit(2.4e6, "feet")
  37584. },
  37585. {
  37586. name: "Nation Nemesis",
  37587. height: math.unit(8e6, "feet")
  37588. },
  37589. {
  37590. name: "Continent Cracker",
  37591. height: math.unit(2.4e7, "feet")
  37592. },
  37593. {
  37594. name: "Planet-Pillaging",
  37595. height: math.unit(8e7, "feet")
  37596. },
  37597. {
  37598. name: "Earth-Eclipsing",
  37599. height: math.unit(2.4e8, "feet")
  37600. },
  37601. {
  37602. name: "Jovian-Jostling",
  37603. height: math.unit(8e8, "feet")
  37604. },
  37605. {
  37606. name: "Gas Giant Gulper",
  37607. height: math.unit(2.4e9, "feet")
  37608. },
  37609. {
  37610. name: "Astral Annihilator",
  37611. height: math.unit(8e9, "feet")
  37612. },
  37613. {
  37614. name: "Celestial Conqueror",
  37615. height: math.unit(2.4e10, "feet")
  37616. },
  37617. {
  37618. name: "Sol-Swallowing",
  37619. height: math.unit(8e10, "feet")
  37620. },
  37621. {
  37622. name: "Hunter of the Heavens",
  37623. height: math.unit(2.4e13, "feet")
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37629. {
  37630. front: {
  37631. height: math.unit(6 + 8/12, "feet"),
  37632. name: "Front",
  37633. image: {
  37634. source: "./media/characters/rebecca-pawlson/front.svg",
  37635. extra: 1737/1596,
  37636. bottom: 107/1844
  37637. }
  37638. },
  37639. back: {
  37640. height: math.unit(6 + 8/12, "feet"),
  37641. name: "Back",
  37642. image: {
  37643. source: "./media/characters/rebecca-pawlson/back.svg",
  37644. extra: 1702/1523,
  37645. bottom: 86/1788
  37646. }
  37647. },
  37648. },
  37649. [
  37650. {
  37651. name: "Normal",
  37652. height: math.unit(6 + 8/12, "feet")
  37653. },
  37654. {
  37655. name: "Mini Macro",
  37656. height: math.unit(10, "feet"),
  37657. default: true
  37658. },
  37659. {
  37660. name: "Macro",
  37661. height: math.unit(100, "feet")
  37662. },
  37663. {
  37664. name: "Mega Macro",
  37665. height: math.unit(2500, "feet")
  37666. },
  37667. {
  37668. name: "Giga Macro",
  37669. height: math.unit(50, "miles")
  37670. },
  37671. ]
  37672. ))
  37673. characterMakers.push(() => makeCharacter(
  37674. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37675. {
  37676. front: {
  37677. height: math.unit(7 + 6/12, "feet"),
  37678. weight: math.unit(600, "lb"),
  37679. name: "Front",
  37680. image: {
  37681. source: "./media/characters/moxie-nova/front.svg",
  37682. extra: 1734/1652,
  37683. bottom: 41/1775
  37684. }
  37685. },
  37686. },
  37687. [
  37688. {
  37689. name: "Normal",
  37690. height: math.unit(7 + 6/12, "feet"),
  37691. default: true
  37692. },
  37693. ]
  37694. ))
  37695. characterMakers.push(() => makeCharacter(
  37696. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37697. {
  37698. front: {
  37699. height: math.unit(5, "feet"),
  37700. weight: math.unit(150, "lb"),
  37701. name: "Front",
  37702. image: {
  37703. source: "./media/characters/tiffany/front.svg",
  37704. extra: 1941/1845,
  37705. bottom: 58/1999
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Normal",
  37712. height: math.unit(5, "feet"),
  37713. default: true
  37714. },
  37715. ]
  37716. ))
  37717. characterMakers.push(() => makeCharacter(
  37718. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37719. {
  37720. front: {
  37721. height: math.unit(8, "feet"),
  37722. weight: math.unit(300, "lb"),
  37723. name: "Front",
  37724. image: {
  37725. source: "./media/characters/raxinath/front.svg",
  37726. extra: 1407/1309,
  37727. bottom: 39/1446
  37728. }
  37729. },
  37730. back: {
  37731. height: math.unit(8, "feet"),
  37732. weight: math.unit(300, "lb"),
  37733. name: "Back",
  37734. image: {
  37735. source: "./media/characters/raxinath/back.svg",
  37736. extra: 1405/1315,
  37737. bottom: 9/1414
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Speck",
  37744. height: math.unit(0.5, "nm")
  37745. },
  37746. {
  37747. name: "Micro",
  37748. height: math.unit(3, "inches")
  37749. },
  37750. {
  37751. name: "Kobold",
  37752. height: math.unit(3, "feet")
  37753. },
  37754. {
  37755. name: "Normal",
  37756. height: math.unit(8, "feet"),
  37757. default: true
  37758. },
  37759. {
  37760. name: "Giant",
  37761. height: math.unit(50, "feet")
  37762. },
  37763. {
  37764. name: "Macro",
  37765. height: math.unit(1000, "feet")
  37766. },
  37767. {
  37768. name: "Megamacro",
  37769. height: math.unit(1, "mile")
  37770. },
  37771. ]
  37772. ))
  37773. characterMakers.push(() => makeCharacter(
  37774. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37775. {
  37776. front: {
  37777. height: math.unit(10, "feet"),
  37778. weight: math.unit(1442, "lb"),
  37779. name: "Front",
  37780. image: {
  37781. source: "./media/characters/mal-dragon/front.svg",
  37782. extra: 1515/1444,
  37783. bottom: 113/1628
  37784. }
  37785. },
  37786. back: {
  37787. height: math.unit(10, "feet"),
  37788. weight: math.unit(1442, "lb"),
  37789. name: "Back",
  37790. image: {
  37791. source: "./media/characters/mal-dragon/back.svg",
  37792. extra: 1527/1434,
  37793. bottom: 25/1552
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Mortal Interaction",
  37800. height: math.unit(10, "feet"),
  37801. default: true
  37802. },
  37803. {
  37804. name: "Large",
  37805. height: math.unit(30, "feet")
  37806. },
  37807. {
  37808. name: "Kaiju",
  37809. height: math.unit(300, "feet")
  37810. },
  37811. {
  37812. name: "Megamacro",
  37813. height: math.unit(10000, "feet")
  37814. },
  37815. {
  37816. name: "Continent Cracker",
  37817. height: math.unit(30000000, "feet")
  37818. },
  37819. {
  37820. name: "Sol-Swallowing",
  37821. height: math.unit(1e11, "feet")
  37822. },
  37823. {
  37824. name: "Light Universal",
  37825. height: math.unit(5, "universes")
  37826. },
  37827. {
  37828. name: "Universe Atoms",
  37829. height: math.unit(1.829e9, "universes")
  37830. },
  37831. {
  37832. name: "Light Multiversal",
  37833. height: math.unit(5, "multiverses")
  37834. },
  37835. {
  37836. name: "Multiverse Atoms",
  37837. height: math.unit(1.829e9, "multiverses")
  37838. },
  37839. {
  37840. name: "Fabric of Time",
  37841. height: math.unit(1e262, "multiverses")
  37842. },
  37843. ]
  37844. ))
  37845. characterMakers.push(() => makeCharacter(
  37846. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37847. {
  37848. front: {
  37849. height: math.unit(9, "feet"),
  37850. weight: math.unit(1050, "lb"),
  37851. name: "Front",
  37852. image: {
  37853. source: "./media/characters/tabitha/front.svg",
  37854. extra: 2083/1994,
  37855. bottom: 68/2151
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Baseline",
  37862. height: math.unit(9, "feet"),
  37863. default: true
  37864. },
  37865. {
  37866. name: "Giant",
  37867. height: math.unit(90, "feet")
  37868. },
  37869. {
  37870. name: "Macro",
  37871. height: math.unit(900, "feet")
  37872. },
  37873. {
  37874. name: "Megamacro",
  37875. height: math.unit(9000, "feet")
  37876. },
  37877. {
  37878. name: "City-Crushing",
  37879. height: math.unit(27000, "feet")
  37880. },
  37881. {
  37882. name: "Mountain-Mashing",
  37883. height: math.unit(90000, "feet")
  37884. },
  37885. {
  37886. name: "Nation Nemesis",
  37887. height: math.unit(9e6, "feet")
  37888. },
  37889. {
  37890. name: "Continent Cracker",
  37891. height: math.unit(27e6, "feet")
  37892. },
  37893. {
  37894. name: "Earth-Eclipsing",
  37895. height: math.unit(2.7e8, "feet")
  37896. },
  37897. {
  37898. name: "Gas Giant Gulper",
  37899. height: math.unit(2.7e9, "feet")
  37900. },
  37901. {
  37902. name: "Sol-Swallowing",
  37903. height: math.unit(9e10, "feet")
  37904. },
  37905. {
  37906. name: "Galaxy Gulper",
  37907. height: math.unit(9, "galaxies")
  37908. },
  37909. {
  37910. name: "Cosmos Churner",
  37911. height: math.unit(9, "universes")
  37912. },
  37913. ]
  37914. ))
  37915. characterMakers.push(() => makeCharacter(
  37916. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37917. {
  37918. front: {
  37919. height: math.unit(160, "cm"),
  37920. weight: math.unit(55, "kg"),
  37921. name: "Front",
  37922. image: {
  37923. source: "./media/characters/tow/front.svg",
  37924. extra: 1751/1722,
  37925. bottom: 74/1825
  37926. }
  37927. },
  37928. },
  37929. [
  37930. {
  37931. name: "Norm",
  37932. height: math.unit(160, "cm")
  37933. },
  37934. {
  37935. name: "Casual",
  37936. height: math.unit(3200, "m"),
  37937. default: true
  37938. },
  37939. {
  37940. name: "Show-Off",
  37941. height: math.unit(160, "km")
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  37947. {
  37948. front: {
  37949. height: math.unit(7 + 11/12, "feet"),
  37950. weight: math.unit(342.8, "lb"),
  37951. name: "Front",
  37952. image: {
  37953. source: "./media/characters/vivian-orca-dragon/front.svg",
  37954. extra: 1890/1865,
  37955. bottom: 28/1918
  37956. }
  37957. },
  37958. },
  37959. [
  37960. {
  37961. name: "Micro",
  37962. height: math.unit(5, "inches")
  37963. },
  37964. {
  37965. name: "Normal",
  37966. height: math.unit(7 + 11/12, "feet"),
  37967. default: true
  37968. },
  37969. {
  37970. name: "Macro",
  37971. height: math.unit(395 + 7/12, "feet")
  37972. },
  37973. ]
  37974. ))
  37975. characterMakers.push(() => makeCharacter(
  37976. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  37977. {
  37978. side: {
  37979. height: math.unit(10, "feet"),
  37980. weight: math.unit(1442, "lb"),
  37981. name: "Side",
  37982. image: {
  37983. source: "./media/characters/lotherakon/side.svg",
  37984. extra: 1604/1497,
  37985. bottom: 89/1693
  37986. }
  37987. },
  37988. },
  37989. [
  37990. {
  37991. name: "Mortal Interaction",
  37992. height: math.unit(10, "feet")
  37993. },
  37994. {
  37995. name: "Large",
  37996. height: math.unit(30, "feet"),
  37997. default: true
  37998. },
  37999. {
  38000. name: "Giant",
  38001. height: math.unit(100, "feet")
  38002. },
  38003. {
  38004. name: "Kaiju",
  38005. height: math.unit(300, "feet")
  38006. },
  38007. {
  38008. name: "Macro",
  38009. height: math.unit(1000, "feet")
  38010. },
  38011. {
  38012. name: "Macro+",
  38013. height: math.unit(3000, "feet")
  38014. },
  38015. {
  38016. name: "Megamacro",
  38017. height: math.unit(10000, "feet")
  38018. },
  38019. {
  38020. name: "City-Crushing",
  38021. height: math.unit(30000, "feet")
  38022. },
  38023. {
  38024. name: "Continent Cracker",
  38025. height: math.unit(30e6, "feet")
  38026. },
  38027. {
  38028. name: "Earth Eclipsing",
  38029. height: math.unit(3e8, "feet")
  38030. },
  38031. {
  38032. name: "Gas Giant Gulper",
  38033. height: math.unit(3e9, "feet")
  38034. },
  38035. {
  38036. name: "Sol-Swallowing",
  38037. height: math.unit(1e11, "feet")
  38038. },
  38039. {
  38040. name: "System Swallower",
  38041. height: math.unit(3e14, "feet")
  38042. },
  38043. {
  38044. name: "Galaxy Gulper",
  38045. height: math.unit(10, "galaxies")
  38046. },
  38047. {
  38048. name: "Light Universal",
  38049. height: math.unit(5, "universes")
  38050. },
  38051. {
  38052. name: "Universe Palm",
  38053. height: math.unit(20, "universes")
  38054. },
  38055. {
  38056. name: "Light Multiversal",
  38057. height: math.unit(5, "multiverses")
  38058. },
  38059. {
  38060. name: "Multiverse Palm",
  38061. height: math.unit(20, "multiverses")
  38062. },
  38063. {
  38064. name: "Inferno Incarnate",
  38065. height: math.unit(1e7, "multiverses")
  38066. },
  38067. ]
  38068. ))
  38069. characterMakers.push(() => makeCharacter(
  38070. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38071. {
  38072. front: {
  38073. height: math.unit(8, "feet"),
  38074. weight: math.unit(1200, "lb"),
  38075. name: "Front",
  38076. image: {
  38077. source: "./media/characters/malithee/front.svg",
  38078. extra: 1675/1640,
  38079. bottom: 162/1837
  38080. }
  38081. },
  38082. },
  38083. [
  38084. {
  38085. name: "Mortal Interaction",
  38086. height: math.unit(8, "feet"),
  38087. default: true
  38088. },
  38089. {
  38090. name: "Large",
  38091. height: math.unit(24, "feet")
  38092. },
  38093. {
  38094. name: "Kaiju",
  38095. height: math.unit(240, "feet")
  38096. },
  38097. {
  38098. name: "Megamacro",
  38099. height: math.unit(8000, "feet")
  38100. },
  38101. {
  38102. name: "Continent Cracker",
  38103. height: math.unit(24e6, "feet")
  38104. },
  38105. {
  38106. name: "Earth-Eclipsing",
  38107. height: math.unit(2.4e8, "feet")
  38108. },
  38109. {
  38110. name: "Sol-Swallowing",
  38111. height: math.unit(8e10, "feet")
  38112. },
  38113. {
  38114. name: "Galaxy Gulper",
  38115. height: math.unit(8, "galaxies")
  38116. },
  38117. {
  38118. name: "Light Universal",
  38119. height: math.unit(4, "universes")
  38120. },
  38121. {
  38122. name: "Universe Atoms",
  38123. height: math.unit(1.829e9, "universes")
  38124. },
  38125. {
  38126. name: "Light Multiversal",
  38127. height: math.unit(4, "multiverses")
  38128. },
  38129. {
  38130. name: "Multiverse Atoms",
  38131. height: math.unit(1.829e9, "multiverses")
  38132. },
  38133. {
  38134. name: "Nigh-Omnipresence",
  38135. height: math.unit(8e261, "multiverses")
  38136. },
  38137. ]
  38138. ))
  38139. characterMakers.push(() => makeCharacter(
  38140. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38141. {
  38142. front: {
  38143. height: math.unit(10, "feet"),
  38144. weight: math.unit(1500, "lb"),
  38145. name: "Front",
  38146. image: {
  38147. source: "./media/characters/miles-thestia/front.svg",
  38148. extra: 1812/1727,
  38149. bottom: 86/1898
  38150. }
  38151. },
  38152. back: {
  38153. height: math.unit(10, "feet"),
  38154. weight: math.unit(1500, "lb"),
  38155. name: "Back",
  38156. image: {
  38157. source: "./media/characters/miles-thestia/back.svg",
  38158. extra: 1799/1690,
  38159. bottom: 47/1846
  38160. }
  38161. },
  38162. frontNsfw: {
  38163. height: math.unit(10, "feet"),
  38164. weight: math.unit(1500, "lb"),
  38165. name: "Front (NSFW)",
  38166. image: {
  38167. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38168. extra: 1812/1727,
  38169. bottom: 86/1898
  38170. }
  38171. },
  38172. },
  38173. [
  38174. {
  38175. name: "Mini-Macro",
  38176. height: math.unit(10, "feet"),
  38177. default: true
  38178. },
  38179. ]
  38180. ))
  38181. characterMakers.push(() => makeCharacter(
  38182. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38183. {
  38184. front: {
  38185. height: math.unit(25, "feet"),
  38186. name: "Front",
  38187. image: {
  38188. source: "./media/characters/titan-s-wulf/front.svg",
  38189. extra: 1560/1484,
  38190. bottom: 76/1636
  38191. }
  38192. },
  38193. },
  38194. [
  38195. {
  38196. name: "Smallest",
  38197. height: math.unit(25, "feet"),
  38198. default: true
  38199. },
  38200. {
  38201. name: "Normal",
  38202. height: math.unit(200, "feet")
  38203. },
  38204. {
  38205. name: "Macro",
  38206. height: math.unit(200000, "feet")
  38207. },
  38208. {
  38209. name: "Multiversal Original",
  38210. height: math.unit(10000, "multiverses")
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38216. {
  38217. front: {
  38218. height: math.unit(8, "feet"),
  38219. weight: math.unit(553, "lb"),
  38220. name: "Front",
  38221. image: {
  38222. source: "./media/characters/tawendeh/front.svg",
  38223. extra: 2365/2268,
  38224. bottom: 83/2448
  38225. }
  38226. },
  38227. frontClothed: {
  38228. height: math.unit(8, "feet"),
  38229. weight: math.unit(553, "lb"),
  38230. name: "Front (Clothed)",
  38231. image: {
  38232. source: "./media/characters/tawendeh/front-clothed.svg",
  38233. extra: 2365/2268,
  38234. bottom: 83/2448
  38235. }
  38236. },
  38237. back: {
  38238. height: math.unit(8, "feet"),
  38239. weight: math.unit(553, "lb"),
  38240. name: "Back",
  38241. image: {
  38242. source: "./media/characters/tawendeh/back.svg",
  38243. extra: 2397/2294,
  38244. bottom: 42/2439
  38245. }
  38246. },
  38247. },
  38248. [
  38249. {
  38250. name: "Mortal Interaction",
  38251. height: math.unit(8, "feet"),
  38252. default: true
  38253. },
  38254. {
  38255. name: "Giant",
  38256. height: math.unit(80, "feet")
  38257. },
  38258. {
  38259. name: "Macro",
  38260. height: math.unit(800, "feet")
  38261. },
  38262. {
  38263. name: "Megamacro",
  38264. height: math.unit(8000, "feet")
  38265. },
  38266. {
  38267. name: "City-Crushing",
  38268. height: math.unit(24000, "feet")
  38269. },
  38270. {
  38271. name: "Mountain-Mashing",
  38272. height: math.unit(80000, "feet")
  38273. },
  38274. {
  38275. name: "Nation Nemesis",
  38276. height: math.unit(8e6, "feet")
  38277. },
  38278. {
  38279. name: "Continent Cracker",
  38280. height: math.unit(24e6, "feet")
  38281. },
  38282. {
  38283. name: "Earth-Eclipsing",
  38284. height: math.unit(2.4e8, "feet")
  38285. },
  38286. {
  38287. name: "Gas Giant Gulper",
  38288. height: math.unit(2.4e9, "feet")
  38289. },
  38290. {
  38291. name: "Sol-Swallowing",
  38292. height: math.unit(8e10, "feet")
  38293. },
  38294. {
  38295. name: "Galaxy Gulper",
  38296. height: math.unit(8, "galaxies")
  38297. },
  38298. {
  38299. name: "Cosmos Churner",
  38300. height: math.unit(8, "universes")
  38301. },
  38302. {
  38303. name: "Omnipotent Otter",
  38304. height: math.unit(80, "universes")
  38305. },
  38306. ]
  38307. ))
  38308. characterMakers.push(() => makeCharacter(
  38309. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38310. {
  38311. front: {
  38312. height: math.unit(2.6, "meters"),
  38313. weight: math.unit(900, "kg"),
  38314. name: "Front",
  38315. image: {
  38316. source: "./media/characters/neesha/front.svg",
  38317. extra: 1803/1653,
  38318. bottom: 128/1931
  38319. }
  38320. },
  38321. },
  38322. [
  38323. {
  38324. name: "Normal",
  38325. height: math.unit(2.6, "meters"),
  38326. default: true
  38327. },
  38328. {
  38329. name: "Macro",
  38330. height: math.unit(50, "meters")
  38331. },
  38332. ]
  38333. ))
  38334. characterMakers.push(() => makeCharacter(
  38335. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38336. {
  38337. front: {
  38338. height: math.unit(5, "feet"),
  38339. weight: math.unit(185, "lb"),
  38340. name: "Front",
  38341. image: {
  38342. source: "./media/characters/kyera/front.svg",
  38343. extra: 1875/1790,
  38344. bottom: 96/1971
  38345. }
  38346. },
  38347. },
  38348. [
  38349. {
  38350. name: "Normal",
  38351. height: math.unit(5, "feet"),
  38352. default: true
  38353. },
  38354. ]
  38355. ))
  38356. //characters
  38357. function makeCharacters() {
  38358. const results = [];
  38359. characterMakers.forEach(character => {
  38360. results.push(character());
  38361. });
  38362. return results;
  38363. }