less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25471 lines
632 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.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. }
  1272. //species
  1273. function getSpeciesInfo(speciesList) {
  1274. let result = new Set();
  1275. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1276. result.add(entry)
  1277. });
  1278. return Array.from(result);
  1279. };
  1280. function getSpeciesInfoHelper(species) {
  1281. if (!speciesData[species]) {
  1282. console.warn(species + " doesn't exist");
  1283. return [];
  1284. }
  1285. if (speciesData[species].parents) {
  1286. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1287. } else {
  1288. return [species];
  1289. }
  1290. }
  1291. characterMakers.push(() => makeCharacter(
  1292. {
  1293. name: "Fen",
  1294. species: ["crux"],
  1295. description: {
  1296. title: "Bio",
  1297. text: "Very furry. Sheds on everything."
  1298. },
  1299. tags: [
  1300. "anthro",
  1301. "goo"
  1302. ]
  1303. },
  1304. {
  1305. back: {
  1306. height: math.unit(2.2428, "meter"),
  1307. weight: math.unit(124.738, "kg"),
  1308. name: "Back",
  1309. image: {
  1310. source: "./media/characters/fen/back.svg",
  1311. extra: 1025 / 935,
  1312. bottom: 0.01
  1313. },
  1314. info: {
  1315. description: {
  1316. mode: "append",
  1317. text: "\n\nHe is not currently looking at you."
  1318. }
  1319. }
  1320. },
  1321. full: {
  1322. height: math.unit(1.34, "meter"),
  1323. weight: math.unit(225, "kg"),
  1324. name: "Full",
  1325. image: {
  1326. source: "./media/characters/fen/full.svg"
  1327. },
  1328. info: {
  1329. description: {
  1330. mode: "append",
  1331. text: "\n\nMunch."
  1332. }
  1333. }
  1334. },
  1335. kneeling: {
  1336. height: math.unit(5.4, "feet"),
  1337. weight: math.unit(124.738, "kg"),
  1338. name: "Kneeling",
  1339. image: {
  1340. source: "./media/characters/fen/kneeling.svg",
  1341. extra: 563 / 507
  1342. }
  1343. },
  1344. goo: {
  1345. height: math.unit(2.8, "feet"),
  1346. weight: math.unit(125, "kg"),
  1347. capacity: math.unit(1, "people"),
  1348. name: "Goo",
  1349. image: {
  1350. source: "./media/characters/fen/goo.svg",
  1351. bottom: 116 / 613
  1352. }
  1353. },
  1354. lounging: {
  1355. height: math.unit(6.5, "feet"),
  1356. weight: math.unit(125, "kg"),
  1357. name: "Lounging",
  1358. image: {
  1359. source: "./media/characters/fen/lounging.svg"
  1360. }
  1361. },
  1362. },
  1363. [
  1364. {
  1365. name: "Normal",
  1366. height: math.unit(2.2428, "meter")
  1367. },
  1368. {
  1369. name: "Big",
  1370. height: math.unit(12, "feet")
  1371. },
  1372. {
  1373. name: "Minimacro",
  1374. height: math.unit(40, "feet"),
  1375. default: true,
  1376. info: {
  1377. description: {
  1378. mode: "append",
  1379. text: "\n\nTOO DAMN BIG"
  1380. }
  1381. }
  1382. },
  1383. {
  1384. name: "Macro",
  1385. height: math.unit(100, "feet"),
  1386. info: {
  1387. description: {
  1388. mode: "append",
  1389. text: "\n\nTOO DAMN BIG"
  1390. }
  1391. }
  1392. },
  1393. {
  1394. name: "Macro+",
  1395. height: math.unit(300, "feet")
  1396. },
  1397. {
  1398. name: "Megamacro",
  1399. height: math.unit(2, "miles")
  1400. }
  1401. ]
  1402. ))
  1403. characterMakers.push(() => makeCharacter(
  1404. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1405. {
  1406. front: {
  1407. height: math.unit(183, "cm"),
  1408. weight: math.unit(80, "kg"),
  1409. name: "Front",
  1410. image: {
  1411. source: "./media/characters/sofia-fluttertail/front.svg",
  1412. bottom: 0.01,
  1413. extra: 2154 / 2081
  1414. }
  1415. },
  1416. frontAlt: {
  1417. height: math.unit(183, "cm"),
  1418. weight: math.unit(80, "kg"),
  1419. name: "Front (alt)",
  1420. image: {
  1421. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1422. }
  1423. },
  1424. back: {
  1425. height: math.unit(183, "cm"),
  1426. weight: math.unit(80, "kg"),
  1427. name: "Back",
  1428. image: {
  1429. source: "./media/characters/sofia-fluttertail/back.svg"
  1430. }
  1431. },
  1432. kneeling: {
  1433. height: math.unit(125, "cm"),
  1434. weight: math.unit(80, "kg"),
  1435. name: "Kneeling",
  1436. image: {
  1437. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1438. extra: 1033 / 977,
  1439. bottom: 23.7 / 1057
  1440. }
  1441. },
  1442. maw: {
  1443. height: math.unit(183 / 5, "cm"),
  1444. name: "Maw",
  1445. image: {
  1446. source: "./media/characters/sofia-fluttertail/maw.svg"
  1447. }
  1448. },
  1449. mawcloseup: {
  1450. height: math.unit(183 / 5 * 0.41, "cm"),
  1451. name: "Maw (Closeup)",
  1452. image: {
  1453. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1454. }
  1455. },
  1456. },
  1457. [
  1458. {
  1459. name: "Normal",
  1460. height: math.unit(1.83, "meter")
  1461. },
  1462. {
  1463. name: "Size Thief",
  1464. height: math.unit(18, "feet")
  1465. },
  1466. {
  1467. name: "50 Foot Collie",
  1468. height: math.unit(50, "feet")
  1469. },
  1470. {
  1471. name: "Macro",
  1472. height: math.unit(96, "feet"),
  1473. default: true
  1474. },
  1475. {
  1476. name: "Megamerger",
  1477. height: math.unit(650, "feet")
  1478. },
  1479. ]
  1480. ))
  1481. characterMakers.push(() => makeCharacter(
  1482. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1483. {
  1484. front: {
  1485. height: math.unit(7, "feet"),
  1486. weight: math.unit(100, "kg"),
  1487. name: "Front",
  1488. image: {
  1489. source: "./media/characters/march/front.svg",
  1490. extra: 1,
  1491. bottom: 0.015
  1492. }
  1493. },
  1494. foot: {
  1495. height: math.unit(0.9, "feet"),
  1496. name: "Foot",
  1497. image: {
  1498. source: "./media/characters/march/foot.svg"
  1499. }
  1500. },
  1501. },
  1502. [
  1503. {
  1504. name: "Normal",
  1505. height: math.unit(7.9, "feet")
  1506. },
  1507. {
  1508. name: "Macro",
  1509. height: math.unit(220, "meters")
  1510. },
  1511. {
  1512. name: "Megamacro",
  1513. height: math.unit(2.98, "km"),
  1514. default: true
  1515. },
  1516. {
  1517. name: "Gigamacro",
  1518. height: math.unit(15963, "km")
  1519. },
  1520. {
  1521. name: "Teramacro",
  1522. height: math.unit(2980000000, "km")
  1523. },
  1524. {
  1525. name: "Examacro",
  1526. height: math.unit(250, "parsecs")
  1527. },
  1528. ]
  1529. ))
  1530. characterMakers.push(() => makeCharacter(
  1531. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1532. {
  1533. front: {
  1534. height: math.unit(6, "feet"),
  1535. weight: math.unit(60, "kg"),
  1536. name: "Front",
  1537. image: {
  1538. source: "./media/characters/noir/front.svg",
  1539. extra: 1,
  1540. bottom: 0.032
  1541. }
  1542. },
  1543. },
  1544. [
  1545. {
  1546. name: "Normal",
  1547. height: math.unit(6.6, "feet")
  1548. },
  1549. {
  1550. name: "Macro",
  1551. height: math.unit(500, "feet")
  1552. },
  1553. {
  1554. name: "Megamacro",
  1555. height: math.unit(2.5, "km"),
  1556. default: true
  1557. },
  1558. {
  1559. name: "Gigamacro",
  1560. height: math.unit(22500, "km")
  1561. },
  1562. {
  1563. name: "Teramacro",
  1564. height: math.unit(2500000000, "km")
  1565. },
  1566. {
  1567. name: "Examacro",
  1568. height: math.unit(200, "parsecs")
  1569. },
  1570. ]
  1571. ))
  1572. characterMakers.push(() => makeCharacter(
  1573. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1574. {
  1575. front: {
  1576. height: math.unit(7, "feet"),
  1577. weight: math.unit(100, "kg"),
  1578. name: "Front",
  1579. image: {
  1580. source: "./media/characters/okuri/front.svg",
  1581. extra: 1,
  1582. bottom: 0.037
  1583. }
  1584. },
  1585. back: {
  1586. height: math.unit(7, "feet"),
  1587. weight: math.unit(100, "kg"),
  1588. name: "Back",
  1589. image: {
  1590. source: "./media/characters/okuri/back.svg",
  1591. extra: 1,
  1592. bottom: 0.007
  1593. }
  1594. },
  1595. },
  1596. [
  1597. {
  1598. name: "Megamacro",
  1599. height: math.unit(100, "miles"),
  1600. default: true
  1601. },
  1602. ]
  1603. ))
  1604. characterMakers.push(() => makeCharacter(
  1605. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1606. {
  1607. front: {
  1608. height: math.unit(7, "feet"),
  1609. weight: math.unit(100, "kg"),
  1610. name: "Front",
  1611. image: {
  1612. source: "./media/characters/manny/front.svg",
  1613. extra: 1,
  1614. bottom: 0.06
  1615. }
  1616. },
  1617. back: {
  1618. height: math.unit(7, "feet"),
  1619. weight: math.unit(100, "kg"),
  1620. name: "Back",
  1621. image: {
  1622. source: "./media/characters/manny/back.svg",
  1623. extra: 1,
  1624. bottom: 0.014
  1625. }
  1626. },
  1627. },
  1628. [
  1629. {
  1630. name: "Normal",
  1631. height: math.unit(7, "feet"),
  1632. },
  1633. {
  1634. name: "Macro",
  1635. height: math.unit(78, "feet"),
  1636. default: true
  1637. },
  1638. {
  1639. name: "Macro+",
  1640. height: math.unit(300, "meters")
  1641. },
  1642. {
  1643. name: "Macro++",
  1644. height: math.unit(2400, "meters")
  1645. },
  1646. {
  1647. name: "Megamacro",
  1648. height: math.unit(5167, "meters")
  1649. },
  1650. {
  1651. name: "Gigamacro",
  1652. height: math.unit(41769, "miles")
  1653. },
  1654. ]
  1655. ))
  1656. characterMakers.push(() => makeCharacter(
  1657. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1658. {
  1659. front: {
  1660. height: math.unit(7, "feet"),
  1661. weight: math.unit(100, "kg"),
  1662. name: "Front",
  1663. image: {
  1664. source: "./media/characters/adake/front-1.svg"
  1665. }
  1666. },
  1667. frontAlt: {
  1668. height: math.unit(7, "feet"),
  1669. weight: math.unit(100, "kg"),
  1670. name: "Front (Alt)",
  1671. image: {
  1672. source: "./media/characters/adake/front-2.svg",
  1673. extra: 1,
  1674. bottom: 0.01
  1675. }
  1676. },
  1677. back: {
  1678. height: math.unit(7, "feet"),
  1679. weight: math.unit(100, "kg"),
  1680. name: "Back",
  1681. image: {
  1682. source: "./media/characters/adake/back.svg",
  1683. }
  1684. },
  1685. kneel: {
  1686. height: math.unit(5.385, "feet"),
  1687. weight: math.unit(100, "kg"),
  1688. name: "Kneeling",
  1689. image: {
  1690. source: "./media/characters/adake/kneel.svg",
  1691. bottom: 0.052
  1692. }
  1693. },
  1694. },
  1695. [
  1696. {
  1697. name: "Normal",
  1698. height: math.unit(7, "feet"),
  1699. },
  1700. {
  1701. name: "Macro",
  1702. height: math.unit(78, "feet"),
  1703. default: true
  1704. },
  1705. {
  1706. name: "Macro+",
  1707. height: math.unit(300, "meters")
  1708. },
  1709. {
  1710. name: "Macro++",
  1711. height: math.unit(2400, "meters")
  1712. },
  1713. {
  1714. name: "Megamacro",
  1715. height: math.unit(5167, "meters")
  1716. },
  1717. {
  1718. name: "Gigamacro",
  1719. height: math.unit(41769, "miles")
  1720. },
  1721. ]
  1722. ))
  1723. characterMakers.push(() => makeCharacter(
  1724. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1725. {
  1726. front: {
  1727. height: math.unit(1.65, "meters"),
  1728. weight: math.unit(50, "kg"),
  1729. name: "Front",
  1730. image: {
  1731. source: "./media/characters/elijah/front.svg",
  1732. extra: 858 / 830,
  1733. bottom: 95.5 / 953.8559
  1734. }
  1735. },
  1736. back: {
  1737. height: math.unit(1.65, "meters"),
  1738. weight: math.unit(50, "kg"),
  1739. name: "Back",
  1740. image: {
  1741. source: "./media/characters/elijah/back.svg",
  1742. extra: 895 / 850,
  1743. bottom: 5.3 / 897.956
  1744. }
  1745. },
  1746. frontNsfw: {
  1747. height: math.unit(1.65, "meters"),
  1748. weight: math.unit(50, "kg"),
  1749. name: "Front (NSFW)",
  1750. image: {
  1751. source: "./media/characters/elijah/front-nsfw.svg",
  1752. extra: 858 / 830,
  1753. bottom: 95.5 / 953.8559
  1754. }
  1755. },
  1756. backNsfw: {
  1757. height: math.unit(1.65, "meters"),
  1758. weight: math.unit(50, "kg"),
  1759. name: "Back (NSFW)",
  1760. image: {
  1761. source: "./media/characters/elijah/back-nsfw.svg",
  1762. extra: 895 / 850,
  1763. bottom: 5.3 / 897.956
  1764. }
  1765. },
  1766. dick: {
  1767. height: math.unit(1, "feet"),
  1768. name: "Dick",
  1769. image: {
  1770. source: "./media/characters/elijah/dick.svg"
  1771. }
  1772. },
  1773. beakOpen: {
  1774. height: math.unit(1.25, "feet"),
  1775. name: "Beak (Open)",
  1776. image: {
  1777. source: "./media/characters/elijah/beak-open.svg"
  1778. }
  1779. },
  1780. beakShut: {
  1781. height: math.unit(1.25, "feet"),
  1782. name: "Beak (Shut)",
  1783. image: {
  1784. source: "./media/characters/elijah/beak-shut.svg"
  1785. }
  1786. },
  1787. footFlexing: {
  1788. height: math.unit(1.61, "feet"),
  1789. name: "Foot (Flexing)",
  1790. image: {
  1791. source: "./media/characters/elijah/foot-flexing.svg"
  1792. }
  1793. },
  1794. footStepping: {
  1795. height: math.unit(1.44, "feet"),
  1796. name: "Foot (Stepping)",
  1797. image: {
  1798. source: "./media/characters/elijah/foot-stepping.svg"
  1799. }
  1800. },
  1801. plantigradeLeg: {
  1802. height: math.unit(2.34, "feet"),
  1803. name: "Plantigrade Leg",
  1804. image: {
  1805. source: "./media/characters/elijah/plantigrade-leg.svg"
  1806. }
  1807. },
  1808. plantigradeFootLeft: {
  1809. height: math.unit(0.9, "feet"),
  1810. name: "Plantigrade Foot (Left)",
  1811. image: {
  1812. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1813. }
  1814. },
  1815. plantigradeFootRight: {
  1816. height: math.unit(0.9, "feet"),
  1817. name: "Plantigrade Foot (Right)",
  1818. image: {
  1819. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1820. }
  1821. },
  1822. },
  1823. [
  1824. {
  1825. name: "Normal",
  1826. height: math.unit(1.65, "meters")
  1827. },
  1828. {
  1829. name: "Macro",
  1830. height: math.unit(55, "meters"),
  1831. default: true
  1832. },
  1833. {
  1834. name: "Macro+",
  1835. height: math.unit(105, "meters")
  1836. },
  1837. ]
  1838. ))
  1839. characterMakers.push(() => makeCharacter(
  1840. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1841. {
  1842. front: {
  1843. height: math.unit(11, "feet"),
  1844. weight: math.unit(80, "kg"),
  1845. name: "Front",
  1846. image: {
  1847. source: "./media/characters/rai/front.svg",
  1848. extra: 1,
  1849. bottom: 0.03
  1850. }
  1851. },
  1852. side: {
  1853. height: math.unit(11, "feet"),
  1854. weight: math.unit(80, "kg"),
  1855. name: "Side",
  1856. image: {
  1857. source: "./media/characters/rai/side.svg"
  1858. }
  1859. },
  1860. back: {
  1861. height: math.unit(11, "feet"),
  1862. weight: math.unit(80, "lb"),
  1863. name: "Back",
  1864. image: {
  1865. source: "./media/characters/rai/back.svg",
  1866. extra: 1,
  1867. bottom: 0.01
  1868. }
  1869. },
  1870. feral: {
  1871. height: math.unit(11, "feet"),
  1872. weight: math.unit(800, "lb"),
  1873. name: "Feral",
  1874. image: {
  1875. source: "./media/characters/rai/feral.svg",
  1876. extra: 1050 / 659,
  1877. bottom: 0.07
  1878. }
  1879. },
  1880. dragon: {
  1881. height: math.unit(23, "feet"),
  1882. weight: math.unit(50000, "lb"),
  1883. name: "Dragon",
  1884. image: {
  1885. source: "./media/characters/rai/dragon.svg",
  1886. extra: 2498 / 2030,
  1887. bottom: 85.2 / 2584
  1888. }
  1889. },
  1890. maw: {
  1891. height: math.unit(6 / 3.81416, "feet"),
  1892. name: "Maw",
  1893. image: {
  1894. source: "./media/characters/rai/maw.svg"
  1895. }
  1896. },
  1897. },
  1898. [
  1899. {
  1900. name: "Normal",
  1901. height: math.unit(11, "feet")
  1902. },
  1903. {
  1904. name: "Macro",
  1905. height: math.unit(302, "feet"),
  1906. default: true
  1907. },
  1908. ]
  1909. ))
  1910. characterMakers.push(() => makeCharacter(
  1911. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1912. {
  1913. frontDressed: {
  1914. height: math.unit(216, "feet"),
  1915. weight: math.unit(7000000, "lb"),
  1916. name: "Front (Dressed)",
  1917. image: {
  1918. source: "./media/characters/jazzy/front-dressed.svg",
  1919. extra: 2738 / 2651,
  1920. bottom: 41.8 / 2786
  1921. }
  1922. },
  1923. backDressed: {
  1924. height: math.unit(216, "feet"),
  1925. weight: math.unit(7000000, "lb"),
  1926. name: "Back (Dressed)",
  1927. image: {
  1928. source: "./media/characters/jazzy/back-dressed.svg",
  1929. extra: 2775 / 2673,
  1930. bottom: 36.8 / 2817
  1931. }
  1932. },
  1933. front: {
  1934. height: math.unit(216, "feet"),
  1935. weight: math.unit(7000000, "lb"),
  1936. name: "Front",
  1937. image: {
  1938. source: "./media/characters/jazzy/front.svg",
  1939. extra: 2738 / 2651,
  1940. bottom: 41.8 / 2786
  1941. }
  1942. },
  1943. back: {
  1944. height: math.unit(216, "feet"),
  1945. weight: math.unit(7000000, "lb"),
  1946. name: "Back",
  1947. image: {
  1948. source: "./media/characters/jazzy/back.svg",
  1949. extra: 2775 / 2673,
  1950. bottom: 36.8 / 2817
  1951. }
  1952. },
  1953. maw: {
  1954. height: math.unit(20, "feet"),
  1955. name: "Maw",
  1956. image: {
  1957. source: "./media/characters/jazzy/maw.svg"
  1958. }
  1959. },
  1960. paws: {
  1961. height: math.unit(27.5, "feet"),
  1962. name: "Paws",
  1963. image: {
  1964. source: "./media/characters/jazzy/paws.svg"
  1965. }
  1966. },
  1967. eye: {
  1968. height: math.unit(4.4, "feet"),
  1969. name: "Eye",
  1970. image: {
  1971. source: "./media/characters/jazzy/eye.svg"
  1972. }
  1973. },
  1974. droneOffense: {
  1975. height: math.unit(9.5, "inches"),
  1976. name: "Drone (Offense)",
  1977. image: {
  1978. source: "./media/characters/jazzy/drone-offense.svg"
  1979. }
  1980. },
  1981. droneRecon: {
  1982. height: math.unit(9.5, "inches"),
  1983. name: "Drone (Recon)",
  1984. image: {
  1985. source: "./media/characters/jazzy/drone-recon.svg"
  1986. }
  1987. },
  1988. droneDefense: {
  1989. height: math.unit(9.5, "inches"),
  1990. name: "Drone (Defense)",
  1991. image: {
  1992. source: "./media/characters/jazzy/drone-defense.svg"
  1993. }
  1994. },
  1995. },
  1996. [
  1997. {
  1998. name: "Macro",
  1999. height: math.unit(216, "feet"),
  2000. default: true
  2001. },
  2002. ]
  2003. ))
  2004. characterMakers.push(() => makeCharacter(
  2005. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2006. {
  2007. front: {
  2008. height: math.unit(7, "feet"),
  2009. weight: math.unit(80, "kg"),
  2010. name: "Front",
  2011. image: {
  2012. source: "./media/characters/flamm/front.svg",
  2013. extra: 1794 / 1677,
  2014. bottom: 31.7 / 1828.5
  2015. }
  2016. },
  2017. },
  2018. [
  2019. {
  2020. name: "Normal",
  2021. height: math.unit(9.5, "feet")
  2022. },
  2023. {
  2024. name: "Macro",
  2025. height: math.unit(200, "feet"),
  2026. default: true
  2027. },
  2028. ]
  2029. ))
  2030. characterMakers.push(() => makeCharacter(
  2031. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2032. {
  2033. front: {
  2034. height: math.unit(7, "feet"),
  2035. weight: math.unit(80, "kg"),
  2036. name: "Front",
  2037. image: {
  2038. source: "./media/characters/zephiro/front.svg",
  2039. extra: 2309 / 2162,
  2040. bottom: 0.069
  2041. }
  2042. },
  2043. side: {
  2044. height: math.unit(7, "feet"),
  2045. weight: math.unit(80, "kg"),
  2046. name: "Side",
  2047. image: {
  2048. source: "./media/characters/zephiro/side.svg",
  2049. extra: 2403 / 2279,
  2050. bottom: 0.015
  2051. }
  2052. },
  2053. back: {
  2054. height: math.unit(7, "feet"),
  2055. weight: math.unit(80, "kg"),
  2056. name: "Back",
  2057. image: {
  2058. source: "./media/characters/zephiro/back.svg",
  2059. extra: 2373 / 2244,
  2060. bottom: 0.013
  2061. }
  2062. },
  2063. },
  2064. [
  2065. {
  2066. name: "Micro",
  2067. height: math.unit(3, "inches")
  2068. },
  2069. {
  2070. name: "Normal",
  2071. height: math.unit(5 + 3 / 12, "feet"),
  2072. default: true
  2073. },
  2074. {
  2075. name: "Macro",
  2076. height: math.unit(118, "feet")
  2077. },
  2078. ]
  2079. ))
  2080. characterMakers.push(() => makeCharacter(
  2081. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2082. {
  2083. front: {
  2084. height: math.unit(5, "feet"),
  2085. weight: math.unit(90, "kg"),
  2086. name: "Front",
  2087. image: {
  2088. source: "./media/characters/fory/front.svg",
  2089. extra: 2862 / 2674,
  2090. bottom: 180 / 3043.8
  2091. }
  2092. },
  2093. back: {
  2094. height: math.unit(5, "feet"),
  2095. weight: math.unit(90, "kg"),
  2096. name: "Back",
  2097. image: {
  2098. source: "./media/characters/fory/back.svg",
  2099. extra: 2962 / 2791,
  2100. bottom: 106 / 3071.8
  2101. }
  2102. },
  2103. foot: {
  2104. height: math.unit(2.14, "feet"),
  2105. name: "Foot",
  2106. image: {
  2107. source: "./media/characters/fory/foot.svg"
  2108. }
  2109. },
  2110. },
  2111. [
  2112. {
  2113. name: "Normal",
  2114. height: math.unit(5, "feet")
  2115. },
  2116. {
  2117. name: "Macro",
  2118. height: math.unit(50, "feet"),
  2119. default: true
  2120. },
  2121. {
  2122. name: "Megamacro",
  2123. height: math.unit(10, "miles")
  2124. },
  2125. {
  2126. name: "Gigamacro",
  2127. height: math.unit(5, "earths")
  2128. },
  2129. ]
  2130. ))
  2131. characterMakers.push(() => makeCharacter(
  2132. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2133. {
  2134. front: {
  2135. height: math.unit(7, "feet"),
  2136. weight: math.unit(90, "kg"),
  2137. name: "Front",
  2138. image: {
  2139. source: "./media/characters/kurrikage/front.svg",
  2140. extra: 1,
  2141. bottom: 0.035
  2142. }
  2143. },
  2144. back: {
  2145. height: math.unit(7, "feet"),
  2146. weight: math.unit(90, "lb"),
  2147. name: "Back",
  2148. image: {
  2149. source: "./media/characters/kurrikage/back.svg"
  2150. }
  2151. },
  2152. paw: {
  2153. height: math.unit(1.5, "feet"),
  2154. name: "Paw",
  2155. image: {
  2156. source: "./media/characters/kurrikage/paw.svg"
  2157. }
  2158. },
  2159. staff: {
  2160. height: math.unit(6.7, "feet"),
  2161. name: "Staff",
  2162. image: {
  2163. source: "./media/characters/kurrikage/staff.svg"
  2164. }
  2165. },
  2166. peek: {
  2167. height: math.unit(1.05, "feet"),
  2168. name: "Peeking",
  2169. image: {
  2170. source: "./media/characters/kurrikage/peek.svg",
  2171. bottom: 0.08
  2172. }
  2173. },
  2174. },
  2175. [
  2176. {
  2177. name: "Normal",
  2178. height: math.unit(12, "feet"),
  2179. default: true
  2180. },
  2181. {
  2182. name: "Big",
  2183. height: math.unit(20, "feet")
  2184. },
  2185. {
  2186. name: "Macro",
  2187. height: math.unit(500, "feet")
  2188. },
  2189. {
  2190. name: "Megamacro",
  2191. height: math.unit(20, "miles")
  2192. },
  2193. ]
  2194. ))
  2195. characterMakers.push(() => makeCharacter(
  2196. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2197. {
  2198. front: {
  2199. height: math.unit(6, "feet"),
  2200. weight: math.unit(75, "kg"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/shingo/front.svg",
  2204. extra: 3511 / 3338,
  2205. bottom: 0.005
  2206. }
  2207. },
  2208. },
  2209. [
  2210. {
  2211. name: "Micro",
  2212. height: math.unit(4, "inches")
  2213. },
  2214. {
  2215. name: "Normal",
  2216. height: math.unit(6, "feet"),
  2217. default: true
  2218. },
  2219. {
  2220. name: "Macro",
  2221. height: math.unit(108, "feet")
  2222. }
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2227. {
  2228. side: {
  2229. height: math.unit(6, "feet"),
  2230. weight: math.unit(75, "kg"),
  2231. name: "Side",
  2232. image: {
  2233. source: "./media/characters/aigey/side.svg"
  2234. }
  2235. },
  2236. },
  2237. [
  2238. {
  2239. name: "Macro",
  2240. height: math.unit(200, "feet"),
  2241. default: true
  2242. },
  2243. {
  2244. name: "Megamacro",
  2245. height: math.unit(100, "miles")
  2246. },
  2247. ]
  2248. )
  2249. )
  2250. characterMakers.push(() => makeCharacter(
  2251. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2252. {
  2253. front: {
  2254. height: math.unit(5 + 5 / 12, "feet"),
  2255. weight: math.unit(75, "kg"),
  2256. name: "Front",
  2257. image: {
  2258. source: "./media/characters/natasha/front.svg",
  2259. extra: 859 / 824,
  2260. bottom: 23 / 879.6
  2261. }
  2262. },
  2263. frontNsfw: {
  2264. height: math.unit(5 + 5 / 12, "feet"),
  2265. weight: math.unit(75, "kg"),
  2266. name: "Front (NSFW)",
  2267. image: {
  2268. source: "./media/characters/natasha/front-nsfw.svg",
  2269. extra: 859 / 824,
  2270. bottom: 23 / 879.6
  2271. }
  2272. },
  2273. frontErect: {
  2274. height: math.unit(5 + 5 / 12, "feet"),
  2275. weight: math.unit(75, "kg"),
  2276. name: "Front (Erect)",
  2277. image: {
  2278. source: "./media/characters/natasha/front-erect.svg",
  2279. extra: 859 / 824,
  2280. bottom: 23 / 879.6
  2281. }
  2282. },
  2283. back: {
  2284. height: math.unit(5 + 5 / 12, "feet"),
  2285. weight: math.unit(75, "kg"),
  2286. name: "Back",
  2287. image: {
  2288. source: "./media/characters/natasha/back.svg",
  2289. extra: 887.9 / 852.6,
  2290. bottom: 9.7 / 896.4
  2291. }
  2292. },
  2293. backAlt: {
  2294. height: math.unit(5 + 5 / 12, "feet"),
  2295. weight: math.unit(75, "kg"),
  2296. name: "Back (Alt)",
  2297. image: {
  2298. source: "./media/characters/natasha/back-alt.svg",
  2299. extra: 1236.7 / 1192,
  2300. bottom: 22.3 / 1258.2
  2301. }
  2302. },
  2303. dick: {
  2304. height: math.unit(1.772, "feet"),
  2305. name: "Dick",
  2306. image: {
  2307. source: "./media/characters/natasha/dick.svg"
  2308. }
  2309. },
  2310. },
  2311. [
  2312. {
  2313. name: "Normal",
  2314. height: math.unit(5 + 5 / 12, "feet")
  2315. },
  2316. {
  2317. name: "Large",
  2318. height: math.unit(12, "feet")
  2319. },
  2320. {
  2321. name: "Macro",
  2322. height: math.unit(100, "feet"),
  2323. default: true
  2324. },
  2325. {
  2326. name: "Macro+",
  2327. height: math.unit(260, "feet")
  2328. },
  2329. {
  2330. name: "Macro++",
  2331. height: math.unit(1, "mile")
  2332. },
  2333. ]
  2334. ))
  2335. characterMakers.push(() => makeCharacter(
  2336. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2337. {
  2338. front: {
  2339. height: math.unit(6, "feet"),
  2340. weight: math.unit(75, "kg"),
  2341. name: "Front",
  2342. image: {
  2343. source: "./media/characters/malik/front.svg"
  2344. }
  2345. },
  2346. side: {
  2347. height: math.unit(6, "feet"),
  2348. weight: math.unit(75, "kg"),
  2349. name: "Side",
  2350. image: {
  2351. source: "./media/characters/malik/side.svg",
  2352. extra: 1.1539
  2353. }
  2354. },
  2355. back: {
  2356. height: math.unit(6, "feet"),
  2357. weight: math.unit(75, "kg"),
  2358. name: "Back",
  2359. image: {
  2360. source: "./media/characters/malik/back.svg"
  2361. }
  2362. },
  2363. },
  2364. [
  2365. {
  2366. name: "Macro",
  2367. height: math.unit(156, "feet"),
  2368. default: true
  2369. },
  2370. {
  2371. name: "Macro+",
  2372. height: math.unit(1188, "feet")
  2373. },
  2374. ]
  2375. ))
  2376. characterMakers.push(() => makeCharacter(
  2377. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2378. {
  2379. front: {
  2380. height: math.unit(6, "feet"),
  2381. weight: math.unit(75, "kg"),
  2382. name: "Front",
  2383. image: {
  2384. source: "./media/characters/sefer/front.svg",
  2385. extra: 848 / 659,
  2386. bottom: 28.3 / 876.442
  2387. }
  2388. },
  2389. back: {
  2390. height: math.unit(6, "feet"),
  2391. weight: math.unit(75, "kg"),
  2392. name: "Back",
  2393. image: {
  2394. source: "./media/characters/sefer/back.svg",
  2395. extra: 864 / 695,
  2396. bottom: 10 / 871
  2397. }
  2398. },
  2399. frontDressed: {
  2400. height: math.unit(6, "feet"),
  2401. weight: math.unit(75, "kg"),
  2402. name: "Front (Dressed)",
  2403. image: {
  2404. source: "./media/characters/sefer/front-dressed.svg",
  2405. extra: 839 / 653,
  2406. bottom: 37.6 / 878
  2407. }
  2408. },
  2409. },
  2410. [
  2411. {
  2412. name: "Normal",
  2413. height: math.unit(6, "feet"),
  2414. default: true
  2415. },
  2416. ]
  2417. ))
  2418. characterMakers.push(() => makeCharacter(
  2419. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2420. {
  2421. body: {
  2422. height: math.unit(2.2428, "meter"),
  2423. weight: math.unit(124.738, "kg"),
  2424. name: "Body",
  2425. image: {
  2426. extra: 1225 / 1050,
  2427. source: "./media/characters/north/front.svg"
  2428. }
  2429. }
  2430. },
  2431. [
  2432. {
  2433. name: "Micro",
  2434. height: math.unit(4, "inches")
  2435. },
  2436. {
  2437. name: "Macro",
  2438. height: math.unit(63, "meters")
  2439. },
  2440. {
  2441. name: "Megamacro",
  2442. height: math.unit(101, "miles"),
  2443. default: true
  2444. }
  2445. ]
  2446. ))
  2447. characterMakers.push(() => makeCharacter(
  2448. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2449. {
  2450. angled: {
  2451. height: math.unit(4, "meter"),
  2452. weight: math.unit(150, "kg"),
  2453. name: "Angled",
  2454. image: {
  2455. source: "./media/characters/talan/angled-sfw.svg",
  2456. bottom: 29 / 3734
  2457. }
  2458. },
  2459. angledNsfw: {
  2460. height: math.unit(4, "meter"),
  2461. weight: math.unit(150, "kg"),
  2462. name: "Angled (NSFW)",
  2463. image: {
  2464. source: "./media/characters/talan/angled-nsfw.svg",
  2465. bottom: 29 / 3734
  2466. }
  2467. },
  2468. frontNsfw: {
  2469. height: math.unit(4, "meter"),
  2470. weight: math.unit(150, "kg"),
  2471. name: "Front (NSFW)",
  2472. image: {
  2473. source: "./media/characters/talan/front-nsfw.svg",
  2474. bottom: 29 / 3734
  2475. }
  2476. },
  2477. sideNsfw: {
  2478. height: math.unit(4, "meter"),
  2479. weight: math.unit(150, "kg"),
  2480. name: "Side (NSFW)",
  2481. image: {
  2482. source: "./media/characters/talan/side-nsfw.svg",
  2483. bottom: 29 / 3734
  2484. }
  2485. },
  2486. back: {
  2487. height: math.unit(4, "meter"),
  2488. weight: math.unit(150, "kg"),
  2489. name: "Back",
  2490. image: {
  2491. source: "./media/characters/talan/back.svg"
  2492. }
  2493. },
  2494. dickBottom: {
  2495. height: math.unit(0.621, "meter"),
  2496. name: "Dick (Bottom)",
  2497. image: {
  2498. source: "./media/characters/talan/dick-bottom.svg"
  2499. }
  2500. },
  2501. dickTop: {
  2502. height: math.unit(0.621, "meter"),
  2503. name: "Dick (Top)",
  2504. image: {
  2505. source: "./media/characters/talan/dick-top.svg"
  2506. }
  2507. },
  2508. dickSide: {
  2509. height: math.unit(0.305, "meter"),
  2510. name: "Dick (Side)",
  2511. image: {
  2512. source: "./media/characters/talan/dick-side.svg"
  2513. }
  2514. },
  2515. dickFront: {
  2516. height: math.unit(0.305, "meter"),
  2517. name: "Dick (Front)",
  2518. image: {
  2519. source: "./media/characters/talan/dick-front.svg"
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(4, "meters")
  2527. },
  2528. {
  2529. name: "Macro",
  2530. height: math.unit(100, "meters")
  2531. },
  2532. {
  2533. name: "Megamacro",
  2534. height: math.unit(2, "miles"),
  2535. default: true
  2536. },
  2537. {
  2538. name: "Gigamacro",
  2539. height: math.unit(5000, "miles")
  2540. },
  2541. {
  2542. name: "Teramacro",
  2543. height: math.unit(100, "parsecs")
  2544. }
  2545. ]
  2546. ))
  2547. characterMakers.push(() => makeCharacter(
  2548. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2549. {
  2550. front: {
  2551. height: math.unit(2, "meter"),
  2552. weight: math.unit(90, "kg"),
  2553. name: "Front",
  2554. image: {
  2555. source: "./media/characters/gael'rathus/front.svg"
  2556. }
  2557. },
  2558. frontAlt: {
  2559. height: math.unit(2, "meter"),
  2560. weight: math.unit(90, "kg"),
  2561. name: "Front (alt)",
  2562. image: {
  2563. source: "./media/characters/gael'rathus/front-alt.svg"
  2564. }
  2565. },
  2566. frontAlt2: {
  2567. height: math.unit(2, "meter"),
  2568. weight: math.unit(90, "kg"),
  2569. name: "Front (alt 2)",
  2570. image: {
  2571. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2572. }
  2573. }
  2574. },
  2575. [
  2576. {
  2577. name: "Normal",
  2578. height: math.unit(9, "feet"),
  2579. default: true
  2580. },
  2581. {
  2582. name: "Large",
  2583. height: math.unit(25, "feet")
  2584. },
  2585. {
  2586. name: "Macro",
  2587. height: math.unit(0.25, "miles")
  2588. },
  2589. {
  2590. name: "Megamacro",
  2591. height: math.unit(10, "miles")
  2592. }
  2593. ]
  2594. ))
  2595. characterMakers.push(() => makeCharacter(
  2596. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2597. {
  2598. side: {
  2599. height: math.unit(2, "meter"),
  2600. weight: math.unit(140, "kg"),
  2601. name: "Side",
  2602. image: {
  2603. source: "./media/characters/sosha/side.svg",
  2604. bottom: 0.042
  2605. }
  2606. },
  2607. },
  2608. [
  2609. {
  2610. name: "Normal",
  2611. height: math.unit(12, "feet"),
  2612. default: true
  2613. }
  2614. ]
  2615. ))
  2616. characterMakers.push(() => makeCharacter(
  2617. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2618. {
  2619. side: {
  2620. height: math.unit(5 + 5 / 12, "feet"),
  2621. weight: math.unit(170, "kg"),
  2622. name: "Side",
  2623. image: {
  2624. source: "./media/characters/runnola/side.svg",
  2625. extra: 741 / 448,
  2626. bottom: 0.05
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Small",
  2633. height: math.unit(3, "feet")
  2634. },
  2635. {
  2636. name: "Normal",
  2637. height: math.unit(5 + 5 / 12, "feet"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Big",
  2642. height: math.unit(10, "feet")
  2643. },
  2644. ]
  2645. ))
  2646. characterMakers.push(() => makeCharacter(
  2647. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2648. {
  2649. front: {
  2650. height: math.unit(2, "meter"),
  2651. weight: math.unit(50, "kg"),
  2652. name: "Front",
  2653. image: {
  2654. source: "./media/characters/kurribird/front.svg",
  2655. bottom: 0.015
  2656. }
  2657. },
  2658. frontAlt: {
  2659. height: math.unit(1.5, "meter"),
  2660. weight: math.unit(50, "kg"),
  2661. name: "Front (Alt)",
  2662. image: {
  2663. source: "./media/characters/kurribird/front-alt.svg",
  2664. extra: 1.45
  2665. }
  2666. },
  2667. },
  2668. [
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(7, "feet")
  2672. },
  2673. {
  2674. name: "Big",
  2675. height: math.unit(12, "feet"),
  2676. default: true
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(1500, "feet")
  2681. },
  2682. {
  2683. name: "Megamacro",
  2684. height: math.unit(2, "miles")
  2685. }
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2690. {
  2691. front: {
  2692. height: math.unit(2, "meter"),
  2693. weight: math.unit(80, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/elbial/front.svg",
  2697. extra: 1643 / 1556,
  2698. bottom: 60.2 / 1696
  2699. }
  2700. },
  2701. side: {
  2702. height: math.unit(2, "meter"),
  2703. weight: math.unit(80, "kg"),
  2704. name: "Side",
  2705. image: {
  2706. source: "./media/characters/elbial/side.svg",
  2707. extra: 1630 / 1565,
  2708. bottom: 71.5 / 1697
  2709. }
  2710. },
  2711. back: {
  2712. height: math.unit(2, "meter"),
  2713. weight: math.unit(80, "kg"),
  2714. name: "Back",
  2715. image: {
  2716. source: "./media/characters/elbial/back.svg",
  2717. extra: 1668 / 1595,
  2718. bottom: 5.6 / 1672
  2719. }
  2720. },
  2721. frontDressed: {
  2722. height: math.unit(2, "meter"),
  2723. weight: math.unit(80, "kg"),
  2724. name: "Front (Dressed)",
  2725. image: {
  2726. source: "./media/characters/elbial/front-dressed.svg",
  2727. extra: 1653 / 1584,
  2728. bottom: 57 / 1708
  2729. }
  2730. },
  2731. genitals: {
  2732. height: math.unit(2 / 3.367, "meter"),
  2733. name: "Genitals",
  2734. image: {
  2735. source: "./media/characters/elbial/genitals.svg"
  2736. }
  2737. },
  2738. },
  2739. [
  2740. {
  2741. name: "Large",
  2742. height: math.unit(100, "feet")
  2743. },
  2744. {
  2745. name: "Macro",
  2746. height: math.unit(500, "feet"),
  2747. default: true
  2748. },
  2749. {
  2750. name: "Megamacro",
  2751. height: math.unit(10, "miles")
  2752. },
  2753. {
  2754. name: "Gigamacro",
  2755. height: math.unit(25000, "miles")
  2756. },
  2757. {
  2758. name: "Full-Size",
  2759. height: math.unit(8000000, "gigaparsecs")
  2760. }
  2761. ]
  2762. ))
  2763. characterMakers.push(() => makeCharacter(
  2764. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2765. {
  2766. front: {
  2767. height: math.unit(2, "meter"),
  2768. weight: math.unit(60, "kg"),
  2769. name: "Front",
  2770. image: {
  2771. source: "./media/characters/noah/front.svg"
  2772. }
  2773. },
  2774. talons: {
  2775. height: math.unit(0.315, "meter"),
  2776. name: "Talons",
  2777. image: {
  2778. source: "./media/characters/noah/talons.svg"
  2779. }
  2780. }
  2781. },
  2782. [
  2783. {
  2784. name: "Large",
  2785. height: math.unit(50, "feet")
  2786. },
  2787. {
  2788. name: "Macro",
  2789. height: math.unit(750, "feet"),
  2790. default: true
  2791. },
  2792. {
  2793. name: "Megamacro",
  2794. height: math.unit(50, "miles")
  2795. },
  2796. {
  2797. name: "Gigamacro",
  2798. height: math.unit(100000, "miles")
  2799. },
  2800. {
  2801. name: "Full-Size",
  2802. height: math.unit(3000000000, "miles")
  2803. }
  2804. ]
  2805. ))
  2806. characterMakers.push(() => makeCharacter(
  2807. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2808. {
  2809. front: {
  2810. height: math.unit(2, "meter"),
  2811. weight: math.unit(80, "kg"),
  2812. name: "Front",
  2813. image: {
  2814. source: "./media/characters/natalya/front.svg"
  2815. }
  2816. },
  2817. back: {
  2818. height: math.unit(2, "meter"),
  2819. weight: math.unit(80, "kg"),
  2820. name: "Back",
  2821. image: {
  2822. source: "./media/characters/natalya/back.svg"
  2823. }
  2824. }
  2825. },
  2826. [
  2827. {
  2828. name: "Normal",
  2829. height: math.unit(150, "feet"),
  2830. default: true
  2831. },
  2832. {
  2833. name: "Megamacro",
  2834. height: math.unit(5, "miles")
  2835. },
  2836. {
  2837. name: "Full-Size",
  2838. height: math.unit(600, "kiloparsecs")
  2839. }
  2840. ]
  2841. ))
  2842. characterMakers.push(() => makeCharacter(
  2843. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2844. {
  2845. front: {
  2846. height: math.unit(2, "meter"),
  2847. weight: math.unit(50, "kg"),
  2848. name: "Front",
  2849. image: {
  2850. source: "./media/characters/erestrebah/front.svg",
  2851. extra: 208 / 193,
  2852. bottom: 0.055
  2853. }
  2854. },
  2855. back: {
  2856. height: math.unit(2, "meter"),
  2857. weight: math.unit(50, "kg"),
  2858. name: "Back",
  2859. image: {
  2860. source: "./media/characters/erestrebah/back.svg",
  2861. extra: 1.3
  2862. }
  2863. }
  2864. },
  2865. [
  2866. {
  2867. name: "Normal",
  2868. height: math.unit(10, "feet")
  2869. },
  2870. {
  2871. name: "Large",
  2872. height: math.unit(50, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Macro",
  2877. height: math.unit(300, "feet")
  2878. },
  2879. {
  2880. name: "Macro+",
  2881. height: math.unit(750, "feet")
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(3, "miles")
  2886. }
  2887. ]
  2888. ))
  2889. characterMakers.push(() => makeCharacter(
  2890. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2891. {
  2892. front: {
  2893. height: math.unit(2, "meter"),
  2894. weight: math.unit(80, "kg"),
  2895. name: "Front",
  2896. image: {
  2897. source: "./media/characters/jennifer/front.svg",
  2898. bottom: 0.11,
  2899. extra: 1.16
  2900. }
  2901. },
  2902. frontAlt: {
  2903. height: math.unit(2, "meter"),
  2904. weight: math.unit(80, "kg"),
  2905. name: "Front (Alt)",
  2906. image: {
  2907. source: "./media/characters/jennifer/front-alt.svg"
  2908. }
  2909. }
  2910. },
  2911. [
  2912. {
  2913. name: "Canon Height",
  2914. height: math.unit(120, "feet"),
  2915. default: true
  2916. },
  2917. {
  2918. name: "Macro+",
  2919. height: math.unit(300, "feet")
  2920. },
  2921. {
  2922. name: "Megamacro",
  2923. height: math.unit(20000, "feet")
  2924. }
  2925. ]
  2926. ))
  2927. characterMakers.push(() => makeCharacter(
  2928. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2929. {
  2930. front: {
  2931. height: math.unit(2, "meter"),
  2932. weight: math.unit(50, "kg"),
  2933. name: "Front",
  2934. image: {
  2935. source: "./media/characters/kalista/front.svg",
  2936. extra: 1947 / 1700,
  2937. bottom: 76.6 / 1412.98
  2938. }
  2939. },
  2940. back: {
  2941. height: math.unit(2, "meter"),
  2942. weight: math.unit(50, "kg"),
  2943. name: "Back",
  2944. image: {
  2945. source: "./media/characters/kalista/back.svg",
  2946. extra: 1366 / 1156,
  2947. bottom: 33.9 / 1362.78
  2948. }
  2949. }
  2950. },
  2951. [
  2952. {
  2953. name: "Uncomfortably Small",
  2954. height: math.unit(10, "feet")
  2955. },
  2956. {
  2957. name: "Small",
  2958. height: math.unit(30, "feet")
  2959. },
  2960. {
  2961. name: "Macro",
  2962. height: math.unit(100, "feet"),
  2963. default: true
  2964. },
  2965. {
  2966. name: "Macro+",
  2967. height: math.unit(2000, "feet")
  2968. },
  2969. {
  2970. name: "True Form",
  2971. height: math.unit(8924, "miles")
  2972. }
  2973. ]
  2974. ))
  2975. characterMakers.push(() => makeCharacter(
  2976. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2977. {
  2978. front: {
  2979. height: math.unit(2, "meter"),
  2980. weight: math.unit(120, "kg"),
  2981. name: "Front",
  2982. image: {
  2983. source: "./media/characters/ggv/front.svg"
  2984. }
  2985. },
  2986. side: {
  2987. height: math.unit(2, "meter"),
  2988. weight: math.unit(120, "kg"),
  2989. name: "Side",
  2990. image: {
  2991. source: "./media/characters/ggv/side.svg"
  2992. }
  2993. }
  2994. },
  2995. [
  2996. {
  2997. name: "Extremely Puny",
  2998. height: math.unit(9 + 5 / 12, "feet")
  2999. },
  3000. {
  3001. name: "Horribly Small",
  3002. height: math.unit(47.7, "miles"),
  3003. default: true
  3004. },
  3005. {
  3006. name: "Reasonably Sized",
  3007. height: math.unit(25000, "parsecs")
  3008. },
  3009. {
  3010. name: "Slightly Uncompressed",
  3011. height: math.unit(7.77e31, "parsecs")
  3012. },
  3013. {
  3014. name: "Omniversal",
  3015. height: math.unit(1e300, "meters")
  3016. },
  3017. ]
  3018. ))
  3019. characterMakers.push(() => makeCharacter(
  3020. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3021. {
  3022. front: {
  3023. height: math.unit(2, "meter"),
  3024. weight: math.unit(75, "lb"),
  3025. name: "Front",
  3026. image: {
  3027. source: "./media/characters/napalm/front.svg"
  3028. }
  3029. },
  3030. back: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(75, "lb"),
  3033. name: "Back",
  3034. image: {
  3035. source: "./media/characters/napalm/back.svg"
  3036. }
  3037. }
  3038. },
  3039. [
  3040. {
  3041. name: "Standard",
  3042. height: math.unit(55, "feet"),
  3043. default: true
  3044. }
  3045. ]
  3046. ))
  3047. characterMakers.push(() => makeCharacter(
  3048. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3049. {
  3050. front: {
  3051. height: math.unit(7 + 5 / 6, "feet"),
  3052. weight: math.unit(325, "lb"),
  3053. name: "Front",
  3054. image: {
  3055. source: "./media/characters/asana/front.svg",
  3056. extra: 1128 / 1068
  3057. }
  3058. },
  3059. back: {
  3060. height: math.unit(7 + 5 / 6, "feet"),
  3061. weight: math.unit(325, "lb"),
  3062. name: "Back",
  3063. image: {
  3064. source: "./media/characters/asana/back.svg",
  3065. extra: 1128 / 1068
  3066. }
  3067. },
  3068. },
  3069. [
  3070. {
  3071. name: "Standard",
  3072. height: math.unit(7 + 5 / 6, "feet"),
  3073. default: true
  3074. },
  3075. {
  3076. name: "Large",
  3077. height: math.unit(10, "meters")
  3078. },
  3079. {
  3080. name: "Macro",
  3081. height: math.unit(2500, "meters")
  3082. },
  3083. {
  3084. name: "Megamacro",
  3085. height: math.unit(5e6, "meters")
  3086. },
  3087. {
  3088. name: "Examacro",
  3089. height: math.unit(5e12, "lightyears")
  3090. },
  3091. {
  3092. name: "Max Size",
  3093. height: math.unit(1e31, "lightyears")
  3094. }
  3095. ]
  3096. ))
  3097. characterMakers.push(() => makeCharacter(
  3098. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3099. {
  3100. front: {
  3101. height: math.unit(2, "meter"),
  3102. weight: math.unit(60, "kg"),
  3103. name: "Front",
  3104. image: {
  3105. source: "./media/characters/ebony/front.svg",
  3106. bottom: 0.03,
  3107. extra: 1045 / 810 + 0.03
  3108. }
  3109. },
  3110. side: {
  3111. height: math.unit(2, "meter"),
  3112. weight: math.unit(60, "kg"),
  3113. name: "Side",
  3114. image: {
  3115. source: "./media/characters/ebony/side.svg",
  3116. bottom: 0.03,
  3117. extra: 1045 / 810 + 0.03
  3118. }
  3119. },
  3120. back: {
  3121. height: math.unit(2, "meter"),
  3122. weight: math.unit(60, "kg"),
  3123. name: "Back",
  3124. image: {
  3125. source: "./media/characters/ebony/back.svg",
  3126. bottom: 0.01,
  3127. extra: 1045 / 810 + 0.01
  3128. }
  3129. },
  3130. },
  3131. [
  3132. // TODO check why I did this lol
  3133. {
  3134. name: "Standard",
  3135. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3136. default: true
  3137. },
  3138. {
  3139. name: "Macro",
  3140. height: math.unit(200, "feet")
  3141. },
  3142. {
  3143. name: "Gigamacro",
  3144. height: math.unit(13000, "km")
  3145. }
  3146. ]
  3147. ))
  3148. characterMakers.push(() => makeCharacter(
  3149. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3150. {
  3151. front: {
  3152. height: math.unit(6, "feet"),
  3153. weight: math.unit(175, "lb"),
  3154. name: "Front",
  3155. image: {
  3156. source: "./media/characters/mountain/front.svg"
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(6, "feet"),
  3161. weight: math.unit(175, "lb"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/mountain/back.svg"
  3165. }
  3166. },
  3167. },
  3168. [
  3169. {
  3170. name: "Large",
  3171. height: math.unit(20, "meters")
  3172. },
  3173. {
  3174. name: "Macro",
  3175. height: math.unit(300, "meters")
  3176. },
  3177. {
  3178. name: "Gigamacro",
  3179. height: math.unit(10000, "km"),
  3180. default: true
  3181. },
  3182. {
  3183. name: "Examacro",
  3184. height: math.unit(10e9, "lightyears")
  3185. }
  3186. ]
  3187. ))
  3188. characterMakers.push(() => makeCharacter(
  3189. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3190. {
  3191. front: {
  3192. height: math.unit(8, "feet"),
  3193. weight: math.unit(500, "lb"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/rick/front.svg"
  3197. }
  3198. }
  3199. },
  3200. [
  3201. {
  3202. name: "Normal",
  3203. height: math.unit(8, "feet"),
  3204. default: true
  3205. },
  3206. {
  3207. name: "Macro",
  3208. height: math.unit(5, "km")
  3209. }
  3210. ]
  3211. ))
  3212. characterMakers.push(() => makeCharacter(
  3213. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3214. {
  3215. front: {
  3216. height: math.unit(8, "feet"),
  3217. weight: math.unit(120, "lb"),
  3218. name: "Front",
  3219. image: {
  3220. source: "./media/characters/ona/front.svg"
  3221. }
  3222. },
  3223. frontAlt: {
  3224. height: math.unit(8, "feet"),
  3225. weight: math.unit(120, "lb"),
  3226. name: "Front (Alt)",
  3227. image: {
  3228. source: "./media/characters/ona/front-alt.svg"
  3229. }
  3230. },
  3231. back: {
  3232. height: math.unit(8, "feet"),
  3233. weight: math.unit(120, "lb"),
  3234. name: "Back",
  3235. image: {
  3236. source: "./media/characters/ona/back.svg"
  3237. }
  3238. },
  3239. foot: {
  3240. height: math.unit(1.1, "feet"),
  3241. name: "Foot",
  3242. image: {
  3243. source: "./media/characters/ona/foot.svg"
  3244. }
  3245. }
  3246. },
  3247. [
  3248. {
  3249. name: "Megamacro",
  3250. height: math.unit(70, "km"),
  3251. default: true
  3252. },
  3253. {
  3254. name: "Gigamacro",
  3255. height: math.unit(681818, "miles")
  3256. },
  3257. {
  3258. name: "Examacro",
  3259. height: math.unit(3800000, "lightyears")
  3260. },
  3261. ]
  3262. ))
  3263. characterMakers.push(() => makeCharacter(
  3264. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3265. {
  3266. front: {
  3267. height: math.unit(12, "feet"),
  3268. weight: math.unit(3000, "lb"),
  3269. name: "Front",
  3270. image: {
  3271. source: "./media/characters/mech/front.svg",
  3272. bottom: 0.025,
  3273. }
  3274. },
  3275. back: {
  3276. height: math.unit(12, "feet"),
  3277. weight: math.unit(3000, "lb"),
  3278. name: "Back",
  3279. image: {
  3280. source: "./media/characters/mech/back.svg",
  3281. bottom: 0.03,
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(12, "feet")
  3289. },
  3290. {
  3291. name: "Macro",
  3292. height: math.unit(300, "feet"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Macro+",
  3297. height: math.unit(1500, "feet")
  3298. },
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(1.3, "meter"),
  3306. weight: math.unit(30, "kg"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/gregory/front.svg",
  3310. }
  3311. }
  3312. },
  3313. [
  3314. {
  3315. name: "Normal",
  3316. height: math.unit(1.3, "meter"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Macro",
  3321. height: math.unit(20, "meter")
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(2.8, "meter"),
  3330. weight: math.unit(200, "kg"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/elory/front.svg",
  3334. }
  3335. }
  3336. },
  3337. [
  3338. {
  3339. name: "Normal",
  3340. height: math.unit(2.8, "meter"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Macro",
  3345. height: math.unit(38, "meter")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(470, "feet"),
  3354. weight: math.unit(924, "tons"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/angelpatamon/front.svg",
  3358. }
  3359. }
  3360. },
  3361. [
  3362. {
  3363. name: "Normal",
  3364. height: math.unit(470, "feet"),
  3365. default: true
  3366. },
  3367. {
  3368. name: "Deity Size I",
  3369. height: math.unit(28651.2, "km")
  3370. },
  3371. {
  3372. name: "Deity Size II",
  3373. height: math.unit(171907.2, "km")
  3374. }
  3375. ]
  3376. ))
  3377. characterMakers.push(() => makeCharacter(
  3378. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3379. {
  3380. side: {
  3381. height: math.unit(7.2, "meter"),
  3382. weight: math.unit(8.2, "tons"),
  3383. name: "Side",
  3384. image: {
  3385. source: "./media/characters/cryae/side.svg",
  3386. extra: 3500 / 1500
  3387. }
  3388. }
  3389. },
  3390. [
  3391. {
  3392. name: "Normal",
  3393. height: math.unit(7.2, "meter"),
  3394. default: true
  3395. }
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3400. {
  3401. front: {
  3402. height: math.unit(6, "feet"),
  3403. weight: math.unit(175, "lb"),
  3404. name: "Front",
  3405. image: {
  3406. source: "./media/characters/xera/front.svg",
  3407. extra: 2300 / 2061
  3408. }
  3409. },
  3410. side: {
  3411. height: math.unit(6, "feet"),
  3412. weight: math.unit(175, "lb"),
  3413. name: "Side",
  3414. image: {
  3415. source: "./media/characters/xera/side.svg",
  3416. extra: 2300 / 2061
  3417. }
  3418. },
  3419. back: {
  3420. height: math.unit(6, "feet"),
  3421. weight: math.unit(175, "lb"),
  3422. name: "Back",
  3423. image: {
  3424. source: "./media/characters/xera/back.svg"
  3425. }
  3426. },
  3427. },
  3428. [
  3429. {
  3430. name: "Small",
  3431. height: math.unit(10, "feet")
  3432. },
  3433. {
  3434. name: "Macro",
  3435. height: math.unit(500, "meters"),
  3436. default: true
  3437. },
  3438. {
  3439. name: "Macro+",
  3440. height: math.unit(10, "km")
  3441. },
  3442. {
  3443. name: "Gigamacro",
  3444. height: math.unit(25000, "km")
  3445. },
  3446. {
  3447. name: "Teramacro",
  3448. height: math.unit(3e6, "km")
  3449. }
  3450. ]
  3451. ))
  3452. characterMakers.push(() => makeCharacter(
  3453. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3454. {
  3455. front: {
  3456. height: math.unit(6, "feet"),
  3457. weight: math.unit(175, "lb"),
  3458. name: "Front",
  3459. image: {
  3460. source: "./media/characters/nebula/front.svg",
  3461. extra: 2600 / 2450
  3462. }
  3463. }
  3464. },
  3465. [
  3466. {
  3467. name: "Small",
  3468. height: math.unit(4.5, "meters")
  3469. },
  3470. {
  3471. name: "Macro",
  3472. height: math.unit(1500, "meters"),
  3473. default: true
  3474. },
  3475. {
  3476. name: "Megamacro",
  3477. height: math.unit(150, "km")
  3478. },
  3479. {
  3480. name: "Gigamacro",
  3481. height: math.unit(27000, "km")
  3482. }
  3483. ]
  3484. ))
  3485. characterMakers.push(() => makeCharacter(
  3486. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3487. {
  3488. front: {
  3489. height: math.unit(6, "feet"),
  3490. weight: math.unit(225, "lb"),
  3491. name: "Front",
  3492. image: {
  3493. source: "./media/characters/abysgar/front.svg"
  3494. }
  3495. }
  3496. },
  3497. [
  3498. {
  3499. name: "Small",
  3500. height: math.unit(4.5, "meters")
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(1250, "meters"),
  3505. default: true
  3506. },
  3507. {
  3508. name: "Megamacro",
  3509. height: math.unit(125, "km")
  3510. },
  3511. {
  3512. name: "Gigamacro",
  3513. height: math.unit(26000, "km")
  3514. }
  3515. ]
  3516. ))
  3517. characterMakers.push(() => makeCharacter(
  3518. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3519. {
  3520. front: {
  3521. height: math.unit(6, "feet"),
  3522. weight: math.unit(180, "lb"),
  3523. name: "Front",
  3524. image: {
  3525. source: "./media/characters/yakuz/front.svg"
  3526. }
  3527. }
  3528. },
  3529. [
  3530. {
  3531. name: "Small",
  3532. height: math.unit(5, "meters")
  3533. },
  3534. {
  3535. name: "Macro",
  3536. height: math.unit(1500, "meters"),
  3537. default: true
  3538. },
  3539. {
  3540. name: "Megamacro",
  3541. height: math.unit(200, "km")
  3542. },
  3543. {
  3544. name: "Gigamacro",
  3545. height: math.unit(100000, "km")
  3546. }
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(6, "feet"),
  3554. weight: math.unit(175, "lb"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/mirova/front.svg"
  3558. }
  3559. }
  3560. },
  3561. [
  3562. {
  3563. name: "Small",
  3564. height: math.unit(5, "meters")
  3565. },
  3566. {
  3567. name: "Macro",
  3568. height: math.unit(900, "meters"),
  3569. default: true
  3570. },
  3571. {
  3572. name: "Megamacro",
  3573. height: math.unit(135, "km")
  3574. },
  3575. {
  3576. name: "Gigamacro",
  3577. height: math.unit(20000, "km")
  3578. }
  3579. ]
  3580. ))
  3581. characterMakers.push(() => makeCharacter(
  3582. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3583. {
  3584. side: {
  3585. height: math.unit(28.35, "feet"),
  3586. weight: math.unit(99.75, "tons"),
  3587. name: "Side",
  3588. image: {
  3589. source: "./media/characters/asana-mech/side.svg"
  3590. }
  3591. }
  3592. },
  3593. [
  3594. {
  3595. name: "Normal",
  3596. height: math.unit(28.35, "feet"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "Macro",
  3601. height: math.unit(2500, "feet")
  3602. },
  3603. {
  3604. name: "Megamacro",
  3605. height: math.unit(25, "miles")
  3606. },
  3607. {
  3608. name: "Examacro",
  3609. height: math.unit(6e8, "lightyears")
  3610. },
  3611. ]
  3612. ))
  3613. characterMakers.push(() => makeCharacter(
  3614. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3615. {
  3616. front: {
  3617. height: math.unit(2, "meters"),
  3618. weight: math.unit(70, "kg"),
  3619. name: "Front",
  3620. image: {
  3621. source: "./media/characters/ashtrek/front.svg",
  3622. extra: 560 / 524,
  3623. bottom: 0.01
  3624. }
  3625. },
  3626. frontArmor: {
  3627. height: math.unit(2, "meters"),
  3628. weight: math.unit(76, "kg"),
  3629. name: "Front (Armor)",
  3630. image: {
  3631. source: "./media/characters/ashtrek/front-armor.svg",
  3632. extra: 561 / 527,
  3633. bottom: 0.01
  3634. }
  3635. },
  3636. side: {
  3637. height: math.unit(2, "meters"),
  3638. weight: math.unit(70, "kg"),
  3639. name: "Side",
  3640. image: {
  3641. source: "./media/characters/ashtrek/side.svg",
  3642. extra: 1717 / 1609,
  3643. bottom: 0.005
  3644. }
  3645. },
  3646. back: {
  3647. height: math.unit(2, "meters"),
  3648. weight: math.unit(70, "kg"),
  3649. name: "Back",
  3650. image: {
  3651. source: "./media/characters/ashtrek/back.svg",
  3652. extra: 1570 / 1501
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "DEFCON 5",
  3659. height: math.unit(5, "meters")
  3660. },
  3661. {
  3662. name: "DEFCON 4",
  3663. height: math.unit(500, "meters"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "DEFCON 3",
  3668. height: math.unit(5, "km")
  3669. },
  3670. {
  3671. name: "DEFCON 2",
  3672. height: math.unit(500, "km")
  3673. },
  3674. {
  3675. name: "DEFCON 1",
  3676. height: math.unit(500000, "km")
  3677. },
  3678. {
  3679. name: "DEFCON 0",
  3680. height: math.unit(3, "gigaparsecs")
  3681. },
  3682. ]
  3683. ))
  3684. characterMakers.push(() => makeCharacter(
  3685. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3686. {
  3687. front: {
  3688. height: math.unit(2, "meters"),
  3689. weight: math.unit(76, "kg"),
  3690. name: "Front",
  3691. image: {
  3692. source: "./media/characters/gale/front.svg"
  3693. }
  3694. },
  3695. frontAlt1: {
  3696. height: math.unit(2, "meters"),
  3697. weight: math.unit(76, "kg"),
  3698. name: "Front (Alt 1)",
  3699. image: {
  3700. source: "./media/characters/gale/front-alt-1.svg"
  3701. }
  3702. },
  3703. frontAlt2: {
  3704. height: math.unit(2, "meters"),
  3705. weight: math.unit(76, "kg"),
  3706. name: "Front (Alt 2)",
  3707. image: {
  3708. source: "./media/characters/gale/front-alt-2.svg"
  3709. }
  3710. },
  3711. },
  3712. [
  3713. {
  3714. name: "Normal",
  3715. height: math.unit(7, "feet")
  3716. },
  3717. {
  3718. name: "Macro",
  3719. height: math.unit(150, "feet"),
  3720. default: true
  3721. },
  3722. {
  3723. name: "Macro+",
  3724. height: math.unit(300, "feet")
  3725. },
  3726. ]
  3727. ))
  3728. characterMakers.push(() => makeCharacter(
  3729. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3730. {
  3731. front: {
  3732. height: math.unit(2, "meters"),
  3733. weight: math.unit(76, "kg"),
  3734. name: "Front",
  3735. image: {
  3736. source: "./media/characters/draylen/front.svg"
  3737. }
  3738. }
  3739. },
  3740. [
  3741. {
  3742. name: "Macro",
  3743. height: math.unit(150, "feet"),
  3744. default: true
  3745. }
  3746. ]
  3747. ))
  3748. characterMakers.push(() => makeCharacter(
  3749. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3750. {
  3751. front: {
  3752. height: math.unit(7 + 9 / 12, "feet"),
  3753. weight: math.unit(379, "lbs"),
  3754. name: "Front",
  3755. image: {
  3756. source: "./media/characters/chez/front.svg"
  3757. }
  3758. },
  3759. side: {
  3760. height: math.unit(7 + 9 / 12, "feet"),
  3761. weight: math.unit(379, "lbs"),
  3762. name: "Side",
  3763. image: {
  3764. source: "./media/characters/chez/side.svg"
  3765. }
  3766. }
  3767. },
  3768. [
  3769. {
  3770. name: "Normal",
  3771. height: math.unit(7 + 9 / 12, "feet"),
  3772. default: true
  3773. },
  3774. {
  3775. name: "God King",
  3776. height: math.unit(9750000, "meters")
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3782. {
  3783. front: {
  3784. height: math.unit(6, "feet"),
  3785. weight: math.unit(275, "lbs"),
  3786. name: "Front",
  3787. image: {
  3788. source: "./media/characters/kaylum/front.svg",
  3789. bottom: 0.01,
  3790. extra: 1166 / 1031
  3791. }
  3792. },
  3793. frontWingless: {
  3794. height: math.unit(6, "feet"),
  3795. weight: math.unit(275, "lbs"),
  3796. name: "Front (Wingless)",
  3797. image: {
  3798. source: "./media/characters/kaylum/front-wingless.svg",
  3799. bottom: 0.01,
  3800. extra: 1117 / 1031
  3801. }
  3802. }
  3803. },
  3804. [
  3805. {
  3806. name: "Normal",
  3807. height: math.unit(3.05, "meters")
  3808. },
  3809. {
  3810. name: "Master",
  3811. height: math.unit(5.5, "meters")
  3812. },
  3813. {
  3814. name: "Rampage",
  3815. height: math.unit(19, "meters")
  3816. },
  3817. {
  3818. name: "Macro Lite",
  3819. height: math.unit(37, "meters")
  3820. },
  3821. {
  3822. name: "Hyper Predator",
  3823. height: math.unit(61, "meters")
  3824. },
  3825. {
  3826. name: "Macro",
  3827. height: math.unit(138, "meters"),
  3828. default: true
  3829. }
  3830. ]
  3831. ))
  3832. characterMakers.push(() => makeCharacter(
  3833. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3834. {
  3835. front: {
  3836. height: math.unit(6, "feet"),
  3837. weight: math.unit(150, "lbs"),
  3838. name: "Front",
  3839. image: {
  3840. source: "./media/characters/geta/front.svg"
  3841. }
  3842. }
  3843. },
  3844. [
  3845. {
  3846. name: "Micro",
  3847. height: math.unit(3, "inches"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Normal",
  3852. height: math.unit(5 + 5 / 12, "feet")
  3853. }
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3858. {
  3859. front: {
  3860. height: math.unit(6, "feet"),
  3861. weight: math.unit(300, "lbs"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/tyrnn/front.svg"
  3865. }
  3866. }
  3867. },
  3868. [
  3869. {
  3870. name: "Main Height",
  3871. height: math.unit(355, "feet"),
  3872. default: true
  3873. },
  3874. {
  3875. name: "Fave. Height",
  3876. height: math.unit(2400, "feet")
  3877. }
  3878. ]
  3879. ))
  3880. characterMakers.push(() => makeCharacter(
  3881. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3882. {
  3883. front: {
  3884. height: math.unit(6, "feet"),
  3885. weight: math.unit(300, "lbs"),
  3886. name: "Front",
  3887. image: {
  3888. source: "./media/characters/appledectomy/front.svg"
  3889. }
  3890. }
  3891. },
  3892. [
  3893. {
  3894. name: "Macro",
  3895. height: math.unit(2500, "feet")
  3896. },
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(50, "miles"),
  3900. default: true
  3901. },
  3902. {
  3903. name: "Gigamacro",
  3904. height: math.unit(5000, "miles")
  3905. },
  3906. {
  3907. name: "Teramacro",
  3908. height: math.unit(250000, "miles")
  3909. },
  3910. ]
  3911. ))
  3912. characterMakers.push(() => makeCharacter(
  3913. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3914. {
  3915. front: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(200, "lbs"),
  3918. name: "Front",
  3919. image: {
  3920. source: "./media/characters/vulpes/front.svg",
  3921. extra: 573 / 543,
  3922. bottom: 0.033
  3923. }
  3924. },
  3925. side: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(200, "lbs"),
  3928. name: "Side",
  3929. image: {
  3930. source: "./media/characters/vulpes/side.svg",
  3931. extra: 573 / 543,
  3932. bottom: 0.01
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(200, "lbs"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/vulpes/back.svg",
  3941. extra: 573 / 543,
  3942. }
  3943. },
  3944. feet: {
  3945. height: math.unit(1.276, "feet"),
  3946. name: "Feet",
  3947. image: {
  3948. source: "./media/characters/vulpes/feet.svg"
  3949. }
  3950. },
  3951. maw: {
  3952. height: math.unit(1.18, "feet"),
  3953. name: "Maw",
  3954. image: {
  3955. source: "./media/characters/vulpes/maw.svg"
  3956. }
  3957. },
  3958. },
  3959. [
  3960. {
  3961. name: "Micro",
  3962. height: math.unit(2, "inches")
  3963. },
  3964. {
  3965. name: "Normal",
  3966. height: math.unit(6.3, "feet")
  3967. },
  3968. {
  3969. name: "Macro",
  3970. height: math.unit(850, "feet")
  3971. },
  3972. {
  3973. name: "Megamacro",
  3974. height: math.unit(7500, "feet"),
  3975. default: true
  3976. },
  3977. {
  3978. name: "Gigamacro",
  3979. height: math.unit(570000, "miles")
  3980. }
  3981. ]
  3982. ))
  3983. characterMakers.push(() => makeCharacter(
  3984. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  3985. {
  3986. front: {
  3987. height: math.unit(6, "feet"),
  3988. weight: math.unit(210, "lbs"),
  3989. name: "Front",
  3990. image: {
  3991. source: "./media/characters/rain-fallen/front.svg"
  3992. }
  3993. },
  3994. side: {
  3995. height: math.unit(6, "feet"),
  3996. weight: math.unit(210, "lbs"),
  3997. name: "Side",
  3998. image: {
  3999. source: "./media/characters/rain-fallen/side.svg"
  4000. }
  4001. },
  4002. back: {
  4003. height: math.unit(6, "feet"),
  4004. weight: math.unit(210, "lbs"),
  4005. name: "Back",
  4006. image: {
  4007. source: "./media/characters/rain-fallen/back.svg"
  4008. }
  4009. },
  4010. feral: {
  4011. height: math.unit(9, "feet"),
  4012. weight: math.unit(700, "lbs"),
  4013. name: "Feral",
  4014. image: {
  4015. source: "./media/characters/rain-fallen/feral.svg"
  4016. }
  4017. },
  4018. },
  4019. [
  4020. {
  4021. name: "Normal",
  4022. height: math.unit(5, "meter")
  4023. },
  4024. {
  4025. name: "Macro",
  4026. height: math.unit(150, "meter"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Megamacro",
  4031. height: math.unit(278e6, "meter")
  4032. },
  4033. {
  4034. name: "Gigamacro",
  4035. height: math.unit(2e9, "meter")
  4036. },
  4037. {
  4038. name: "Teramacro",
  4039. height: math.unit(8e12, "meter")
  4040. },
  4041. {
  4042. name: "Devourer",
  4043. height: math.unit(14, "zettameters")
  4044. },
  4045. {
  4046. name: "Scarlet King",
  4047. height: math.unit(18, "yottameters")
  4048. },
  4049. {
  4050. name: "Void",
  4051. height: math.unit(6.66e66, "yottameters")
  4052. }
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4057. {
  4058. standing: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(180, "lbs"),
  4061. name: "Standing",
  4062. image: {
  4063. source: "./media/characters/zaakira/standing.svg"
  4064. }
  4065. },
  4066. laying: {
  4067. height: math.unit(3, "feet"),
  4068. weight: math.unit(180, "lbs"),
  4069. name: "Laying",
  4070. image: {
  4071. source: "./media/characters/zaakira/laying.svg"
  4072. }
  4073. },
  4074. },
  4075. [
  4076. {
  4077. name: "Normal",
  4078. height: math.unit(12, "feet")
  4079. },
  4080. {
  4081. name: "Macro",
  4082. height: math.unit(279, "feet"),
  4083. default: true
  4084. }
  4085. ]
  4086. ))
  4087. characterMakers.push(() => makeCharacter(
  4088. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4089. {
  4090. front: {
  4091. height: math.unit(6, "feet"),
  4092. weight: math.unit(250, "lbs"),
  4093. name: "Front",
  4094. image: {
  4095. source: "./media/characters/sigvald/front.svg",
  4096. extra: 1000 / 850
  4097. }
  4098. },
  4099. back: {
  4100. height: math.unit(6, "feet"),
  4101. weight: math.unit(250, "lbs"),
  4102. name: "Back",
  4103. image: {
  4104. source: "./media/characters/sigvald/back.svg"
  4105. }
  4106. },
  4107. },
  4108. [
  4109. {
  4110. name: "Normal",
  4111. height: math.unit(8, "feet")
  4112. },
  4113. {
  4114. name: "Large",
  4115. height: math.unit(12, "feet")
  4116. },
  4117. {
  4118. name: "Larger",
  4119. height: math.unit(20, "feet")
  4120. },
  4121. {
  4122. name: "Macro",
  4123. height: math.unit(150, "feet")
  4124. },
  4125. {
  4126. name: "Macro+",
  4127. height: math.unit(200, "feet"),
  4128. default: true
  4129. },
  4130. ]
  4131. ))
  4132. characterMakers.push(() => makeCharacter(
  4133. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4134. {
  4135. side: {
  4136. height: math.unit(12, "feet"),
  4137. weight: math.unit(2000, "kg"),
  4138. name: "Side",
  4139. image: {
  4140. source: "./media/characters/scott/side.svg",
  4141. extra: 754 / 724,
  4142. bottom: 0.069
  4143. }
  4144. },
  4145. upright: {
  4146. height: math.unit(12, "feet"),
  4147. weight: math.unit(2000, "kg"),
  4148. name: "Upright",
  4149. image: {
  4150. source: "./media/characters/scott/upright.svg",
  4151. extra: 3881 / 3722,
  4152. bottom: 0.05
  4153. }
  4154. },
  4155. },
  4156. [
  4157. {
  4158. name: "Normal",
  4159. height: math.unit(12, "feet"),
  4160. default: true
  4161. },
  4162. ]
  4163. ))
  4164. characterMakers.push(() => makeCharacter(
  4165. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4166. {
  4167. side: {
  4168. height: math.unit(8, "meters"),
  4169. weight: math.unit(84755, "lbs"),
  4170. name: "Side",
  4171. image: {
  4172. source: "./media/characters/tobias/side.svg",
  4173. extra: 1474 / 1096,
  4174. bottom: 38.9 / 1513.1235
  4175. }
  4176. },
  4177. },
  4178. [
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(8, "meters"),
  4182. default: true
  4183. },
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4188. {
  4189. front: {
  4190. height: math.unit(5.5, "feet"),
  4191. weight: math.unit(400, "lbs"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/kieran/front.svg",
  4195. extra: 2694 / 2364,
  4196. bottom: 217 / 2908
  4197. }
  4198. },
  4199. side: {
  4200. height: math.unit(5.5, "feet"),
  4201. weight: math.unit(400, "lbs"),
  4202. name: "Side",
  4203. image: {
  4204. source: "./media/characters/kieran/side.svg",
  4205. extra: 875 / 777,
  4206. bottom: 84.6 / 959
  4207. }
  4208. },
  4209. },
  4210. [
  4211. {
  4212. name: "Normal",
  4213. height: math.unit(5.5, "feet"),
  4214. default: true
  4215. },
  4216. ]
  4217. ))
  4218. characterMakers.push(() => makeCharacter(
  4219. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4220. {
  4221. side: {
  4222. height: math.unit(2, "meters"),
  4223. weight: math.unit(70, "kg"),
  4224. name: "Side",
  4225. image: {
  4226. source: "./media/characters/sanya/side.svg",
  4227. bottom: 0.02,
  4228. extra: 1.02
  4229. }
  4230. },
  4231. },
  4232. [
  4233. {
  4234. name: "Small",
  4235. height: math.unit(2, "meters")
  4236. },
  4237. {
  4238. name: "Normal",
  4239. height: math.unit(3, "meters")
  4240. },
  4241. {
  4242. name: "Macro",
  4243. height: math.unit(16, "meters"),
  4244. default: true
  4245. },
  4246. ]
  4247. ))
  4248. characterMakers.push(() => makeCharacter(
  4249. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4250. {
  4251. side: {
  4252. height: math.unit(2, "meters"),
  4253. weight: math.unit(120, "kg"),
  4254. name: "Front",
  4255. image: {
  4256. source: "./media/characters/miranda/front.svg",
  4257. extra: 10.6 / 10
  4258. }
  4259. },
  4260. },
  4261. [
  4262. {
  4263. name: "Normal",
  4264. height: math.unit(10, "feet"),
  4265. default: true
  4266. }
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "James", species: ["deer"], tags: ["anthro"] },
  4271. {
  4272. side: {
  4273. height: math.unit(2, "meters"),
  4274. weight: math.unit(100, "kg"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/james/front.svg",
  4278. extra: 10 / 8.5
  4279. }
  4280. },
  4281. },
  4282. [
  4283. {
  4284. name: "Normal",
  4285. height: math.unit(8.5, "feet"),
  4286. default: true
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4292. {
  4293. side: {
  4294. height: math.unit(9.5, "feet"),
  4295. weight: math.unit(2500, "lbs"),
  4296. name: "Side",
  4297. image: {
  4298. source: "./media/characters/heather/side.svg"
  4299. }
  4300. },
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(9.5, "feet"),
  4306. default: true
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4312. {
  4313. side: {
  4314. height: math.unit(6.5, "feet"),
  4315. weight: math.unit(400, "lbs"),
  4316. name: "Side",
  4317. image: {
  4318. source: "./media/characters/lukas/side.svg",
  4319. extra: 7.25 / 6.5
  4320. }
  4321. },
  4322. },
  4323. [
  4324. {
  4325. name: "Normal",
  4326. height: math.unit(6.5, "feet"),
  4327. default: true
  4328. }
  4329. ]
  4330. ))
  4331. characterMakers.push(() => makeCharacter(
  4332. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4333. {
  4334. side: {
  4335. height: math.unit(5, "feet"),
  4336. weight: math.unit(3000, "lbs"),
  4337. name: "Side",
  4338. image: {
  4339. source: "./media/characters/louise/side.svg"
  4340. }
  4341. },
  4342. },
  4343. [
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(5, "feet"),
  4347. default: true
  4348. }
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4353. {
  4354. side: {
  4355. height: math.unit(6, "feet"),
  4356. weight: math.unit(150, "lbs"),
  4357. name: "Side",
  4358. image: {
  4359. source: "./media/characters/ramona/side.svg"
  4360. }
  4361. },
  4362. },
  4363. [
  4364. {
  4365. name: "Normal",
  4366. height: math.unit(5.3, "meters"),
  4367. default: true
  4368. },
  4369. {
  4370. name: "Macro",
  4371. height: math.unit(20, "stories")
  4372. },
  4373. {
  4374. name: "Macro+",
  4375. height: math.unit(50, "stories")
  4376. },
  4377. ]
  4378. ))
  4379. characterMakers.push(() => makeCharacter(
  4380. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4381. {
  4382. standing: {
  4383. height: math.unit(5.75, "feet"),
  4384. weight: math.unit(160, "lbs"),
  4385. name: "Standing",
  4386. image: {
  4387. source: "./media/characters/deerpuff/standing.svg",
  4388. extra: 682 / 624
  4389. }
  4390. },
  4391. sitting: {
  4392. height: math.unit(5.75 / 1.79, "feet"),
  4393. weight: math.unit(160, "lbs"),
  4394. name: "Sitting",
  4395. image: {
  4396. source: "./media/characters/deerpuff/sitting.svg",
  4397. bottom: 44 / 400,
  4398. extra: 1
  4399. }
  4400. },
  4401. taurLaying: {
  4402. height: math.unit(6, "feet"),
  4403. weight: math.unit(400, "lbs"),
  4404. name: "Taur (Laying)",
  4405. image: {
  4406. source: "./media/characters/deerpuff/taur-laying.svg"
  4407. }
  4408. },
  4409. },
  4410. [
  4411. {
  4412. name: "Puffball",
  4413. height: math.unit(6, "inches")
  4414. },
  4415. {
  4416. name: "Normalpuff",
  4417. height: math.unit(5.75, "feet")
  4418. },
  4419. {
  4420. name: "Macropuff",
  4421. height: math.unit(1500, "feet"),
  4422. default: true
  4423. },
  4424. {
  4425. name: "Megapuff",
  4426. height: math.unit(500, "miles")
  4427. },
  4428. {
  4429. name: "Gigapuff",
  4430. height: math.unit(250000, "miles")
  4431. },
  4432. {
  4433. name: "Omegapuff",
  4434. height: math.unit(1000, "lightyears")
  4435. },
  4436. ]
  4437. ))
  4438. characterMakers.push(() => makeCharacter(
  4439. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4440. {
  4441. stomping: {
  4442. height: math.unit(6, "feet"),
  4443. weight: math.unit(170, "lbs"),
  4444. name: "Stomping",
  4445. image: {
  4446. source: "./media/characters/vivian/stomping.svg"
  4447. }
  4448. },
  4449. sitting: {
  4450. height: math.unit(6 / 1.75, "feet"),
  4451. weight: math.unit(170, "lbs"),
  4452. name: "Sitting",
  4453. image: {
  4454. source: "./media/characters/vivian/sitting.svg",
  4455. bottom: 1 / 6.4,
  4456. extra: 1,
  4457. }
  4458. },
  4459. },
  4460. [
  4461. {
  4462. name: "Normal",
  4463. height: math.unit(7, "feet"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Macro",
  4468. height: math.unit(10, "stories")
  4469. },
  4470. {
  4471. name: "Macro+",
  4472. height: math.unit(30, "stories")
  4473. },
  4474. {
  4475. name: "Megamacro",
  4476. height: math.unit(10, "miles")
  4477. },
  4478. {
  4479. name: "Megamacro+",
  4480. height: math.unit(2750000, "meters")
  4481. },
  4482. ]
  4483. ))
  4484. characterMakers.push(() => makeCharacter(
  4485. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4486. {
  4487. front: {
  4488. height: math.unit(6, "feet"),
  4489. weight: math.unit(160, "lbs"),
  4490. name: "Front",
  4491. image: {
  4492. source: "./media/characters/prince/front.svg",
  4493. extra: 3400 / 3000
  4494. }
  4495. },
  4496. jumping: {
  4497. height: math.unit(6, "feet"),
  4498. weight: math.unit(160, "lbs"),
  4499. name: "Jumping",
  4500. image: {
  4501. source: "./media/characters/prince/jump.svg",
  4502. extra: 2555 / 2134
  4503. }
  4504. },
  4505. },
  4506. [
  4507. {
  4508. name: "Normal",
  4509. height: math.unit(7.75, "feet"),
  4510. default: true
  4511. },
  4512. {
  4513. name: "Not cute",
  4514. height: math.unit(17, "feet")
  4515. },
  4516. {
  4517. name: "I said NOT",
  4518. height: math.unit(91, "feet")
  4519. },
  4520. {
  4521. name: "Please stop",
  4522. height: math.unit(560, "feet")
  4523. },
  4524. {
  4525. name: "What have you done",
  4526. height: math.unit(2200, "feet")
  4527. },
  4528. {
  4529. name: "Deer God",
  4530. height: math.unit(3.6, "miles")
  4531. },
  4532. ]
  4533. ))
  4534. characterMakers.push(() => makeCharacter(
  4535. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4536. {
  4537. standing: {
  4538. height: math.unit(6, "feet"),
  4539. weight: math.unit(300, "lbs"),
  4540. name: "Standing",
  4541. image: {
  4542. source: "./media/characters/psymon/standing.svg",
  4543. extra: 1888 / 1810,
  4544. bottom: 0.05
  4545. }
  4546. },
  4547. slithering: {
  4548. height: math.unit(6, "feet"),
  4549. weight: math.unit(300, "lbs"),
  4550. name: "Slithering",
  4551. image: {
  4552. source: "./media/characters/psymon/slithering.svg",
  4553. extra: 1330 / 1224
  4554. }
  4555. },
  4556. slitheringAlt: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(300, "lbs"),
  4559. name: "Slithering (Alt)",
  4560. image: {
  4561. source: "./media/characters/psymon/slithering-alt.svg",
  4562. extra: 1330 / 1224
  4563. }
  4564. },
  4565. },
  4566. [
  4567. {
  4568. name: "Normal",
  4569. height: math.unit(11.25, "feet"),
  4570. default: true
  4571. },
  4572. {
  4573. name: "Large",
  4574. height: math.unit(27, "feet")
  4575. },
  4576. {
  4577. name: "Giant",
  4578. height: math.unit(87, "feet")
  4579. },
  4580. {
  4581. name: "Macro",
  4582. height: math.unit(365, "feet")
  4583. },
  4584. {
  4585. name: "Megamacro",
  4586. height: math.unit(3, "miles")
  4587. },
  4588. {
  4589. name: "World Serpent",
  4590. height: math.unit(8000, "miles")
  4591. },
  4592. ]
  4593. ))
  4594. characterMakers.push(() => makeCharacter(
  4595. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4596. {
  4597. front: {
  4598. height: math.unit(6, "feet"),
  4599. weight: math.unit(180, "lbs"),
  4600. name: "Front",
  4601. image: {
  4602. source: "./media/characters/daimos/front.svg",
  4603. extra: 4160 / 3897,
  4604. bottom: 0.021
  4605. }
  4606. }
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(8, "feet"),
  4612. default: true
  4613. },
  4614. {
  4615. name: "Big Dog",
  4616. height: math.unit(22, "feet")
  4617. },
  4618. {
  4619. name: "Macro",
  4620. height: math.unit(127, "feet")
  4621. },
  4622. {
  4623. name: "Megamacro",
  4624. height: math.unit(3600, "feet")
  4625. },
  4626. ]
  4627. ))
  4628. characterMakers.push(() => makeCharacter(
  4629. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4630. {
  4631. side: {
  4632. height: math.unit(6, "feet"),
  4633. weight: math.unit(180, "lbs"),
  4634. name: "Side",
  4635. image: {
  4636. source: "./media/characters/blake/side.svg",
  4637. extra: 1212 / 1120,
  4638. bottom: 0.05
  4639. }
  4640. },
  4641. crouched: {
  4642. height: math.unit(6 * 0.57, "feet"),
  4643. weight: math.unit(180, "lbs"),
  4644. name: "Crouched",
  4645. image: {
  4646. source: "./media/characters/blake/crouched.svg",
  4647. extra: 840 / 587,
  4648. bottom: 0.04
  4649. }
  4650. },
  4651. bent: {
  4652. height: math.unit(6 * 0.75, "feet"),
  4653. weight: math.unit(180, "lbs"),
  4654. name: "Bent",
  4655. image: {
  4656. source: "./media/characters/blake/bent.svg",
  4657. extra: 592 / 544,
  4658. bottom: 0.035
  4659. }
  4660. },
  4661. },
  4662. [
  4663. {
  4664. name: "Normal",
  4665. height: math.unit(8 + 1 / 6, "feet"),
  4666. default: true
  4667. },
  4668. {
  4669. name: "Big Backside",
  4670. height: math.unit(37, "feet")
  4671. },
  4672. {
  4673. name: "Subway Shredder",
  4674. height: math.unit(72, "feet")
  4675. },
  4676. {
  4677. name: "City Carver",
  4678. height: math.unit(1675, "feet")
  4679. },
  4680. {
  4681. name: "Tectonic Tweaker",
  4682. height: math.unit(2300, "miles")
  4683. },
  4684. ]
  4685. ))
  4686. characterMakers.push(() => makeCharacter(
  4687. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4688. {
  4689. front: {
  4690. height: math.unit(6, "feet"),
  4691. weight: math.unit(180, "lbs"),
  4692. name: "Front",
  4693. image: {
  4694. source: "./media/characters/guisetto/front.svg",
  4695. extra: 856 / 817,
  4696. bottom: 0.06
  4697. }
  4698. },
  4699. airborne: {
  4700. height: math.unit(6, "feet"),
  4701. weight: math.unit(180, "lbs"),
  4702. name: "Airborne",
  4703. image: {
  4704. source: "./media/characters/guisetto/airborne.svg",
  4705. extra: 584 / 525
  4706. }
  4707. },
  4708. },
  4709. [
  4710. {
  4711. name: "Normal",
  4712. height: math.unit(10 + 11 / 12, "feet"),
  4713. default: true
  4714. },
  4715. {
  4716. name: "Large",
  4717. height: math.unit(35, "feet")
  4718. },
  4719. {
  4720. name: "Macro",
  4721. height: math.unit(475, "feet")
  4722. },
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4727. {
  4728. front: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(180, "lbs"),
  4731. name: "Front",
  4732. image: {
  4733. source: "./media/characters/luxor/front.svg",
  4734. extra: 2940 / 2152
  4735. }
  4736. },
  4737. back: {
  4738. height: math.unit(6, "feet"),
  4739. weight: math.unit(180, "lbs"),
  4740. name: "Back",
  4741. image: {
  4742. source: "./media/characters/luxor/back.svg",
  4743. extra: 1083 / 960
  4744. }
  4745. },
  4746. },
  4747. [
  4748. {
  4749. name: "Normal",
  4750. height: math.unit(5 + 5 / 6, "feet"),
  4751. default: true
  4752. },
  4753. {
  4754. name: "Lamp",
  4755. height: math.unit(50, "feet")
  4756. },
  4757. {
  4758. name: "Lämp",
  4759. height: math.unit(300, "feet")
  4760. },
  4761. {
  4762. name: "The sun is a lamp",
  4763. height: math.unit(250000, "miles")
  4764. },
  4765. ]
  4766. ))
  4767. characterMakers.push(() => makeCharacter(
  4768. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4769. {
  4770. front: {
  4771. height: math.unit(6, "feet"),
  4772. weight: math.unit(50, "lbs"),
  4773. name: "Front",
  4774. image: {
  4775. source: "./media/characters/huoyan/front.svg"
  4776. }
  4777. },
  4778. side: {
  4779. height: math.unit(6, "feet"),
  4780. weight: math.unit(180, "lbs"),
  4781. name: "Side",
  4782. image: {
  4783. source: "./media/characters/huoyan/side.svg"
  4784. }
  4785. },
  4786. },
  4787. [
  4788. {
  4789. name: "Chef",
  4790. height: math.unit(9, "feet")
  4791. },
  4792. {
  4793. name: "Normal",
  4794. height: math.unit(65, "feet"),
  4795. default: true
  4796. },
  4797. {
  4798. name: "Macro",
  4799. height: math.unit(780, "feet")
  4800. },
  4801. {
  4802. name: "Flaming Mountain",
  4803. height: math.unit(4.8, "miles")
  4804. },
  4805. {
  4806. name: "Celestial",
  4807. height: math.unit(765000, "miles")
  4808. },
  4809. ]
  4810. ))
  4811. characterMakers.push(() => makeCharacter(
  4812. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4813. {
  4814. front: {
  4815. height: math.unit(5 + 3 / 4, "feet"),
  4816. weight: math.unit(120, "lbs"),
  4817. name: "Front",
  4818. image: {
  4819. source: "./media/characters/tails/front.svg"
  4820. }
  4821. }
  4822. },
  4823. [
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(5 + 3 / 4, "feet"),
  4827. default: true
  4828. }
  4829. ]
  4830. ))
  4831. characterMakers.push(() => makeCharacter(
  4832. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4833. {
  4834. front: {
  4835. height: math.unit(4, "feet"),
  4836. weight: math.unit(50, "lbs"),
  4837. name: "Front",
  4838. image: {
  4839. source: "./media/characters/rainy/front.svg"
  4840. }
  4841. }
  4842. },
  4843. [
  4844. {
  4845. name: "Macro",
  4846. height: math.unit(800, "feet"),
  4847. default: true
  4848. }
  4849. ]
  4850. ))
  4851. characterMakers.push(() => makeCharacter(
  4852. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4853. {
  4854. front: {
  4855. height: math.unit(6, "feet"),
  4856. weight: math.unit(150, "lbs"),
  4857. name: "Front",
  4858. image: {
  4859. source: "./media/characters/rainier/front.svg"
  4860. }
  4861. }
  4862. },
  4863. [
  4864. {
  4865. name: "Micro",
  4866. height: math.unit(2, "mm"),
  4867. default: true
  4868. }
  4869. ]
  4870. ))
  4871. characterMakers.push(() => makeCharacter(
  4872. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4873. {
  4874. front: {
  4875. height: math.unit(6, "feet"),
  4876. weight: math.unit(180, "lbs"),
  4877. name: "Front",
  4878. image: {
  4879. source: "./media/characters/andy/front.svg"
  4880. }
  4881. }
  4882. },
  4883. [
  4884. {
  4885. name: "Normal",
  4886. height: math.unit(8, "feet"),
  4887. default: true
  4888. },
  4889. {
  4890. name: "Macro",
  4891. height: math.unit(1000, "feet")
  4892. },
  4893. {
  4894. name: "Megamacro",
  4895. height: math.unit(5, "miles")
  4896. },
  4897. {
  4898. name: "Gigamacro",
  4899. height: math.unit(5000, "miles")
  4900. },
  4901. ]
  4902. ))
  4903. characterMakers.push(() => makeCharacter(
  4904. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4905. {
  4906. front: {
  4907. height: math.unit(6, "feet"),
  4908. weight: math.unit(210, "lbs"),
  4909. name: "Front",
  4910. image: {
  4911. source: "./media/characters/cimmaron/front-sfw.svg",
  4912. extra: 701 / 676,
  4913. bottom: 0.046
  4914. }
  4915. },
  4916. back: {
  4917. height: math.unit(6, "feet"),
  4918. weight: math.unit(210, "lbs"),
  4919. name: "Back",
  4920. image: {
  4921. source: "./media/characters/cimmaron/back-sfw.svg",
  4922. extra: 701 / 676,
  4923. bottom: 0.046
  4924. }
  4925. },
  4926. frontNsfw: {
  4927. height: math.unit(6, "feet"),
  4928. weight: math.unit(210, "lbs"),
  4929. name: "Front (NSFW)",
  4930. image: {
  4931. source: "./media/characters/cimmaron/front-nsfw.svg",
  4932. extra: 701 / 676,
  4933. bottom: 0.046
  4934. }
  4935. },
  4936. backNsfw: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(210, "lbs"),
  4939. name: "Back (NSFW)",
  4940. image: {
  4941. source: "./media/characters/cimmaron/back-nsfw.svg",
  4942. extra: 701 / 676,
  4943. bottom: 0.046
  4944. }
  4945. },
  4946. dick: {
  4947. height: math.unit(1.714, "feet"),
  4948. name: "Dick",
  4949. image: {
  4950. source: "./media/characters/cimmaron/dick.svg"
  4951. }
  4952. },
  4953. },
  4954. [
  4955. {
  4956. name: "Normal",
  4957. height: math.unit(6, "feet"),
  4958. default: true
  4959. },
  4960. {
  4961. name: "Macro Mayor",
  4962. height: math.unit(350, "meters")
  4963. },
  4964. ]
  4965. ))
  4966. characterMakers.push(() => makeCharacter(
  4967. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4968. {
  4969. front: {
  4970. height: math.unit(6, "feet"),
  4971. weight: math.unit(200, "lbs"),
  4972. name: "Front",
  4973. image: {
  4974. source: "./media/characters/akari/front.svg",
  4975. extra: 962 / 901,
  4976. bottom: 0.04
  4977. }
  4978. }
  4979. },
  4980. [
  4981. {
  4982. name: "Micro",
  4983. height: math.unit(5, "inches"),
  4984. default: true
  4985. },
  4986. {
  4987. name: "Normal",
  4988. height: math.unit(7, "feet")
  4989. },
  4990. ]
  4991. ))
  4992. characterMakers.push(() => makeCharacter(
  4993. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4994. {
  4995. front: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(140, "lbs"),
  4998. name: "Front",
  4999. image: {
  5000. source: "./media/characters/cynosura/front.svg",
  5001. extra: 896 / 847
  5002. }
  5003. },
  5004. back: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(140, "lbs"),
  5007. name: "Back",
  5008. image: {
  5009. source: "./media/characters/cynosura/back.svg",
  5010. extra: 1365 / 1250
  5011. }
  5012. },
  5013. },
  5014. [
  5015. {
  5016. name: "Micro",
  5017. height: math.unit(4, "inches")
  5018. },
  5019. {
  5020. name: "Normal",
  5021. height: math.unit(5.75, "feet"),
  5022. default: true
  5023. },
  5024. {
  5025. name: "Tall",
  5026. height: math.unit(10, "feet")
  5027. },
  5028. {
  5029. name: "Big",
  5030. height: math.unit(20, "feet")
  5031. },
  5032. {
  5033. name: "Macro",
  5034. height: math.unit(50, "feet")
  5035. },
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5040. {
  5041. front: {
  5042. height: math.unit(6, "feet"),
  5043. weight: math.unit(170, "lbs"),
  5044. name: "Front",
  5045. image: {
  5046. source: "./media/characters/gin/front.svg",
  5047. extra: 1.053,
  5048. bottom: 0.025
  5049. }
  5050. },
  5051. foot: {
  5052. height: math.unit(6 / 4.25, "feet"),
  5053. name: "Foot",
  5054. image: {
  5055. source: "./media/characters/gin/foot.svg"
  5056. }
  5057. },
  5058. sole: {
  5059. height: math.unit(6 / 4.40, "feet"),
  5060. name: "Sole",
  5061. image: {
  5062. source: "./media/characters/gin/sole.svg"
  5063. }
  5064. },
  5065. },
  5066. [
  5067. {
  5068. name: "Normal",
  5069. height: math.unit(13 + 2 / 12, "feet")
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(1500, "feet")
  5074. },
  5075. {
  5076. name: "Megamacro",
  5077. height: math.unit(200, "miles"),
  5078. default: true
  5079. },
  5080. {
  5081. name: "Gigamacro",
  5082. height: math.unit(500, "megameters")
  5083. },
  5084. {
  5085. name: "Teramacro",
  5086. height: math.unit(15, "lightyears")
  5087. }
  5088. ]
  5089. ))
  5090. characterMakers.push(() => makeCharacter(
  5091. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5092. {
  5093. front: {
  5094. height: math.unit(6 + 1 / 6, "feet"),
  5095. weight: math.unit(178, "lbs"),
  5096. name: "Front",
  5097. image: {
  5098. source: "./media/characters/guy/front.svg"
  5099. }
  5100. }
  5101. },
  5102. [
  5103. {
  5104. name: "Normal",
  5105. height: math.unit(6 + 1 / 6, "feet"),
  5106. default: true
  5107. },
  5108. {
  5109. name: "Large",
  5110. height: math.unit(25 + 7 / 12, "feet")
  5111. },
  5112. {
  5113. name: "Macro",
  5114. height: math.unit(60 + 9 / 12, "feet")
  5115. },
  5116. {
  5117. name: "Macro+",
  5118. height: math.unit(246, "feet")
  5119. },
  5120. {
  5121. name: "Macro++",
  5122. height: math.unit(878, "feet")
  5123. }
  5124. ]
  5125. ))
  5126. characterMakers.push(() => makeCharacter(
  5127. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5128. {
  5129. front: {
  5130. height: math.unit(9, "feet"),
  5131. weight: math.unit(800, "lbs"),
  5132. name: "Front",
  5133. image: {
  5134. source: "./media/characters/tiberius/front.svg",
  5135. extra: 2295 / 2071
  5136. }
  5137. },
  5138. back: {
  5139. height: math.unit(9, "feet"),
  5140. weight: math.unit(800, "lbs"),
  5141. name: "Back",
  5142. image: {
  5143. source: "./media/characters/tiberius/back.svg",
  5144. extra: 2373 / 2160
  5145. }
  5146. },
  5147. },
  5148. [
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(9, "feet"),
  5152. default: true
  5153. }
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5158. {
  5159. front: {
  5160. height: math.unit(6, "feet"),
  5161. weight: math.unit(600, "lbs"),
  5162. name: "Front",
  5163. image: {
  5164. source: "./media/characters/surgo/front.svg",
  5165. extra: 3591 / 2227
  5166. }
  5167. },
  5168. back: {
  5169. height: math.unit(6, "feet"),
  5170. weight: math.unit(600, "lbs"),
  5171. name: "Back",
  5172. image: {
  5173. source: "./media/characters/surgo/back.svg",
  5174. extra: 3557 / 2228
  5175. }
  5176. },
  5177. laying: {
  5178. height: math.unit(6 * 0.85, "feet"),
  5179. weight: math.unit(600, "lbs"),
  5180. name: "Laying",
  5181. image: {
  5182. source: "./media/characters/surgo/laying.svg"
  5183. }
  5184. },
  5185. },
  5186. [
  5187. {
  5188. name: "Normal",
  5189. height: math.unit(6, "feet"),
  5190. default: true
  5191. }
  5192. ]
  5193. ))
  5194. characterMakers.push(() => makeCharacter(
  5195. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5196. {
  5197. side: {
  5198. height: math.unit(6, "feet"),
  5199. weight: math.unit(150, "lbs"),
  5200. name: "Side",
  5201. image: {
  5202. source: "./media/characters/cibus/side.svg",
  5203. extra: 800 / 400
  5204. }
  5205. },
  5206. },
  5207. [
  5208. {
  5209. name: "Normal",
  5210. height: math.unit(6, "feet"),
  5211. default: true
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5217. {
  5218. front: {
  5219. height: math.unit(6, "feet"),
  5220. weight: math.unit(240, "lbs"),
  5221. name: "Front",
  5222. image: {
  5223. source: "./media/characters/nibbles/front.svg"
  5224. }
  5225. },
  5226. side: {
  5227. height: math.unit(6, "feet"),
  5228. weight: math.unit(240, "lbs"),
  5229. name: "Side",
  5230. image: {
  5231. source: "./media/characters/nibbles/side.svg"
  5232. }
  5233. },
  5234. },
  5235. [
  5236. {
  5237. name: "Normal",
  5238. height: math.unit(9, "feet"),
  5239. default: true
  5240. }
  5241. ]
  5242. ))
  5243. characterMakers.push(() => makeCharacter(
  5244. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5245. {
  5246. side: {
  5247. height: math.unit(5 + 1 / 6, "feet"),
  5248. weight: math.unit(130, "lbs"),
  5249. name: "Side",
  5250. image: {
  5251. source: "./media/characters/rikky/side.svg"
  5252. }
  5253. },
  5254. },
  5255. [
  5256. {
  5257. name: "Normal",
  5258. height: math.unit(5 + 1 / 6, "feet")
  5259. },
  5260. {
  5261. name: "Macro",
  5262. height: math.unit(152, "feet"),
  5263. default: true
  5264. },
  5265. {
  5266. name: "Megamacro",
  5267. height: math.unit(7, "miles")
  5268. }
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5273. {
  5274. side: {
  5275. height: math.unit(370, "cm"),
  5276. weight: math.unit(350, "lbs"),
  5277. name: "Side",
  5278. image: {
  5279. source: "./media/characters/malfressa/side.svg"
  5280. }
  5281. },
  5282. walking: {
  5283. height: math.unit(370, "cm"),
  5284. weight: math.unit(350, "lbs"),
  5285. name: "Walking",
  5286. image: {
  5287. source: "./media/characters/malfressa/walking.svg"
  5288. }
  5289. },
  5290. feral: {
  5291. height: math.unit(2500, "cm"),
  5292. weight: math.unit(100000, "lbs"),
  5293. name: "Feral",
  5294. image: {
  5295. source: "./media/characters/malfressa/feral.svg",
  5296. extra: 2108 / 837,
  5297. bottom: 0.02
  5298. }
  5299. },
  5300. },
  5301. [
  5302. {
  5303. name: "Normal",
  5304. height: math.unit(370, "cm")
  5305. },
  5306. {
  5307. name: "Macro",
  5308. height: math.unit(300, "meters"),
  5309. default: true
  5310. }
  5311. ]
  5312. ))
  5313. characterMakers.push(() => makeCharacter(
  5314. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5315. {
  5316. front: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(60, "kg"),
  5319. name: "Front",
  5320. image: {
  5321. source: "./media/characters/jaro/front.svg"
  5322. }
  5323. },
  5324. back: {
  5325. height: math.unit(6, "feet"),
  5326. weight: math.unit(60, "kg"),
  5327. name: "Back",
  5328. image: {
  5329. source: "./media/characters/jaro/back.svg"
  5330. }
  5331. },
  5332. },
  5333. [
  5334. {
  5335. name: "Micro",
  5336. height: math.unit(7, "inches")
  5337. },
  5338. {
  5339. name: "Normal",
  5340. height: math.unit(5.5, "feet"),
  5341. default: true
  5342. },
  5343. {
  5344. name: "Minimacro",
  5345. height: math.unit(20, "feet")
  5346. },
  5347. {
  5348. name: "Macro",
  5349. height: math.unit(200, "meters")
  5350. }
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5355. {
  5356. front: {
  5357. height: math.unit(6, "feet"),
  5358. weight: math.unit(195, "lb"),
  5359. name: "Front",
  5360. image: {
  5361. source: "./media/characters/rogue/front.svg"
  5362. }
  5363. },
  5364. },
  5365. [
  5366. {
  5367. name: "Macro",
  5368. height: math.unit(90, "feet"),
  5369. default: true
  5370. },
  5371. ]
  5372. ))
  5373. characterMakers.push(() => makeCharacter(
  5374. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5375. {
  5376. front: {
  5377. height: math.unit(5 + 8 / 12, "feet"),
  5378. weight: math.unit(140, "lb"),
  5379. name: "Front",
  5380. image: {
  5381. source: "./media/characters/piper/front.svg",
  5382. extra: 3928 / 3681
  5383. }
  5384. },
  5385. },
  5386. [
  5387. {
  5388. name: "Micro",
  5389. height: math.unit(2, "inches")
  5390. },
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(5 + 8 / 12, "feet")
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(250, "feet"),
  5398. default: true
  5399. },
  5400. {
  5401. name: "Megamacro",
  5402. height: math.unit(7, "miles")
  5403. },
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5408. {
  5409. front: {
  5410. height: math.unit(6, "feet"),
  5411. weight: math.unit(220, "lb"),
  5412. name: "Front",
  5413. image: {
  5414. source: "./media/characters/gemini/front.svg"
  5415. }
  5416. },
  5417. back: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(220, "lb"),
  5420. name: "Back",
  5421. image: {
  5422. source: "./media/characters/gemini/back.svg"
  5423. }
  5424. },
  5425. kneeling: {
  5426. height: math.unit(6 / 1.5, "feet"),
  5427. weight: math.unit(220, "lb"),
  5428. name: "Kneeling",
  5429. image: {
  5430. source: "./media/characters/gemini/kneeling.svg",
  5431. bottom: 0.02
  5432. }
  5433. },
  5434. },
  5435. [
  5436. {
  5437. name: "Macro",
  5438. height: math.unit(300, "meters"),
  5439. default: true
  5440. },
  5441. {
  5442. name: "Megamacro",
  5443. height: math.unit(6900, "meters")
  5444. },
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5449. {
  5450. anthro: {
  5451. height: math.unit(2.35, "meters"),
  5452. weight: math.unit(73, "kg"),
  5453. name: "Anthro",
  5454. image: {
  5455. source: "./media/characters/alicia/anthro.svg",
  5456. extra: 2571 / 2385,
  5457. bottom: 75 / 2648
  5458. }
  5459. },
  5460. paw: {
  5461. height: math.unit(1.32, "feet"),
  5462. name: "Paw",
  5463. image: {
  5464. source: "./media/characters/alicia/paw.svg"
  5465. }
  5466. },
  5467. feral: {
  5468. height: math.unit(1.69, "meters"),
  5469. weight: math.unit(73, "kg"),
  5470. name: "Feral",
  5471. image: {
  5472. source: "./media/characters/alicia/feral.svg",
  5473. extra: 2123 / 1715,
  5474. bottom: 222 / 2349
  5475. }
  5476. },
  5477. },
  5478. [
  5479. {
  5480. name: "Normal",
  5481. height: math.unit(2.35, "meters")
  5482. },
  5483. {
  5484. name: "Macro",
  5485. height: math.unit(60, "meters"),
  5486. default: true
  5487. },
  5488. {
  5489. name: "Megamacro",
  5490. height: math.unit(10000, "kilometers")
  5491. },
  5492. ]
  5493. ))
  5494. characterMakers.push(() => makeCharacter(
  5495. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5496. {
  5497. front: {
  5498. height: math.unit(7, "feet"),
  5499. weight: math.unit(250, "lbs"),
  5500. name: "Front",
  5501. image: {
  5502. source: "./media/characters/archy/front.svg"
  5503. }
  5504. }
  5505. },
  5506. [
  5507. {
  5508. name: "Micro",
  5509. height: math.unit(1, "inch")
  5510. },
  5511. {
  5512. name: "Shorty",
  5513. height: math.unit(5, "feet")
  5514. },
  5515. {
  5516. name: "Normal",
  5517. height: math.unit(7, "feet")
  5518. },
  5519. {
  5520. name: "Macro",
  5521. height: math.unit(600, "meters"),
  5522. default: true
  5523. },
  5524. {
  5525. name: "Megamacro",
  5526. height: math.unit(1, "mile")
  5527. },
  5528. ]
  5529. ))
  5530. characterMakers.push(() => makeCharacter(
  5531. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5532. {
  5533. front: {
  5534. height: math.unit(1.65, "meters"),
  5535. weight: math.unit(74, "kg"),
  5536. name: "Front",
  5537. image: {
  5538. source: "./media/characters/berri/front.svg",
  5539. extra: 857 / 837,
  5540. bottom: 18 / 877
  5541. }
  5542. },
  5543. bum: {
  5544. height: math.unit(1.46, "feet"),
  5545. name: "Bum",
  5546. image: {
  5547. source: "./media/characters/berri/bum.svg"
  5548. }
  5549. },
  5550. mouth: {
  5551. height: math.unit(0.44, "feet"),
  5552. name: "Mouth",
  5553. image: {
  5554. source: "./media/characters/berri/mouth.svg"
  5555. }
  5556. },
  5557. paw: {
  5558. height: math.unit(0.826, "feet"),
  5559. name: "Paw",
  5560. image: {
  5561. source: "./media/characters/berri/paw.svg"
  5562. }
  5563. },
  5564. },
  5565. [
  5566. {
  5567. name: "Normal",
  5568. height: math.unit(1.65, "meters")
  5569. },
  5570. {
  5571. name: "Macro",
  5572. height: math.unit(60, "m"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Megamacro",
  5577. height: math.unit(9.213, "km")
  5578. },
  5579. {
  5580. name: "Planet Eater",
  5581. height: math.unit(489, "megameters")
  5582. },
  5583. {
  5584. name: "Teramacro",
  5585. height: math.unit(2471635000000, "meters")
  5586. },
  5587. {
  5588. name: "Examacro",
  5589. height: math.unit(8.0624e+26, "meters")
  5590. }
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(1.72, "meters"),
  5598. weight: math.unit(68, "kg"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/lexi/front.svg"
  5602. }
  5603. }
  5604. },
  5605. [
  5606. {
  5607. name: "Very Smol",
  5608. height: math.unit(10, "mm")
  5609. },
  5610. {
  5611. name: "Micro",
  5612. height: math.unit(6.8, "cm"),
  5613. default: true
  5614. },
  5615. {
  5616. name: "Normal",
  5617. height: math.unit(1.72, "m")
  5618. }
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(1.69, "meters"),
  5626. weight: math.unit(68, "kg"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/martin/front.svg",
  5630. extra: 596 / 581
  5631. }
  5632. }
  5633. },
  5634. [
  5635. {
  5636. name: "Micro",
  5637. height: math.unit(6.85, "cm"),
  5638. default: true
  5639. },
  5640. {
  5641. name: "Normal",
  5642. height: math.unit(1.69, "m")
  5643. }
  5644. ]
  5645. ))
  5646. characterMakers.push(() => makeCharacter(
  5647. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5648. {
  5649. front: {
  5650. height: math.unit(1.69, "meters"),
  5651. weight: math.unit(68, "kg"),
  5652. name: "Front",
  5653. image: {
  5654. source: "./media/characters/juno/front.svg"
  5655. }
  5656. }
  5657. },
  5658. [
  5659. {
  5660. name: "Micro",
  5661. height: math.unit(7, "cm")
  5662. },
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(1.89, "m")
  5666. },
  5667. {
  5668. name: "Macro",
  5669. height: math.unit(353, "meters"),
  5670. default: true
  5671. }
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5676. {
  5677. front: {
  5678. height: math.unit(1.93, "meters"),
  5679. weight: math.unit(83, "kg"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/samantha/front.svg"
  5683. }
  5684. },
  5685. frontClothed: {
  5686. height: math.unit(1.93, "meters"),
  5687. weight: math.unit(83, "kg"),
  5688. name: "Front (Clothed)",
  5689. image: {
  5690. source: "./media/characters/samantha/front-clothed.svg"
  5691. }
  5692. },
  5693. back: {
  5694. height: math.unit(1.93, "meters"),
  5695. weight: math.unit(83, "kg"),
  5696. name: "Back",
  5697. image: {
  5698. source: "./media/characters/samantha/back.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Normal",
  5705. height: math.unit(1.93, "m")
  5706. },
  5707. {
  5708. name: "Macro",
  5709. height: math.unit(74, "meters"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Macro+",
  5714. height: math.unit(223, "meters"),
  5715. },
  5716. {
  5717. name: "Megamacro",
  5718. height: math.unit(8381, "meters"),
  5719. },
  5720. {
  5721. name: "Megamacro+",
  5722. height: math.unit(12000, "kilometers")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5728. {
  5729. front: {
  5730. height: math.unit(1.92, "meters"),
  5731. weight: math.unit(80, "kg"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/dr-clay/front.svg"
  5735. }
  5736. },
  5737. frontClothed: {
  5738. height: math.unit(1.92, "meters"),
  5739. weight: math.unit(80, "kg"),
  5740. name: "Front (Clothed)",
  5741. image: {
  5742. source: "./media/characters/dr-clay/front-clothed.svg"
  5743. }
  5744. }
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(1.92, "m")
  5750. },
  5751. {
  5752. name: "Macro",
  5753. height: math.unit(214, "meters"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Macro+",
  5758. height: math.unit(12.237, "meters"),
  5759. },
  5760. {
  5761. name: "Megamacro",
  5762. height: math.unit(557, "megameters"),
  5763. },
  5764. {
  5765. name: "Unimaginable",
  5766. height: math.unit(120e9, "lightyears")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(2, "meters"),
  5775. weight: math.unit(80, "kg"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5779. }
  5780. }
  5781. },
  5782. [
  5783. {
  5784. name: "Teramacro",
  5785. height: math.unit(500000, "lightyears"),
  5786. default: true
  5787. },
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5792. {
  5793. front: {
  5794. height: math.unit(2, "meters"),
  5795. weight: math.unit(150, "kg"),
  5796. name: "Front",
  5797. image: {
  5798. source: "./media/characters/vemus/front.svg",
  5799. extra: 2384 / 2084,
  5800. bottom: 0.0123
  5801. }
  5802. }
  5803. },
  5804. [
  5805. {
  5806. name: "Normal",
  5807. height: math.unit(3.75, "meters"),
  5808. default: true
  5809. },
  5810. {
  5811. name: "Big",
  5812. height: math.unit(8, "meters")
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(100, "meters")
  5817. },
  5818. {
  5819. name: "Macro+",
  5820. height: math.unit(1500, "meters")
  5821. },
  5822. {
  5823. name: "Stellar",
  5824. height: math.unit(14e8, "meters")
  5825. },
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5830. {
  5831. front: {
  5832. height: math.unit(2, "meters"),
  5833. weight: math.unit(70, "kg"),
  5834. name: "Front",
  5835. image: {
  5836. source: "./media/characters/beherit/front.svg",
  5837. extra: 1408 / 1242
  5838. }
  5839. }
  5840. },
  5841. [
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(6, "feet")
  5845. },
  5846. {
  5847. name: "Lorg",
  5848. height: math.unit(25, "feet"),
  5849. default: true
  5850. },
  5851. {
  5852. name: "Lorger",
  5853. height: math.unit(75, "feet")
  5854. },
  5855. {
  5856. name: "Macro",
  5857. height: math.unit(200, "meters")
  5858. },
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(2, "meters"),
  5866. weight: math.unit(150, "kg"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/everett/front.svg",
  5870. extra: 2038 / 1737,
  5871. bottom: 0.03
  5872. }
  5873. },
  5874. paw: {
  5875. height: math.unit(2 / 3.6, "meters"),
  5876. name: "Paw",
  5877. image: {
  5878. source: "./media/characters/everett/paw.svg"
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(15, "feet"),
  5886. default: true
  5887. },
  5888. {
  5889. name: "Lorg",
  5890. height: math.unit(70, "feet"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Lorger",
  5895. height: math.unit(250, "feet")
  5896. },
  5897. {
  5898. name: "Macro",
  5899. height: math.unit(500, "meters")
  5900. },
  5901. ]
  5902. ))
  5903. characterMakers.push(() => makeCharacter(
  5904. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5905. {
  5906. front: {
  5907. height: math.unit(2, "meters"),
  5908. weight: math.unit(86, "kg"),
  5909. name: "Front",
  5910. image: {
  5911. source: "./media/characters/rose-lion/front.svg"
  5912. }
  5913. },
  5914. bent: {
  5915. height: math.unit(2 / 1.4288, "meters"),
  5916. weight: math.unit(86, "kg"),
  5917. name: "Bent",
  5918. image: {
  5919. source: "./media/characters/rose-lion/bent.svg"
  5920. }
  5921. }
  5922. },
  5923. [
  5924. {
  5925. name: "Mini-Micro",
  5926. height: math.unit(1, "cm")
  5927. },
  5928. {
  5929. name: "Micro",
  5930. height: math.unit(3.5, "inches"),
  5931. default: true
  5932. },
  5933. {
  5934. name: "Normal",
  5935. height: math.unit(6 + 1 / 6, "feet")
  5936. },
  5937. {
  5938. name: "Mini-Macro",
  5939. height: math.unit(9 + 10 / 12, "feet")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5945. {
  5946. front: {
  5947. height: math.unit(2, "meters"),
  5948. weight: math.unit(350, "lbs"),
  5949. name: "Front",
  5950. image: {
  5951. source: "./media/characters/regal/front.svg"
  5952. }
  5953. },
  5954. back: {
  5955. height: math.unit(2, "meters"),
  5956. weight: math.unit(350, "lbs"),
  5957. name: "Back",
  5958. image: {
  5959. source: "./media/characters/regal/back.svg"
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(350, "feet"),
  5967. default: true
  5968. }
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(4 + 11 / 12, "feet"),
  5976. weight: math.unit(100, "lbs"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/opal/front.svg"
  5980. }
  5981. },
  5982. frontAlt: {
  5983. height: math.unit(4 + 11 / 12, "feet"),
  5984. weight: math.unit(100, "lbs"),
  5985. name: "Front (Alt)",
  5986. image: {
  5987. source: "./media/characters/opal/front-alt.svg"
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Small",
  5994. height: math.unit(4 + 11 / 12, "feet")
  5995. },
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(20, "feet"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Macro",
  6003. height: math.unit(120, "feet")
  6004. },
  6005. {
  6006. name: "Megamacro",
  6007. height: math.unit(80, "miles")
  6008. },
  6009. {
  6010. name: "True Size",
  6011. height: math.unit(100000, "lightyears")
  6012. },
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6017. {
  6018. front: {
  6019. height: math.unit(6, "feet"),
  6020. weight: math.unit(200, "lbs"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/vector-wuff/front.svg"
  6024. }
  6025. }
  6026. },
  6027. [
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(2.8, "meters")
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(450, "meters"),
  6035. default: true
  6036. },
  6037. {
  6038. name: "Megamacro",
  6039. height: math.unit(15, "kilometers")
  6040. }
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6045. {
  6046. front: {
  6047. height: math.unit(6, "feet"),
  6048. weight: math.unit(256, "lbs"),
  6049. name: "Front",
  6050. image: {
  6051. source: "./media/characters/dannik/front.svg"
  6052. }
  6053. }
  6054. },
  6055. [
  6056. {
  6057. name: "Macro",
  6058. height: math.unit(69.57, "meters"),
  6059. default: true
  6060. },
  6061. ]
  6062. ))
  6063. characterMakers.push(() => makeCharacter(
  6064. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6065. {
  6066. front: {
  6067. height: math.unit(6, "feet"),
  6068. weight: math.unit(120, "lbs"),
  6069. name: "Front",
  6070. image: {
  6071. source: "./media/characters/azura-saharah/front.svg"
  6072. }
  6073. },
  6074. back: {
  6075. height: math.unit(6, "feet"),
  6076. weight: math.unit(120, "lbs"),
  6077. name: "Back",
  6078. image: {
  6079. source: "./media/characters/azura-saharah/back.svg"
  6080. }
  6081. },
  6082. },
  6083. [
  6084. {
  6085. name: "Macro",
  6086. height: math.unit(100, "feet"),
  6087. default: true
  6088. },
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6093. {
  6094. side: {
  6095. height: math.unit(5 + 4 / 12, "feet"),
  6096. weight: math.unit(163, "lbs"),
  6097. name: "Side",
  6098. image: {
  6099. source: "./media/characters/kennedy/side.svg"
  6100. }
  6101. }
  6102. },
  6103. [
  6104. {
  6105. name: "Standard Doggo",
  6106. height: math.unit(5 + 4 / 12, "feet")
  6107. },
  6108. {
  6109. name: "Big Doggo",
  6110. height: math.unit(25 + 3 / 12, "feet"),
  6111. default: true
  6112. },
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6117. {
  6118. front: {
  6119. height: math.unit(6, "feet"),
  6120. weight: math.unit(90, "lbs"),
  6121. name: "Front",
  6122. image: {
  6123. source: "./media/characters/odi-lunar/front.svg"
  6124. }
  6125. }
  6126. },
  6127. [
  6128. {
  6129. name: "Micro",
  6130. height: math.unit(3, "inches"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(5.5, "feet")
  6136. }
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6141. {
  6142. back: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(220, "lbs"),
  6145. name: "Back",
  6146. image: {
  6147. source: "./media/characters/mandake/back.svg"
  6148. }
  6149. }
  6150. },
  6151. [
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(7, "feet"),
  6155. default: true
  6156. },
  6157. {
  6158. name: "Macro",
  6159. height: math.unit(78, "feet")
  6160. },
  6161. {
  6162. name: "Macro+",
  6163. height: math.unit(300, "meters")
  6164. },
  6165. {
  6166. name: "Macro++",
  6167. height: math.unit(2400, "feet")
  6168. },
  6169. {
  6170. name: "Megamacro",
  6171. height: math.unit(5167, "meters")
  6172. },
  6173. {
  6174. name: "Gigamacro",
  6175. height: math.unit(41769, "miles")
  6176. },
  6177. ]
  6178. ))
  6179. characterMakers.push(() => makeCharacter(
  6180. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6181. {
  6182. front: {
  6183. height: math.unit(6, "feet"),
  6184. weight: math.unit(120, "lbs"),
  6185. name: "Front",
  6186. image: {
  6187. source: "./media/characters/yozey/front.svg"
  6188. }
  6189. },
  6190. frontAlt: {
  6191. height: math.unit(6, "feet"),
  6192. weight: math.unit(120, "lbs"),
  6193. name: "Front (Alt)",
  6194. image: {
  6195. source: "./media/characters/yozey/front-alt.svg"
  6196. }
  6197. },
  6198. side: {
  6199. height: math.unit(6, "feet"),
  6200. weight: math.unit(120, "lbs"),
  6201. name: "Side",
  6202. image: {
  6203. source: "./media/characters/yozey/side.svg"
  6204. }
  6205. },
  6206. },
  6207. [
  6208. {
  6209. name: "Micro",
  6210. height: math.unit(3, "inches"),
  6211. default: true
  6212. },
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(6, "feet")
  6216. }
  6217. ]
  6218. ))
  6219. characterMakers.push(() => makeCharacter(
  6220. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6221. {
  6222. front: {
  6223. height: math.unit(6, "feet"),
  6224. weight: math.unit(103, "lbs"),
  6225. name: "Front",
  6226. image: {
  6227. source: "./media/characters/valeska-voss/front.svg"
  6228. }
  6229. }
  6230. },
  6231. [
  6232. {
  6233. name: "Mini-Sized Sub",
  6234. height: math.unit(3.1, "inches")
  6235. },
  6236. {
  6237. name: "Mid-Sized Sub",
  6238. height: math.unit(6.2, "inches")
  6239. },
  6240. {
  6241. name: "Full-Sized Sub",
  6242. height: math.unit(9.3, "inches")
  6243. },
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(5 + 2 / 12, "foot"),
  6247. default: true
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6253. {
  6254. front: {
  6255. height: math.unit(6, "feet"),
  6256. weight: math.unit(160, "lbs"),
  6257. name: "Front",
  6258. image: {
  6259. source: "./media/characters/gene-zeta/front.svg",
  6260. bottom: 0.03,
  6261. extra: 1
  6262. }
  6263. }
  6264. },
  6265. [
  6266. {
  6267. name: "Normal",
  6268. height: math.unit(6.25, "foot"),
  6269. default: true
  6270. },
  6271. ]
  6272. ))
  6273. characterMakers.push(() => makeCharacter(
  6274. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6275. {
  6276. front: {
  6277. height: math.unit(6, "feet"),
  6278. weight: math.unit(350, "lbs"),
  6279. name: "Front",
  6280. image: {
  6281. source: "./media/characters/razinox/front.svg",
  6282. extra: 1686 / 1548,
  6283. bottom: 28.2 / 1868
  6284. }
  6285. },
  6286. back: {
  6287. height: math.unit(6, "feet"),
  6288. weight: math.unit(350, "lbs"),
  6289. name: "Back",
  6290. image: {
  6291. source: "./media/characters/razinox/back.svg",
  6292. extra: 1660 / 1590,
  6293. bottom: 15 / 1665
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(10 + 8 / 12, "foot")
  6301. },
  6302. {
  6303. name: "Minimacro",
  6304. height: math.unit(15, "foot")
  6305. },
  6306. {
  6307. name: "Macro",
  6308. height: math.unit(60, "foot"),
  6309. default: true
  6310. },
  6311. {
  6312. name: "Megamacro",
  6313. height: math.unit(5, "miles")
  6314. },
  6315. {
  6316. name: "Gigamacro",
  6317. height: math.unit(6000, "miles")
  6318. },
  6319. ]
  6320. ))
  6321. characterMakers.push(() => makeCharacter(
  6322. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6323. {
  6324. front: {
  6325. height: math.unit(6, "feet"),
  6326. weight: math.unit(150, "lbs"),
  6327. name: "Front",
  6328. image: {
  6329. source: "./media/characters/cobalt/front.svg"
  6330. }
  6331. }
  6332. },
  6333. [
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(8 + 1 / 12, "foot")
  6337. },
  6338. {
  6339. name: "Macro",
  6340. height: math.unit(111, "foot"),
  6341. default: true
  6342. },
  6343. {
  6344. name: "Supracosmic",
  6345. height: math.unit(1e42, "feet")
  6346. },
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(140, "lbs"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/amanda/front.svg"
  6358. }
  6359. }
  6360. },
  6361. [
  6362. {
  6363. name: "Micro",
  6364. height: math.unit(5, "inches"),
  6365. default: true
  6366. },
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6371. {
  6372. front: {
  6373. height: math.unit(5.59, "feet"),
  6374. weight: math.unit(250, "lbs"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/teal/front.svg"
  6378. }
  6379. },
  6380. frontAlt: {
  6381. height: math.unit(6, "feet"),
  6382. weight: math.unit(250, "lbs"),
  6383. name: "Front (Alt)",
  6384. image: {
  6385. source: "./media/characters/teal/front-alt.svg",
  6386. bottom: 0.04,
  6387. extra: 1
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Normal",
  6394. height: math.unit(12, "feet"),
  6395. default: true
  6396. },
  6397. {
  6398. name: "Macro",
  6399. height: math.unit(300, "feet")
  6400. },
  6401. ]
  6402. ))
  6403. characterMakers.push(() => makeCharacter(
  6404. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6405. {
  6406. frontCat: {
  6407. height: math.unit(6, "feet"),
  6408. weight: math.unit(180, "lbs"),
  6409. name: "Front (Cat)",
  6410. image: {
  6411. source: "./media/characters/ravin-amulet/front-cat.svg"
  6412. }
  6413. },
  6414. frontCatAlt: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(180, "lbs"),
  6417. name: "Front (Alt, Cat)",
  6418. image: {
  6419. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6420. }
  6421. },
  6422. frontWerewolf: {
  6423. height: math.unit(6 * 1.2, "feet"),
  6424. weight: math.unit(225, "lbs"),
  6425. name: "Front (Werewolf)",
  6426. image: {
  6427. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6428. }
  6429. },
  6430. backWerewolf: {
  6431. height: math.unit(6 * 1.2, "feet"),
  6432. weight: math.unit(225, "lbs"),
  6433. name: "Back (Werewolf)",
  6434. image: {
  6435. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6436. }
  6437. },
  6438. },
  6439. [
  6440. {
  6441. name: "Nano",
  6442. height: math.unit(1, "micrometer")
  6443. },
  6444. {
  6445. name: "Micro",
  6446. height: math.unit(1, "inch")
  6447. },
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(6, "feet"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(60, "feet")
  6456. }
  6457. ]
  6458. ))
  6459. characterMakers.push(() => makeCharacter(
  6460. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6461. {
  6462. front: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(165, "lbs"),
  6465. name: "Front",
  6466. image: {
  6467. source: "./media/characters/fluoresce/front.svg"
  6468. }
  6469. }
  6470. },
  6471. [
  6472. {
  6473. name: "Micro",
  6474. height: math.unit(6, "cm")
  6475. },
  6476. {
  6477. name: "Normal",
  6478. height: math.unit(5 + 7 / 12, "feet"),
  6479. default: true
  6480. },
  6481. {
  6482. name: "Macro",
  6483. height: math.unit(56, "feet")
  6484. },
  6485. {
  6486. name: "Megamacro",
  6487. height: math.unit(1.9, "miles")
  6488. },
  6489. ]
  6490. ))
  6491. characterMakers.push(() => makeCharacter(
  6492. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6493. {
  6494. front: {
  6495. height: math.unit(9 + 6 / 12, "feet"),
  6496. weight: math.unit(523, "lbs"),
  6497. name: "Side",
  6498. image: {
  6499. source: "./media/characters/aurora/side.svg"
  6500. }
  6501. }
  6502. },
  6503. [
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(9 + 6 / 12, "feet")
  6507. },
  6508. {
  6509. name: "Macro",
  6510. height: math.unit(96, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Macro+",
  6515. height: math.unit(243, "feet")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6521. {
  6522. front: {
  6523. height: math.unit(194, "cm"),
  6524. weight: math.unit(90, "kg"),
  6525. name: "Front",
  6526. image: {
  6527. source: "./media/characters/ranek/front.svg"
  6528. }
  6529. },
  6530. side: {
  6531. height: math.unit(194, "cm"),
  6532. weight: math.unit(90, "kg"),
  6533. name: "Side",
  6534. image: {
  6535. source: "./media/characters/ranek/side.svg"
  6536. }
  6537. },
  6538. back: {
  6539. height: math.unit(194, "cm"),
  6540. weight: math.unit(90, "kg"),
  6541. name: "Back",
  6542. image: {
  6543. source: "./media/characters/ranek/back.svg"
  6544. }
  6545. },
  6546. feral: {
  6547. height: math.unit(30, "cm"),
  6548. weight: math.unit(1.6, "lbs"),
  6549. name: "Feral",
  6550. image: {
  6551. source: "./media/characters/ranek/feral.svg"
  6552. }
  6553. },
  6554. },
  6555. [
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(194, "cm"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(100, "meters")
  6564. },
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6569. {
  6570. front: {
  6571. height: math.unit(5 + 6 / 12, "feet"),
  6572. weight: math.unit(153, "lbs"),
  6573. name: "Front",
  6574. image: {
  6575. source: "./media/characters/andrew-cooper/front.svg"
  6576. }
  6577. },
  6578. },
  6579. [
  6580. {
  6581. name: "Nano",
  6582. height: math.unit(1, "mm")
  6583. },
  6584. {
  6585. name: "Micro",
  6586. height: math.unit(2, "inches")
  6587. },
  6588. {
  6589. name: "Normal",
  6590. height: math.unit(5 + 6 / 12, "feet"),
  6591. default: true
  6592. }
  6593. ]
  6594. ))
  6595. characterMakers.push(() => makeCharacter(
  6596. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6597. {
  6598. front: {
  6599. height: math.unit(6, "feet"),
  6600. weight: math.unit(180, "lbs"),
  6601. name: "Front",
  6602. image: {
  6603. source: "./media/characters/akane-sato/front.svg",
  6604. extra: 1219 / 1140
  6605. }
  6606. },
  6607. back: {
  6608. height: math.unit(6, "feet"),
  6609. weight: math.unit(180, "lbs"),
  6610. name: "Back",
  6611. image: {
  6612. source: "./media/characters/akane-sato/back.svg",
  6613. extra: 1219 / 1170
  6614. }
  6615. },
  6616. },
  6617. [
  6618. {
  6619. name: "Normal",
  6620. height: math.unit(2.5, "meters")
  6621. },
  6622. {
  6623. name: "Macro",
  6624. height: math.unit(250, "meters"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Megamacro",
  6629. height: math.unit(25, "km")
  6630. },
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6635. {
  6636. front: {
  6637. height: math.unit(6, "feet"),
  6638. weight: math.unit(65, "kg"),
  6639. name: "Front",
  6640. image: {
  6641. source: "./media/characters/rook/front.svg",
  6642. extra: 960 / 950
  6643. }
  6644. }
  6645. },
  6646. [
  6647. {
  6648. name: "Normal",
  6649. height: math.unit(8.8, "feet")
  6650. },
  6651. {
  6652. name: "Macro",
  6653. height: math.unit(88, "feet"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Megamacro",
  6658. height: math.unit(8, "miles")
  6659. },
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6664. {
  6665. front: {
  6666. height: math.unit(12 + 2 / 12, "feet"),
  6667. weight: math.unit(808, "lbs"),
  6668. name: "Front",
  6669. image: {
  6670. source: "./media/characters/prodigy/front.svg"
  6671. }
  6672. }
  6673. },
  6674. [
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(12 + 2 / 12, "feet"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Macro",
  6682. height: math.unit(143, "feet")
  6683. },
  6684. {
  6685. name: "Macro+",
  6686. height: math.unit(400, "feet")
  6687. },
  6688. ]
  6689. ))
  6690. characterMakers.push(() => makeCharacter(
  6691. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6692. {
  6693. front: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(225, "lbs"),
  6696. name: "Front",
  6697. image: {
  6698. source: "./media/characters/daniel/front.svg"
  6699. }
  6700. },
  6701. leaning: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(225, "lbs"),
  6704. name: "Leaning",
  6705. image: {
  6706. source: "./media/characters/daniel/leaning.svg"
  6707. }
  6708. },
  6709. },
  6710. [
  6711. {
  6712. name: "Macro",
  6713. height: math.unit(1000, "feet"),
  6714. default: true
  6715. },
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6720. {
  6721. front: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(88, "lbs"),
  6724. name: "Front",
  6725. image: {
  6726. source: "./media/characters/chiros/front.svg",
  6727. extra: 306 / 226
  6728. }
  6729. },
  6730. side: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(88, "lbs"),
  6733. name: "Side",
  6734. image: {
  6735. source: "./media/characters/chiros/side.svg",
  6736. extra: 306 / 226
  6737. }
  6738. },
  6739. },
  6740. [
  6741. {
  6742. name: "Normal",
  6743. height: math.unit(6, "cm"),
  6744. default: true
  6745. },
  6746. ]
  6747. ))
  6748. characterMakers.push(() => makeCharacter(
  6749. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6750. {
  6751. front: {
  6752. height: math.unit(6, "feet"),
  6753. weight: math.unit(100, "lbs"),
  6754. name: "Front",
  6755. image: {
  6756. source: "./media/characters/selka/front.svg",
  6757. extra: 947 / 887
  6758. }
  6759. }
  6760. },
  6761. [
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(5, "cm"),
  6765. default: true
  6766. },
  6767. ]
  6768. ))
  6769. characterMakers.push(() => makeCharacter(
  6770. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6771. {
  6772. front: {
  6773. height: math.unit(8 + 3 / 12, "feet"),
  6774. weight: math.unit(424, "lbs"),
  6775. name: "Front",
  6776. image: {
  6777. source: "./media/characters/verin/front.svg",
  6778. extra: 1845 / 1550
  6779. }
  6780. },
  6781. frontArmored: {
  6782. height: math.unit(8 + 3 / 12, "feet"),
  6783. weight: math.unit(424, "lbs"),
  6784. name: "Front (Armored)",
  6785. image: {
  6786. source: "./media/characters/verin/front-armor.svg",
  6787. extra: 1845 / 1550,
  6788. bottom: 0.01
  6789. }
  6790. },
  6791. back: {
  6792. height: math.unit(8 + 3 / 12, "feet"),
  6793. weight: math.unit(424, "lbs"),
  6794. name: "Back",
  6795. image: {
  6796. source: "./media/characters/verin/back.svg",
  6797. bottom: 0.1,
  6798. extra: 1
  6799. }
  6800. },
  6801. foot: {
  6802. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6803. name: "Foot",
  6804. image: {
  6805. source: "./media/characters/verin/foot.svg"
  6806. }
  6807. },
  6808. },
  6809. [
  6810. {
  6811. name: "Normal",
  6812. height: math.unit(8 + 3 / 12, "feet")
  6813. },
  6814. {
  6815. name: "Minimacro",
  6816. height: math.unit(21, "feet"),
  6817. default: true
  6818. },
  6819. {
  6820. name: "Macro",
  6821. height: math.unit(626, "feet")
  6822. },
  6823. ]
  6824. ))
  6825. characterMakers.push(() => makeCharacter(
  6826. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6827. {
  6828. front: {
  6829. height: math.unit(2.718, "meters"),
  6830. weight: math.unit(150, "lbs"),
  6831. name: "Front",
  6832. image: {
  6833. source: "./media/characters/sovrim-terraquian/front.svg"
  6834. }
  6835. },
  6836. back: {
  6837. height: math.unit(2.718, "meters"),
  6838. weight: math.unit(150, "lbs"),
  6839. name: "Back",
  6840. image: {
  6841. source: "./media/characters/sovrim-terraquian/back.svg"
  6842. }
  6843. }
  6844. },
  6845. [
  6846. {
  6847. name: "Micro",
  6848. height: math.unit(2, "inches")
  6849. },
  6850. {
  6851. name: "Small",
  6852. height: math.unit(1, "meter")
  6853. },
  6854. {
  6855. name: "Normal",
  6856. height: math.unit(Math.E, "meters"),
  6857. default: true
  6858. },
  6859. {
  6860. name: "Macro",
  6861. height: math.unit(20, "meters")
  6862. },
  6863. {
  6864. name: "Macro+",
  6865. height: math.unit(400, "meters")
  6866. },
  6867. ]
  6868. ))
  6869. characterMakers.push(() => makeCharacter(
  6870. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6871. {
  6872. front: {
  6873. height: math.unit(7, "feet"),
  6874. weight: math.unit(489, "lbs"),
  6875. name: "Front",
  6876. image: {
  6877. source: "./media/characters/reece-silvermane/front.svg",
  6878. bottom: 0.02,
  6879. extra: 1
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Macro",
  6886. height: math.unit(1.5, "miles"),
  6887. default: true
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(78, "kg"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/kane/front.svg",
  6900. extra: 978 / 899
  6901. }
  6902. },
  6903. },
  6904. [
  6905. {
  6906. name: "Normal",
  6907. height: math.unit(2.1, "m"),
  6908. },
  6909. {
  6910. name: "Macro",
  6911. height: math.unit(1, "km"),
  6912. default: true
  6913. },
  6914. ]
  6915. ))
  6916. characterMakers.push(() => makeCharacter(
  6917. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6918. {
  6919. front: {
  6920. height: math.unit(6, "feet"),
  6921. weight: math.unit(200, "kg"),
  6922. name: "Front",
  6923. image: {
  6924. source: "./media/characters/tegon/front.svg",
  6925. bottom: 0.01,
  6926. extra: 1
  6927. }
  6928. },
  6929. },
  6930. [
  6931. {
  6932. name: "Micro",
  6933. height: math.unit(1, "inch")
  6934. },
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(6 + 3 / 12, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(300, "feet")
  6943. },
  6944. {
  6945. name: "Megamacro",
  6946. height: math.unit(69, "miles")
  6947. },
  6948. ]
  6949. ))
  6950. characterMakers.push(() => makeCharacter(
  6951. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6952. {
  6953. side: {
  6954. height: math.unit(6, "feet"),
  6955. weight: math.unit(2304, "lbs"),
  6956. name: "Side",
  6957. image: {
  6958. source: "./media/characters/arcturax/side.svg",
  6959. extra: 790 / 376,
  6960. bottom: 0.01
  6961. }
  6962. },
  6963. },
  6964. [
  6965. {
  6966. name: "Micro",
  6967. height: math.unit(2, "inch")
  6968. },
  6969. {
  6970. name: "Normal",
  6971. height: math.unit(6, "feet")
  6972. },
  6973. {
  6974. name: "Macro",
  6975. height: math.unit(39, "feet"),
  6976. default: true
  6977. },
  6978. {
  6979. name: "Megamacro",
  6980. height: math.unit(7, "miles")
  6981. },
  6982. ]
  6983. ))
  6984. characterMakers.push(() => makeCharacter(
  6985. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6986. {
  6987. front: {
  6988. height: math.unit(6, "feet"),
  6989. weight: math.unit(50, "lbs"),
  6990. name: "Front",
  6991. image: {
  6992. source: "./media/characters/sentri/front.svg",
  6993. extra: 1750 / 1570,
  6994. bottom: 0.025
  6995. }
  6996. },
  6997. frontAlt: {
  6998. height: math.unit(6, "feet"),
  6999. weight: math.unit(50, "lbs"),
  7000. name: "Front (Alt)",
  7001. image: {
  7002. source: "./media/characters/sentri/front-alt.svg",
  7003. extra: 1750 / 1570,
  7004. bottom: 0.025
  7005. }
  7006. },
  7007. },
  7008. [
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(15, "feet"),
  7012. default: true
  7013. },
  7014. {
  7015. name: "Macro",
  7016. height: math.unit(2500, "feet")
  7017. }
  7018. ]
  7019. ))
  7020. characterMakers.push(() => makeCharacter(
  7021. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7022. {
  7023. front: {
  7024. height: math.unit(5 + 8 / 12, "feet"),
  7025. weight: math.unit(130, "lbs"),
  7026. name: "Front",
  7027. image: {
  7028. source: "./media/characters/corvin/front.svg",
  7029. extra: 1803 / 1629
  7030. }
  7031. },
  7032. frontShirt: {
  7033. height: math.unit(5 + 8 / 12, "feet"),
  7034. weight: math.unit(130, "lbs"),
  7035. name: "Front (Shirt)",
  7036. image: {
  7037. source: "./media/characters/corvin/front-shirt.svg",
  7038. extra: 1803 / 1629
  7039. }
  7040. },
  7041. frontPoncho: {
  7042. height: math.unit(5 + 8 / 12, "feet"),
  7043. weight: math.unit(130, "lbs"),
  7044. name: "Front (Poncho)",
  7045. image: {
  7046. source: "./media/characters/corvin/front-poncho.svg",
  7047. extra: 1803 / 1629
  7048. }
  7049. },
  7050. side: {
  7051. height: math.unit(5 + 8 / 12, "feet"),
  7052. weight: math.unit(130, "lbs"),
  7053. name: "Side",
  7054. image: {
  7055. source: "./media/characters/corvin/side.svg",
  7056. extra: 1012 / 945
  7057. }
  7058. },
  7059. back: {
  7060. height: math.unit(5 + 8 / 12, "feet"),
  7061. weight: math.unit(130, "lbs"),
  7062. name: "Back",
  7063. image: {
  7064. source: "./media/characters/corvin/back.svg",
  7065. extra: 1803 / 1629
  7066. }
  7067. },
  7068. },
  7069. [
  7070. {
  7071. name: "Micro",
  7072. height: math.unit(3, "inches")
  7073. },
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(5 + 8 / 12, "feet")
  7077. },
  7078. {
  7079. name: "Macro",
  7080. height: math.unit(300, "feet"),
  7081. default: true
  7082. },
  7083. {
  7084. name: "Megamacro",
  7085. height: math.unit(500, "miles")
  7086. }
  7087. ]
  7088. ))
  7089. characterMakers.push(() => makeCharacter(
  7090. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7091. {
  7092. front: {
  7093. height: math.unit(6, "feet"),
  7094. weight: math.unit(135, "lbs"),
  7095. name: "Front",
  7096. image: {
  7097. source: "./media/characters/q/front.svg",
  7098. extra: 854 / 752,
  7099. bottom: 0.005
  7100. }
  7101. },
  7102. back: {
  7103. height: math.unit(6, "feet"),
  7104. weight: math.unit(130, "lbs"),
  7105. name: "Back",
  7106. image: {
  7107. source: "./media/characters/q/back.svg",
  7108. extra: 854 / 752
  7109. }
  7110. },
  7111. },
  7112. [
  7113. {
  7114. name: "Macro",
  7115. height: math.unit(90, "feet"),
  7116. default: true
  7117. },
  7118. {
  7119. name: "Extra Macro",
  7120. height: math.unit(300, "feet"),
  7121. },
  7122. {
  7123. name: "BIG WALF",
  7124. height: math.unit(750, "feet"),
  7125. },
  7126. ]
  7127. ))
  7128. characterMakers.push(() => makeCharacter(
  7129. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7130. {
  7131. front: {
  7132. height: math.unit(6, "feet"),
  7133. weight: math.unit(150, "lbs"),
  7134. name: "Front",
  7135. image: {
  7136. source: "./media/characters/carley/front.svg",
  7137. extra: 3927 / 3540,
  7138. bottom: 0.03
  7139. }
  7140. }
  7141. },
  7142. [
  7143. {
  7144. name: "Normal",
  7145. height: math.unit(6 + 3 / 12, "feet")
  7146. },
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(185, "feet"),
  7150. default: true
  7151. },
  7152. {
  7153. name: "Megamacro",
  7154. height: math.unit(8, "miles"),
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(3, "feet"),
  7163. weight: math.unit(28, "lbs"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/citrine/front.svg"
  7167. }
  7168. }
  7169. },
  7170. [
  7171. {
  7172. name: "Normal",
  7173. height: math.unit(3, "feet"),
  7174. default: true
  7175. }
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7180. {
  7181. front: {
  7182. height: math.unit(14, "feet"),
  7183. weight: math.unit(1450, "kg"),
  7184. capacity: math.unit(15, "people"),
  7185. name: "Front",
  7186. image: {
  7187. source: "./media/characters/aura-starwind/front.svg",
  7188. extra: 1455 / 1335
  7189. }
  7190. },
  7191. side: {
  7192. height: math.unit(14, "feet"),
  7193. weight: math.unit(1450, "kg"),
  7194. capacity: math.unit(15, "people"),
  7195. name: "Side",
  7196. image: {
  7197. source: "./media/characters/aura-starwind/side.svg",
  7198. extra: 1654 / 1497
  7199. }
  7200. },
  7201. taur: {
  7202. height: math.unit(18, "feet"),
  7203. weight: math.unit(5500, "kg"),
  7204. capacity: math.unit(50, "people"),
  7205. name: "Taur",
  7206. image: {
  7207. source: "./media/characters/aura-starwind/taur.svg",
  7208. extra: 1760 / 1650
  7209. }
  7210. },
  7211. feral: {
  7212. height: math.unit(46, "feet"),
  7213. weight: math.unit(25000, "kg"),
  7214. capacity: math.unit(120, "people"),
  7215. name: "Feral",
  7216. image: {
  7217. source: "./media/characters/aura-starwind/feral.svg"
  7218. }
  7219. },
  7220. },
  7221. [
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(14, "feet"),
  7225. default: true
  7226. },
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(50, "meters")
  7230. },
  7231. {
  7232. name: "Megamacro",
  7233. height: math.unit(5000, "meters")
  7234. },
  7235. {
  7236. name: "Gigamacro",
  7237. height: math.unit(100000, "kilometers")
  7238. },
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7243. {
  7244. front: {
  7245. height: math.unit(2 + 7 / 12, "feet"),
  7246. weight: math.unit(32, "lbs"),
  7247. name: "Front",
  7248. image: {
  7249. source: "./media/characters/rivet/front.svg",
  7250. extra: 1716 / 1658,
  7251. bottom: 0.03
  7252. }
  7253. },
  7254. foot: {
  7255. height: math.unit(0.551, "feet"),
  7256. name: "Rivet's Foot",
  7257. image: {
  7258. source: "./media/characters/rivet/foot.svg"
  7259. },
  7260. rename: true
  7261. }
  7262. },
  7263. [
  7264. {
  7265. name: "Micro",
  7266. height: math.unit(1.5, "inches"),
  7267. },
  7268. {
  7269. name: "Normal",
  7270. height: math.unit(2 + 7 / 12, "feet"),
  7271. default: true
  7272. },
  7273. {
  7274. name: "Macro",
  7275. height: math.unit(85, "feet")
  7276. },
  7277. {
  7278. name: "Megamacro",
  7279. height: math.unit(2.2, "km")
  7280. }
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(5 + 9 / 12, "feet"),
  7288. weight: math.unit(150, "lbs"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/coffee/front.svg",
  7292. extra: 3666 / 3032,
  7293. bottom: 0.04
  7294. }
  7295. },
  7296. foot: {
  7297. height: math.unit(1.29, "feet"),
  7298. name: "Foot",
  7299. image: {
  7300. source: "./media/characters/coffee/foot.svg"
  7301. }
  7302. },
  7303. },
  7304. [
  7305. {
  7306. name: "Micro",
  7307. height: math.unit(2, "inches"),
  7308. },
  7309. {
  7310. name: "Normal",
  7311. height: math.unit(5 + 9 / 12, "feet"),
  7312. default: true
  7313. },
  7314. {
  7315. name: "Macro",
  7316. height: math.unit(800, "feet")
  7317. },
  7318. {
  7319. name: "Megamacro",
  7320. height: math.unit(25, "miles")
  7321. }
  7322. ]
  7323. ))
  7324. characterMakers.push(() => makeCharacter(
  7325. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7326. {
  7327. front: {
  7328. height: math.unit(6, "feet"),
  7329. weight: math.unit(200, "lbs"),
  7330. name: "Front",
  7331. image: {
  7332. source: "./media/characters/chari-gal/front.svg",
  7333. extra: 1568 / 1385,
  7334. bottom: 0.047
  7335. }
  7336. },
  7337. gigantamax: {
  7338. height: math.unit(6 * 16, "feet"),
  7339. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7340. name: "Gigantamax",
  7341. image: {
  7342. source: "./media/characters/chari-gal/gigantamax.svg",
  7343. extra: 1124 / 888,
  7344. bottom: 0.03
  7345. }
  7346. },
  7347. },
  7348. [
  7349. {
  7350. name: "Normal",
  7351. height: math.unit(5 + 7 / 12, "feet")
  7352. },
  7353. {
  7354. name: "Macro",
  7355. height: math.unit(200, "feet"),
  7356. default: true
  7357. }
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(150, "lbs"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/nova/front.svg",
  7369. extra: 5000 / 4722,
  7370. bottom: 0.02
  7371. }
  7372. }
  7373. },
  7374. [
  7375. {
  7376. name: "Micro-",
  7377. height: math.unit(0.8, "inches")
  7378. },
  7379. {
  7380. name: "Micro",
  7381. height: math.unit(2, "inches"),
  7382. default: true
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7388. {
  7389. front: {
  7390. height: math.unit(3 + 1 / 12, "feet"),
  7391. weight: math.unit(21.7, "lbs"),
  7392. name: "Front",
  7393. image: {
  7394. source: "./media/characters/argent/front.svg",
  7395. extra: 1471 / 1331,
  7396. bottom: 100.8 / 1575.5
  7397. }
  7398. }
  7399. },
  7400. [
  7401. {
  7402. name: "Micro",
  7403. height: math.unit(2, "inches")
  7404. },
  7405. {
  7406. name: "Normal",
  7407. height: math.unit(3 + 1 / 12, "feet"),
  7408. default: true
  7409. },
  7410. {
  7411. name: "Macro",
  7412. height: math.unit(120, "feet")
  7413. },
  7414. ]
  7415. ))
  7416. characterMakers.push(() => makeCharacter(
  7417. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7418. {
  7419. lamp: {
  7420. height: math.unit(7 * 1559 / 989, "feet"),
  7421. name: "Magic Lamp",
  7422. image: {
  7423. source: "./media/characters/mira-al-cul/lamp.svg",
  7424. extra: 1617 / 1559
  7425. }
  7426. },
  7427. front: {
  7428. height: math.unit(7, "feet"),
  7429. name: "Front",
  7430. image: {
  7431. source: "./media/characters/mira-al-cul/front.svg",
  7432. extra: 1044 / 990
  7433. }
  7434. },
  7435. },
  7436. [
  7437. {
  7438. name: "Heavily Restricted",
  7439. height: math.unit(7 * 1559 / 989, "feet")
  7440. },
  7441. {
  7442. name: "Freshly Freed",
  7443. height: math.unit(50 * 1559 / 989, "feet")
  7444. },
  7445. {
  7446. name: "World Encompassing",
  7447. height: math.unit(10000 * 1559 / 989, "miles")
  7448. },
  7449. {
  7450. name: "Galactic",
  7451. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7452. },
  7453. {
  7454. name: "Palmed Universe",
  7455. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7456. default: true
  7457. },
  7458. {
  7459. name: "Multiversal Matriarch",
  7460. height: math.unit(8.87e10, "yottameters")
  7461. },
  7462. {
  7463. name: "Void Mother",
  7464. height: math.unit(3.14e110, "yottaparsecs")
  7465. },
  7466. ]
  7467. ))
  7468. characterMakers.push(() => makeCharacter(
  7469. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7470. {
  7471. front: {
  7472. height: math.unit(17 + 1 / 12, "feet"),
  7473. weight: math.unit(476.2 * 5, "lbs"),
  7474. name: "Front",
  7475. image: {
  7476. source: "./media/characters/kuro-shi-uchū/front.svg",
  7477. extra: 2329 / 1835,
  7478. bottom: 0.02
  7479. }
  7480. },
  7481. },
  7482. [
  7483. {
  7484. name: "Micro",
  7485. height: math.unit(2, "inches")
  7486. },
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(12, "meters")
  7490. },
  7491. {
  7492. name: "Planetary",
  7493. height: math.unit(0.00929, "AU"),
  7494. default: true
  7495. },
  7496. {
  7497. name: "Universal",
  7498. height: math.unit(20, "gigaparsecs")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(5 + 2 / 12, "feet"),
  7507. weight: math.unit(120, "lbs"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/katherine/front.svg",
  7511. extra: 2075 / 1969
  7512. }
  7513. },
  7514. dress: {
  7515. height: math.unit(5 + 2 / 12, "feet"),
  7516. weight: math.unit(120, "lbs"),
  7517. name: "Dress",
  7518. image: {
  7519. source: "./media/characters/katherine/dress.svg",
  7520. extra: 2258 / 2064
  7521. }
  7522. },
  7523. },
  7524. [
  7525. {
  7526. name: "Micro",
  7527. height: math.unit(1, "inches"),
  7528. default: true
  7529. },
  7530. {
  7531. name: "Normal",
  7532. height: math.unit(5 + 2 / 12, "feet")
  7533. },
  7534. {
  7535. name: "Macro",
  7536. height: math.unit(100, "meters")
  7537. },
  7538. {
  7539. name: "Megamacro",
  7540. height: math.unit(80, "miles")
  7541. },
  7542. ]
  7543. ))
  7544. characterMakers.push(() => makeCharacter(
  7545. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7546. {
  7547. front: {
  7548. height: math.unit(7 + 8 / 12, "feet"),
  7549. weight: math.unit(250, "lbs"),
  7550. name: "Front",
  7551. image: {
  7552. source: "./media/characters/yevis/front.svg",
  7553. extra: 1938 / 1755
  7554. }
  7555. }
  7556. },
  7557. [
  7558. {
  7559. name: "Mortal",
  7560. height: math.unit(7 + 8 / 12, "feet")
  7561. },
  7562. {
  7563. name: "Battle",
  7564. height: math.unit(25 + 11 / 12, "feet")
  7565. },
  7566. {
  7567. name: "Wrath",
  7568. height: math.unit(1654 + 11 / 12, "feet")
  7569. },
  7570. {
  7571. name: "Planet Destroyer",
  7572. height: math.unit(12000, "miles")
  7573. },
  7574. {
  7575. name: "Galaxy Conqueror",
  7576. height: math.unit(1.45, "zettameters"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Universal War",
  7581. height: math.unit(184, "gigaparsecs")
  7582. },
  7583. {
  7584. name: "Eternity War",
  7585. height: math.unit(1.98e55, "yottaparsecs")
  7586. },
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7591. {
  7592. front: {
  7593. height: math.unit(5 + 8 / 12, "feet"),
  7594. weight: math.unit(63, "kg"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/xavier/front.svg",
  7598. extra: 944 / 883
  7599. }
  7600. },
  7601. frontStretch: {
  7602. height: math.unit(5 + 8 / 12, "feet"),
  7603. weight: math.unit(63, "kg"),
  7604. name: "Stretching",
  7605. image: {
  7606. source: "./media/characters/xavier/front-stretch.svg",
  7607. extra: 962 / 820
  7608. }
  7609. },
  7610. },
  7611. [
  7612. {
  7613. name: "Normal",
  7614. height: math.unit(5 + 8 / 12, "feet")
  7615. },
  7616. {
  7617. name: "Macro",
  7618. height: math.unit(100, "meters"),
  7619. default: true
  7620. },
  7621. {
  7622. name: "McLargeHuge",
  7623. height: math.unit(10, "miles")
  7624. },
  7625. ]
  7626. ))
  7627. characterMakers.push(() => makeCharacter(
  7628. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7629. {
  7630. front: {
  7631. height: math.unit(5 + 5 / 12, "feet"),
  7632. weight: math.unit(150, "lb"),
  7633. name: "Front",
  7634. image: {
  7635. source: "./media/characters/joshii/front.svg"
  7636. }
  7637. },
  7638. foot: {
  7639. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7640. name: "Foot",
  7641. image: {
  7642. source: "./media/characters/joshii/foot.svg"
  7643. }
  7644. },
  7645. },
  7646. [
  7647. {
  7648. name: "Micro",
  7649. height: math.unit(2, "inches")
  7650. },
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(5 + 5 / 12, "feet"),
  7654. default: true
  7655. },
  7656. {
  7657. name: "Macro",
  7658. height: math.unit(785, "feet")
  7659. },
  7660. {
  7661. name: "Megamacro",
  7662. height: math.unit(24.5, "miles")
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(150, "lb"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/goddess-elizabeth/front.svg",
  7675. extra: 1800 / 1525,
  7676. bottom: 0.005
  7677. }
  7678. },
  7679. foot: {
  7680. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7681. name: "Foot",
  7682. image: {
  7683. source: "./media/characters/goddess-elizabeth/foot.svg"
  7684. }
  7685. },
  7686. mouth: {
  7687. height: math.unit(6, "feet"),
  7688. name: "Mouth",
  7689. image: {
  7690. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Micro",
  7697. height: math.unit(12, "feet")
  7698. },
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(80, "miles"),
  7702. default: true
  7703. },
  7704. {
  7705. name: "Macro",
  7706. height: math.unit(15000, "parsecs")
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(5 + 9 / 12, "feet"),
  7715. weight: math.unit(144, "lb"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/kara/front.svg"
  7719. }
  7720. },
  7721. feet: {
  7722. height: math.unit(6 / 6.765, "feet"),
  7723. name: "Kara's Feet",
  7724. rename: true,
  7725. image: {
  7726. source: "./media/characters/kara/feet.svg"
  7727. }
  7728. },
  7729. },
  7730. [
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(5 + 9 / 12, "feet")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(174, "feet"),
  7738. default: true
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7744. {
  7745. front: {
  7746. height: math.unit(18, "feet"),
  7747. weight: math.unit(4050, "lb"),
  7748. name: "Front",
  7749. image: {
  7750. source: "./media/characters/tyrone/front.svg",
  7751. extra: 2520 / 2402,
  7752. bottom: 0.025
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(18, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(300, "feet")
  7765. },
  7766. ]
  7767. ))
  7768. characterMakers.push(() => makeCharacter(
  7769. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7770. {
  7771. front: {
  7772. height: math.unit(7 + 8 / 12, "feet"),
  7773. weight: math.unit(120, "lb"),
  7774. name: "Front",
  7775. image: {
  7776. source: "./media/characters/danny/front.svg",
  7777. extra: 1490 / 1350
  7778. }
  7779. },
  7780. back: {
  7781. height: math.unit(7 + 8 / 12, "feet"),
  7782. weight: math.unit(120, "lb"),
  7783. name: "Back",
  7784. image: {
  7785. source: "./media/characters/danny/back.svg",
  7786. extra: 1490 / 1350
  7787. }
  7788. },
  7789. },
  7790. [
  7791. {
  7792. name: "Normal",
  7793. height: math.unit(7 + 8 / 12, "feet"),
  7794. default: true
  7795. },
  7796. ]
  7797. ))
  7798. characterMakers.push(() => makeCharacter(
  7799. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7800. {
  7801. front: {
  7802. height: math.unit(3.5, "inches"),
  7803. weight: math.unit(19, "grams"),
  7804. name: "Front",
  7805. image: {
  7806. source: "./media/characters/mallow/front.svg",
  7807. extra: 471 / 431
  7808. }
  7809. },
  7810. back: {
  7811. height: math.unit(3.5, "inches"),
  7812. weight: math.unit(19, "grams"),
  7813. name: "Back",
  7814. image: {
  7815. source: "./media/characters/mallow/back.svg",
  7816. extra: 471 / 431
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(3.5, "inches"),
  7824. default: true
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(9, "feet"),
  7833. weight: math.unit(230, "kg"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/starry-aqua/front.svg"
  7837. }
  7838. },
  7839. back: {
  7840. height: math.unit(9, "feet"),
  7841. weight: math.unit(230, "kg"),
  7842. name: "Back",
  7843. image: {
  7844. source: "./media/characters/starry-aqua/back.svg"
  7845. }
  7846. },
  7847. hand: {
  7848. height: math.unit(9 * 0.1168, "feet"),
  7849. name: "Hand",
  7850. image: {
  7851. source: "./media/characters/starry-aqua/hand.svg"
  7852. }
  7853. },
  7854. foot: {
  7855. height: math.unit(9 * 0.18, "feet"),
  7856. name: "Foot",
  7857. image: {
  7858. source: "./media/characters/starry-aqua/foot.svg"
  7859. }
  7860. }
  7861. },
  7862. [
  7863. {
  7864. name: "Micro",
  7865. height: math.unit(3, "inches")
  7866. },
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(9, "feet")
  7870. },
  7871. {
  7872. name: "Macro",
  7873. height: math.unit(300, "feet"),
  7874. default: true
  7875. },
  7876. {
  7877. name: "Megamacro",
  7878. height: math.unit(3200, "feet")
  7879. }
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7884. {
  7885. front: {
  7886. height: math.unit(6, "feet"),
  7887. weight: math.unit(230, "lb"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/luka/front.svg",
  7891. extra: 1,
  7892. bottom: 0.025
  7893. }
  7894. },
  7895. },
  7896. [
  7897. {
  7898. name: "Normal",
  7899. height: math.unit(12 + 8 / 12, "feet"),
  7900. default: true
  7901. },
  7902. {
  7903. name: "Minimacro",
  7904. height: math.unit(20, "feet")
  7905. },
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(250, "feet")
  7909. },
  7910. {
  7911. name: "Megamacro",
  7912. height: math.unit(5, "miles")
  7913. },
  7914. {
  7915. name: "Gigamacro",
  7916. height: math.unit(8000, "miles")
  7917. },
  7918. ]
  7919. ))
  7920. characterMakers.push(() => makeCharacter(
  7921. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7922. {
  7923. front: {
  7924. height: math.unit(6, "feet"),
  7925. weight: math.unit(150, "lb"),
  7926. name: "Front",
  7927. image: {
  7928. source: "./media/characters/natalie-nightring/front.svg",
  7929. extra: 1,
  7930. bottom: 0.06
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Uh Oh",
  7937. height: math.unit(0.1, "mm")
  7938. },
  7939. {
  7940. name: "Small",
  7941. height: math.unit(3, "inches")
  7942. },
  7943. {
  7944. name: "Human Scale",
  7945. height: math.unit(6, "feet")
  7946. },
  7947. {
  7948. name: "Librarian",
  7949. height: math.unit(50, "feet"),
  7950. default: true
  7951. },
  7952. {
  7953. name: "Immense",
  7954. height: math.unit(200, "miles")
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(6, "feet"),
  7963. weight: math.unit(180, "lbs"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/danni-rosie/front.svg",
  7967. extra: 1260 / 1128,
  7968. bottom: 0.022
  7969. }
  7970. },
  7971. },
  7972. [
  7973. {
  7974. name: "Micro",
  7975. height: math.unit(2, "inches"),
  7976. default: true
  7977. },
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7982. {
  7983. front: {
  7984. height: math.unit(5 + 9 / 12, "feet"),
  7985. weight: math.unit(220, "lb"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/samantha-kruse/front.svg",
  7989. extra: (985 / 935),
  7990. bottom: 0.03
  7991. }
  7992. },
  7993. frontUndressed: {
  7994. height: math.unit(5 + 9 / 12, "feet"),
  7995. weight: math.unit(220, "lb"),
  7996. name: "Front (Undressed)",
  7997. image: {
  7998. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7999. extra: (973 / 923),
  8000. bottom: 0.025
  8001. }
  8002. },
  8003. fat: {
  8004. height: math.unit(5 + 9 / 12, "feet"),
  8005. weight: math.unit(900, "lb"),
  8006. name: "Front (Fat)",
  8007. image: {
  8008. source: "./media/characters/samantha-kruse/fat.svg",
  8009. extra: 2688 / 2561
  8010. }
  8011. },
  8012. },
  8013. [
  8014. {
  8015. name: "Normal",
  8016. height: math.unit(5 + 9 / 12, "feet"),
  8017. default: true
  8018. }
  8019. ]
  8020. ))
  8021. characterMakers.push(() => makeCharacter(
  8022. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8023. {
  8024. back: {
  8025. height: math.unit(5 + 4 / 12, "feet"),
  8026. weight: math.unit(4963, "lb"),
  8027. name: "Back",
  8028. image: {
  8029. source: "./media/characters/amelia-rosie/back.svg",
  8030. extra: 1113 / 963,
  8031. bottom: 0.01
  8032. }
  8033. },
  8034. },
  8035. [
  8036. {
  8037. name: "Level 0",
  8038. height: math.unit(5 + 4 / 12, "feet")
  8039. },
  8040. {
  8041. name: "Level 1",
  8042. height: math.unit(164597, "feet"),
  8043. default: true
  8044. },
  8045. {
  8046. name: "Level 2",
  8047. height: math.unit(956243, "miles")
  8048. },
  8049. {
  8050. name: "Level 3",
  8051. height: math.unit(29421709423, "miles")
  8052. },
  8053. {
  8054. name: "Level 4",
  8055. height: math.unit(154, "lightyears")
  8056. },
  8057. {
  8058. name: "Level 5",
  8059. height: math.unit(4738272, "lightyears")
  8060. },
  8061. {
  8062. name: "Level 6",
  8063. height: math.unit(145787152896, "lightyears")
  8064. },
  8065. ]
  8066. ))
  8067. characterMakers.push(() => makeCharacter(
  8068. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8069. {
  8070. front: {
  8071. height: math.unit(5 + 11 / 12, "feet"),
  8072. weight: math.unit(65, "kg"),
  8073. name: "Front",
  8074. image: {
  8075. source: "./media/characters/rook-kitara/front.svg",
  8076. extra: 1347 / 1274,
  8077. bottom: 0.005
  8078. }
  8079. },
  8080. },
  8081. [
  8082. {
  8083. name: "Totally Unfair",
  8084. height: math.unit(1.8, "mm")
  8085. },
  8086. {
  8087. name: "Lap Rookie",
  8088. height: math.unit(1.4, "feet")
  8089. },
  8090. {
  8091. name: "Normal",
  8092. height: math.unit(5 + 11 / 12, "feet"),
  8093. default: true
  8094. },
  8095. {
  8096. name: "How Did This Happen",
  8097. height: math.unit(80, "miles")
  8098. }
  8099. ]
  8100. ))
  8101. characterMakers.push(() => makeCharacter(
  8102. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8103. {
  8104. front: {
  8105. height: math.unit(7, "feet"),
  8106. weight: math.unit(300, "lb"),
  8107. name: "Front",
  8108. image: {
  8109. source: "./media/characters/pisces/front.svg",
  8110. extra: 2255 / 2115,
  8111. bottom: 0.03
  8112. }
  8113. },
  8114. back: {
  8115. height: math.unit(7, "feet"),
  8116. weight: math.unit(300, "lb"),
  8117. name: "Back",
  8118. image: {
  8119. source: "./media/characters/pisces/back.svg",
  8120. extra: 2146 / 2055,
  8121. bottom: 0.04
  8122. }
  8123. },
  8124. },
  8125. [
  8126. {
  8127. name: "Normal",
  8128. height: math.unit(7, "feet"),
  8129. default: true
  8130. },
  8131. {
  8132. name: "Swimming Pool",
  8133. height: math.unit(12.2, "meters")
  8134. },
  8135. {
  8136. name: "Olympic Swimming Pool",
  8137. height: math.unit(56.3, "meters")
  8138. },
  8139. {
  8140. name: "Lake Superior",
  8141. height: math.unit(93900, "meters")
  8142. },
  8143. {
  8144. name: "Mediterranean Sea",
  8145. height: math.unit(644457, "meters")
  8146. },
  8147. {
  8148. name: "World's Oceans",
  8149. height: math.unit(4567491, "meters")
  8150. },
  8151. ]
  8152. ))
  8153. characterMakers.push(() => makeCharacter(
  8154. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8155. {
  8156. front: {
  8157. height: math.unit(2.3, "meters"),
  8158. weight: math.unit(120, "kg"),
  8159. name: "Front",
  8160. image: {
  8161. source: "./media/characters/zelas/front.svg"
  8162. }
  8163. },
  8164. side: {
  8165. height: math.unit(2.3, "meters"),
  8166. weight: math.unit(120, "kg"),
  8167. name: "Side",
  8168. image: {
  8169. source: "./media/characters/zelas/side.svg"
  8170. }
  8171. },
  8172. back: {
  8173. height: math.unit(2.3, "meters"),
  8174. weight: math.unit(120, "kg"),
  8175. name: "Back",
  8176. image: {
  8177. source: "./media/characters/zelas/back.svg"
  8178. }
  8179. },
  8180. foot: {
  8181. height: math.unit(1.116, "feet"),
  8182. name: "Foot",
  8183. image: {
  8184. source: "./media/characters/zelas/foot.svg"
  8185. }
  8186. },
  8187. },
  8188. [
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(2.3, "meters")
  8192. },
  8193. {
  8194. name: "Macro",
  8195. height: math.unit(30, "meters"),
  8196. default: true
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(1, "inch"),
  8205. weight: math.unit(0.21, "grams"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/talbot/front.svg",
  8209. extra: 594 / 544
  8210. }
  8211. },
  8212. },
  8213. [
  8214. {
  8215. name: "Micro",
  8216. height: math.unit(1, "inch"),
  8217. default: true
  8218. },
  8219. ]
  8220. ))
  8221. characterMakers.push(() => makeCharacter(
  8222. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8223. {
  8224. front: {
  8225. height: math.unit(3 + 3 / 12, "feet"),
  8226. weight: math.unit(51.8, "lb"),
  8227. name: "Front",
  8228. image: {
  8229. source: "./media/characters/fliss/front.svg",
  8230. extra: 840 / 640
  8231. }
  8232. },
  8233. },
  8234. [
  8235. {
  8236. name: "Teeny Tiny",
  8237. height: math.unit(1, "mm")
  8238. },
  8239. {
  8240. name: "Small",
  8241. height: math.unit(1, "inch"),
  8242. default: true
  8243. },
  8244. {
  8245. name: "Standard Sylveon",
  8246. height: math.unit(3 + 3 / 12, "feet")
  8247. },
  8248. {
  8249. name: "Large Nuisance",
  8250. height: math.unit(33, "feet")
  8251. },
  8252. {
  8253. name: "City Filler",
  8254. height: math.unit(3000, "feet")
  8255. },
  8256. {
  8257. name: "New Horizon",
  8258. height: math.unit(6000, "miles")
  8259. },
  8260. ]
  8261. ))
  8262. characterMakers.push(() => makeCharacter(
  8263. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8264. {
  8265. front: {
  8266. height: math.unit(5, "cm"),
  8267. weight: math.unit(1.94, "g"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/fleta/front.svg",
  8271. extra: 835 / 803
  8272. }
  8273. },
  8274. back: {
  8275. height: math.unit(5, "cm"),
  8276. weight: math.unit(1.94, "g"),
  8277. name: "Back",
  8278. image: {
  8279. source: "./media/characters/fleta/back.svg",
  8280. extra: 835 / 803
  8281. }
  8282. },
  8283. },
  8284. [
  8285. {
  8286. name: "Micro",
  8287. height: math.unit(5, "cm"),
  8288. default: true
  8289. },
  8290. ]
  8291. ))
  8292. characterMakers.push(() => makeCharacter(
  8293. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8294. {
  8295. front: {
  8296. height: math.unit(6, "feet"),
  8297. weight: math.unit(225, "lb"),
  8298. name: "Front",
  8299. image: {
  8300. source: "./media/characters/dominic/front.svg",
  8301. extra: 1770 / 1620,
  8302. bottom: 0.025
  8303. }
  8304. },
  8305. back: {
  8306. height: math.unit(6, "feet"),
  8307. weight: math.unit(225, "lb"),
  8308. name: "Back",
  8309. image: {
  8310. source: "./media/characters/dominic/back.svg",
  8311. extra: 1745 / 1620,
  8312. bottom: 0.065
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Nano",
  8319. height: math.unit(0.1, "mm")
  8320. },
  8321. {
  8322. name: "Micro-",
  8323. height: math.unit(1, "mm")
  8324. },
  8325. {
  8326. name: "Micro",
  8327. height: math.unit(4, "inches")
  8328. },
  8329. {
  8330. name: "Normal",
  8331. height: math.unit(6 + 4 / 12, "feet"),
  8332. default: true
  8333. },
  8334. {
  8335. name: "Macro",
  8336. height: math.unit(115, "feet")
  8337. },
  8338. {
  8339. name: "Macro+",
  8340. height: math.unit(955, "feet")
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(8990, "feet")
  8345. },
  8346. {
  8347. name: "Gigmacro",
  8348. height: math.unit(9310, "miles")
  8349. },
  8350. {
  8351. name: "Teramacro",
  8352. height: math.unit(1567005010, "miles")
  8353. },
  8354. {
  8355. name: "Examacro",
  8356. height: math.unit(1425, "parsecs")
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(400, "feet"),
  8365. weight: math.unit(44444444, "lb"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/major-colonel/front.svg"
  8369. }
  8370. },
  8371. back: {
  8372. height: math.unit(400, "feet"),
  8373. weight: math.unit(44444444, "lb"),
  8374. name: "Back",
  8375. image: {
  8376. source: "./media/characters/major-colonel/back.svg"
  8377. }
  8378. },
  8379. },
  8380. [
  8381. {
  8382. name: "Macro",
  8383. height: math.unit(400, "feet"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8390. {
  8391. catFront: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(120, "lb"),
  8394. name: "Front (Cat Side)",
  8395. image: {
  8396. source: "./media/characters/axel-lycan/cat-front.svg",
  8397. extra: 430 / 402,
  8398. bottom: 43 / 472.35
  8399. }
  8400. },
  8401. catBack: {
  8402. height: math.unit(6, "feet"),
  8403. weight: math.unit(120, "lb"),
  8404. name: "Back (Cat Side)",
  8405. image: {
  8406. source: "./media/characters/axel-lycan/cat-back.svg",
  8407. extra: 447 / 419,
  8408. bottom: 23.3 / 469
  8409. }
  8410. },
  8411. wolfFront: {
  8412. height: math.unit(6, "feet"),
  8413. weight: math.unit(120, "lb"),
  8414. name: "Front (Wolf Side)",
  8415. image: {
  8416. source: "./media/characters/axel-lycan/wolf-front.svg",
  8417. extra: 485 / 456,
  8418. bottom: 19 / 504
  8419. }
  8420. },
  8421. wolfBack: {
  8422. height: math.unit(6, "feet"),
  8423. weight: math.unit(120, "lb"),
  8424. name: "Back (Wolf Side)",
  8425. image: {
  8426. source: "./media/characters/axel-lycan/wolf-back.svg",
  8427. extra: 475 / 438,
  8428. bottom: 39.2 / 514
  8429. }
  8430. },
  8431. },
  8432. [
  8433. {
  8434. name: "Macro",
  8435. height: math.unit(1, "km"),
  8436. default: true
  8437. },
  8438. ]
  8439. ))
  8440. characterMakers.push(() => makeCharacter(
  8441. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8442. {
  8443. front: {
  8444. height: math.unit(5 + 9 / 12, "feet"),
  8445. weight: math.unit(175, "lb"),
  8446. name: "Front",
  8447. image: {
  8448. source: "./media/characters/vanrel-hyena/front.svg",
  8449. extra: 1086 / 1010,
  8450. bottom: 0.04
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(5 + 9 / 12, "feet"),
  8458. default: true
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(6, "feet"),
  8467. weight: math.unit(103, "lb"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/abbott-absol/front.svg",
  8471. extra: 2010 / 1842
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Megamicro",
  8478. height: math.unit(0.1, "mm")
  8479. },
  8480. {
  8481. name: "Micro",
  8482. height: math.unit(1, "inch")
  8483. },
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(6, "feet"),
  8487. default: true
  8488. },
  8489. ]
  8490. ))
  8491. characterMakers.push(() => makeCharacter(
  8492. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8493. {
  8494. front: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(264, "lb"),
  8497. name: "Front",
  8498. image: {
  8499. source: "./media/characters/hector/front.svg",
  8500. extra: 2280 / 2130,
  8501. bottom: 0.07
  8502. }
  8503. },
  8504. },
  8505. [
  8506. {
  8507. name: "Normal",
  8508. height: math.unit(12.25, "foot"),
  8509. default: true
  8510. },
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(160, "feet")
  8514. },
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(6, "feet"),
  8522. weight: math.unit(150, "lb"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/sal/front.svg",
  8526. extra: 1846 / 1699,
  8527. bottom: 0.04
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Megamacro",
  8534. height: math.unit(10, "miles"),
  8535. default: true
  8536. },
  8537. ]
  8538. ))
  8539. characterMakers.push(() => makeCharacter(
  8540. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8541. {
  8542. front: {
  8543. height: math.unit(3, "meters"),
  8544. weight: math.unit(450, "kg"),
  8545. name: "front",
  8546. image: {
  8547. source: "./media/characters/ranger/front.svg",
  8548. extra: 2401 / 2243,
  8549. bottom: 0.05
  8550. }
  8551. },
  8552. },
  8553. [
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(3, "meters"),
  8557. default: true
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(14, "feet"),
  8566. weight: math.unit(800, "kg"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/theresa/front.svg",
  8570. extra: 3575 / 3346,
  8571. bottom: 0.03
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(14, "feet"),
  8579. default: true
  8580. },
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8585. {
  8586. front: {
  8587. height: math.unit(6, "feet"),
  8588. weight: math.unit(3, "kg"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/ine/front.svg",
  8592. extra: 678 / 539,
  8593. bottom: 0.023
  8594. }
  8595. },
  8596. },
  8597. [
  8598. {
  8599. name: "Normal",
  8600. height: math.unit(2.265, "feet"),
  8601. default: true
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(5, "feet"),
  8610. weight: math.unit(30, "kg"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/vial/front.svg",
  8614. extra: 1365 / 1277,
  8615. bottom: 0.04
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(5, "feet"),
  8623. default: true
  8624. },
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8629. {
  8630. side: {
  8631. height: math.unit(3.4, "meters"),
  8632. weight: math.unit(1000, "lb"),
  8633. name: "Side",
  8634. image: {
  8635. source: "./media/characters/rovoska/side.svg",
  8636. extra: 4403 / 1515
  8637. }
  8638. },
  8639. },
  8640. [
  8641. {
  8642. name: "Normal",
  8643. height: math.unit(3.4, "meters"),
  8644. default: true
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8650. {
  8651. front: {
  8652. height: math.unit(8, "feet"),
  8653. weight: math.unit(315, "lb"),
  8654. name: "Front",
  8655. image: {
  8656. source: "./media/characters/gunner-rotthbauer/front.svg"
  8657. }
  8658. },
  8659. back: {
  8660. height: math.unit(8, "feet"),
  8661. weight: math.unit(315, "lb"),
  8662. name: "Back",
  8663. image: {
  8664. source: "./media/characters/gunner-rotthbauer/back.svg"
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Micro",
  8671. height: math.unit(3.5, "inches")
  8672. },
  8673. {
  8674. name: "Normal",
  8675. height: math.unit(8, "feet"),
  8676. default: true
  8677. },
  8678. {
  8679. name: "Macro",
  8680. height: math.unit(250, "feet")
  8681. },
  8682. {
  8683. name: "Megamacro",
  8684. height: math.unit(1, "AU")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(5 + 5 / 12, "feet"),
  8693. weight: math.unit(140, "lb"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/allatia/front.svg",
  8697. extra: 1227 / 1180,
  8698. bottom: 0.027
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Normal",
  8705. height: math.unit(5 + 5 / 12, "feet")
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(250, "feet"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Megamacro",
  8714. height: math.unit(8, "miles")
  8715. }
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(6, "feet"),
  8723. weight: math.unit(120, "lb"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/tene/front.svg",
  8727. extra: 1728 / 1578,
  8728. bottom: 0.022
  8729. }
  8730. },
  8731. stomping: {
  8732. height: math.unit(2.025, "meters"),
  8733. weight: math.unit(120, "lb"),
  8734. name: "Stomping",
  8735. image: {
  8736. source: "./media/characters/tene/stomping.svg",
  8737. extra: 938 / 873,
  8738. bottom: 0.01
  8739. }
  8740. },
  8741. sitting: {
  8742. height: math.unit(1, "meter"),
  8743. weight: math.unit(120, "lb"),
  8744. name: "Sitting",
  8745. image: {
  8746. source: "./media/characters/tene/sitting.svg",
  8747. extra: 437 / 415,
  8748. bottom: 0.1
  8749. }
  8750. },
  8751. feral: {
  8752. height: math.unit(3.9, "feet"),
  8753. weight: math.unit(250, "lb"),
  8754. name: "Feral",
  8755. image: {
  8756. source: "./media/characters/tene/feral.svg",
  8757. extra: 717 / 458,
  8758. bottom: 0.179
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Normal",
  8765. height: math.unit(6, "feet")
  8766. },
  8767. {
  8768. name: "Macro",
  8769. height: math.unit(300, "feet"),
  8770. default: true
  8771. },
  8772. {
  8773. name: "Megamacro",
  8774. height: math.unit(5, "miles")
  8775. },
  8776. ]
  8777. ))
  8778. characterMakers.push(() => makeCharacter(
  8779. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8780. {
  8781. side: {
  8782. height: math.unit(6, "feet"),
  8783. name: "Side",
  8784. image: {
  8785. source: "./media/characters/evander/side.svg",
  8786. extra: 877 / 477
  8787. }
  8788. },
  8789. },
  8790. [
  8791. {
  8792. name: "Normal",
  8793. height: math.unit(0.83, "meters"),
  8794. default: true
  8795. },
  8796. ]
  8797. ))
  8798. characterMakers.push(() => makeCharacter(
  8799. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8800. {
  8801. front: {
  8802. height: math.unit(12, "feet"),
  8803. weight: math.unit(1000, "lb"),
  8804. name: "Front",
  8805. image: {
  8806. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8807. extra: 1762 / 1611
  8808. }
  8809. },
  8810. back: {
  8811. height: math.unit(12, "feet"),
  8812. weight: math.unit(1000, "lb"),
  8813. name: "Back",
  8814. image: {
  8815. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8816. extra: 1762 / 1611
  8817. }
  8818. },
  8819. },
  8820. [
  8821. {
  8822. name: "Normal",
  8823. height: math.unit(12, "feet"),
  8824. default: true
  8825. },
  8826. {
  8827. name: "Kaiju",
  8828. height: math.unit(150, "feet")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(150, "lb"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/zero-alurus/front.svg"
  8841. }
  8842. },
  8843. back: {
  8844. height: math.unit(6, "feet"),
  8845. weight: math.unit(150, "lb"),
  8846. name: "Back",
  8847. image: {
  8848. source: "./media/characters/zero-alurus/back.svg"
  8849. }
  8850. },
  8851. },
  8852. [
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(5 + 10 / 12, "feet")
  8856. },
  8857. {
  8858. name: "Macro",
  8859. height: math.unit(60, "feet"),
  8860. default: true
  8861. },
  8862. {
  8863. name: "Macro+",
  8864. height: math.unit(450, "feet")
  8865. },
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(6, "feet"),
  8873. weight: math.unit(200, "lb"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/mega-shi/front.svg",
  8877. extra: 1279 / 1250,
  8878. bottom: 0.02
  8879. }
  8880. },
  8881. back: {
  8882. height: math.unit(6, "feet"),
  8883. weight: math.unit(200, "lb"),
  8884. name: "Back",
  8885. image: {
  8886. source: "./media/characters/mega-shi/back.svg",
  8887. extra: 1279 / 1250,
  8888. bottom: 0.02
  8889. }
  8890. },
  8891. },
  8892. [
  8893. {
  8894. name: "Micro",
  8895. height: math.unit(16 + 6 / 12, "feet")
  8896. },
  8897. {
  8898. name: "Third Dimension",
  8899. height: math.unit(40, "meters")
  8900. },
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(660, "feet"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Megamacro",
  8908. height: math.unit(10, "miles")
  8909. },
  8910. {
  8911. name: "Planetary Launch",
  8912. height: math.unit(500, "miles")
  8913. },
  8914. {
  8915. name: "Interstellar",
  8916. height: math.unit(1e9, "miles")
  8917. },
  8918. {
  8919. name: "Leaving the Universe",
  8920. height: math.unit(1, "gigaparsec")
  8921. },
  8922. {
  8923. name: "Travelling Universes",
  8924. height: math.unit(30e15, "parsecs")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8930. {
  8931. front: {
  8932. height: math.unit(6, "feet"),
  8933. weight: math.unit(150, "lb"),
  8934. name: "Front",
  8935. image: {
  8936. source: "./media/characters/odyssey/front.svg",
  8937. extra: 1782 / 1582,
  8938. bottom: 0.01
  8939. }
  8940. },
  8941. side: {
  8942. height: math.unit(5.7, "feet"),
  8943. weight: math.unit(140, "lb"),
  8944. name: "Side",
  8945. image: {
  8946. source: "./media/characters/odyssey/side.svg",
  8947. extra: 6462 / 5700
  8948. }
  8949. },
  8950. },
  8951. [
  8952. {
  8953. name: "Normal",
  8954. height: math.unit(5 + 4 / 12, "feet")
  8955. },
  8956. {
  8957. name: "Macro",
  8958. height: math.unit(1, "km")
  8959. },
  8960. {
  8961. name: "Megamacro",
  8962. height: math.unit(3000, "km")
  8963. },
  8964. {
  8965. name: "Gigamacro",
  8966. height: math.unit(1, "AU"),
  8967. default: true
  8968. },
  8969. {
  8970. name: "Omniversal",
  8971. height: math.unit(100e14, "lightyears")
  8972. },
  8973. ]
  8974. ))
  8975. characterMakers.push(() => makeCharacter(
  8976. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8977. {
  8978. front: {
  8979. height: math.unit(6, "feet"),
  8980. weight: math.unit(300, "lb"),
  8981. name: "Front",
  8982. image: {
  8983. source: "./media/characters/mekuto/front.svg",
  8984. extra: 921 / 832,
  8985. bottom: 0.03
  8986. }
  8987. },
  8988. hand: {
  8989. height: math.unit(6 / 10.24, "feet"),
  8990. name: "Hand",
  8991. image: {
  8992. source: "./media/characters/mekuto/hand.svg"
  8993. }
  8994. },
  8995. foot: {
  8996. height: math.unit(6 / 5.05, "feet"),
  8997. name: "Foot",
  8998. image: {
  8999. source: "./media/characters/mekuto/foot.svg"
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Minimicro",
  9006. height: math.unit(0.2, "inches")
  9007. },
  9008. {
  9009. name: "Micro",
  9010. height: math.unit(1.5, "inches")
  9011. },
  9012. {
  9013. name: "Normal",
  9014. height: math.unit(5 + 11 / 12, "feet"),
  9015. default: true
  9016. },
  9017. {
  9018. name: "Minimacro",
  9019. height: math.unit(17 + 9 / 12, "feet")
  9020. },
  9021. {
  9022. name: "Macro",
  9023. height: math.unit(177.5, "feet")
  9024. },
  9025. {
  9026. name: "Megamacro",
  9027. height: math.unit(152, "miles")
  9028. },
  9029. ]
  9030. ))
  9031. characterMakers.push(() => makeCharacter(
  9032. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9033. {
  9034. front: {
  9035. height: math.unit(6.5, "inches"),
  9036. weight: math.unit(13, "oz"),
  9037. name: "Front",
  9038. image: {
  9039. source: "./media/characters/dafydd-tomos/front.svg",
  9040. extra: 2990 / 2603,
  9041. bottom: 0.03
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Micro",
  9048. height: math.unit(6.5, "inches"),
  9049. default: true
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(6, "feet"),
  9058. weight: math.unit(150, "lb"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/splinter/front.svg",
  9062. extra: 2990 / 2882,
  9063. bottom: 0.04
  9064. }
  9065. },
  9066. back: {
  9067. height: math.unit(6, "feet"),
  9068. weight: math.unit(150, "lb"),
  9069. name: "Back",
  9070. image: {
  9071. source: "./media/characters/splinter/back.svg",
  9072. extra: 2990 / 2882,
  9073. bottom: 0.04
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(6, "feet")
  9081. },
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(230, "meters"),
  9085. default: true
  9086. },
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9091. {
  9092. front: {
  9093. height: math.unit(4 + 10 / 12, "feet"),
  9094. weight: math.unit(480, "lb"),
  9095. name: "Front",
  9096. image: {
  9097. source: "./media/characters/snow-gabumon/front.svg",
  9098. extra: 1140 / 963,
  9099. bottom: 0.058
  9100. }
  9101. },
  9102. back: {
  9103. height: math.unit(4 + 10 / 12, "feet"),
  9104. weight: math.unit(480, "lb"),
  9105. name: "Back",
  9106. image: {
  9107. source: "./media/characters/snow-gabumon/back.svg",
  9108. extra: 1115 / 962,
  9109. bottom: 0.041
  9110. }
  9111. },
  9112. frontUndresed: {
  9113. height: math.unit(4 + 10 / 12, "feet"),
  9114. weight: math.unit(480, "lb"),
  9115. name: "Front (Undressed)",
  9116. image: {
  9117. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9118. extra: 1061 / 960,
  9119. bottom: 0.045
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Micro",
  9126. height: math.unit(1, "inch")
  9127. },
  9128. {
  9129. name: "Normal",
  9130. height: math.unit(4 + 10 / 12, "feet"),
  9131. default: true
  9132. },
  9133. {
  9134. name: "Macro",
  9135. height: math.unit(200, "feet")
  9136. },
  9137. {
  9138. name: "Megamacro",
  9139. height: math.unit(120, "miles")
  9140. },
  9141. {
  9142. name: "Gigamacro",
  9143. height: math.unit(9800, "miles")
  9144. },
  9145. ]
  9146. ))
  9147. characterMakers.push(() => makeCharacter(
  9148. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9149. {
  9150. front: {
  9151. height: math.unit(1.7, "meters"),
  9152. weight: math.unit(140, "lb"),
  9153. name: "Front",
  9154. image: {
  9155. source: "./media/characters/moody/front.svg",
  9156. extra: 3226 / 3007,
  9157. bottom: 0.087
  9158. }
  9159. },
  9160. },
  9161. [
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(1, "mm")
  9165. },
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(1.7, "meters"),
  9169. default: true
  9170. },
  9171. {
  9172. name: "Macro",
  9173. height: math.unit(80, "meters")
  9174. },
  9175. {
  9176. name: "Macro+",
  9177. height: math.unit(500, "meters")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9183. {
  9184. front: {
  9185. height: math.unit(6, "feet"),
  9186. weight: math.unit(150, "lb"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/zyas/front.svg",
  9190. extra: 1180 / 1120,
  9191. bottom: 0.045
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(10, "feet"),
  9199. default: true
  9200. },
  9201. {
  9202. name: "Macro",
  9203. height: math.unit(500, "feet")
  9204. },
  9205. {
  9206. name: "Megamacro",
  9207. height: math.unit(5, "miles")
  9208. },
  9209. {
  9210. name: "Teramacro",
  9211. height: math.unit(150000, "miles")
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(150, "lb"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/cuon/front.svg",
  9224. extra: 1390 / 1320,
  9225. bottom: 0.008
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Micro",
  9232. height: math.unit(3, "inches")
  9233. },
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(18 + 9 / 12, "feet"),
  9237. default: true
  9238. },
  9239. {
  9240. name: "Macro",
  9241. height: math.unit(360, "feet")
  9242. },
  9243. {
  9244. name: "Megamacro",
  9245. height: math.unit(360, "miles")
  9246. },
  9247. ]
  9248. ))
  9249. characterMakers.push(() => makeCharacter(
  9250. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9251. {
  9252. front: {
  9253. height: math.unit(2.4, "meters"),
  9254. weight: math.unit(70, "kg"),
  9255. name: "Front",
  9256. image: {
  9257. source: "./media/characters/nyanuxk/front.svg",
  9258. extra: 1172 / 1084,
  9259. bottom: 0.065
  9260. }
  9261. },
  9262. side: {
  9263. height: math.unit(2.4, "meters"),
  9264. weight: math.unit(70, "kg"),
  9265. name: "Side",
  9266. image: {
  9267. source: "./media/characters/nyanuxk/side.svg",
  9268. extra: 1190 / 1132,
  9269. bottom: 0.007
  9270. }
  9271. },
  9272. back: {
  9273. height: math.unit(2.4, "meters"),
  9274. weight: math.unit(70, "kg"),
  9275. name: "Back",
  9276. image: {
  9277. source: "./media/characters/nyanuxk/back.svg",
  9278. extra: 1200 / 1141,
  9279. bottom: 0.015
  9280. }
  9281. },
  9282. foot: {
  9283. height: math.unit(0.52, "meters"),
  9284. name: "Foot",
  9285. image: {
  9286. source: "./media/characters/nyanuxk/foot.svg"
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Micro",
  9293. height: math.unit(2, "cm")
  9294. },
  9295. {
  9296. name: "Normal",
  9297. height: math.unit(2.4, "meters"),
  9298. default: true
  9299. },
  9300. {
  9301. name: "Smaller Macro",
  9302. height: math.unit(120, "meters")
  9303. },
  9304. {
  9305. name: "Bigger Macro",
  9306. height: math.unit(1.2, "km")
  9307. },
  9308. {
  9309. name: "Megamacro",
  9310. height: math.unit(15, "kilometers")
  9311. },
  9312. {
  9313. name: "Gigamacro",
  9314. height: math.unit(2000, "km")
  9315. },
  9316. {
  9317. name: "Teramacro",
  9318. height: math.unit(500000, "km")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9324. {
  9325. side: {
  9326. height: math.unit(6, "feet"),
  9327. name: "Side",
  9328. image: {
  9329. source: "./media/characters/ailbhe/side.svg",
  9330. extra: 757 / 464,
  9331. bottom: 0.041
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Normal",
  9338. height: math.unit(1.07, "meters"),
  9339. default: true
  9340. },
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(6, "feet"),
  9348. weight: math.unit(120, "kg"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/zevulfius/front.svg",
  9352. extra: 965 / 903
  9353. }
  9354. },
  9355. side: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(120, "kg"),
  9358. name: "Side",
  9359. image: {
  9360. source: "./media/characters/zevulfius/side.svg",
  9361. extra: 939 / 900
  9362. }
  9363. },
  9364. back: {
  9365. height: math.unit(6, "feet"),
  9366. weight: math.unit(120, "kg"),
  9367. name: "Back",
  9368. image: {
  9369. source: "./media/characters/zevulfius/back.svg",
  9370. extra: 918 / 854,
  9371. bottom: 0.005
  9372. }
  9373. },
  9374. foot: {
  9375. height: math.unit(6 / 3.72, "feet"),
  9376. name: "Foot",
  9377. image: {
  9378. source: "./media/characters/zevulfius/foot.svg"
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Macro",
  9385. height: math.unit(750, "meters")
  9386. },
  9387. {
  9388. name: "Megamacro",
  9389. height: math.unit(20, "km"),
  9390. default: true
  9391. },
  9392. {
  9393. name: "Gigamacro",
  9394. height: math.unit(2000, "km")
  9395. },
  9396. {
  9397. name: "Teramacro",
  9398. height: math.unit(250000, "km")
  9399. },
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9404. {
  9405. front: {
  9406. height: math.unit(100, "feet"),
  9407. weight: math.unit(350, "kg"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/rikes/front.svg",
  9411. extra: 1565 / 1483,
  9412. bottom: 0.017
  9413. }
  9414. },
  9415. },
  9416. [
  9417. {
  9418. name: "Macro",
  9419. height: math.unit(100, "feet"),
  9420. default: true
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9426. {
  9427. anthro: {
  9428. height: math.unit(8, "feet"),
  9429. weight: math.unit(120, "kg"),
  9430. name: "Anthro",
  9431. image: {
  9432. source: "./media/characters/adam-silver-mane/anthro.svg",
  9433. extra: 5743 / 5339,
  9434. bottom: 0.07
  9435. }
  9436. },
  9437. taur: {
  9438. height: math.unit(16, "feet"),
  9439. weight: math.unit(1500, "kg"),
  9440. name: "Taur",
  9441. image: {
  9442. source: "./media/characters/adam-silver-mane/taur.svg",
  9443. extra: 1713 / 1571,
  9444. bottom: 0.01
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Normal",
  9451. height: math.unit(8, "feet")
  9452. },
  9453. {
  9454. name: "Minimacro",
  9455. height: math.unit(80, "feet")
  9456. },
  9457. {
  9458. name: "Macro",
  9459. height: math.unit(800, "feet"),
  9460. default: true
  9461. },
  9462. {
  9463. name: "Megamacro",
  9464. height: math.unit(8000, "feet")
  9465. },
  9466. {
  9467. name: "Gigamacro",
  9468. height: math.unit(800, "miles")
  9469. },
  9470. {
  9471. name: "Teramacro",
  9472. height: math.unit(80000, "miles")
  9473. },
  9474. {
  9475. name: "Celestial",
  9476. height: math.unit(8e6, "miles")
  9477. },
  9478. {
  9479. name: "Star Dragon",
  9480. height: math.unit(800000, "parsecs")
  9481. },
  9482. {
  9483. name: "Godly",
  9484. height: math.unit(800, "teraparsecs")
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9490. {
  9491. front: {
  9492. height: math.unit(6, "feet"),
  9493. weight: math.unit(150, "lb"),
  9494. name: "Front",
  9495. image: {
  9496. source: "./media/characters/ky'owin/front.svg",
  9497. extra: 3888 / 3068,
  9498. bottom: 0.015
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(6 + 8 / 12, "feet")
  9506. },
  9507. {
  9508. name: "Large",
  9509. height: math.unit(68, "feet")
  9510. },
  9511. {
  9512. name: "Macro",
  9513. height: math.unit(132, "feet")
  9514. },
  9515. {
  9516. name: "Macro+",
  9517. height: math.unit(340, "feet")
  9518. },
  9519. {
  9520. name: "Macro++",
  9521. height: math.unit(680, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Megamacro",
  9526. height: math.unit(1, "mile")
  9527. },
  9528. {
  9529. name: "Megamacro+",
  9530. height: math.unit(10, "miles")
  9531. },
  9532. ]
  9533. ))
  9534. characterMakers.push(() => makeCharacter(
  9535. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9536. {
  9537. front: {
  9538. height: math.unit(4, "feet"),
  9539. weight: math.unit(50, "lb"),
  9540. name: "Front",
  9541. image: {
  9542. source: "./media/characters/mal/front.svg",
  9543. extra: 785 / 724,
  9544. bottom: 0.07
  9545. }
  9546. },
  9547. },
  9548. [
  9549. {
  9550. name: "Micro",
  9551. height: math.unit(4, "inches")
  9552. },
  9553. {
  9554. name: "Normal",
  9555. height: math.unit(4, "feet"),
  9556. default: true
  9557. },
  9558. {
  9559. name: "Macro",
  9560. height: math.unit(200, "feet")
  9561. },
  9562. ]
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9566. {
  9567. front: {
  9568. height: math.unit(6, "feet"),
  9569. weight: math.unit(150, "lb"),
  9570. name: "Front",
  9571. image: {
  9572. source: "./media/characters/jordan-deware/front.svg",
  9573. extra: 1191 / 1012
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Nano",
  9580. height: math.unit(0.01, "mm")
  9581. },
  9582. {
  9583. name: "Minimicro",
  9584. height: math.unit(1, "mm")
  9585. },
  9586. {
  9587. name: "Micro",
  9588. height: math.unit(0.5, "inches")
  9589. },
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(4, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Minimacro",
  9597. height: math.unit(40, "meters")
  9598. },
  9599. {
  9600. name: "Small Macro",
  9601. height: math.unit(400, "meters")
  9602. },
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(4, "miles")
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(40, "miles")
  9610. },
  9611. {
  9612. name: "Megamacro+",
  9613. height: math.unit(400, "miles")
  9614. },
  9615. {
  9616. name: "Gigamacro",
  9617. height: math.unit(400000, "miles")
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9623. {
  9624. side: {
  9625. height: math.unit(6, "feet"),
  9626. weight: math.unit(150, "lb"),
  9627. name: "Side",
  9628. image: {
  9629. source: "./media/characters/kimiko/side.svg",
  9630. extra: 600 / 358
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Normal",
  9637. height: math.unit(15, "feet"),
  9638. default: true
  9639. },
  9640. {
  9641. name: "Macro",
  9642. height: math.unit(220, "feet")
  9643. },
  9644. {
  9645. name: "Macro+",
  9646. height: math.unit(1450, "feet")
  9647. },
  9648. {
  9649. name: "Megamacro",
  9650. height: math.unit(11500, "feet")
  9651. },
  9652. {
  9653. name: "Gigamacro",
  9654. height: math.unit(9500, "miles")
  9655. },
  9656. {
  9657. name: "Teramacro",
  9658. height: math.unit(2208005005, "miles")
  9659. },
  9660. {
  9661. name: "Examacro",
  9662. height: math.unit(2750, "parsecs")
  9663. },
  9664. {
  9665. name: "Zettamacro",
  9666. height: math.unit(101500, "parsecs")
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(6, "feet"),
  9675. weight: math.unit(70, "kg"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/andrew-sleepy/front.svg"
  9679. }
  9680. },
  9681. side: {
  9682. height: math.unit(6, "feet"),
  9683. weight: math.unit(70, "kg"),
  9684. name: "Side",
  9685. image: {
  9686. source: "./media/characters/andrew-sleepy/side.svg"
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Micro",
  9693. height: math.unit(1, "mm"),
  9694. default: true
  9695. },
  9696. ]
  9697. ))
  9698. characterMakers.push(() => makeCharacter(
  9699. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9700. {
  9701. front: {
  9702. height: math.unit(6, "feet"),
  9703. weight: math.unit(150, "lb"),
  9704. name: "Front",
  9705. image: {
  9706. source: "./media/characters/judio/front.svg",
  9707. extra: 1258 / 1110
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Normal",
  9714. height: math.unit(5 + 6 / 12, "feet")
  9715. },
  9716. {
  9717. name: "Macro",
  9718. height: math.unit(1000, "feet"),
  9719. default: true
  9720. },
  9721. {
  9722. name: "Megamacro",
  9723. height: math.unit(10, "miles")
  9724. },
  9725. ]
  9726. ))
  9727. characterMakers.push(() => makeCharacter(
  9728. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9729. {
  9730. front: {
  9731. height: math.unit(6, "feet"),
  9732. weight: math.unit(68, "kg"),
  9733. name: "Front",
  9734. image: {
  9735. source: "./media/characters/nomaxice/front.svg",
  9736. extra: 1498 / 1073,
  9737. bottom: 0.075
  9738. }
  9739. },
  9740. foot: {
  9741. height: math.unit(1.1, "feet"),
  9742. name: "Foot",
  9743. image: {
  9744. source: "./media/characters/nomaxice/foot.svg"
  9745. }
  9746. },
  9747. },
  9748. [
  9749. {
  9750. name: "Micro",
  9751. height: math.unit(8, "cm")
  9752. },
  9753. {
  9754. name: "Norm",
  9755. height: math.unit(1.82, "m")
  9756. },
  9757. {
  9758. name: "Norm+",
  9759. height: math.unit(8.8, "feet")
  9760. },
  9761. {
  9762. name: "Big",
  9763. height: math.unit(8, "meters"),
  9764. default: true
  9765. },
  9766. {
  9767. name: "Macro",
  9768. height: math.unit(18, "meters")
  9769. },
  9770. {
  9771. name: "Macro+",
  9772. height: math.unit(88, "meters")
  9773. },
  9774. ]
  9775. ))
  9776. characterMakers.push(() => makeCharacter(
  9777. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9778. {
  9779. front: {
  9780. height: math.unit(12, "feet"),
  9781. weight: math.unit(1.5, "tons"),
  9782. name: "Front",
  9783. image: {
  9784. source: "./media/characters/dydros/front.svg",
  9785. extra: 863 / 800,
  9786. bottom: 0.015
  9787. }
  9788. },
  9789. back: {
  9790. height: math.unit(12, "feet"),
  9791. weight: math.unit(1.5, "tons"),
  9792. name: "Back",
  9793. image: {
  9794. source: "./media/characters/dydros/back.svg",
  9795. extra: 900 / 843,
  9796. bottom: 0.005
  9797. }
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Normal",
  9803. height: math.unit(12, "feet"),
  9804. default: true
  9805. },
  9806. ]
  9807. ))
  9808. characterMakers.push(() => makeCharacter(
  9809. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9810. {
  9811. front: {
  9812. height: math.unit(6, "feet"),
  9813. weight: math.unit(100, "kg"),
  9814. name: "Front",
  9815. image: {
  9816. source: "./media/characters/riggi/front.svg",
  9817. extra: 5787 / 5303
  9818. }
  9819. },
  9820. hyper: {
  9821. height: math.unit(6 * 5 / 3, "feet"),
  9822. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9823. name: "Hyper",
  9824. image: {
  9825. source: "./media/characters/riggi/hyper.svg",
  9826. extra: 3595 / 3485
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Small Macro",
  9833. height: math.unit(50, "feet")
  9834. },
  9835. {
  9836. name: "Default",
  9837. height: math.unit(200, "feet"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Loom",
  9842. height: math.unit(10000, "feet")
  9843. },
  9844. {
  9845. name: "Cruising Altitude",
  9846. height: math.unit(30000, "feet")
  9847. },
  9848. {
  9849. name: "Megamacro",
  9850. height: math.unit(100, "miles")
  9851. },
  9852. {
  9853. name: "Continent Sized",
  9854. height: math.unit(2800, "miles")
  9855. },
  9856. {
  9857. name: "Earth Sized",
  9858. height: math.unit(8000, "miles")
  9859. },
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9864. {
  9865. front: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(250, "lb"),
  9868. name: "Front",
  9869. image: {
  9870. source: "./media/characters/alexi/front.svg",
  9871. extra: 3483 / 3291,
  9872. bottom: 0.04
  9873. }
  9874. },
  9875. back: {
  9876. height: math.unit(6, "feet"),
  9877. weight: math.unit(250, "lb"),
  9878. name: "Back",
  9879. image: {
  9880. source: "./media/characters/alexi/back.svg",
  9881. extra: 3533 / 3356,
  9882. bottom: 0.021
  9883. }
  9884. },
  9885. frontTransforming: {
  9886. height: math.unit(8.58, "feet"),
  9887. weight: math.unit(1300, "lb"),
  9888. name: "Transforming",
  9889. image: {
  9890. source: "./media/characters/alexi/front-transforming.svg",
  9891. extra: 437 / 409,
  9892. bottom: 19 / 458.66
  9893. }
  9894. },
  9895. frontTransformed: {
  9896. height: math.unit(12.5, "feet"),
  9897. weight: math.unit(4000, "lb"),
  9898. name: "Transformed",
  9899. image: {
  9900. source: "./media/characters/alexi/front-transformed.svg",
  9901. extra: 639 / 614,
  9902. bottom: 30.55 / 671
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Normal",
  9909. height: math.unit(3, "meters"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Minimacro",
  9914. height: math.unit(30, "meters")
  9915. },
  9916. {
  9917. name: "Macro",
  9918. height: math.unit(500, "meters")
  9919. },
  9920. {
  9921. name: "Megamacro",
  9922. height: math.unit(9000, "km")
  9923. },
  9924. {
  9925. name: "Teramacro",
  9926. height: math.unit(384000, "km")
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9932. {
  9933. front: {
  9934. height: math.unit(6, "feet"),
  9935. weight: math.unit(150, "lb"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/kayroo/front.svg",
  9939. extra: 1153 / 1038,
  9940. bottom: 0.06
  9941. }
  9942. },
  9943. foot: {
  9944. height: math.unit(6, "feet"),
  9945. weight: math.unit(150, "lb"),
  9946. name: "Foot",
  9947. image: {
  9948. source: "./media/characters/kayroo/foot.svg"
  9949. }
  9950. },
  9951. },
  9952. [
  9953. {
  9954. name: "Normal",
  9955. height: math.unit(8, "feet"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Minimacro",
  9960. height: math.unit(250, "feet")
  9961. },
  9962. {
  9963. name: "Macro",
  9964. height: math.unit(2800, "feet")
  9965. },
  9966. {
  9967. name: "Megamacro",
  9968. height: math.unit(5200, "feet")
  9969. },
  9970. {
  9971. name: "Gigamacro",
  9972. height: math.unit(27000, "feet")
  9973. },
  9974. {
  9975. name: "Omega",
  9976. height: math.unit(45000, "feet")
  9977. },
  9978. ]
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9982. {
  9983. front: {
  9984. height: math.unit(18, "feet"),
  9985. weight: math.unit(5800, "lb"),
  9986. name: "Front",
  9987. image: {
  9988. source: "./media/characters/rhys/front.svg",
  9989. extra: 3386 / 3090,
  9990. bottom: 0.07
  9991. }
  9992. },
  9993. },
  9994. [
  9995. {
  9996. name: "Normal",
  9997. height: math.unit(18, "feet"),
  9998. default: true
  9999. },
  10000. {
  10001. name: "Working Size",
  10002. height: math.unit(200, "feet")
  10003. },
  10004. {
  10005. name: "Demolition Size",
  10006. height: math.unit(2000, "feet")
  10007. },
  10008. {
  10009. name: "Maximum Licensed Size",
  10010. height: math.unit(5, "miles")
  10011. },
  10012. {
  10013. name: "Maximum Observed Size",
  10014. height: math.unit(10, "yottameters")
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10020. {
  10021. front: {
  10022. height: math.unit(6, "feet"),
  10023. weight: math.unit(250, "lb"),
  10024. name: "Front",
  10025. image: {
  10026. source: "./media/characters/toto/front.svg",
  10027. extra: 527 / 479,
  10028. bottom: 0.05
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Micro",
  10035. height: math.unit(3, "feet")
  10036. },
  10037. {
  10038. name: "Normal",
  10039. height: math.unit(10, "feet")
  10040. },
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(150, "feet"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Megamacro",
  10048. height: math.unit(1200, "feet")
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "King", species: ["lion"], tags: ["anthro"] },
  10054. {
  10055. back: {
  10056. height: math.unit(6, "feet"),
  10057. weight: math.unit(150, "lb"),
  10058. name: "Back",
  10059. image: {
  10060. source: "./media/characters/king/back.svg"
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Micro",
  10067. height: math.unit(2, "inches")
  10068. },
  10069. {
  10070. name: "Normal",
  10071. height: math.unit(8, "feet")
  10072. },
  10073. {
  10074. name: "Macro",
  10075. height: math.unit(200, "feet"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Megamacro",
  10080. height: math.unit(50, "miles")
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10086. {
  10087. anthro: {
  10088. height: math.unit(6 + 5 / 12, "feet"),
  10089. weight: math.unit(280, "lb"),
  10090. name: "Anthro",
  10091. image: {
  10092. source: "./media/characters/cordite/anthro.svg",
  10093. extra: 1986 / 1905,
  10094. bottom: 0.025
  10095. }
  10096. },
  10097. feral: {
  10098. height: math.unit(2, "feet"),
  10099. weight: math.unit(90, "lb"),
  10100. name: "Feral",
  10101. image: {
  10102. source: "./media/characters/cordite/feral.svg",
  10103. extra: 1260 / 755,
  10104. bottom: 0.05
  10105. }
  10106. },
  10107. },
  10108. [
  10109. {
  10110. name: "Normal",
  10111. height: math.unit(6 + 5 / 12, "feet"),
  10112. default: true
  10113. },
  10114. ]
  10115. ))
  10116. characterMakers.push(() => makeCharacter(
  10117. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10118. {
  10119. front: {
  10120. height: math.unit(6, "feet"),
  10121. weight: math.unit(150, "lb"),
  10122. name: "Front",
  10123. image: {
  10124. source: "./media/characters/pianostrong/front.svg",
  10125. extra: 6577 / 6254,
  10126. bottom: 0.02
  10127. }
  10128. },
  10129. side: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(150, "lb"),
  10132. name: "Side",
  10133. image: {
  10134. source: "./media/characters/pianostrong/side.svg",
  10135. extra: 6106 / 5730
  10136. }
  10137. },
  10138. back: {
  10139. height: math.unit(6, "feet"),
  10140. weight: math.unit(150, "lb"),
  10141. name: "Back",
  10142. image: {
  10143. source: "./media/characters/pianostrong/back.svg",
  10144. extra: 6085 / 5733,
  10145. bottom: 0.01
  10146. }
  10147. },
  10148. },
  10149. [
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(100, "feet")
  10153. },
  10154. {
  10155. name: "Macro+",
  10156. height: math.unit(300, "feet"),
  10157. default: true
  10158. },
  10159. {
  10160. name: "Macro++",
  10161. height: math.unit(1000, "feet")
  10162. },
  10163. ]
  10164. ))
  10165. characterMakers.push(() => makeCharacter(
  10166. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10167. {
  10168. front: {
  10169. height: math.unit(6, "feet"),
  10170. weight: math.unit(150, "lb"),
  10171. name: "Front",
  10172. image: {
  10173. source: "./media/characters/kona/front.svg",
  10174. extra: 2960 / 2629,
  10175. bottom: 0.005
  10176. }
  10177. },
  10178. },
  10179. [
  10180. {
  10181. name: "Normal",
  10182. height: math.unit(11 + 8 / 12, "feet")
  10183. },
  10184. {
  10185. name: "Macro",
  10186. height: math.unit(850, "feet"),
  10187. default: true
  10188. },
  10189. {
  10190. name: "Macro+",
  10191. height: math.unit(1.5, "km"),
  10192. default: true
  10193. },
  10194. {
  10195. name: "Megamacro",
  10196. height: math.unit(80, "miles")
  10197. },
  10198. {
  10199. name: "Gigamacro",
  10200. height: math.unit(3500, "miles")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10206. {
  10207. side: {
  10208. height: math.unit(1.9, "meters"),
  10209. weight: math.unit(326, "kg"),
  10210. name: "Side",
  10211. image: {
  10212. source: "./media/characters/levi/side.svg",
  10213. extra: 1704 / 1334,
  10214. bottom: 0.02
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(1.9, "meters"),
  10222. default: true
  10223. },
  10224. {
  10225. name: "Macro",
  10226. height: math.unit(20, "meters")
  10227. },
  10228. {
  10229. name: "Macro+",
  10230. height: math.unit(200, "meters")
  10231. },
  10232. {
  10233. name: "Megamacro",
  10234. height: math.unit(2, "km")
  10235. },
  10236. {
  10237. name: "Megamacro+",
  10238. height: math.unit(20, "km")
  10239. },
  10240. {
  10241. name: "Gigamacro",
  10242. height: math.unit(2500, "km")
  10243. },
  10244. {
  10245. name: "Gigamacro+",
  10246. height: math.unit(120000, "km")
  10247. },
  10248. {
  10249. name: "Teramacro",
  10250. height: math.unit(7.77e6, "km")
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(6 + 4 / 12, "feet"),
  10259. weight: math.unit(188, "lb"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/bmc/front.svg",
  10263. extra: 1067 / 1022,
  10264. bottom: 0.047
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Human-sized",
  10271. height: math.unit(6 + 4 / 12, "feet")
  10272. },
  10273. {
  10274. name: "Small",
  10275. height: math.unit(250, "feet")
  10276. },
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(1250, "feet"),
  10280. default: true
  10281. },
  10282. {
  10283. name: "Good Day",
  10284. height: math.unit(88, "miles")
  10285. },
  10286. {
  10287. name: "Largest Measured Size",
  10288. height: math.unit(11.2e6, "lightyears")
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(20, "feet"),
  10297. weight: math.unit(2016, "kg"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/sven-the-kaiju/front.svg",
  10301. extra: 1479 / 1449,
  10302. bottom: 0.05
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Fairy",
  10309. height: math.unit(6, "inches")
  10310. },
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(20, "feet"),
  10314. default: true
  10315. },
  10316. {
  10317. name: "Rampage",
  10318. height: math.unit(200, "feet")
  10319. },
  10320. {
  10321. name: "Archfey Forest Guardian",
  10322. height: math.unit(1, "mile")
  10323. },
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10328. {
  10329. front: {
  10330. height: math.unit(4, "meters"),
  10331. weight: math.unit(2, "tons"),
  10332. name: "Front",
  10333. image: {
  10334. source: "./media/characters/marik/front.svg",
  10335. extra: 1057 / 1003,
  10336. bottom: 0.08
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Normal",
  10343. height: math.unit(4, "meters"),
  10344. default: true
  10345. },
  10346. {
  10347. name: "Macro",
  10348. height: math.unit(20, "meters")
  10349. },
  10350. {
  10351. name: "Megamacro",
  10352. height: math.unit(50, "km")
  10353. },
  10354. {
  10355. name: "Gigamacro",
  10356. height: math.unit(100, "km")
  10357. },
  10358. {
  10359. name: "Alpha Macro",
  10360. height: math.unit(7.88e7, "yottameters")
  10361. },
  10362. ]
  10363. ))
  10364. characterMakers.push(() => makeCharacter(
  10365. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10366. {
  10367. front: {
  10368. height: math.unit(6, "feet"),
  10369. weight: math.unit(110, "lb"),
  10370. name: "Front",
  10371. image: {
  10372. source: "./media/characters/mel/front.svg",
  10373. extra: 736 / 617,
  10374. bottom: 0.017
  10375. }
  10376. },
  10377. },
  10378. [
  10379. {
  10380. name: "Pico",
  10381. height: math.unit(3, "pm")
  10382. },
  10383. {
  10384. name: "Nano",
  10385. height: math.unit(3, "nm")
  10386. },
  10387. {
  10388. name: "Micro",
  10389. height: math.unit(0.3, "mm"),
  10390. default: true
  10391. },
  10392. {
  10393. name: "Micro+",
  10394. height: math.unit(3, "mm")
  10395. },
  10396. {
  10397. name: "Normal",
  10398. height: math.unit(5 + 10.5 / 12, "feet")
  10399. },
  10400. ]
  10401. ))
  10402. characterMakers.push(() => makeCharacter(
  10403. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10404. {
  10405. kaiju: {
  10406. height: math.unit(1.75, "meters"),
  10407. weight: math.unit(55, "kg"),
  10408. name: "Kaiju",
  10409. image: {
  10410. source: "./media/characters/lykonous/kaiju.svg",
  10411. extra: 1055 / 946,
  10412. bottom: 0.135
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Normal",
  10419. height: math.unit(2.5, "meters"),
  10420. default: true
  10421. },
  10422. {
  10423. name: "Kaiju Dragon",
  10424. height: math.unit(60, "meters")
  10425. },
  10426. {
  10427. name: "Mega Kaiju",
  10428. height: math.unit(120, "km")
  10429. },
  10430. {
  10431. name: "Giga Kaiju",
  10432. height: math.unit(200, "megameters")
  10433. },
  10434. {
  10435. name: "Terra Kaiju",
  10436. height: math.unit(400, "gigameters")
  10437. },
  10438. {
  10439. name: "Kaiju Dragon God",
  10440. height: math.unit(13000, "exaparsecs")
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10446. {
  10447. front: {
  10448. height: math.unit(6, "feet"),
  10449. weight: math.unit(150, "lb"),
  10450. name: "Front",
  10451. image: {
  10452. source: "./media/characters/blü/front.svg",
  10453. extra: 1883 / 1564,
  10454. bottom: 0.031
  10455. }
  10456. },
  10457. },
  10458. [
  10459. {
  10460. name: "Normal",
  10461. height: math.unit(13, "feet"),
  10462. default: true
  10463. },
  10464. {
  10465. name: "Big Boi",
  10466. height: math.unit(150, "meters")
  10467. },
  10468. {
  10469. name: "Mini Stomper",
  10470. height: math.unit(300, "meters")
  10471. },
  10472. {
  10473. name: "Macro",
  10474. height: math.unit(1000, "meters")
  10475. },
  10476. {
  10477. name: "Megamacro",
  10478. height: math.unit(11000, "meters")
  10479. },
  10480. {
  10481. name: "Gigamacro",
  10482. height: math.unit(11000, "km")
  10483. },
  10484. {
  10485. name: "Teramacro",
  10486. height: math.unit(420000, "km")
  10487. },
  10488. {
  10489. name: "Examacro",
  10490. height: math.unit(120, "parsecs")
  10491. },
  10492. {
  10493. name: "God Tho",
  10494. height: math.unit(98000000000, "parsecs")
  10495. },
  10496. ]
  10497. ))
  10498. characterMakers.push(() => makeCharacter(
  10499. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10500. {
  10501. taurFront: {
  10502. height: math.unit(6, "feet"),
  10503. weight: math.unit(200, "lb"),
  10504. name: "Taur (Front)",
  10505. image: {
  10506. source: "./media/characters/scales/taur-front.svg",
  10507. extra: 1,
  10508. bottom: 0.05
  10509. }
  10510. },
  10511. taurBack: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(200, "lb"),
  10514. name: "Taur (Back)",
  10515. image: {
  10516. source: "./media/characters/scales/taur-back.svg",
  10517. extra: 1,
  10518. bottom: 0.08
  10519. }
  10520. },
  10521. anthro: {
  10522. height: math.unit(6 * 7 / 12, "feet"),
  10523. weight: math.unit(100, "lb"),
  10524. name: "Anthro",
  10525. image: {
  10526. source: "./media/characters/scales/anthro.svg",
  10527. extra: 1,
  10528. bottom: 0.06
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Normal",
  10535. height: math.unit(12, "feet"),
  10536. default: true
  10537. },
  10538. ]
  10539. ))
  10540. characterMakers.push(() => makeCharacter(
  10541. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10542. {
  10543. front: {
  10544. height: math.unit(6, "feet"),
  10545. weight: math.unit(150, "lb"),
  10546. name: "Front",
  10547. image: {
  10548. source: "./media/characters/koragos/front.svg",
  10549. extra: 841 / 794,
  10550. bottom: 0.035
  10551. }
  10552. },
  10553. back: {
  10554. height: math.unit(6, "feet"),
  10555. weight: math.unit(150, "lb"),
  10556. name: "Back",
  10557. image: {
  10558. source: "./media/characters/koragos/back.svg",
  10559. extra: 841 / 810,
  10560. bottom: 0.022
  10561. }
  10562. },
  10563. },
  10564. [
  10565. {
  10566. name: "Normal",
  10567. height: math.unit(6 + 11 / 12, "feet"),
  10568. default: true
  10569. },
  10570. {
  10571. name: "Macro",
  10572. height: math.unit(490, "feet")
  10573. },
  10574. {
  10575. name: "Megamacro",
  10576. height: math.unit(10, "miles")
  10577. },
  10578. {
  10579. name: "Gigamacro",
  10580. height: math.unit(50, "miles")
  10581. },
  10582. ]
  10583. ))
  10584. characterMakers.push(() => makeCharacter(
  10585. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10586. {
  10587. front: {
  10588. height: math.unit(6, "feet"),
  10589. weight: math.unit(250, "lb"),
  10590. name: "Front",
  10591. image: {
  10592. source: "./media/characters/xylrem/front.svg",
  10593. extra: 3323 / 3050,
  10594. bottom: 0.065
  10595. }
  10596. },
  10597. },
  10598. [
  10599. {
  10600. name: "Micro",
  10601. height: math.unit(4, "feet")
  10602. },
  10603. {
  10604. name: "Normal",
  10605. height: math.unit(16, "feet"),
  10606. default: true
  10607. },
  10608. {
  10609. name: "Macro",
  10610. height: math.unit(2720, "feet")
  10611. },
  10612. {
  10613. name: "Megamacro",
  10614. height: math.unit(25000, "miles")
  10615. },
  10616. ]
  10617. ))
  10618. characterMakers.push(() => makeCharacter(
  10619. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10620. {
  10621. front: {
  10622. height: math.unit(8, "feet"),
  10623. weight: math.unit(250, "kg"),
  10624. name: "Front",
  10625. image: {
  10626. source: "./media/characters/ikideru/front.svg",
  10627. extra: 930 / 870,
  10628. bottom: 0.087
  10629. }
  10630. },
  10631. back: {
  10632. height: math.unit(8, "feet"),
  10633. weight: math.unit(250, "kg"),
  10634. name: "Back",
  10635. image: {
  10636. source: "./media/characters/ikideru/back.svg",
  10637. extra: 919 / 852,
  10638. bottom: 0.055
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Rare",
  10645. height: math.unit(8, "feet"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Playful Loom",
  10650. height: math.unit(80, "feet")
  10651. },
  10652. {
  10653. name: "City Leaner",
  10654. height: math.unit(230, "feet")
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(2500, "feet")
  10659. },
  10660. {
  10661. name: "Gigamacro",
  10662. height: math.unit(26400, "feet")
  10663. },
  10664. {
  10665. name: "Tectonic Shifter",
  10666. height: math.unit(1.7, "megameters")
  10667. },
  10668. {
  10669. name: "Planet Carer",
  10670. height: math.unit(21, "megameters")
  10671. },
  10672. {
  10673. name: "God",
  10674. height: math.unit(11157.22, "parsecs")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(120, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/neo/front.svg"
  10687. }
  10688. },
  10689. },
  10690. [
  10691. {
  10692. name: "Micro",
  10693. height: math.unit(2, "inches"),
  10694. default: true
  10695. },
  10696. {
  10697. name: "Human Size",
  10698. height: math.unit(5 + 8 / 12, "feet")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10704. {
  10705. front: {
  10706. height: math.unit(13 + 10 / 12, "feet"),
  10707. weight: math.unit(5320, "lb"),
  10708. name: "Front",
  10709. image: {
  10710. source: "./media/characters/chauncey-chantz/front.svg",
  10711. extra: 1587 / 1435,
  10712. bottom: 0.02
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Normal",
  10719. height: math.unit(13 + 10 / 12, "feet"),
  10720. default: true
  10721. },
  10722. {
  10723. name: "Macro",
  10724. height: math.unit(45, "feet")
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(250, "miles")
  10729. },
  10730. {
  10731. name: "Planetary",
  10732. height: math.unit(10000, "miles")
  10733. },
  10734. {
  10735. name: "Galactic",
  10736. height: math.unit(40000, "parsecs")
  10737. },
  10738. {
  10739. name: "Universal",
  10740. height: math.unit(1, "yottameter")
  10741. },
  10742. ]
  10743. ))
  10744. characterMakers.push(() => makeCharacter(
  10745. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10746. {
  10747. front: {
  10748. height: math.unit(6, "feet"),
  10749. weight: math.unit(150, "lb"),
  10750. name: "Front",
  10751. image: {
  10752. source: "./media/characters/epifox/front.svg",
  10753. extra: 1,
  10754. bottom: 0.075
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Micro",
  10761. height: math.unit(6, "inches")
  10762. },
  10763. {
  10764. name: "Normal",
  10765. height: math.unit(12, "feet"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Macro",
  10770. height: math.unit(3810, "feet")
  10771. },
  10772. {
  10773. name: "Megamacro",
  10774. height: math.unit(500, "miles")
  10775. },
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10780. {
  10781. front: {
  10782. height: math.unit(1.8796, "m"),
  10783. weight: math.unit(230, "lb"),
  10784. name: "Front",
  10785. image: {
  10786. source: "./media/characters/colin-t/front.svg",
  10787. extra: 1272 / 1193,
  10788. bottom: 0.07
  10789. }
  10790. },
  10791. },
  10792. [
  10793. {
  10794. name: "Micro",
  10795. height: math.unit(0.571, "meters")
  10796. },
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(1.8796, "meters"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Tall",
  10804. height: math.unit(4, "meters")
  10805. },
  10806. {
  10807. name: "Macro",
  10808. height: math.unit(67.241, "meters")
  10809. },
  10810. {
  10811. name: "Megamacro",
  10812. height: math.unit(371.856, "meters")
  10813. },
  10814. {
  10815. name: "Planetary",
  10816. height: math.unit(12631.5689, "km")
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10822. {
  10823. front: {
  10824. height: math.unit(1.85, "meters"),
  10825. weight: math.unit(80, "kg"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/matvei/front.svg",
  10829. extra: 614 / 594,
  10830. bottom: 0.01
  10831. }
  10832. },
  10833. },
  10834. [
  10835. {
  10836. name: "Normal",
  10837. height: math.unit(1.85, "meters"),
  10838. default: true
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10844. {
  10845. front: {
  10846. height: math.unit(5 + 9 / 12, "feet"),
  10847. weight: math.unit(70, "lb"),
  10848. name: "Front",
  10849. image: {
  10850. source: "./media/characters/quincy/front.svg",
  10851. extra: 3041 / 2751
  10852. }
  10853. },
  10854. back: {
  10855. height: math.unit(5 + 9 / 12, "feet"),
  10856. weight: math.unit(70, "lb"),
  10857. name: "Back",
  10858. image: {
  10859. source: "./media/characters/quincy/back.svg",
  10860. extra: 3041 / 2751
  10861. }
  10862. },
  10863. flying: {
  10864. height: math.unit(5 + 4 / 12, "feet"),
  10865. weight: math.unit(70, "lb"),
  10866. name: "Flying",
  10867. image: {
  10868. source: "./media/characters/quincy/flying.svg",
  10869. extra: 1044 / 930
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Micro",
  10876. height: math.unit(3, "cm")
  10877. },
  10878. {
  10879. name: "Normal",
  10880. height: math.unit(5 + 9 / 12, "feet")
  10881. },
  10882. {
  10883. name: "Macro",
  10884. height: math.unit(200, "meters"),
  10885. default: true
  10886. },
  10887. {
  10888. name: "Megamacro",
  10889. height: math.unit(1000, "meters")
  10890. },
  10891. ]
  10892. ))
  10893. characterMakers.push(() => makeCharacter(
  10894. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10895. {
  10896. front: {
  10897. height: math.unit(4 + 7 / 12, "feet"),
  10898. weight: math.unit(150, "lb"),
  10899. name: "Front",
  10900. image: {
  10901. source: "./media/characters/vanrel/front.svg",
  10902. extra: 1,
  10903. bottom: 0.02
  10904. }
  10905. },
  10906. elemental: {
  10907. height: math.unit(3, "feet"),
  10908. weight: math.unit(150, "lb"),
  10909. name: "Elemental",
  10910. image: {
  10911. source: "./media/characters/vanrel/elemental.svg",
  10912. extra: 192.3 / 162.8,
  10913. bottom: 1.79 / 194.17
  10914. }
  10915. },
  10916. side: {
  10917. height: math.unit(4 + 7 / 12, "feet"),
  10918. weight: math.unit(150, "lb"),
  10919. name: "Side",
  10920. image: {
  10921. source: "./media/characters/vanrel/side.svg",
  10922. extra: 1,
  10923. bottom: 0.025
  10924. }
  10925. },
  10926. tome: {
  10927. height: math.unit(1.35, "feet"),
  10928. weight: math.unit(10, "lb"),
  10929. name: "Vanrel's Tome",
  10930. rename: true,
  10931. image: {
  10932. source: "./media/characters/vanrel/tome.svg"
  10933. }
  10934. },
  10935. beans: {
  10936. height: math.unit(0.89, "feet"),
  10937. name: "Beans",
  10938. image: {
  10939. source: "./media/characters/vanrel/beans.svg"
  10940. }
  10941. },
  10942. },
  10943. [
  10944. {
  10945. name: "Normal",
  10946. height: math.unit(4 + 7 / 12, "feet"),
  10947. default: true
  10948. },
  10949. ]
  10950. ))
  10951. characterMakers.push(() => makeCharacter(
  10952. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10953. {
  10954. front: {
  10955. height: math.unit(7 + 5 / 12, "feet"),
  10956. weight: math.unit(150, "lb"),
  10957. name: "Front",
  10958. image: {
  10959. source: "./media/characters/kuiper-vanrel/front.svg",
  10960. extra: 1118 / 1068,
  10961. bottom: 0.09
  10962. }
  10963. },
  10964. foot: {
  10965. height: math.unit(0.55, "meters"),
  10966. name: "Foot",
  10967. image: {
  10968. source: "./media/characters/kuiper-vanrel/foot.svg",
  10969. }
  10970. },
  10971. battle: {
  10972. height: math.unit(6.824, "feet"),
  10973. weight: math.unit(150, "lb"),
  10974. name: "Battle",
  10975. image: {
  10976. source: "./media/characters/kuiper-vanrel/battle.svg",
  10977. extra: 1466 / 1327,
  10978. bottom: 29 / 1492.5
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(7 + 5 / 12, "feet"),
  10986. default: true
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(8 + 5 / 12, "feet"),
  10995. weight: math.unit(150, "lb"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/keset-vanrel/front.svg",
  10999. extra: 1150 / 1084,
  11000. bottom: 0.05
  11001. }
  11002. },
  11003. hand: {
  11004. height: math.unit(0.6, "meters"),
  11005. name: "Hand",
  11006. image: {
  11007. source: "./media/characters/keset-vanrel/hand.svg"
  11008. }
  11009. },
  11010. foot: {
  11011. height: math.unit(0.94978, "meters"),
  11012. name: "Foot",
  11013. image: {
  11014. source: "./media/characters/keset-vanrel/foot.svg"
  11015. }
  11016. },
  11017. battle: {
  11018. height: math.unit(7.408, "feet"),
  11019. weight: math.unit(150, "lb"),
  11020. name: "Battle",
  11021. image: {
  11022. source: "./media/characters/keset-vanrel/battle.svg",
  11023. extra: 1890 / 1386,
  11024. bottom: 73.28 / 1970
  11025. }
  11026. },
  11027. },
  11028. [
  11029. {
  11030. name: "Normal",
  11031. height: math.unit(8 + 5 / 12, "feet"),
  11032. default: true
  11033. },
  11034. ]
  11035. ))
  11036. characterMakers.push(() => makeCharacter(
  11037. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11038. {
  11039. front: {
  11040. height: math.unit(6, "feet"),
  11041. weight: math.unit(150, "lb"),
  11042. name: "Front",
  11043. image: {
  11044. source: "./media/characters/neos/front.svg",
  11045. extra: 1696 / 992,
  11046. bottom: 0.14
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Normal",
  11053. height: math.unit(54, "cm"),
  11054. default: true
  11055. },
  11056. {
  11057. name: "Macro",
  11058. height: math.unit(100, "m")
  11059. },
  11060. {
  11061. name: "Megamacro",
  11062. height: math.unit(10, "km")
  11063. },
  11064. {
  11065. name: "Megamacro+",
  11066. height: math.unit(100, "km")
  11067. },
  11068. {
  11069. name: "Gigamacro",
  11070. height: math.unit(100, "Mm")
  11071. },
  11072. {
  11073. name: "Teramacro",
  11074. height: math.unit(100, "Gm")
  11075. },
  11076. {
  11077. name: "Examacro",
  11078. height: math.unit(100, "Em")
  11079. },
  11080. {
  11081. name: "Godly",
  11082. height: math.unit(10000, "Ym")
  11083. },
  11084. {
  11085. name: "Beyond Godly",
  11086. height: math.unit(25, "multiverses")
  11087. },
  11088. ]
  11089. ))
  11090. characterMakers.push(() => makeCharacter(
  11091. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11092. {
  11093. feminine: {
  11094. height: math.unit(5, "feet"),
  11095. weight: math.unit(100, "lb"),
  11096. name: "Feminine",
  11097. image: {
  11098. source: "./media/characters/sammy-mouse/feminine.svg",
  11099. extra: 2526 / 2425,
  11100. bottom: 0.123
  11101. }
  11102. },
  11103. masculine: {
  11104. height: math.unit(5, "feet"),
  11105. weight: math.unit(100, "lb"),
  11106. name: "Masculine",
  11107. image: {
  11108. source: "./media/characters/sammy-mouse/masculine.svg",
  11109. extra: 2526 / 2425,
  11110. bottom: 0.123
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Micro",
  11117. height: math.unit(5, "inches")
  11118. },
  11119. {
  11120. name: "Normal",
  11121. height: math.unit(5, "feet"),
  11122. default: true
  11123. },
  11124. {
  11125. name: "Macro",
  11126. height: math.unit(60, "feet")
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(4, "feet"),
  11135. weight: math.unit(50, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/kole/front.svg",
  11139. extra: 1423 / 1303,
  11140. bottom: 0.025
  11141. }
  11142. },
  11143. back: {
  11144. height: math.unit(4, "feet"),
  11145. weight: math.unit(50, "lb"),
  11146. name: "Back",
  11147. image: {
  11148. source: "./media/characters/kole/back.svg",
  11149. extra: 1426 / 1280,
  11150. bottom: 0.02
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(4, "feet"),
  11158. default: true
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11164. {
  11165. front: {
  11166. height: math.unit(2 + 6 / 12, "feet"),
  11167. weight: math.unit(20, "lb"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/rufran/front.svg",
  11171. extra: 2041 / 1839,
  11172. bottom: 0.055
  11173. }
  11174. },
  11175. back: {
  11176. height: math.unit(2 + 6 / 12, "feet"),
  11177. weight: math.unit(20, "lb"),
  11178. name: "Back",
  11179. image: {
  11180. source: "./media/characters/rufran/back.svg",
  11181. extra: 2054 / 1839,
  11182. bottom: 0.01
  11183. }
  11184. },
  11185. hand: {
  11186. height: math.unit(0.2166, "meters"),
  11187. name: "Hand",
  11188. image: {
  11189. source: "./media/characters/rufran/hand.svg"
  11190. }
  11191. },
  11192. foot: {
  11193. height: math.unit(0.185, "meters"),
  11194. name: "Foot",
  11195. image: {
  11196. source: "./media/characters/rufran/foot.svg"
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Micro",
  11203. height: math.unit(1, "inch")
  11204. },
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(2 + 6 / 12, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Big",
  11212. height: math.unit(60, "feet")
  11213. },
  11214. {
  11215. name: "Macro",
  11216. height: math.unit(325, "feet")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(0.3, "meters"),
  11225. weight: math.unit(3.5, "kg"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/chip/front.svg",
  11229. extra: 748 / 674
  11230. }
  11231. },
  11232. },
  11233. [
  11234. {
  11235. name: "Micro",
  11236. height: math.unit(1, "inch"),
  11237. default: true
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11243. {
  11244. side: {
  11245. height: math.unit(2.3, "meters"),
  11246. weight: math.unit(3500, "lb"),
  11247. name: "Side",
  11248. image: {
  11249. source: "./media/characters/torvid/side.svg",
  11250. extra: 1972 / 722,
  11251. bottom: 0.035
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(2.3, "meters"),
  11259. default: true
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11265. {
  11266. front: {
  11267. height: math.unit(2, "meters"),
  11268. weight: math.unit(150.5, "kg"),
  11269. name: "Front",
  11270. image: {
  11271. source: "./media/characters/susan/front.svg",
  11272. extra: 693 / 635,
  11273. bottom: 0.05
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Megamacro",
  11280. height: math.unit(505, "miles"),
  11281. default: true
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11287. {
  11288. front: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(150, "lb"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/raindrops/front.svg",
  11294. extra: 2655 / 2461,
  11295. bottom: 0.02
  11296. }
  11297. },
  11298. back: {
  11299. height: math.unit(6, "feet"),
  11300. weight: math.unit(150, "lb"),
  11301. name: "Back",
  11302. image: {
  11303. source: "./media/characters/raindrops/back.svg",
  11304. extra: 2574 / 2400,
  11305. bottom: 0.03
  11306. }
  11307. },
  11308. },
  11309. [
  11310. {
  11311. name: "Micro",
  11312. height: math.unit(6, "inches")
  11313. },
  11314. {
  11315. name: "Normal",
  11316. height: math.unit(6 + 2 / 12, "feet")
  11317. },
  11318. {
  11319. name: "Macro",
  11320. height: math.unit(131, "feet"),
  11321. default: true
  11322. },
  11323. {
  11324. name: "Megamacro",
  11325. height: math.unit(15, "miles")
  11326. },
  11327. {
  11328. name: "Gigamacro",
  11329. height: math.unit(4000, "miles")
  11330. },
  11331. {
  11332. name: "Teramacro",
  11333. height: math.unit(315000, "miles")
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11339. {
  11340. front: {
  11341. height: math.unit(2.794, "meters"),
  11342. weight: math.unit(325, "kg"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/tezwa/front.svg",
  11346. extra: 2083 / 1906,
  11347. bottom: 0.031
  11348. }
  11349. },
  11350. foot: {
  11351. height: math.unit(0.687, "meters"),
  11352. name: "Foot",
  11353. image: {
  11354. source: "./media/characters/tezwa/foot.svg"
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Normal",
  11361. height: math.unit(9 + 2 / 12, "feet"),
  11362. default: true
  11363. },
  11364. ]
  11365. ))
  11366. characterMakers.push(() => makeCharacter(
  11367. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11368. {
  11369. front: {
  11370. height: math.unit(58, "feet"),
  11371. weight: math.unit(89000, "lb"),
  11372. name: "Front",
  11373. image: {
  11374. source: "./media/characters/typhus/front.svg",
  11375. extra: 816 / 800,
  11376. bottom: 0.065
  11377. }
  11378. },
  11379. },
  11380. [
  11381. {
  11382. name: "Macro",
  11383. height: math.unit(58, "feet"),
  11384. default: true
  11385. },
  11386. ]
  11387. ))
  11388. characterMakers.push(() => makeCharacter(
  11389. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11390. {
  11391. front: {
  11392. height: math.unit(12, "feet"),
  11393. weight: math.unit(6, "tonnes"),
  11394. name: "Front",
  11395. image: {
  11396. source: "./media/characters/lyra-von-wulf/front.svg",
  11397. extra: 1,
  11398. bottom: 0.10
  11399. }
  11400. },
  11401. frontMecha: {
  11402. height: math.unit(12, "feet"),
  11403. weight: math.unit(12, "tonnes"),
  11404. name: "Front (Mecha)",
  11405. image: {
  11406. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11407. extra: 1,
  11408. bottom: 0.042
  11409. }
  11410. },
  11411. maw: {
  11412. height: math.unit(2.2, "feet"),
  11413. name: "Maw",
  11414. image: {
  11415. source: "./media/characters/lyra-von-wulf/maw.svg"
  11416. }
  11417. },
  11418. },
  11419. [
  11420. {
  11421. name: "Normal",
  11422. height: math.unit(12, "feet"),
  11423. default: true
  11424. },
  11425. {
  11426. name: "Classic",
  11427. height: math.unit(50, "feet")
  11428. },
  11429. {
  11430. name: "Macro",
  11431. height: math.unit(500, "feet")
  11432. },
  11433. {
  11434. name: "Megamacro",
  11435. height: math.unit(1, "mile")
  11436. },
  11437. {
  11438. name: "Gigamacro",
  11439. height: math.unit(400, "miles")
  11440. },
  11441. {
  11442. name: "Teramacro",
  11443. height: math.unit(22000, "miles")
  11444. },
  11445. {
  11446. name: "Solarmacro",
  11447. height: math.unit(8600000, "miles")
  11448. },
  11449. {
  11450. name: "Galactic",
  11451. height: math.unit(1057000, "lightyears")
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(6 + 10 / 12, "feet"),
  11460. weight: math.unit(150, "lb"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/dixon/front.svg",
  11464. extra: 3361 / 3209,
  11465. bottom: 0.01
  11466. }
  11467. },
  11468. },
  11469. [
  11470. {
  11471. name: "Normal",
  11472. height: math.unit(6 + 10 / 12, "feet"),
  11473. default: true
  11474. },
  11475. {
  11476. name: "Big",
  11477. height: math.unit(12, "meters")
  11478. },
  11479. {
  11480. name: "Macro",
  11481. height: math.unit(500, "meters")
  11482. },
  11483. {
  11484. name: "Megamacro",
  11485. height: math.unit(2, "km")
  11486. },
  11487. ]
  11488. ))
  11489. characterMakers.push(() => makeCharacter(
  11490. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11491. {
  11492. front: {
  11493. height: math.unit(185, "cm"),
  11494. weight: math.unit(68, "kg"),
  11495. name: "Front",
  11496. image: {
  11497. source: "./media/characters/kauko/front.svg",
  11498. extra: 1455 / 1421,
  11499. bottom: 0.03
  11500. }
  11501. },
  11502. back: {
  11503. height: math.unit(185, "cm"),
  11504. weight: math.unit(68, "kg"),
  11505. name: "Back",
  11506. image: {
  11507. source: "./media/characters/kauko/back.svg",
  11508. extra: 1455 / 1421,
  11509. bottom: 0.004
  11510. }
  11511. },
  11512. },
  11513. [
  11514. {
  11515. name: "Normal",
  11516. height: math.unit(185, "cm"),
  11517. default: true
  11518. },
  11519. ]
  11520. ))
  11521. characterMakers.push(() => makeCharacter(
  11522. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11523. {
  11524. front: {
  11525. height: math.unit(6, "feet"),
  11526. weight: math.unit(150, "kg"),
  11527. name: "Front",
  11528. image: {
  11529. source: "./media/characters/varg/front.svg",
  11530. extra: 1108 / 1018,
  11531. bottom: 0.0375
  11532. }
  11533. },
  11534. },
  11535. [
  11536. {
  11537. name: "Normal",
  11538. height: math.unit(5, "meters")
  11539. },
  11540. {
  11541. name: "Macro",
  11542. height: math.unit(200, "meters")
  11543. },
  11544. {
  11545. name: "Megamacro",
  11546. height: math.unit(20, "kilometers")
  11547. },
  11548. {
  11549. name: "True Size",
  11550. height: math.unit(211, "km"),
  11551. default: true
  11552. },
  11553. {
  11554. name: "Gigamacro",
  11555. height: math.unit(1000, "km")
  11556. },
  11557. {
  11558. name: "Gigamacro+",
  11559. height: math.unit(8000, "km")
  11560. },
  11561. {
  11562. name: "Teramacro",
  11563. height: math.unit(1000000, "km")
  11564. },
  11565. ]
  11566. ))
  11567. characterMakers.push(() => makeCharacter(
  11568. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11569. {
  11570. front: {
  11571. height: math.unit(7 + 7 / 12, "feet"),
  11572. weight: math.unit(267, "lb"),
  11573. name: "Front",
  11574. image: {
  11575. source: "./media/characters/dayza/front.svg",
  11576. extra: 1262 / 1200,
  11577. bottom: 0.035
  11578. }
  11579. },
  11580. side: {
  11581. height: math.unit(7 + 7 / 12, "feet"),
  11582. weight: math.unit(267, "lb"),
  11583. name: "Side",
  11584. image: {
  11585. source: "./media/characters/dayza/side.svg",
  11586. extra: 1295 / 1245,
  11587. bottom: 0.05
  11588. }
  11589. },
  11590. back: {
  11591. height: math.unit(7 + 7 / 12, "feet"),
  11592. weight: math.unit(267, "lb"),
  11593. name: "Back",
  11594. image: {
  11595. source: "./media/characters/dayza/back.svg",
  11596. extra: 1241 / 1170
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Normal",
  11603. height: math.unit(7 + 7 / 12, "feet"),
  11604. default: true
  11605. },
  11606. {
  11607. name: "Macro",
  11608. height: math.unit(155, "feet")
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(6 + 5 / 12, "feet"),
  11617. weight: math.unit(160, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/xanthos/front.svg",
  11621. extra: 1,
  11622. bottom: 0.04
  11623. }
  11624. },
  11625. back: {
  11626. height: math.unit(6 + 5 / 12, "feet"),
  11627. weight: math.unit(160, "lb"),
  11628. name: "Back",
  11629. image: {
  11630. source: "./media/characters/xanthos/back.svg",
  11631. extra: 1,
  11632. bottom: 0.03
  11633. }
  11634. },
  11635. hand: {
  11636. height: math.unit(0.928, "feet"),
  11637. name: "Hand",
  11638. image: {
  11639. source: "./media/characters/xanthos/hand.svg"
  11640. }
  11641. },
  11642. foot: {
  11643. height: math.unit(1.286, "feet"),
  11644. name: "Foot",
  11645. image: {
  11646. source: "./media/characters/xanthos/foot.svg"
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Normal",
  11653. height: math.unit(6 + 5 / 12, "feet"),
  11654. default: true
  11655. },
  11656. {
  11657. name: "Normal+",
  11658. height: math.unit(6, "meters")
  11659. },
  11660. {
  11661. name: "Macro",
  11662. height: math.unit(40, "feet")
  11663. },
  11664. {
  11665. name: "Macro+",
  11666. height: math.unit(200, "meters")
  11667. },
  11668. {
  11669. name: "Megamacro",
  11670. height: math.unit(20, "km")
  11671. },
  11672. {
  11673. name: "Megamacro+",
  11674. height: math.unit(100, "km")
  11675. },
  11676. ]
  11677. ))
  11678. characterMakers.push(() => makeCharacter(
  11679. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11680. {
  11681. front: {
  11682. height: math.unit(6 + 3 / 12, "feet"),
  11683. weight: math.unit(215, "lb"),
  11684. name: "Front",
  11685. image: {
  11686. source: "./media/characters/grynn/front.svg",
  11687. extra: 4627 / 4209,
  11688. bottom: 0.047
  11689. }
  11690. },
  11691. },
  11692. [
  11693. {
  11694. name: "Micro",
  11695. height: math.unit(6, "inches")
  11696. },
  11697. {
  11698. name: "Normal",
  11699. height: math.unit(6 + 3 / 12, "feet"),
  11700. default: true
  11701. },
  11702. {
  11703. name: "Big",
  11704. height: math.unit(104, "feet")
  11705. },
  11706. {
  11707. name: "Macro",
  11708. height: math.unit(944, "feet")
  11709. },
  11710. {
  11711. name: "Macro+",
  11712. height: math.unit(9480, "feet")
  11713. },
  11714. {
  11715. name: "Megamacro",
  11716. height: math.unit(78752, "feet")
  11717. },
  11718. {
  11719. name: "Megamacro+",
  11720. height: math.unit(630128, "feet")
  11721. },
  11722. {
  11723. name: "Megamacro++",
  11724. height: math.unit(3150695, "feet")
  11725. },
  11726. ]
  11727. ))
  11728. characterMakers.push(() => makeCharacter(
  11729. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11730. {
  11731. front: {
  11732. height: math.unit(7 + 5 / 12, "feet"),
  11733. weight: math.unit(450, "lb"),
  11734. name: "Front",
  11735. image: {
  11736. source: "./media/characters/mocha-aura/front.svg",
  11737. extra: 1907 / 1817,
  11738. bottom: 0.04
  11739. }
  11740. },
  11741. back: {
  11742. height: math.unit(7 + 5 / 12, "feet"),
  11743. weight: math.unit(450, "lb"),
  11744. name: "Back",
  11745. image: {
  11746. source: "./media/characters/mocha-aura/back.svg",
  11747. extra: 1900 / 1825,
  11748. bottom: 0.045
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Nano",
  11755. height: math.unit(1, "nm")
  11756. },
  11757. {
  11758. name: "Megamicro",
  11759. height: math.unit(1, "mm")
  11760. },
  11761. {
  11762. name: "Micro",
  11763. height: math.unit(3, "inches")
  11764. },
  11765. {
  11766. name: "Normal",
  11767. height: math.unit(7 + 5 / 12, "feet"),
  11768. default: true
  11769. },
  11770. {
  11771. name: "Macro",
  11772. height: math.unit(30, "feet")
  11773. },
  11774. {
  11775. name: "Megamacro",
  11776. height: math.unit(3500, "feet")
  11777. },
  11778. {
  11779. name: "Teramacro",
  11780. height: math.unit(500000, "miles")
  11781. },
  11782. {
  11783. name: "Petamacro",
  11784. height: math.unit(50000000000000000, "parsecs")
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(6, "feet"),
  11793. weight: math.unit(150, "lb"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/ilisha-devya/front.svg",
  11797. extra: 1,
  11798. bottom: 0.175
  11799. }
  11800. },
  11801. back: {
  11802. height: math.unit(6, "feet"),
  11803. weight: math.unit(150, "lb"),
  11804. name: "Back",
  11805. image: {
  11806. source: "./media/characters/ilisha-devya/back.svg",
  11807. extra: 1,
  11808. bottom: 0.015
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Macro",
  11815. height: math.unit(500, "feet"),
  11816. default: true
  11817. },
  11818. {
  11819. name: "Megamacro",
  11820. height: math.unit(10, "miles")
  11821. },
  11822. {
  11823. name: "Gigamacro",
  11824. height: math.unit(100000, "miles")
  11825. },
  11826. {
  11827. name: "Examacro",
  11828. height: math.unit(1e9, "lightyears")
  11829. },
  11830. {
  11831. name: "Omniversal",
  11832. height: math.unit(1e33, "lightyears")
  11833. },
  11834. {
  11835. name: "Beyond Infinite",
  11836. height: math.unit(1e100, "lightyears")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11842. {
  11843. Side: {
  11844. height: math.unit(6, "feet"),
  11845. weight: math.unit(150, "lb"),
  11846. name: "Side",
  11847. image: {
  11848. source: "./media/characters/mira/side.svg",
  11849. extra: 900 / 799,
  11850. bottom: 0.02
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Human Size",
  11857. height: math.unit(6, "feet")
  11858. },
  11859. {
  11860. name: "Macro",
  11861. height: math.unit(100, "feet"),
  11862. default: true
  11863. },
  11864. {
  11865. name: "Megamacro",
  11866. height: math.unit(10, "miles")
  11867. },
  11868. {
  11869. name: "Gigamacro",
  11870. height: math.unit(25000, "miles")
  11871. },
  11872. {
  11873. name: "Teramacro",
  11874. height: math.unit(300, "AU")
  11875. },
  11876. {
  11877. name: "Full Size",
  11878. height: math.unit(4.5e10, "lightyears")
  11879. },
  11880. ]
  11881. ))
  11882. characterMakers.push(() => makeCharacter(
  11883. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11884. {
  11885. front: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(150, "lb"),
  11888. name: "Front",
  11889. image: {
  11890. source: "./media/characters/holly/front.svg",
  11891. extra: 639 / 606
  11892. }
  11893. },
  11894. back: {
  11895. height: math.unit(6, "feet"),
  11896. weight: math.unit(150, "lb"),
  11897. name: "Back",
  11898. image: {
  11899. source: "./media/characters/holly/back.svg",
  11900. extra: 623 / 598
  11901. }
  11902. },
  11903. frontWorking: {
  11904. height: math.unit(6, "feet"),
  11905. weight: math.unit(150, "lb"),
  11906. name: "Front (Working)",
  11907. image: {
  11908. source: "./media/characters/holly/front-working.svg",
  11909. extra: 607 / 577,
  11910. bottom: 0.048
  11911. }
  11912. },
  11913. },
  11914. [
  11915. {
  11916. name: "Normal",
  11917. height: math.unit(12 + 3 / 12, "feet"),
  11918. default: true
  11919. },
  11920. ]
  11921. ))
  11922. characterMakers.push(() => makeCharacter(
  11923. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11924. {
  11925. front: {
  11926. height: math.unit(6, "feet"),
  11927. weight: math.unit(150, "lb"),
  11928. name: "Front",
  11929. image: {
  11930. source: "./media/characters/porter/front.svg",
  11931. extra: 1,
  11932. bottom: 0.01
  11933. }
  11934. },
  11935. frontRobes: {
  11936. height: math.unit(6, "feet"),
  11937. weight: math.unit(150, "lb"),
  11938. name: "Front (Robes)",
  11939. image: {
  11940. source: "./media/characters/porter/front-robes.svg",
  11941. extra: 1.01,
  11942. bottom: 0.01
  11943. }
  11944. },
  11945. },
  11946. [
  11947. {
  11948. name: "Normal",
  11949. height: math.unit(11 + 9 / 12, "feet"),
  11950. default: true
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11956. {
  11957. legendary: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(150, "lb"),
  11960. name: "Legendary",
  11961. image: {
  11962. source: "./media/characters/lucy/legendary.svg",
  11963. extra: 1355 / 1100,
  11964. bottom: 0.045
  11965. }
  11966. },
  11967. },
  11968. [
  11969. {
  11970. name: "Legendary",
  11971. height: math.unit(86882 * 2, "miles"),
  11972. default: true
  11973. },
  11974. ]
  11975. ))
  11976. characterMakers.push(() => makeCharacter(
  11977. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11978. {
  11979. front: {
  11980. height: math.unit(6, "feet"),
  11981. weight: math.unit(150, "lb"),
  11982. name: "Front",
  11983. image: {
  11984. source: "./media/characters/drusilla/front.svg",
  11985. extra: 678 / 635,
  11986. bottom: 0.03
  11987. }
  11988. },
  11989. back: {
  11990. height: math.unit(6, "feet"),
  11991. weight: math.unit(150, "lb"),
  11992. name: "Back",
  11993. image: {
  11994. source: "./media/characters/drusilla/back.svg",
  11995. extra: 678 / 635,
  11996. bottom: 0.005
  11997. }
  11998. },
  11999. },
  12000. [
  12001. {
  12002. name: "Macro",
  12003. height: math.unit(100, "feet")
  12004. },
  12005. {
  12006. name: "Canon Height",
  12007. height: math.unit(2000, "feet"),
  12008. default: true
  12009. },
  12010. ]
  12011. ))
  12012. characterMakers.push(() => makeCharacter(
  12013. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12014. {
  12015. front: {
  12016. height: math.unit(6, "feet"),
  12017. weight: math.unit(180, "lb"),
  12018. name: "Front",
  12019. image: {
  12020. source: "./media/characters/renard-thatch/front.svg",
  12021. extra: 2411 / 2275,
  12022. bottom: 0.01
  12023. }
  12024. },
  12025. frontPosing: {
  12026. height: math.unit(6, "feet"),
  12027. weight: math.unit(180, "lb"),
  12028. name: "Front (Posing)",
  12029. image: {
  12030. source: "./media/characters/renard-thatch/front-posing.svg",
  12031. extra: 2381 / 2261,
  12032. bottom: 0.01
  12033. }
  12034. },
  12035. back: {
  12036. height: math.unit(6, "feet"),
  12037. weight: math.unit(180, "lb"),
  12038. name: "Back",
  12039. image: {
  12040. source: "./media/characters/renard-thatch/back.svg",
  12041. extra: 2428 / 2288
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Micro",
  12048. height: math.unit(3, "inches")
  12049. },
  12050. {
  12051. name: "Default",
  12052. height: math.unit(6, "feet"),
  12053. default: true
  12054. },
  12055. {
  12056. name: "Macro",
  12057. height: math.unit(75, "feet")
  12058. },
  12059. ]
  12060. ))
  12061. characterMakers.push(() => makeCharacter(
  12062. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12063. {
  12064. front: {
  12065. height: math.unit(1450, "feet"),
  12066. weight: math.unit(1.21e6, "tons"),
  12067. name: "Front",
  12068. image: {
  12069. source: "./media/characters/sekvra/front.svg",
  12070. extra: 1,
  12071. bottom: 0.03
  12072. }
  12073. },
  12074. frontClothed: {
  12075. height: math.unit(1450, "feet"),
  12076. weight: math.unit(1.21e6, "tons"),
  12077. name: "Front (Clothed)",
  12078. image: {
  12079. source: "./media/characters/sekvra/front-clothed.svg",
  12080. extra: 1,
  12081. bottom: 0.03
  12082. }
  12083. },
  12084. side: {
  12085. height: math.unit(1450, "feet"),
  12086. weight: math.unit(1.21e6, "tons"),
  12087. name: "Side",
  12088. image: {
  12089. source: "./media/characters/sekvra/side.svg",
  12090. extra: 1,
  12091. bottom: 0.025
  12092. }
  12093. },
  12094. back: {
  12095. height: math.unit(1450, "feet"),
  12096. weight: math.unit(1.21e6, "tons"),
  12097. name: "Back",
  12098. image: {
  12099. source: "./media/characters/sekvra/back.svg",
  12100. extra: 1,
  12101. bottom: 0.005
  12102. }
  12103. },
  12104. },
  12105. [
  12106. {
  12107. name: "Macro",
  12108. height: math.unit(1450, "feet"),
  12109. default: true
  12110. },
  12111. {
  12112. name: "Megamacro",
  12113. height: math.unit(15000, "feet")
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12119. {
  12120. front: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/carmine/front.svg",
  12126. extra: 1,
  12127. bottom: 0.035
  12128. }
  12129. },
  12130. frontArmor: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Front (Armor)",
  12134. image: {
  12135. source: "./media/characters/carmine/front-armor.svg",
  12136. extra: 1,
  12137. bottom: 0.035
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Large",
  12144. height: math.unit(1, "mile")
  12145. },
  12146. {
  12147. name: "Huge",
  12148. height: math.unit(40, "miles"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Colossal",
  12153. height: math.unit(2500, "miles")
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(150, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/elyssia/front.svg",
  12166. extra: 2201 / 2035,
  12167. bottom: 0.05
  12168. }
  12169. },
  12170. frontClothed: {
  12171. height: math.unit(6, "feet"),
  12172. weight: math.unit(150, "lb"),
  12173. name: "Front (Clothed)",
  12174. image: {
  12175. source: "./media/characters/elyssia/front-clothed.svg",
  12176. extra: 2201 / 2035,
  12177. bottom: 0.05
  12178. }
  12179. },
  12180. back: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(150, "lb"),
  12183. name: "Back",
  12184. image: {
  12185. source: "./media/characters/elyssia/back.svg",
  12186. extra: 2201 / 2035,
  12187. bottom: 0.013
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Smaller",
  12194. height: math.unit(150, "feet")
  12195. },
  12196. {
  12197. name: "Standard",
  12198. height: math.unit(1400, "feet"),
  12199. default: true
  12200. },
  12201. {
  12202. name: "Distracted",
  12203. height: math.unit(15000, "feet")
  12204. },
  12205. ]
  12206. ))
  12207. characterMakers.push(() => makeCharacter(
  12208. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12209. {
  12210. front: {
  12211. height: math.unit(7 + 4 / 12, "feet"),
  12212. weight: math.unit(500, "lb"),
  12213. name: "Front",
  12214. image: {
  12215. source: "./media/characters/geno-maxwell/front.svg",
  12216. extra: 2207 / 2040,
  12217. bottom: 0.015
  12218. }
  12219. },
  12220. },
  12221. [
  12222. {
  12223. name: "Micro",
  12224. height: math.unit(3, "inches")
  12225. },
  12226. {
  12227. name: "Normal",
  12228. height: math.unit(7 + 4 / 12, "feet"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(220, "feet")
  12234. },
  12235. {
  12236. name: "Megamacro",
  12237. height: math.unit(11, "miles")
  12238. },
  12239. ]
  12240. ))
  12241. characterMakers.push(() => makeCharacter(
  12242. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12243. {
  12244. front: {
  12245. height: math.unit(7 + 4 / 12, "feet"),
  12246. weight: math.unit(500, "lb"),
  12247. name: "Front",
  12248. image: {
  12249. source: "./media/characters/regena-maxwell/front.svg",
  12250. extra: 3115 / 2770,
  12251. bottom: 0.02
  12252. }
  12253. },
  12254. },
  12255. [
  12256. {
  12257. name: "Normal",
  12258. height: math.unit(7 + 4 / 12, "feet"),
  12259. default: true
  12260. },
  12261. {
  12262. name: "Macro",
  12263. height: math.unit(220, "feet")
  12264. },
  12265. {
  12266. name: "Megamacro",
  12267. height: math.unit(11, "miles")
  12268. },
  12269. ]
  12270. ))
  12271. characterMakers.push(() => makeCharacter(
  12272. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12273. {
  12274. front: {
  12275. height: math.unit(6, "feet"),
  12276. weight: math.unit(150, "lb"),
  12277. name: "Front",
  12278. image: {
  12279. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12280. extra: 860 / 690,
  12281. bottom: 0.03
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Normal",
  12288. height: math.unit(1.7, "meters"),
  12289. default: true
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12295. {
  12296. front: {
  12297. height: math.unit(6, "feet"),
  12298. weight: math.unit(150, "lb"),
  12299. name: "Front",
  12300. image: {
  12301. source: "./media/characters/quilly/front.svg",
  12302. extra: 890 / 776
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Gigamacro",
  12309. height: math.unit(404090, "miles"),
  12310. default: true
  12311. },
  12312. ]
  12313. ))
  12314. characterMakers.push(() => makeCharacter(
  12315. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12316. {
  12317. front: {
  12318. height: math.unit(7 + 8 / 12, "feet"),
  12319. weight: math.unit(350, "lb"),
  12320. name: "Front",
  12321. image: {
  12322. source: "./media/characters/tempest/front.svg",
  12323. extra: 1175 / 1086,
  12324. bottom: 0.02
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Normal",
  12331. height: math.unit(7 + 8 / 12, "feet"),
  12332. default: true
  12333. },
  12334. ]
  12335. ))
  12336. characterMakers.push(() => makeCharacter(
  12337. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12338. {
  12339. side: {
  12340. height: math.unit(4 + 5 / 12, "feet"),
  12341. weight: math.unit(80, "lb"),
  12342. name: "Side",
  12343. image: {
  12344. source: "./media/characters/rodger/side.svg",
  12345. extra: 1235 / 1118
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "Micro",
  12352. height: math.unit(1, "inch")
  12353. },
  12354. {
  12355. name: "Normal",
  12356. height: math.unit(4 + 5 / 12, "feet"),
  12357. default: true
  12358. },
  12359. {
  12360. name: "Macro",
  12361. height: math.unit(120, "feet")
  12362. },
  12363. ]
  12364. ))
  12365. characterMakers.push(() => makeCharacter(
  12366. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12367. {
  12368. front: {
  12369. height: math.unit(6, "feet"),
  12370. weight: math.unit(150, "lb"),
  12371. name: "Front",
  12372. image: {
  12373. source: "./media/characters/danyel/front.svg",
  12374. extra: 1185 / 1123,
  12375. bottom: 0.05
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Shrunken",
  12382. height: math.unit(0.5, "mm")
  12383. },
  12384. {
  12385. name: "Micro",
  12386. height: math.unit(1, "mm"),
  12387. default: true
  12388. },
  12389. {
  12390. name: "Upsized",
  12391. height: math.unit(5 + 5 / 12, "feet")
  12392. },
  12393. ]
  12394. ))
  12395. characterMakers.push(() => makeCharacter(
  12396. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12397. {
  12398. front: {
  12399. height: math.unit(5 + 6 / 12, "feet"),
  12400. weight: math.unit(200, "lb"),
  12401. name: "Front",
  12402. image: {
  12403. source: "./media/characters/vivian-bijoux/front.svg",
  12404. extra: 1,
  12405. bottom: 0.072
  12406. }
  12407. },
  12408. },
  12409. [
  12410. {
  12411. name: "Normal",
  12412. height: math.unit(5 + 6 / 12, "feet"),
  12413. default: true
  12414. },
  12415. {
  12416. name: "Bad Dream",
  12417. height: math.unit(500, "feet")
  12418. },
  12419. {
  12420. name: "Nightmare",
  12421. height: math.unit(500, "miles")
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12427. {
  12428. front: {
  12429. height: math.unit(6 + 1 / 12, "feet"),
  12430. weight: math.unit(260, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/zeta/front.svg",
  12434. extra: 1968 / 1889,
  12435. bottom: 0.06
  12436. }
  12437. },
  12438. back: {
  12439. height: math.unit(6 + 1 / 12, "feet"),
  12440. weight: math.unit(260, "lb"),
  12441. name: "Back",
  12442. image: {
  12443. source: "./media/characters/zeta/back.svg",
  12444. extra: 1944 / 1858,
  12445. bottom: 0.03
  12446. }
  12447. },
  12448. hand: {
  12449. height: math.unit(1.112, "feet"),
  12450. name: "Hand",
  12451. image: {
  12452. source: "./media/characters/zeta/hand.svg"
  12453. }
  12454. },
  12455. foot: {
  12456. height: math.unit(1.48, "feet"),
  12457. name: "Foot",
  12458. image: {
  12459. source: "./media/characters/zeta/foot.svg"
  12460. }
  12461. },
  12462. },
  12463. [
  12464. {
  12465. name: "Micro",
  12466. height: math.unit(6, "inches")
  12467. },
  12468. {
  12469. name: "Normal",
  12470. height: math.unit(6 + 1 / 12, "feet"),
  12471. default: true
  12472. },
  12473. {
  12474. name: "Macro",
  12475. height: math.unit(20, "feet")
  12476. },
  12477. ]
  12478. ))
  12479. characterMakers.push(() => makeCharacter(
  12480. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12481. {
  12482. front: {
  12483. height: math.unit(6, "feet"),
  12484. weight: math.unit(150, "lb"),
  12485. name: "Front",
  12486. image: {
  12487. source: "./media/characters/jamie-larsen/front.svg",
  12488. extra: 962 / 933,
  12489. bottom: 0.02
  12490. }
  12491. },
  12492. back: {
  12493. height: math.unit(6, "feet"),
  12494. weight: math.unit(150, "lb"),
  12495. name: "Back",
  12496. image: {
  12497. source: "./media/characters/jamie-larsen/back.svg",
  12498. extra: 997 / 946
  12499. }
  12500. },
  12501. },
  12502. [
  12503. {
  12504. name: "Macro",
  12505. height: math.unit(28 + 7 / 12, "feet"),
  12506. default: true
  12507. },
  12508. {
  12509. name: "Macro+",
  12510. height: math.unit(180, "feet")
  12511. },
  12512. {
  12513. name: "Megamacro",
  12514. height: math.unit(10, "miles")
  12515. },
  12516. {
  12517. name: "Gigamacro",
  12518. height: math.unit(200000, "miles")
  12519. },
  12520. ]
  12521. ))
  12522. characterMakers.push(() => makeCharacter(
  12523. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12524. {
  12525. front: {
  12526. height: math.unit(6, "feet"),
  12527. weight: math.unit(120, "lb"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/vance/front.svg",
  12531. extra: 1980 / 1890,
  12532. bottom: 0.09
  12533. }
  12534. },
  12535. back: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(120, "lb"),
  12538. name: "Back",
  12539. image: {
  12540. source: "./media/characters/vance/back.svg",
  12541. extra: 2081 / 1994,
  12542. bottom: 0.014
  12543. }
  12544. },
  12545. hand: {
  12546. height: math.unit(0.88, "feet"),
  12547. name: "Hand",
  12548. image: {
  12549. source: "./media/characters/vance/hand.svg"
  12550. }
  12551. },
  12552. foot: {
  12553. height: math.unit(0.64, "feet"),
  12554. name: "Foot",
  12555. image: {
  12556. source: "./media/characters/vance/foot.svg"
  12557. }
  12558. },
  12559. },
  12560. [
  12561. {
  12562. name: "Small",
  12563. height: math.unit(90, "feet"),
  12564. default: true
  12565. },
  12566. {
  12567. name: "Macro",
  12568. height: math.unit(100, "meters")
  12569. },
  12570. {
  12571. name: "Megamacro",
  12572. height: math.unit(15, "miles")
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12578. {
  12579. front: {
  12580. height: math.unit(6, "feet"),
  12581. weight: math.unit(180, "lb"),
  12582. name: "Front",
  12583. image: {
  12584. source: "./media/characters/xochitl/front.svg",
  12585. extra: 2297 / 2261,
  12586. bottom: 0.065
  12587. }
  12588. },
  12589. back: {
  12590. height: math.unit(6, "feet"),
  12591. weight: math.unit(180, "lb"),
  12592. name: "Back",
  12593. image: {
  12594. source: "./media/characters/xochitl/back.svg",
  12595. extra: 2386 / 2354,
  12596. bottom: 0.01
  12597. }
  12598. },
  12599. foot: {
  12600. height: math.unit(6 / 5 * 1.15, "feet"),
  12601. weight: math.unit(150, "lb"),
  12602. name: "Foot",
  12603. image: {
  12604. source: "./media/characters/xochitl/foot.svg"
  12605. }
  12606. },
  12607. },
  12608. [
  12609. {
  12610. name: "Macro",
  12611. height: math.unit(80, "feet")
  12612. },
  12613. {
  12614. name: "Macro+",
  12615. height: math.unit(400, "feet"),
  12616. default: true
  12617. },
  12618. {
  12619. name: "Gigamacro",
  12620. height: math.unit(80000, "miles")
  12621. },
  12622. {
  12623. name: "Gigamacro+",
  12624. height: math.unit(400000, "miles")
  12625. },
  12626. {
  12627. name: "Teramacro",
  12628. height: math.unit(300, "AU")
  12629. },
  12630. ]
  12631. ))
  12632. characterMakers.push(() => makeCharacter(
  12633. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12634. {
  12635. front: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(150, "lb"),
  12638. name: "Front",
  12639. image: {
  12640. source: "./media/characters/vincent/front.svg",
  12641. extra: 1130 / 1080,
  12642. bottom: 0.055
  12643. }
  12644. },
  12645. beak: {
  12646. height: math.unit(6 * 0.1, "feet"),
  12647. name: "Beak",
  12648. image: {
  12649. source: "./media/characters/vincent/beak.svg"
  12650. }
  12651. },
  12652. hand: {
  12653. height: math.unit(6 * 0.85, "feet"),
  12654. weight: math.unit(150, "lb"),
  12655. name: "Hand",
  12656. image: {
  12657. source: "./media/characters/vincent/hand.svg"
  12658. }
  12659. },
  12660. foot: {
  12661. height: math.unit(6 * 0.19, "feet"),
  12662. weight: math.unit(150, "lb"),
  12663. name: "Foot",
  12664. image: {
  12665. source: "./media/characters/vincent/foot.svg"
  12666. }
  12667. },
  12668. },
  12669. [
  12670. {
  12671. name: "Base",
  12672. height: math.unit(6 + 5 / 12, "feet"),
  12673. default: true
  12674. },
  12675. {
  12676. name: "Macro",
  12677. height: math.unit(300, "feet")
  12678. },
  12679. {
  12680. name: "Megamacro",
  12681. height: math.unit(2, "miles")
  12682. },
  12683. {
  12684. name: "Gigamacro",
  12685. height: math.unit(1000, "miles")
  12686. },
  12687. ]
  12688. ))
  12689. characterMakers.push(() => makeCharacter(
  12690. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12691. {
  12692. front: {
  12693. height: math.unit(6 + 2 / 12, "feet"),
  12694. weight: math.unit(265, "lb"),
  12695. name: "Front",
  12696. image: {
  12697. source: "./media/characters/jay/front.svg",
  12698. extra: 1510 / 1430,
  12699. bottom: 0.042
  12700. }
  12701. },
  12702. back: {
  12703. height: math.unit(6 + 2 / 12, "feet"),
  12704. weight: math.unit(265, "lb"),
  12705. name: "Back",
  12706. image: {
  12707. source: "./media/characters/jay/back.svg",
  12708. extra: 1510 / 1430,
  12709. bottom: 0.025
  12710. }
  12711. },
  12712. clothed: {
  12713. height: math.unit(6 + 2 / 12, "feet"),
  12714. weight: math.unit(265, "lb"),
  12715. name: "Front (Clothed)",
  12716. image: {
  12717. source: "./media/characters/jay/clothed.svg",
  12718. extra: 744 / 699,
  12719. bottom: 0.043
  12720. }
  12721. },
  12722. head: {
  12723. height: math.unit(1.772, "feet"),
  12724. name: "Head",
  12725. image: {
  12726. source: "./media/characters/jay/head.svg"
  12727. }
  12728. },
  12729. sizeRay: {
  12730. height: math.unit(1.331, "feet"),
  12731. name: "Size Ray",
  12732. image: {
  12733. source: "./media/characters/jay/size-ray.svg"
  12734. }
  12735. },
  12736. },
  12737. [
  12738. {
  12739. name: "Micro",
  12740. height: math.unit(1, "inch")
  12741. },
  12742. {
  12743. name: "Normal",
  12744. height: math.unit(6 + 2 / 12, "feet"),
  12745. default: true
  12746. },
  12747. {
  12748. name: "Macro",
  12749. height: math.unit(1, "mile")
  12750. },
  12751. {
  12752. name: "Megamacro",
  12753. height: math.unit(100, "miles")
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12759. {
  12760. front: {
  12761. height: math.unit(2, "meters"),
  12762. weight: math.unit(500, "kg"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/coatl/front.svg",
  12766. extra: 3948 / 3500,
  12767. bottom: 0.082
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(4, "meters")
  12775. },
  12776. {
  12777. name: "Macro",
  12778. height: math.unit(100, "meters"),
  12779. default: true
  12780. },
  12781. {
  12782. name: "Macro+",
  12783. height: math.unit(300, "meters")
  12784. },
  12785. {
  12786. name: "Megamacro",
  12787. height: math.unit(3, "gigameters")
  12788. },
  12789. {
  12790. name: "Megamacro+",
  12791. height: math.unit(300, "terameters")
  12792. },
  12793. {
  12794. name: "Megamacro++",
  12795. height: math.unit(3, "lightyears")
  12796. },
  12797. ]
  12798. ))
  12799. characterMakers.push(() => makeCharacter(
  12800. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12801. {
  12802. front: {
  12803. height: math.unit(6, "feet"),
  12804. weight: math.unit(50, "kg"),
  12805. name: "front",
  12806. image: {
  12807. source: "./media/characters/shiroryu/front.svg",
  12808. extra: 1990 / 1935
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Mortal Mingling",
  12815. height: math.unit(3, "meters")
  12816. },
  12817. {
  12818. name: "Kaiju-ish",
  12819. height: math.unit(250, "meters")
  12820. },
  12821. {
  12822. name: "Somewhat Godly",
  12823. height: math.unit(400, "km"),
  12824. default: true
  12825. },
  12826. {
  12827. name: "Planetary",
  12828. height: math.unit(300, "megameters")
  12829. },
  12830. {
  12831. name: "Galaxy-dwarfing",
  12832. height: math.unit(450, "kiloparsecs")
  12833. },
  12834. {
  12835. name: "Universe Eater",
  12836. height: math.unit(150, "gigaparsecs")
  12837. },
  12838. {
  12839. name: "Almost Immeasurable",
  12840. height: math.unit(1.3e266, "yottaparsecs")
  12841. },
  12842. ]
  12843. ))
  12844. characterMakers.push(() => makeCharacter(
  12845. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12846. {
  12847. front: {
  12848. height: math.unit(6, "feet"),
  12849. weight: math.unit(150, "lb"),
  12850. name: "Front",
  12851. image: {
  12852. source: "./media/characters/umeko/front.svg",
  12853. extra: 1,
  12854. bottom: 0.019
  12855. }
  12856. },
  12857. frontArmored: {
  12858. height: math.unit(6, "feet"),
  12859. weight: math.unit(150, "lb"),
  12860. name: "Front (Armored)",
  12861. image: {
  12862. source: "./media/characters/umeko/front-armored.svg",
  12863. extra: 1,
  12864. bottom: 0.021
  12865. }
  12866. },
  12867. },
  12868. [
  12869. {
  12870. name: "Macro",
  12871. height: math.unit(220, "feet"),
  12872. default: true
  12873. },
  12874. {
  12875. name: "Guardian Dragon",
  12876. height: math.unit(50, "miles")
  12877. },
  12878. {
  12879. name: "Cosmic",
  12880. height: math.unit(800000, "miles")
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12886. {
  12887. front: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Front",
  12891. image: {
  12892. source: "./media/characters/cassidy/front.svg",
  12893. extra: 1,
  12894. bottom: 0.043
  12895. }
  12896. },
  12897. },
  12898. [
  12899. {
  12900. name: "Canon Height",
  12901. height: math.unit(120, "feet"),
  12902. default: true
  12903. },
  12904. {
  12905. name: "Macro+",
  12906. height: math.unit(400, "feet")
  12907. },
  12908. {
  12909. name: "Macro++",
  12910. height: math.unit(4000, "feet")
  12911. },
  12912. {
  12913. name: "Megamacro",
  12914. height: math.unit(3, "miles")
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12920. {
  12921. front: {
  12922. height: math.unit(6, "feet"),
  12923. weight: math.unit(150, "lb"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/isaac/front.svg",
  12927. extra: 896 / 815,
  12928. bottom: 0.11
  12929. }
  12930. },
  12931. },
  12932. [
  12933. {
  12934. name: "Human Size",
  12935. height: math.unit(8, "feet"),
  12936. default: true
  12937. },
  12938. {
  12939. name: "Macro",
  12940. height: math.unit(400, "feet")
  12941. },
  12942. {
  12943. name: "Megamacro",
  12944. height: math.unit(50, "miles")
  12945. },
  12946. {
  12947. name: "Canon Height",
  12948. height: math.unit(200, "AU")
  12949. },
  12950. ]
  12951. ))
  12952. characterMakers.push(() => makeCharacter(
  12953. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12954. {
  12955. front: {
  12956. height: math.unit(6, "feet"),
  12957. weight: math.unit(72, "kg"),
  12958. name: "Front",
  12959. image: {
  12960. source: "./media/characters/sleekit/front.svg",
  12961. extra: 4693 / 4487,
  12962. bottom: 0.012
  12963. }
  12964. },
  12965. },
  12966. [
  12967. {
  12968. name: "Minimum Height",
  12969. height: math.unit(10, "meters")
  12970. },
  12971. {
  12972. name: "Smaller",
  12973. height: math.unit(25, "meters")
  12974. },
  12975. {
  12976. name: "Larger",
  12977. height: math.unit(38, "meters"),
  12978. default: true
  12979. },
  12980. {
  12981. name: "Maximum height",
  12982. height: math.unit(100, "meters")
  12983. },
  12984. ]
  12985. ))
  12986. characterMakers.push(() => makeCharacter(
  12987. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12988. {
  12989. front: {
  12990. height: math.unit(6, "feet"),
  12991. weight: math.unit(150, "lb"),
  12992. name: "Front",
  12993. image: {
  12994. source: "./media/characters/nillia/front.svg",
  12995. extra: 2195 / 2037,
  12996. bottom: 0.005
  12997. }
  12998. },
  12999. back: {
  13000. height: math.unit(6, "feet"),
  13001. weight: math.unit(150, "lb"),
  13002. name: "Back",
  13003. image: {
  13004. source: "./media/characters/nillia/back.svg",
  13005. extra: 2195 / 2037,
  13006. bottom: 0.005
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Canon Height",
  13013. height: math.unit(489, "feet"),
  13014. default: true
  13015. }
  13016. ]
  13017. ))
  13018. characterMakers.push(() => makeCharacter(
  13019. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13020. {
  13021. front: {
  13022. height: math.unit(6, "feet"),
  13023. weight: math.unit(150, "lb"),
  13024. name: "Front",
  13025. image: {
  13026. source: "./media/characters/mesmyriza/front.svg",
  13027. extra: 2067 / 1784,
  13028. bottom: 0.035
  13029. }
  13030. },
  13031. foot: {
  13032. height: math.unit(6 / (250 / 35), "feet"),
  13033. name: "Foot",
  13034. image: {
  13035. source: "./media/characters/mesmyriza/foot.svg"
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Macro",
  13042. height: math.unit(457, "meters"),
  13043. default: true
  13044. },
  13045. {
  13046. name: "Megamacro",
  13047. height: math.unit(8, "megameters")
  13048. },
  13049. ]
  13050. ))
  13051. characterMakers.push(() => makeCharacter(
  13052. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13053. {
  13054. front: {
  13055. height: math.unit(6, "feet"),
  13056. weight: math.unit(250, "lb"),
  13057. name: "Front",
  13058. image: {
  13059. source: "./media/characters/saudade/front.svg",
  13060. extra: 1172 / 1139,
  13061. bottom: 0.035
  13062. }
  13063. },
  13064. },
  13065. [
  13066. {
  13067. name: "Micro",
  13068. height: math.unit(3, "inches")
  13069. },
  13070. {
  13071. name: "Normal",
  13072. height: math.unit(6, "feet"),
  13073. default: true
  13074. },
  13075. {
  13076. name: "Macro",
  13077. height: math.unit(50, "feet")
  13078. },
  13079. {
  13080. name: "Megamacro",
  13081. height: math.unit(2800, "feet")
  13082. },
  13083. ]
  13084. ))
  13085. characterMakers.push(() => makeCharacter(
  13086. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13087. {
  13088. front: {
  13089. height: math.unit(5 + 4 / 12, "feet"),
  13090. weight: math.unit(100, "lb"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/keireer/front.svg",
  13094. extra: 716 / 666,
  13095. bottom: 0.05
  13096. }
  13097. },
  13098. },
  13099. [
  13100. {
  13101. name: "Normal",
  13102. height: math.unit(5 + 4 / 12, "feet"),
  13103. default: true
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(90, "kg"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/mirja/front.svg",
  13116. extra: 1789 / 1683,
  13117. bottom: 0.05
  13118. }
  13119. },
  13120. frontDressed: {
  13121. height: math.unit(6, "feet"),
  13122. weight: math.unit(90, "lb"),
  13123. name: "Front (Dressed)",
  13124. image: {
  13125. source: "./media/characters/mirja/front-dressed.svg",
  13126. extra: 1789 / 1683,
  13127. bottom: 0.05
  13128. }
  13129. },
  13130. back: {
  13131. height: math.unit(6, "feet"),
  13132. weight: math.unit(90, "lb"),
  13133. name: "Back",
  13134. image: {
  13135. source: "./media/characters/mirja/back.svg",
  13136. extra: 953 / 917,
  13137. bottom: 0.017
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "\"Incognito\"",
  13144. height: math.unit(3, "meters")
  13145. },
  13146. {
  13147. name: "Strolling Size",
  13148. height: math.unit(15, "km")
  13149. },
  13150. {
  13151. name: "Larger Strolling Size",
  13152. height: math.unit(400, "km")
  13153. },
  13154. {
  13155. name: "Preferred Size",
  13156. height: math.unit(5000, "km")
  13157. },
  13158. {
  13159. name: "True Size",
  13160. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13161. default: true
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13167. {
  13168. front: {
  13169. height: math.unit(15, "feet"),
  13170. weight: math.unit(880, "kg"),
  13171. name: "Front",
  13172. image: {
  13173. source: "./media/characters/nightraver/front.svg",
  13174. extra: 2444 / 2160,
  13175. bottom: 0.027
  13176. }
  13177. },
  13178. back: {
  13179. height: math.unit(15, "feet"),
  13180. weight: math.unit(880, "kg"),
  13181. name: "Back",
  13182. image: {
  13183. source: "./media/characters/nightraver/back.svg",
  13184. extra: 2309 / 2180,
  13185. bottom: 0.005
  13186. }
  13187. },
  13188. sole: {
  13189. height: math.unit(2.878, "feet"),
  13190. name: "Sole",
  13191. image: {
  13192. source: "./media/characters/nightraver/sole.svg"
  13193. }
  13194. },
  13195. foot: {
  13196. height: math.unit(2.285, "feet"),
  13197. name: "Foot",
  13198. image: {
  13199. source: "./media/characters/nightraver/foot.svg"
  13200. }
  13201. },
  13202. maw: {
  13203. height: math.unit(2.67, "feet"),
  13204. name: "Maw",
  13205. image: {
  13206. source: "./media/characters/nightraver/maw.svg"
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Micro",
  13213. height: math.unit(1, "cm")
  13214. },
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(15, "feet"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Macro",
  13222. height: math.unit(300, "feet")
  13223. },
  13224. {
  13225. name: "Megamacro",
  13226. height: math.unit(300, "miles")
  13227. },
  13228. {
  13229. name: "Gigamacro",
  13230. height: math.unit(10000, "miles")
  13231. },
  13232. ]
  13233. ))
  13234. characterMakers.push(() => makeCharacter(
  13235. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13236. {
  13237. side: {
  13238. height: math.unit(2, "inches"),
  13239. weight: math.unit(5, "grams"),
  13240. name: "Side",
  13241. image: {
  13242. source: "./media/characters/arc/side.svg"
  13243. }
  13244. },
  13245. },
  13246. [
  13247. {
  13248. name: "Micro",
  13249. height: math.unit(2, "inches"),
  13250. default: true
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(1.1938, "meters"),
  13259. weight: math.unit(54, "kg"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/nebula-shahar/front.svg",
  13263. extra: 1642 / 1436,
  13264. bottom: 0.06
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Megamicro",
  13271. height: math.unit(0.3, "mm")
  13272. },
  13273. {
  13274. name: "Micro",
  13275. height: math.unit(3, "cm")
  13276. },
  13277. {
  13278. name: "Normal",
  13279. height: math.unit(138, "cm"),
  13280. default: true
  13281. },
  13282. {
  13283. name: "Macro",
  13284. height: math.unit(30, "m")
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(5.24, "feet"),
  13293. weight: math.unit(150, "lb"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/shayla/front.svg",
  13297. extra: 1512 / 1414,
  13298. bottom: 0.01
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(5.24, "feet"),
  13303. weight: math.unit(150, "lb"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/shayla/back.svg",
  13307. extra: 1512 / 1414
  13308. }
  13309. },
  13310. hand: {
  13311. height: math.unit(0.7781496062992126, "feet"),
  13312. name: "Hand",
  13313. image: {
  13314. source: "./media/characters/shayla/hand.svg"
  13315. }
  13316. },
  13317. foot: {
  13318. height: math.unit(1.4206036745406823, "feet"),
  13319. name: "Foot",
  13320. image: {
  13321. source: "./media/characters/shayla/foot.svg"
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Micro",
  13328. height: math.unit(0.32, "feet")
  13329. },
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(5.24, "feet"),
  13333. default: true
  13334. },
  13335. {
  13336. name: "Macro",
  13337. height: math.unit(492.12, "feet")
  13338. },
  13339. {
  13340. name: "Megamacro",
  13341. height: math.unit(186.41, "miles")
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(2.2, "m"),
  13350. weight: math.unit(120, "kg"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/pia-jr/front.svg",
  13354. extra: 1000 / 970,
  13355. bottom: 0.035
  13356. }
  13357. },
  13358. hand: {
  13359. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13360. name: "Hand",
  13361. image: {
  13362. source: "./media/characters/pia-jr/hand.svg"
  13363. }
  13364. },
  13365. paw: {
  13366. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13367. name: "Paw",
  13368. image: {
  13369. source: "./media/characters/pia-jr/paw.svg"
  13370. }
  13371. },
  13372. },
  13373. [
  13374. {
  13375. name: "Micro",
  13376. height: math.unit(1.2, "cm")
  13377. },
  13378. {
  13379. name: "Normal",
  13380. height: math.unit(2.2, "m"),
  13381. default: true
  13382. },
  13383. {
  13384. name: "Macro",
  13385. height: math.unit(180, "m")
  13386. },
  13387. {
  13388. name: "Megamacro",
  13389. height: math.unit(420, "km")
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13395. {
  13396. front: {
  13397. height: math.unit(2, "m"),
  13398. weight: math.unit(115, "kg"),
  13399. name: "Front",
  13400. image: {
  13401. source: "./media/characters/pia-sr/front.svg",
  13402. extra: 760 / 730,
  13403. bottom: 0.015
  13404. }
  13405. },
  13406. back: {
  13407. height: math.unit(2, "m"),
  13408. weight: math.unit(115, "kg"),
  13409. name: "Back",
  13410. image: {
  13411. source: "./media/characters/pia-sr/back.svg",
  13412. extra: 760 / 730,
  13413. bottom: 0.01
  13414. }
  13415. },
  13416. hand: {
  13417. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13418. name: "Hand",
  13419. image: {
  13420. source: "./media/characters/pia-sr/hand.svg"
  13421. }
  13422. },
  13423. foot: {
  13424. height: math.unit(1.83, "feet"),
  13425. name: "Foot",
  13426. image: {
  13427. source: "./media/characters/pia-sr/foot.svg"
  13428. }
  13429. },
  13430. },
  13431. [
  13432. {
  13433. name: "Micro",
  13434. height: math.unit(88, "mm")
  13435. },
  13436. {
  13437. name: "Normal",
  13438. height: math.unit(2, "m"),
  13439. default: true
  13440. },
  13441. {
  13442. name: "Macro",
  13443. height: math.unit(200, "m")
  13444. },
  13445. {
  13446. name: "Megamacro",
  13447. height: math.unit(420, "km")
  13448. },
  13449. ]
  13450. ))
  13451. characterMakers.push(() => makeCharacter(
  13452. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13453. {
  13454. front: {
  13455. height: math.unit(8 + 2 / 12, "feet"),
  13456. weight: math.unit(300, "lb"),
  13457. name: "Front",
  13458. image: {
  13459. source: "./media/characters/kibibyte/front.svg",
  13460. extra: 2221 / 2098,
  13461. bottom: 0.04
  13462. }
  13463. },
  13464. },
  13465. [
  13466. {
  13467. name: "Normal",
  13468. height: math.unit(8 + 2 / 12, "feet"),
  13469. default: true
  13470. },
  13471. {
  13472. name: "Socialable Macro",
  13473. height: math.unit(50, "feet")
  13474. },
  13475. {
  13476. name: "Macro",
  13477. height: math.unit(300, "feet")
  13478. },
  13479. {
  13480. name: "Megamacro",
  13481. height: math.unit(500, "miles")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(6, "feet"),
  13490. weight: math.unit(150, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/felix/front.svg",
  13494. extra: 762 / 722,
  13495. bottom: 0.02
  13496. }
  13497. },
  13498. frontClothed: {
  13499. height: math.unit(6, "feet"),
  13500. weight: math.unit(150, "lb"),
  13501. name: "Front (Clothed)",
  13502. image: {
  13503. source: "./media/characters/felix/front-clothed.svg",
  13504. extra: 762 / 722,
  13505. bottom: 0.02
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Normal",
  13512. height: math.unit(6 + 8 / 12, "feet"),
  13513. default: true
  13514. },
  13515. {
  13516. name: "Macro",
  13517. height: math.unit(2600, "feet")
  13518. },
  13519. {
  13520. name: "Megamacro",
  13521. height: math.unit(450, "miles")
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(6 + 1 / 12, "feet"),
  13530. weight: math.unit(250, "lb"),
  13531. name: "Front",
  13532. image: {
  13533. source: "./media/characters/tobo/front.svg",
  13534. extra: 608 / 586,
  13535. bottom: 0.023
  13536. }
  13537. },
  13538. back: {
  13539. height: math.unit(6 + 1 / 12, "feet"),
  13540. weight: math.unit(250, "lb"),
  13541. name: "Back",
  13542. image: {
  13543. source: "./media/characters/tobo/back.svg",
  13544. extra: 608 / 586
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Nano",
  13551. height: math.unit(2, "nm")
  13552. },
  13553. {
  13554. name: "Megamicro",
  13555. height: math.unit(0.1, "mm")
  13556. },
  13557. {
  13558. name: "Micro",
  13559. height: math.unit(1, "inch"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Human-sized",
  13564. height: math.unit(6 + 1 / 12, "feet")
  13565. },
  13566. {
  13567. name: "Macro",
  13568. height: math.unit(250, "feet")
  13569. },
  13570. {
  13571. name: "Megamacro",
  13572. height: math.unit(75, "miles")
  13573. },
  13574. {
  13575. name: "Texas-sized",
  13576. height: math.unit(750, "miles")
  13577. },
  13578. {
  13579. name: "Teramacro",
  13580. height: math.unit(50000, "miles")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(6, "feet"),
  13589. weight: math.unit(269, "lb"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/danny-kapowsky/front.svg",
  13593. extra: 766 / 736,
  13594. bottom: 0.044
  13595. }
  13596. },
  13597. back: {
  13598. height: math.unit(6, "feet"),
  13599. weight: math.unit(269, "lb"),
  13600. name: "Back",
  13601. image: {
  13602. source: "./media/characters/danny-kapowsky/back.svg",
  13603. extra: 797 / 760,
  13604. bottom: 0.025
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Macro",
  13611. height: math.unit(150, "feet"),
  13612. default: true
  13613. },
  13614. {
  13615. name: "Macro+",
  13616. height: math.unit(200, "feet")
  13617. },
  13618. {
  13619. name: "Macro++",
  13620. height: math.unit(300, "feet")
  13621. },
  13622. {
  13623. name: "Macro+++",
  13624. height: math.unit(400, "feet")
  13625. },
  13626. ]
  13627. ))
  13628. characterMakers.push(() => makeCharacter(
  13629. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13630. {
  13631. side: {
  13632. height: math.unit(6, "feet"),
  13633. weight: math.unit(170, "lb"),
  13634. name: "Side",
  13635. image: {
  13636. source: "./media/characters/finn/side.svg",
  13637. extra: 1953 / 1807,
  13638. bottom: 0.057
  13639. }
  13640. },
  13641. },
  13642. [
  13643. {
  13644. name: "Megamacro",
  13645. height: math.unit(14445, "feet"),
  13646. default: true
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(5 + 6 / 12, "feet"),
  13655. weight: math.unit(125, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/roy/front.svg",
  13659. extra: 1,
  13660. bottom: 0.11
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Micro",
  13667. height: math.unit(3, "inches"),
  13668. default: true
  13669. },
  13670. {
  13671. name: "Normal",
  13672. height: math.unit(5 + 6 / 12, "feet")
  13673. },
  13674. {
  13675. name: "Lesser Macro",
  13676. height: math.unit(60, "feet")
  13677. },
  13678. {
  13679. name: "Greater Macro",
  13680. height: math.unit(120, "feet")
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(100, "lb"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/aevsivs/front.svg",
  13693. extra: 1,
  13694. bottom: 0.03
  13695. }
  13696. },
  13697. back: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(100, "lb"),
  13700. name: "Back",
  13701. image: {
  13702. source: "./media/characters/aevsivs/back.svg"
  13703. }
  13704. },
  13705. },
  13706. [
  13707. {
  13708. name: "Micro",
  13709. height: math.unit(2, "inches"),
  13710. default: true
  13711. },
  13712. {
  13713. name: "Normal",
  13714. height: math.unit(5, "feet")
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13720. {
  13721. front: {
  13722. height: math.unit(5 + 7 / 12, "feet"),
  13723. weight: math.unit(159, "lb"),
  13724. name: "Front",
  13725. image: {
  13726. source: "./media/characters/hildegard/front.svg",
  13727. extra: 312 / 286,
  13728. bottom: 0.005
  13729. }
  13730. },
  13731. },
  13732. [
  13733. {
  13734. name: "Normal",
  13735. height: math.unit(5 + 7 / 12, "feet"),
  13736. default: true
  13737. },
  13738. ]
  13739. ))
  13740. characterMakers.push(() => makeCharacter(
  13741. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13742. {
  13743. bernard: {
  13744. height: math.unit(2 + 7 / 12, "feet"),
  13745. weight: math.unit(66, "lb"),
  13746. name: "Bernard",
  13747. rename: true,
  13748. image: {
  13749. source: "./media/characters/bernard-wilder/bernard.svg",
  13750. extra: 192 / 128,
  13751. bottom: 0.05
  13752. }
  13753. },
  13754. wilder: {
  13755. height: math.unit(5 + 8 / 12, "feet"),
  13756. weight: math.unit(143, "lb"),
  13757. name: "Wilder",
  13758. rename: true,
  13759. image: {
  13760. source: "./media/characters/bernard-wilder/wilder.svg",
  13761. extra: 361 / 312,
  13762. bottom: 0.02
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Normal",
  13769. height: math.unit(2 + 7 / 12, "feet"),
  13770. default: true
  13771. },
  13772. ]
  13773. ))
  13774. characterMakers.push(() => makeCharacter(
  13775. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13776. {
  13777. anthro: {
  13778. height: math.unit(6 + 1 / 12, "feet"),
  13779. weight: math.unit(155, "lb"),
  13780. name: "Anthro",
  13781. image: {
  13782. source: "./media/characters/hearth/anthro.svg",
  13783. extra: 260 / 250,
  13784. bottom: 0.02
  13785. }
  13786. },
  13787. feral: {
  13788. height: math.unit(3.78, "feet"),
  13789. weight: math.unit(35, "kg"),
  13790. name: "Feral",
  13791. image: {
  13792. source: "./media/characters/hearth/feral.svg",
  13793. extra: 153 / 135,
  13794. bottom: 0.03
  13795. }
  13796. },
  13797. },
  13798. [
  13799. {
  13800. name: "Normal",
  13801. height: math.unit(6 + 1 / 12, "feet"),
  13802. default: true
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13808. {
  13809. front: {
  13810. height: math.unit(6, "feet"),
  13811. weight: math.unit(182, "lb"),
  13812. name: "Front",
  13813. image: {
  13814. source: "./media/characters/ingrid/front.svg",
  13815. extra: 294 / 268,
  13816. bottom: 0.027
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Normal",
  13823. height: math.unit(6, "feet"),
  13824. default: true
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13830. {
  13831. eevee: {
  13832. height: math.unit(2 + 10 / 12, "feet"),
  13833. weight: math.unit(86, "lb"),
  13834. name: "Malgam",
  13835. image: {
  13836. source: "./media/characters/malgam/eevee.svg",
  13837. extra: 218 / 180,
  13838. bottom: 0.2
  13839. }
  13840. },
  13841. sylveon: {
  13842. height: math.unit(4, "feet"),
  13843. weight: math.unit(101, "lb"),
  13844. name: "Future Malgam",
  13845. rename: true,
  13846. image: {
  13847. source: "./media/characters/malgam/sylveon.svg",
  13848. extra: 371 / 325,
  13849. bottom: 0.015
  13850. }
  13851. },
  13852. gigantamax: {
  13853. height: math.unit(50, "feet"),
  13854. name: "Gigantamax Malgam",
  13855. rename: true,
  13856. image: {
  13857. source: "./media/characters/malgam/gigantamax.svg"
  13858. }
  13859. },
  13860. },
  13861. [
  13862. {
  13863. name: "Normal",
  13864. height: math.unit(2 + 10 / 12, "feet"),
  13865. default: true
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(5 + 11 / 12, "feet"),
  13874. weight: math.unit(188, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/fleur/front.svg",
  13878. extra: 309 / 283,
  13879. bottom: 0.007
  13880. }
  13881. },
  13882. },
  13883. [
  13884. {
  13885. name: "Normal",
  13886. height: math.unit(5 + 11 / 12, "feet"),
  13887. default: true
  13888. },
  13889. ]
  13890. ))
  13891. characterMakers.push(() => makeCharacter(
  13892. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13893. {
  13894. front: {
  13895. height: math.unit(5 + 4 / 12, "feet"),
  13896. weight: math.unit(122, "lb"),
  13897. name: "Front",
  13898. image: {
  13899. source: "./media/characters/jude/front.svg",
  13900. extra: 288 / 273,
  13901. bottom: 0.03
  13902. }
  13903. },
  13904. },
  13905. [
  13906. {
  13907. name: "Normal",
  13908. height: math.unit(5 + 4 / 12, "feet"),
  13909. default: true
  13910. },
  13911. ]
  13912. ))
  13913. characterMakers.push(() => makeCharacter(
  13914. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13915. {
  13916. front: {
  13917. height: math.unit(5 + 11 / 12, "feet"),
  13918. weight: math.unit(190, "lb"),
  13919. name: "Front",
  13920. image: {
  13921. source: "./media/characters/seara/front.svg",
  13922. extra: 1,
  13923. bottom: 0.05
  13924. }
  13925. },
  13926. },
  13927. [
  13928. {
  13929. name: "Normal",
  13930. height: math.unit(5 + 11 / 12, "feet"),
  13931. default: true
  13932. },
  13933. ]
  13934. ))
  13935. characterMakers.push(() => makeCharacter(
  13936. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13937. {
  13938. front: {
  13939. height: math.unit(16 + 5 / 12, "feet"),
  13940. weight: math.unit(524, "lb"),
  13941. name: "Front",
  13942. image: {
  13943. source: "./media/characters/caspian/front.svg",
  13944. extra: 1,
  13945. bottom: 0.04
  13946. }
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Normal",
  13952. height: math.unit(16 + 5 / 12, "feet"),
  13953. default: true
  13954. },
  13955. ]
  13956. ))
  13957. characterMakers.push(() => makeCharacter(
  13958. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13959. {
  13960. front: {
  13961. height: math.unit(5 + 7 / 12, "feet"),
  13962. weight: math.unit(170, "lb"),
  13963. name: "Front",
  13964. image: {
  13965. source: "./media/characters/mika/front.svg",
  13966. extra: 1,
  13967. bottom: 0.016
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Normal",
  13974. height: math.unit(5 + 7 / 12, "feet"),
  13975. default: true
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(6 + 2 / 12, "feet"),
  13984. weight: math.unit(268, "lb"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/sol/front.svg",
  13988. extra: 247 / 231,
  13989. bottom: 0.05
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Normal",
  13996. height: math.unit(6 + 2 / 12, "feet"),
  13997. default: true
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14003. {
  14004. buizel: {
  14005. height: math.unit(2 + 5 / 12, "feet"),
  14006. weight: math.unit(87, "lb"),
  14007. name: "Buizel",
  14008. image: {
  14009. source: "./media/characters/umiko/buizel.svg",
  14010. extra: 172 / 157,
  14011. bottom: 0.01
  14012. }
  14013. },
  14014. floatzel: {
  14015. height: math.unit(5 + 9 / 12, "feet"),
  14016. weight: math.unit(250, "lb"),
  14017. name: "Floatzel",
  14018. image: {
  14019. source: "./media/characters/umiko/floatzel.svg",
  14020. extra: 262 / 248
  14021. }
  14022. },
  14023. },
  14024. [
  14025. {
  14026. name: "Normal",
  14027. height: math.unit(2 + 5 / 12, "feet"),
  14028. default: true
  14029. },
  14030. ]
  14031. ))
  14032. characterMakers.push(() => makeCharacter(
  14033. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14034. {
  14035. front: {
  14036. height: math.unit(6 + 2 / 12, "feet"),
  14037. weight: math.unit(146, "lb"),
  14038. name: "Front",
  14039. image: {
  14040. source: "./media/characters/iliac/front.svg",
  14041. extra: 389 / 365,
  14042. bottom: 0.035
  14043. }
  14044. },
  14045. },
  14046. [
  14047. {
  14048. name: "Normal",
  14049. height: math.unit(6 + 2 / 12, "feet"),
  14050. default: true
  14051. },
  14052. ]
  14053. ))
  14054. characterMakers.push(() => makeCharacter(
  14055. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14056. {
  14057. front: {
  14058. height: math.unit(6, "feet"),
  14059. weight: math.unit(170, "lb"),
  14060. name: "Front",
  14061. image: {
  14062. source: "./media/characters/topaz/front.svg",
  14063. extra: 317 / 303,
  14064. bottom: 0.055
  14065. }
  14066. },
  14067. },
  14068. [
  14069. {
  14070. name: "Normal",
  14071. height: math.unit(6, "feet"),
  14072. default: true
  14073. },
  14074. ]
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14078. {
  14079. front: {
  14080. height: math.unit(5 + 11 / 12, "feet"),
  14081. weight: math.unit(144, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/gabriel/front.svg",
  14085. extra: 285 / 262,
  14086. bottom: 0.004
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Normal",
  14093. height: math.unit(5 + 11 / 12, "feet"),
  14094. default: true
  14095. },
  14096. ]
  14097. ))
  14098. characterMakers.push(() => makeCharacter(
  14099. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14100. {
  14101. side: {
  14102. height: math.unit(6 + 5 / 12, "feet"),
  14103. weight: math.unit(300, "lb"),
  14104. name: "Side",
  14105. image: {
  14106. source: "./media/characters/tempest-suicune/side.svg",
  14107. extra: 195 / 154,
  14108. bottom: 0.04
  14109. }
  14110. },
  14111. },
  14112. [
  14113. {
  14114. name: "Normal",
  14115. height: math.unit(6 + 5 / 12, "feet"),
  14116. default: true
  14117. },
  14118. ]
  14119. ))
  14120. characterMakers.push(() => makeCharacter(
  14121. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14122. {
  14123. front: {
  14124. height: math.unit(7 + 2 / 12, "feet"),
  14125. weight: math.unit(322, "lb"),
  14126. name: "Front",
  14127. image: {
  14128. source: "./media/characters/vulcan/front.svg",
  14129. extra: 154 / 147,
  14130. bottom: 0.04
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Normal",
  14137. height: math.unit(7 + 2 / 12, "feet"),
  14138. default: true
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14144. {
  14145. front: {
  14146. height: math.unit(5 + 10 / 12, "feet"),
  14147. weight: math.unit(264, "lb"),
  14148. name: "Front",
  14149. image: {
  14150. source: "./media/characters/gault/front.svg",
  14151. extra: 161 / 140,
  14152. bottom: 0.028
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Normal",
  14159. height: math.unit(5 + 10 / 12, "feet"),
  14160. default: true
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14166. {
  14167. front: {
  14168. height: math.unit(6, "feet"),
  14169. weight: math.unit(150, "lb"),
  14170. name: "Front",
  14171. image: {
  14172. source: "./media/characters/shard/front.svg",
  14173. extra: 273 / 238,
  14174. bottom: 0.02
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Normal",
  14181. height: math.unit(3 + 6 / 12, "feet"),
  14182. default: true
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14188. {
  14189. front: {
  14190. height: math.unit(5 + 11 / 12, "feet"),
  14191. weight: math.unit(146, "lb"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/ashe/front.svg",
  14195. extra: 400 / 373,
  14196. bottom: 0.01
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Normal",
  14203. height: math.unit(5 + 11 / 12, "feet"),
  14204. default: true
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(5 + 5 / 12, "feet"),
  14213. weight: math.unit(135, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/beatrix/front.svg",
  14217. extra: 392 / 379,
  14218. bottom: 0.01
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(6, "feet"),
  14226. default: true
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(150, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/ignatius/front.svg",
  14239. extra: 245 / 222,
  14240. bottom: 0.01
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Normal",
  14247. height: math.unit(5 + 5 / 12, "feet"),
  14248. default: true
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14254. {
  14255. front: {
  14256. height: math.unit(6 + 2 / 12, "feet"),
  14257. weight: math.unit(138, "lb"),
  14258. name: "Front",
  14259. image: {
  14260. source: "./media/characters/mei-li/front.svg",
  14261. extra: 237 / 229,
  14262. bottom: 0.03
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Normal",
  14269. height: math.unit(6 + 2 / 12, "feet"),
  14270. default: true
  14271. },
  14272. ]
  14273. ))
  14274. characterMakers.push(() => makeCharacter(
  14275. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14276. {
  14277. front: {
  14278. height: math.unit(2 + 4 / 12, "feet"),
  14279. weight: math.unit(62, "lb"),
  14280. name: "Front",
  14281. image: {
  14282. source: "./media/characters/puru/front.svg",
  14283. extra: 206 / 149,
  14284. bottom: 0.06
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Normal",
  14291. height: math.unit(2 + 4 / 12, "feet"),
  14292. default: true
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14298. {
  14299. taur: {
  14300. height: math.unit(11, "feet"),
  14301. weight: math.unit(500, "lb"),
  14302. name: "Taur",
  14303. image: {
  14304. source: "./media/characters/kee/taur.svg",
  14305. extra: 1,
  14306. bottom: 0.04
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Normal",
  14313. height: math.unit(11, "feet"),
  14314. default: true
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14320. {
  14321. anthro: {
  14322. height: math.unit(7, "feet"),
  14323. weight: math.unit(190, "lb"),
  14324. name: "Anthro",
  14325. image: {
  14326. source: "./media/characters/cobalt-dracha/anthro.svg",
  14327. extra: 231 / 225,
  14328. bottom: 0.04
  14329. }
  14330. },
  14331. feral: {
  14332. height: math.unit(9 + 7 / 12, "feet"),
  14333. weight: math.unit(294, "lb"),
  14334. name: "Feral",
  14335. image: {
  14336. source: "./media/characters/cobalt-dracha/feral.svg",
  14337. extra: 692 / 633,
  14338. bottom: 0.05
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Normal",
  14345. height: math.unit(7, "feet"),
  14346. default: true
  14347. },
  14348. ]
  14349. ))
  14350. characterMakers.push(() => makeCharacter(
  14351. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14352. {
  14353. fallen: {
  14354. height: math.unit(11 + 8 / 12, "feet"),
  14355. weight: math.unit(485, "lb"),
  14356. name: "Java (Fallen)",
  14357. rename: true,
  14358. image: {
  14359. source: "./media/characters/java/fallen.svg",
  14360. extra: 226 / 208,
  14361. bottom: 0.005
  14362. }
  14363. },
  14364. godkin: {
  14365. height: math.unit(10 + 6 / 12, "feet"),
  14366. weight: math.unit(328, "lb"),
  14367. name: "Java (Godkin)",
  14368. rename: true,
  14369. image: {
  14370. source: "./media/characters/java/godkin.svg",
  14371. extra: 270 / 262,
  14372. bottom: 0.02
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Normal",
  14379. height: math.unit(11 + 8 / 12, "feet"),
  14380. default: true
  14381. },
  14382. ]
  14383. ))
  14384. characterMakers.push(() => makeCharacter(
  14385. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14386. {
  14387. front: {
  14388. height: math.unit(7 + 8 / 12, "feet"),
  14389. weight: math.unit(320, "lb"),
  14390. name: "Front",
  14391. image: {
  14392. source: "./media/characters/skoll/front.svg",
  14393. extra: 232 / 220,
  14394. bottom: 0.02
  14395. }
  14396. },
  14397. },
  14398. [
  14399. {
  14400. name: "Normal",
  14401. height: math.unit(7 + 8 / 12, "feet"),
  14402. default: true
  14403. },
  14404. ]
  14405. ))
  14406. characterMakers.push(() => makeCharacter(
  14407. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14408. {
  14409. front: {
  14410. height: math.unit(5 + 9 / 12, "feet"),
  14411. weight: math.unit(170, "lb"),
  14412. name: "Front",
  14413. image: {
  14414. source: "./media/characters/purna/front.svg",
  14415. extra: 239 / 229,
  14416. bottom: 0.01
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Normal",
  14423. height: math.unit(5 + 9 / 12, "feet"),
  14424. default: true
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14430. {
  14431. front: {
  14432. height: math.unit(5 + 9 / 12, "feet"),
  14433. weight: math.unit(142, "lb"),
  14434. name: "Front",
  14435. image: {
  14436. source: "./media/characters/kuva/front.svg",
  14437. extra: 281 / 271,
  14438. bottom: 0.006
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(5 + 9 / 12, "feet"),
  14446. default: true
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14452. {
  14453. anthro: {
  14454. height: math.unit(9 + 2 / 12, "feet"),
  14455. weight: math.unit(270, "lb"),
  14456. name: "Anthro",
  14457. image: {
  14458. source: "./media/characters/embra/anthro.svg",
  14459. extra: 200 / 187,
  14460. bottom: 0.02
  14461. }
  14462. },
  14463. feral: {
  14464. height: math.unit(18 + 8 / 12, "feet"),
  14465. weight: math.unit(576, "lb"),
  14466. name: "Feral",
  14467. image: {
  14468. source: "./media/characters/embra/feral.svg",
  14469. extra: 152 / 137,
  14470. bottom: 0.037
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Normal",
  14477. height: math.unit(9 + 2 / 12, "feet"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14484. {
  14485. anthro: {
  14486. height: math.unit(10 + 9 / 12, "feet"),
  14487. weight: math.unit(224, "lb"),
  14488. name: "Anthro",
  14489. image: {
  14490. source: "./media/characters/grottos/anthro.svg",
  14491. extra: 350 / 332,
  14492. bottom: 0.045
  14493. }
  14494. },
  14495. feral: {
  14496. height: math.unit(20 + 7 / 12, "feet"),
  14497. weight: math.unit(629, "lb"),
  14498. name: "Feral",
  14499. image: {
  14500. source: "./media/characters/grottos/feral.svg",
  14501. extra: 207 / 190,
  14502. bottom: 0.05
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Normal",
  14509. height: math.unit(10 + 9 / 12, "feet"),
  14510. default: true
  14511. },
  14512. ]
  14513. ))
  14514. characterMakers.push(() => makeCharacter(
  14515. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14516. {
  14517. anthro: {
  14518. height: math.unit(9 + 6 / 12, "feet"),
  14519. weight: math.unit(298, "lb"),
  14520. name: "Anthro",
  14521. image: {
  14522. source: "./media/characters/frifna/anthro.svg",
  14523. extra: 282 / 269,
  14524. bottom: 0.015
  14525. }
  14526. },
  14527. feral: {
  14528. height: math.unit(16 + 2 / 12, "feet"),
  14529. weight: math.unit(624, "lb"),
  14530. name: "Feral",
  14531. image: {
  14532. source: "./media/characters/frifna/feral.svg"
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(9 + 6 / 12, "feet"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(6 + 2 / 12, "feet"),
  14549. weight: math.unit(168, "lb"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/elise/front.svg",
  14553. extra: 276 / 271
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(6 + 2 / 12, "feet"),
  14561. default: true
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14567. {
  14568. front: {
  14569. height: math.unit(5 + 10 / 12, "feet"),
  14570. weight: math.unit(210, "lb"),
  14571. name: "Front",
  14572. image: {
  14573. source: "./media/characters/glade/front.svg",
  14574. extra: 258 / 247,
  14575. bottom: 0.008
  14576. }
  14577. },
  14578. },
  14579. [
  14580. {
  14581. name: "Normal",
  14582. height: math.unit(5 + 10 / 12, "feet"),
  14583. default: true
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14589. {
  14590. front: {
  14591. height: math.unit(5 + 10 / 12, "feet"),
  14592. weight: math.unit(129, "lb"),
  14593. name: "Front",
  14594. image: {
  14595. source: "./media/characters/rina/front.svg",
  14596. extra: 266 / 255,
  14597. bottom: 0.005
  14598. }
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Normal",
  14604. height: math.unit(5 + 10 / 12, "feet"),
  14605. default: true
  14606. },
  14607. ]
  14608. ))
  14609. characterMakers.push(() => makeCharacter(
  14610. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14611. {
  14612. front: {
  14613. height: math.unit(6 + 1 / 12, "feet"),
  14614. weight: math.unit(192, "lb"),
  14615. name: "Front",
  14616. image: {
  14617. source: "./media/characters/veronica/front.svg",
  14618. extra: 319 / 309,
  14619. bottom: 0.005
  14620. }
  14621. },
  14622. },
  14623. [
  14624. {
  14625. name: "Normal",
  14626. height: math.unit(6 + 1 / 12, "feet"),
  14627. default: true
  14628. },
  14629. ]
  14630. ))
  14631. characterMakers.push(() => makeCharacter(
  14632. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14633. {
  14634. front: {
  14635. height: math.unit(9 + 3 / 12, "feet"),
  14636. weight: math.unit(1100, "lb"),
  14637. name: "Front",
  14638. image: {
  14639. source: "./media/characters/braxton/front.svg",
  14640. extra: 1057 / 984,
  14641. bottom: 0.05
  14642. }
  14643. },
  14644. },
  14645. [
  14646. {
  14647. name: "Normal",
  14648. height: math.unit(9 + 3 / 12, "feet")
  14649. },
  14650. {
  14651. name: "Giant",
  14652. height: math.unit(300, "feet"),
  14653. default: true
  14654. },
  14655. {
  14656. name: "Macro",
  14657. height: math.unit(700, "feet")
  14658. },
  14659. {
  14660. name: "Megamacro",
  14661. height: math.unit(6000, "feet")
  14662. },
  14663. ]
  14664. ))
  14665. characterMakers.push(() => makeCharacter(
  14666. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14667. {
  14668. front: {
  14669. height: math.unit(6 + 7 / 12, "feet"),
  14670. weight: math.unit(150, "lb"),
  14671. name: "Front",
  14672. image: {
  14673. source: "./media/characters/blue-feyonics/front.svg",
  14674. extra: 1403 / 1306,
  14675. bottom: 0.047
  14676. }
  14677. },
  14678. },
  14679. [
  14680. {
  14681. name: "Normal",
  14682. height: math.unit(6 + 7 / 12, "feet"),
  14683. default: true
  14684. },
  14685. ]
  14686. ))
  14687. characterMakers.push(() => makeCharacter(
  14688. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14689. {
  14690. front: {
  14691. height: math.unit(1.8, "meters"),
  14692. weight: math.unit(60, "kg"),
  14693. name: "Front",
  14694. image: {
  14695. source: "./media/characters/maxwell/front.svg",
  14696. extra: 2060 / 1873
  14697. }
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Micro",
  14703. height: math.unit(1, "mm")
  14704. },
  14705. {
  14706. name: "Normal",
  14707. height: math.unit(1.8, "meter"),
  14708. default: true
  14709. },
  14710. {
  14711. name: "Macro",
  14712. height: math.unit(30, "meters")
  14713. },
  14714. {
  14715. name: "Megamacro",
  14716. height: math.unit(10, "km")
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(6, "feet"),
  14725. weight: math.unit(150, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/jack/front.svg",
  14729. extra: 1754 / 1640,
  14730. bottom: 0.01
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(80000, "feet"),
  14738. default: true
  14739. },
  14740. {
  14741. name: "Max size",
  14742. height: math.unit(10, "lightyears")
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14748. {
  14749. upright: {
  14750. height: math.unit(7, "feet"),
  14751. weight: math.unit(170, "lb"),
  14752. name: "Upright",
  14753. image: {
  14754. source: "./media/characters/cafat/upright.svg",
  14755. bottom: 0.01
  14756. }
  14757. },
  14758. uprightFull: {
  14759. height: math.unit(7, "feet"),
  14760. weight: math.unit(170, "lb"),
  14761. name: "Upright (Full)",
  14762. image: {
  14763. source: "./media/characters/cafat/upright-full.svg",
  14764. bottom: 0.01
  14765. }
  14766. },
  14767. side: {
  14768. height: math.unit(5, "feet"),
  14769. weight: math.unit(150, "lb"),
  14770. name: "Side",
  14771. image: {
  14772. source: "./media/characters/cafat/side.svg"
  14773. }
  14774. },
  14775. },
  14776. [
  14777. {
  14778. name: "Small",
  14779. height: math.unit(7, "feet"),
  14780. default: true
  14781. },
  14782. {
  14783. name: "Large",
  14784. height: math.unit(15.5, "feet")
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/verin-raharra/front.svg",
  14797. extra: 5019 / 4835,
  14798. bottom: 0.023
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(7 + 5 / 12, "feet"),
  14806. default: true
  14807. },
  14808. {
  14809. name: "Upsized",
  14810. height: math.unit(20, "feet")
  14811. },
  14812. ]
  14813. ))
  14814. characterMakers.push(() => makeCharacter(
  14815. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14816. {
  14817. front: {
  14818. height: math.unit(7, "feet"),
  14819. weight: math.unit(230, "lb"),
  14820. name: "Front",
  14821. image: {
  14822. source: "./media/characters/nakata/front.svg",
  14823. extra: 1.005,
  14824. bottom: 0.01
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Normal",
  14831. height: math.unit(7, "feet"),
  14832. default: true
  14833. },
  14834. {
  14835. name: "Big",
  14836. height: math.unit(14, "feet")
  14837. },
  14838. {
  14839. name: "Macro",
  14840. height: math.unit(400, "feet")
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(4.91, "feet"),
  14849. weight: math.unit(100, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/lily/front.svg",
  14853. extra: 1585 / 1415,
  14854. bottom: 0.02
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(4.91, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14868. {
  14869. laying: {
  14870. height: math.unit(4 + 4 / 12, "feet"),
  14871. weight: math.unit(600, "lb"),
  14872. name: "Laying",
  14873. image: {
  14874. source: "./media/characters/sheila/laying.svg",
  14875. extra: 1333 / 1265,
  14876. bottom: 0.16
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(4 + 4 / 12, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(6, "feet"),
  14893. weight: math.unit(190, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/sax/front.svg",
  14897. extra: 1187 / 973,
  14898. bottom: 0.042
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Micro",
  14905. height: math.unit(4, "inches"),
  14906. default: true
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(6, "feet"),
  14915. weight: math.unit(150, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/pandora/front.svg",
  14919. extra: 2720 / 2556,
  14920. bottom: 0.015
  14921. }
  14922. },
  14923. back: {
  14924. height: math.unit(6, "feet"),
  14925. weight: math.unit(150, "lb"),
  14926. name: "Back",
  14927. image: {
  14928. source: "./media/characters/pandora/back.svg",
  14929. extra: 2720 / 2556,
  14930. bottom: 0.01
  14931. }
  14932. },
  14933. beans: {
  14934. height: math.unit(6 / 8, "feet"),
  14935. name: "Beans",
  14936. image: {
  14937. source: "./media/characters/pandora/beans.svg"
  14938. }
  14939. },
  14940. skirt: {
  14941. height: math.unit(6, "feet"),
  14942. weight: math.unit(150, "lb"),
  14943. name: "Skirt",
  14944. image: {
  14945. source: "./media/characters/pandora/skirt.svg",
  14946. extra: 1622 / 1525,
  14947. bottom: 0.015
  14948. }
  14949. },
  14950. hoodie: {
  14951. height: math.unit(6, "feet"),
  14952. weight: math.unit(150, "lb"),
  14953. name: "Hoodie",
  14954. image: {
  14955. source: "./media/characters/pandora/hoodie.svg",
  14956. extra: 1622 / 1525,
  14957. bottom: 0.015
  14958. }
  14959. },
  14960. casual: {
  14961. height: math.unit(6, "feet"),
  14962. weight: math.unit(150, "lb"),
  14963. name: "Casual",
  14964. image: {
  14965. source: "./media/characters/pandora/casual.svg",
  14966. extra: 1622 / 1525,
  14967. bottom: 0.015
  14968. }
  14969. },
  14970. },
  14971. [
  14972. {
  14973. name: "Normal",
  14974. height: math.unit(6, "feet")
  14975. },
  14976. {
  14977. name: "Big Steppy",
  14978. height: math.unit(1, "km"),
  14979. default: true
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14985. {
  14986. side: {
  14987. height: math.unit(10, "feet"),
  14988. weight: math.unit(800, "kg"),
  14989. name: "Side",
  14990. image: {
  14991. source: "./media/characters/venio-darcony/side.svg",
  14992. extra: 1373 / 1003,
  14993. bottom: 0.037
  14994. }
  14995. },
  14996. front: {
  14997. height: math.unit(19, "feet"),
  14998. weight: math.unit(800, "kg"),
  14999. name: "Front",
  15000. image: {
  15001. source: "./media/characters/venio-darcony/front.svg"
  15002. }
  15003. },
  15004. back: {
  15005. height: math.unit(19, "feet"),
  15006. weight: math.unit(800, "kg"),
  15007. name: "Back",
  15008. image: {
  15009. source: "./media/characters/venio-darcony/back.svg"
  15010. }
  15011. },
  15012. sideNsfw: {
  15013. height: math.unit(10, "feet"),
  15014. weight: math.unit(800, "kg"),
  15015. name: "Side (NSFW)",
  15016. image: {
  15017. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15018. extra: 1373 / 1003,
  15019. bottom: 0.037
  15020. }
  15021. },
  15022. frontNsfw: {
  15023. height: math.unit(19, "feet"),
  15024. weight: math.unit(800, "kg"),
  15025. name: "Front (NSFW)",
  15026. image: {
  15027. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15028. }
  15029. },
  15030. backNsfw: {
  15031. height: math.unit(19, "feet"),
  15032. weight: math.unit(800, "kg"),
  15033. name: "Back (NSFW)",
  15034. image: {
  15035. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15036. }
  15037. },
  15038. sideArmored: {
  15039. height: math.unit(10, "feet"),
  15040. weight: math.unit(800, "kg"),
  15041. name: "Side (Armored)",
  15042. image: {
  15043. source: "./media/characters/venio-darcony/side-armored.svg",
  15044. extra: 1373 / 1003,
  15045. bottom: 0.037
  15046. }
  15047. },
  15048. frontArmored: {
  15049. height: math.unit(19, "feet"),
  15050. weight: math.unit(900, "kg"),
  15051. name: "Front (Armored)",
  15052. image: {
  15053. source: "./media/characters/venio-darcony/front-armored.svg"
  15054. }
  15055. },
  15056. backArmored: {
  15057. height: math.unit(19, "feet"),
  15058. weight: math.unit(900, "kg"),
  15059. name: "Back (Armored)",
  15060. image: {
  15061. source: "./media/characters/venio-darcony/back-armored.svg"
  15062. }
  15063. },
  15064. sword: {
  15065. height: math.unit(10, "feet"),
  15066. weight: math.unit(50, "lb"),
  15067. name: "Sword",
  15068. image: {
  15069. source: "./media/characters/venio-darcony/sword.svg"
  15070. }
  15071. },
  15072. },
  15073. [
  15074. {
  15075. name: "Normal",
  15076. height: math.unit(10, "feet")
  15077. },
  15078. {
  15079. name: "Macro",
  15080. height: math.unit(130, "feet"),
  15081. default: true
  15082. },
  15083. {
  15084. name: "Macro+",
  15085. height: math.unit(240, "feet")
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(6, "feet"),
  15094. weight: math.unit(150, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/veski/front.svg",
  15098. extra: 1299 / 1225,
  15099. bottom: 0.04
  15100. }
  15101. },
  15102. back: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(150, "lb"),
  15105. name: "Back",
  15106. image: {
  15107. source: "./media/characters/veski/back.svg",
  15108. extra: 1299 / 1225,
  15109. bottom: 0.008
  15110. }
  15111. },
  15112. maw: {
  15113. height: math.unit(1.5 * 1.21, "feet"),
  15114. name: "Maw",
  15115. image: {
  15116. source: "./media/characters/veski/maw.svg"
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Macro",
  15123. height: math.unit(2, "km"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15130. {
  15131. front: {
  15132. height: math.unit(5 + 7 / 12, "feet"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/isabelle/front.svg",
  15136. extra: 2130 / 1976,
  15137. bottom: 0.05
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Supermicro",
  15144. height: math.unit(10, "micrometers")
  15145. },
  15146. {
  15147. name: "Micro",
  15148. height: math.unit(1, "inch")
  15149. },
  15150. {
  15151. name: "Tiny",
  15152. height: math.unit(5, "inches")
  15153. },
  15154. {
  15155. name: "Standard",
  15156. height: math.unit(5 + 7 / 12, "inches")
  15157. },
  15158. {
  15159. name: "Macro",
  15160. height: math.unit(80, "meters"),
  15161. default: true
  15162. },
  15163. {
  15164. name: "Megamacro",
  15165. height: math.unit(250, "meters")
  15166. },
  15167. {
  15168. name: "Gigamacro",
  15169. height: math.unit(5, "km")
  15170. },
  15171. {
  15172. name: "Cosmic",
  15173. height: math.unit(2.5e6, "miles")
  15174. },
  15175. ]
  15176. ))
  15177. characterMakers.push(() => makeCharacter(
  15178. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15179. {
  15180. front: {
  15181. height: math.unit(6, "feet"),
  15182. weight: math.unit(150, "lb"),
  15183. name: "Front",
  15184. image: {
  15185. source: "./media/characters/hanzo/front.svg",
  15186. extra: 374 / 344,
  15187. bottom: 0.02
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Normal",
  15194. height: math.unit(8, "feet"),
  15195. default: true
  15196. },
  15197. ]
  15198. ))
  15199. characterMakers.push(() => makeCharacter(
  15200. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15201. {
  15202. front: {
  15203. height: math.unit(7, "feet"),
  15204. weight: math.unit(130, "lb"),
  15205. name: "Front",
  15206. image: {
  15207. source: "./media/characters/anna/front.svg",
  15208. extra: 169 / 145,
  15209. bottom: 0.06
  15210. }
  15211. },
  15212. full: {
  15213. height: math.unit(4.96, "feet"),
  15214. weight: math.unit(220, "lb"),
  15215. name: "Full",
  15216. image: {
  15217. source: "./media/characters/anna/full.svg",
  15218. extra: 138 / 114,
  15219. bottom: 0.15
  15220. }
  15221. },
  15222. tongue: {
  15223. height: math.unit(2.53, "feet"),
  15224. name: "Tongue",
  15225. image: {
  15226. source: "./media/characters/anna/tongue.svg"
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(7, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15240. {
  15241. front: {
  15242. height: math.unit(7, "feet"),
  15243. weight: math.unit(150, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/ian-corvid/front.svg",
  15247. extra: 150 / 142,
  15248. bottom: 0.02
  15249. }
  15250. },
  15251. back: {
  15252. height: math.unit(7, "feet"),
  15253. weight: math.unit(150, "lb"),
  15254. name: "Back",
  15255. image: {
  15256. source: "./media/characters/ian-corvid/back.svg",
  15257. extra: 150 / 143,
  15258. bottom: 0.01
  15259. }
  15260. },
  15261. stomping: {
  15262. height: math.unit(7, "feet"),
  15263. weight: math.unit(150, "lb"),
  15264. name: "Stomping",
  15265. image: {
  15266. source: "./media/characters/ian-corvid/stomping.svg",
  15267. extra: 76 / 72
  15268. }
  15269. },
  15270. sitting: {
  15271. height: math.unit(7 / 1.8, "feet"),
  15272. weight: math.unit(150, "lb"),
  15273. name: "Sitting",
  15274. image: {
  15275. source: "./media/characters/ian-corvid/sitting.svg",
  15276. extra: 1400 / 1269,
  15277. bottom: 0.15
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Tiny Microw",
  15284. height: math.unit(1, "inch")
  15285. },
  15286. {
  15287. name: "Microw",
  15288. height: math.unit(6, "inches")
  15289. },
  15290. {
  15291. name: "Crow",
  15292. height: math.unit(7 + 1 / 12, "feet"),
  15293. default: true
  15294. },
  15295. {
  15296. name: "Macrow",
  15297. height: math.unit(176, "feet")
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(5 + 7 / 12, "feet"),
  15306. weight: math.unit(147, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/natalie-kellon/front.svg",
  15310. extra: 1214 / 1141,
  15311. bottom: 0.02
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Micro",
  15318. height: math.unit(1 / 16, "inch")
  15319. },
  15320. {
  15321. name: "Tiny",
  15322. height: math.unit(4, "inches")
  15323. },
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(5 + 7 / 12, "feet"),
  15327. default: true
  15328. },
  15329. {
  15330. name: "Amazon",
  15331. height: math.unit(12, "feet")
  15332. },
  15333. {
  15334. name: "Giantess",
  15335. height: math.unit(160, "meters")
  15336. },
  15337. {
  15338. name: "Titaness",
  15339. height: math.unit(800, "meters")
  15340. },
  15341. ]
  15342. ))
  15343. characterMakers.push(() => makeCharacter(
  15344. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15345. {
  15346. front: {
  15347. height: math.unit(6, "feet"),
  15348. weight: math.unit(150, "lb"),
  15349. name: "Front",
  15350. image: {
  15351. source: "./media/characters/alluria/front.svg",
  15352. extra: 806 / 738,
  15353. bottom: 0.01
  15354. }
  15355. },
  15356. side: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(150, "lb"),
  15359. name: "Side",
  15360. image: {
  15361. source: "./media/characters/alluria/side.svg",
  15362. extra: 800 / 750,
  15363. }
  15364. },
  15365. back: {
  15366. height: math.unit(6, "feet"),
  15367. weight: math.unit(150, "lb"),
  15368. name: "Back",
  15369. image: {
  15370. source: "./media/characters/alluria/back.svg",
  15371. extra: 806 / 738,
  15372. }
  15373. },
  15374. frontMaid: {
  15375. height: math.unit(6, "feet"),
  15376. weight: math.unit(150, "lb"),
  15377. name: "Front (Maid)",
  15378. image: {
  15379. source: "./media/characters/alluria/front-maid.svg",
  15380. extra: 806 / 738,
  15381. bottom: 0.01
  15382. }
  15383. },
  15384. sideMaid: {
  15385. height: math.unit(6, "feet"),
  15386. weight: math.unit(150, "lb"),
  15387. name: "Side (Maid)",
  15388. image: {
  15389. source: "./media/characters/alluria/side-maid.svg",
  15390. extra: 800 / 750,
  15391. bottom: 0.005
  15392. }
  15393. },
  15394. backMaid: {
  15395. height: math.unit(6, "feet"),
  15396. weight: math.unit(150, "lb"),
  15397. name: "Back (Maid)",
  15398. image: {
  15399. source: "./media/characters/alluria/back-maid.svg",
  15400. extra: 806 / 738,
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Micro",
  15407. height: math.unit(6, "inches"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(6, "feet"),
  15417. weight: math.unit(150, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/kyle/front.svg",
  15421. extra: 1069 / 962,
  15422. bottom: 77.228 / 1727.45
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Macro",
  15429. height: math.unit(150, "feet"),
  15430. default: true
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(300, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/duncan/front.svg",
  15443. extra: 1650 / 1482,
  15444. bottom: 0.05
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Macro",
  15451. height: math.unit(100, "feet"),
  15452. default: true
  15453. },
  15454. ]
  15455. ))
  15456. characterMakers.push(() => makeCharacter(
  15457. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15458. {
  15459. front: {
  15460. height: math.unit(5 + 4 / 12, "feet"),
  15461. weight: math.unit(220, "lb"),
  15462. name: "Front",
  15463. image: {
  15464. source: "./media/characters/memory/front.svg",
  15465. extra: 3641 / 3545,
  15466. bottom: 0.03
  15467. }
  15468. },
  15469. back: {
  15470. height: math.unit(5 + 4 / 12, "feet"),
  15471. weight: math.unit(220, "lb"),
  15472. name: "Back",
  15473. image: {
  15474. source: "./media/characters/memory/back.svg",
  15475. extra: 3641 / 3545,
  15476. bottom: 0.025
  15477. }
  15478. },
  15479. frontSkirt: {
  15480. height: math.unit(5 + 4 / 12, "feet"),
  15481. weight: math.unit(220, "lb"),
  15482. name: "Front (Skirt)",
  15483. image: {
  15484. source: "./media/characters/memory/front-skirt.svg",
  15485. extra: 3641 / 3545,
  15486. bottom: 0.03
  15487. }
  15488. },
  15489. frontDress: {
  15490. height: math.unit(5 + 4 / 12, "feet"),
  15491. weight: math.unit(220, "lb"),
  15492. name: "Front (Dress)",
  15493. image: {
  15494. source: "./media/characters/memory/front-dress.svg",
  15495. extra: 3641 / 3545,
  15496. bottom: 0.03
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Micro",
  15503. height: math.unit(6, "inches"),
  15504. default: true
  15505. },
  15506. {
  15507. name: "Normal",
  15508. height: math.unit(5 + 4 / 12, "feet")
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15514. {
  15515. front: {
  15516. height: math.unit(4 + 11 / 12, "feet"),
  15517. weight: math.unit(100, "lb"),
  15518. name: "Front",
  15519. image: {
  15520. source: "./media/characters/luno/front.svg",
  15521. extra: 1535 / 1487,
  15522. bottom: 0.03
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Micro",
  15529. height: math.unit(3, "inches")
  15530. },
  15531. {
  15532. name: "Normal",
  15533. height: math.unit(4 + 11 / 12, "feet"),
  15534. default: true
  15535. },
  15536. {
  15537. name: "Macro",
  15538. height: math.unit(300, "feet")
  15539. },
  15540. {
  15541. name: "Megamacro",
  15542. height: math.unit(700, "miles")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15548. {
  15549. front: {
  15550. height: math.unit(6 + 2 / 12, "feet"),
  15551. weight: math.unit(170, "lb"),
  15552. name: "Front",
  15553. image: {
  15554. source: "./media/characters/jamesy/front.svg",
  15555. extra: 440 / 382,
  15556. bottom: 0.005
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Micro",
  15563. height: math.unit(3, "inches")
  15564. },
  15565. {
  15566. name: "Normal",
  15567. height: math.unit(6 + 2 / 12, "feet"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Macro",
  15572. height: math.unit(300, "feet")
  15573. },
  15574. {
  15575. name: "Megamacro",
  15576. height: math.unit(700, "miles")
  15577. },
  15578. ]
  15579. ))
  15580. characterMakers.push(() => makeCharacter(
  15581. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15582. {
  15583. front: {
  15584. height: math.unit(6, "feet"),
  15585. weight: math.unit(160, "lb"),
  15586. name: "Front",
  15587. image: {
  15588. source: "./media/characters/mark/front.svg",
  15589. extra: 3300 / 3100,
  15590. bottom: 136.42 / 3440.47
  15591. }
  15592. },
  15593. },
  15594. [
  15595. {
  15596. name: "Macro",
  15597. height: math.unit(120, "meters")
  15598. },
  15599. {
  15600. name: "Bigger Macro",
  15601. height: math.unit(350, "meters")
  15602. },
  15603. {
  15604. name: "Megamacro",
  15605. height: math.unit(8, "km"),
  15606. default: true
  15607. },
  15608. {
  15609. name: "Continental",
  15610. height: math.unit(4550, "km")
  15611. },
  15612. {
  15613. name: "Planetary",
  15614. height: math.unit(65000, "km")
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(400, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/mac/front.svg",
  15627. extra: 1048 / 987.7,
  15628. bottom: 60 / 1107.6,
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Macro",
  15635. height: math.unit(500, "feet"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(5 + 2 / 12, "feet"),
  15645. weight: math.unit(190, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/bari/front.svg",
  15649. extra: 3156 / 2880,
  15650. bottom: 0.03
  15651. }
  15652. },
  15653. back: {
  15654. height: math.unit(5 + 2 / 12, "feet"),
  15655. weight: math.unit(190, "lb"),
  15656. name: "Back",
  15657. image: {
  15658. source: "./media/characters/bari/back.svg",
  15659. extra: 3260 / 2834,
  15660. bottom: 0.025
  15661. }
  15662. },
  15663. frontPlush: {
  15664. height: math.unit(5 + 2 / 12, "feet"),
  15665. weight: math.unit(190, "lb"),
  15666. name: "Front (Plush)",
  15667. image: {
  15668. source: "./media/characters/bari/front-plush.svg",
  15669. extra: 1112 / 1061,
  15670. bottom: 0.002
  15671. }
  15672. },
  15673. },
  15674. [
  15675. {
  15676. name: "Micro",
  15677. height: math.unit(3, "inches")
  15678. },
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(5 + 2 / 12, "feet"),
  15682. default: true
  15683. },
  15684. {
  15685. name: "Macro",
  15686. height: math.unit(20, "feet")
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(6 + 1 / 12, "feet"),
  15695. weight: math.unit(275, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/hunter-misha-raven/front.svg"
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Mortal",
  15705. height: math.unit(6 + 1 / 12, "feet")
  15706. },
  15707. {
  15708. name: "Divine",
  15709. height: math.unit(1.12134e34, "parsecs"),
  15710. default: true
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15716. {
  15717. front: {
  15718. height: math.unit(6 + 3 / 12, "feet"),
  15719. weight: math.unit(220, "lb"),
  15720. name: "Front",
  15721. image: {
  15722. source: "./media/characters/max-calore/front.svg",
  15723. extra: 1700 / 1648,
  15724. bottom: 0.01
  15725. }
  15726. },
  15727. back: {
  15728. height: math.unit(6 + 3 / 12, "feet"),
  15729. weight: math.unit(220, "lb"),
  15730. name: "Back",
  15731. image: {
  15732. source: "./media/characters/max-calore/back.svg",
  15733. extra: 1700 / 1648,
  15734. bottom: 0.01
  15735. }
  15736. },
  15737. },
  15738. [
  15739. {
  15740. name: "Normal",
  15741. height: math.unit(6 + 3 / 12, "feet"),
  15742. default: true
  15743. },
  15744. ]
  15745. ))
  15746. characterMakers.push(() => makeCharacter(
  15747. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15748. {
  15749. side: {
  15750. height: math.unit(2 + 8 / 12, "feet"),
  15751. weight: math.unit(99, "lb"),
  15752. name: "Side",
  15753. image: {
  15754. source: "./media/characters/aspen/side.svg",
  15755. extra: 152 / 138,
  15756. bottom: 0.032
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(2 + 8 / 12, "feet"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15770. {
  15771. side: {
  15772. height: math.unit(3 + 2 / 12, "feet"),
  15773. weight: math.unit(224, "lb"),
  15774. name: "Side",
  15775. image: {
  15776. source: "./media/characters/sheila-feral-wolf/side.svg",
  15777. extra: 179 / 166,
  15778. bottom: 0.03
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(3 + 2 / 12, "feet"),
  15786. default: true
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15792. {
  15793. side: {
  15794. height: math.unit(1 + 9 / 12, "feet"),
  15795. weight: math.unit(38, "lb"),
  15796. name: "Side",
  15797. image: {
  15798. source: "./media/characters/michelle/side.svg",
  15799. extra: 147 / 136.7,
  15800. bottom: 0.03
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(1 + 9 / 12, "feet"),
  15808. default: true
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15814. {
  15815. front: {
  15816. height: math.unit(1 + 1 / 12, "feet"),
  15817. weight: math.unit(18, "lb"),
  15818. name: "Front",
  15819. image: {
  15820. source: "./media/characters/nino/front.svg"
  15821. }
  15822. },
  15823. },
  15824. [
  15825. {
  15826. name: "Normal",
  15827. height: math.unit(1 + 1 / 12, "feet"),
  15828. default: true
  15829. },
  15830. ]
  15831. ))
  15832. characterMakers.push(() => makeCharacter(
  15833. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15834. {
  15835. front: {
  15836. height: math.unit(1, "feet"),
  15837. weight: math.unit(16, "lb"),
  15838. name: "Front",
  15839. image: {
  15840. source: "./media/characters/viola/front.svg"
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Normal",
  15847. height: math.unit(1, "feet"),
  15848. default: true
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15854. {
  15855. front: {
  15856. height: math.unit(6 + 5 / 12, "feet"),
  15857. weight: math.unit(580, "lb"),
  15858. name: "Front",
  15859. image: {
  15860. source: "./media/characters/atlas/front.svg",
  15861. extra: 298.5 / 290,
  15862. bottom: 0.015
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(6 + 5 / 12, "feet"),
  15870. default: true
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15876. {
  15877. side: {
  15878. height: math.unit(1 + 10 / 12, "feet"),
  15879. weight: math.unit(25, "lb"),
  15880. name: "Side",
  15881. image: {
  15882. source: "./media/characters/davy/side.svg",
  15883. extra: 200 / 170,
  15884. bottom: 0.01
  15885. }
  15886. },
  15887. },
  15888. [
  15889. {
  15890. name: "Normal",
  15891. height: math.unit(1 + 10 / 12, "feet"),
  15892. default: true
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15898. {
  15899. side: {
  15900. height: math.unit(4 + 8 / 12, "feet"),
  15901. weight: math.unit(166, "lb"),
  15902. name: "Side",
  15903. image: {
  15904. source: "./media/characters/fiona/side.svg",
  15905. extra: 232 / 220,
  15906. bottom: 0.03
  15907. }
  15908. },
  15909. },
  15910. [
  15911. {
  15912. name: "Normal",
  15913. height: math.unit(4 + 8 / 12, "feet"),
  15914. default: true
  15915. },
  15916. ]
  15917. ))
  15918. characterMakers.push(() => makeCharacter(
  15919. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15920. {
  15921. front: {
  15922. height: math.unit(2, "feet"),
  15923. weight: math.unit(62, "lb"),
  15924. name: "Front",
  15925. image: {
  15926. source: "./media/characters/lyla/front.svg",
  15927. bottom: 0.1
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(2, "feet"),
  15935. default: true
  15936. },
  15937. ]
  15938. ))
  15939. characterMakers.push(() => makeCharacter(
  15940. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15941. {
  15942. side: {
  15943. height: math.unit(1.8, "feet"),
  15944. weight: math.unit(44, "lb"),
  15945. name: "Side",
  15946. image: {
  15947. source: "./media/characters/perseus/side.svg",
  15948. bottom: 0.21
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(1.8, "feet"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15962. {
  15963. side: {
  15964. height: math.unit(4 + 2 / 12, "feet"),
  15965. weight: math.unit(20, "lb"),
  15966. name: "Side",
  15967. image: {
  15968. source: "./media/characters/remus/side.svg"
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(4 + 2 / 12, "feet"),
  15976. default: true
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15982. {
  15983. front: {
  15984. height: math.unit(4 + 11 / 12, "feet"),
  15985. weight: math.unit(114, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/raf/front.svg",
  15989. bottom: 0.01
  15990. }
  15991. },
  15992. side: {
  15993. height: math.unit(4 + 11 / 12, "feet"),
  15994. weight: math.unit(114, "lb"),
  15995. name: "Side",
  15996. image: {
  15997. source: "./media/characters/raf/side.svg",
  15998. bottom: 0.005
  15999. }
  16000. },
  16001. },
  16002. [
  16003. {
  16004. name: "Micro",
  16005. height: math.unit(2, "inches")
  16006. },
  16007. {
  16008. name: "Normal",
  16009. height: math.unit(4 + 11 / 12, "feet"),
  16010. default: true
  16011. },
  16012. {
  16013. name: "Macro",
  16014. height: math.unit(70, "feet")
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16020. {
  16021. front: {
  16022. height: math.unit(1.5, "meters"),
  16023. weight: math.unit(68, "kg"),
  16024. name: "Front",
  16025. image: {
  16026. source: "./media/characters/liam-einarr/front.svg",
  16027. extra: 2822 / 2666
  16028. }
  16029. },
  16030. back: {
  16031. height: math.unit(1.5, "meters"),
  16032. weight: math.unit(68, "kg"),
  16033. name: "Back",
  16034. image: {
  16035. source: "./media/characters/liam-einarr/back.svg",
  16036. extra: 2822 / 2666,
  16037. bottom: 0.015
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Normal",
  16044. height: math.unit(1.5, "meters"),
  16045. default: true
  16046. },
  16047. {
  16048. name: "Macro",
  16049. height: math.unit(150, "meters")
  16050. },
  16051. {
  16052. name: "Megamacro",
  16053. height: math.unit(35, "km")
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16059. {
  16060. front: {
  16061. height: math.unit(6, "feet"),
  16062. weight: math.unit(75, "kg"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/linda/front.svg",
  16066. extra: 930 / 874,
  16067. bottom: 0.004
  16068. }
  16069. },
  16070. },
  16071. [
  16072. {
  16073. name: "Normal",
  16074. height: math.unit(6, "feet"),
  16075. default: true
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(6 + 8 / 12, "feet"),
  16084. weight: math.unit(220, "lb"),
  16085. name: "Front",
  16086. image: {
  16087. source: "./media/characters/caylex/front.svg",
  16088. extra: 821 / 772,
  16089. bottom: 0.07
  16090. }
  16091. },
  16092. back: {
  16093. height: math.unit(6 + 8 / 12, "feet"),
  16094. weight: math.unit(220, "lb"),
  16095. name: "Back",
  16096. image: {
  16097. source: "./media/characters/caylex/back.svg",
  16098. extra: 821 / 772,
  16099. bottom: 0.022
  16100. }
  16101. },
  16102. hand: {
  16103. height: math.unit(1.25, "feet"),
  16104. name: "Hand",
  16105. image: {
  16106. source: "./media/characters/caylex/hand.svg"
  16107. }
  16108. },
  16109. foot: {
  16110. height: math.unit(1.6, "feet"),
  16111. name: "Foot",
  16112. image: {
  16113. source: "./media/characters/caylex/foot.svg"
  16114. }
  16115. },
  16116. armored: {
  16117. height: math.unit(6 + 8 / 12, "feet"),
  16118. weight: math.unit(250, "lb"),
  16119. name: "Armored",
  16120. image: {
  16121. source: "./media/characters/caylex/armored.svg",
  16122. extra: 1420 / 1310,
  16123. bottom: 0.045
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Normal",
  16130. height: math.unit(6 + 8 / 12, "feet"),
  16131. default: true
  16132. },
  16133. {
  16134. name: "Normal+",
  16135. height: math.unit(12, "feet")
  16136. },
  16137. ]
  16138. ))
  16139. characterMakers.push(() => makeCharacter(
  16140. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16141. {
  16142. front: {
  16143. height: math.unit(7 + 6 / 12, "feet"),
  16144. weight: math.unit(288, "lb"),
  16145. name: "Front",
  16146. image: {
  16147. source: "./media/characters/alana/front.svg",
  16148. extra: 679 / 653,
  16149. bottom: 22.5 / 701
  16150. }
  16151. },
  16152. },
  16153. [
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(7 + 6 / 12, "feet")
  16157. },
  16158. {
  16159. name: "Large",
  16160. height: math.unit(50, "feet")
  16161. },
  16162. {
  16163. name: "Macro",
  16164. height: math.unit(100, "feet"),
  16165. default: true
  16166. },
  16167. {
  16168. name: "Macro+",
  16169. height: math.unit(200, "feet")
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(6 + 1 / 12, "feet"),
  16178. weight: math.unit(210, "lb"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/hasani/front.svg",
  16182. extra: 244 / 232,
  16183. bottom: 0.01
  16184. }
  16185. },
  16186. back: {
  16187. height: math.unit(6 + 1 / 12, "feet"),
  16188. weight: math.unit(210, "lb"),
  16189. name: "Back",
  16190. image: {
  16191. source: "./media/characters/hasani/back.svg",
  16192. extra: 244 / 232,
  16193. bottom: 0.01
  16194. }
  16195. },
  16196. },
  16197. [
  16198. {
  16199. name: "Normal",
  16200. height: math.unit(6 + 1 / 12, "feet")
  16201. },
  16202. {
  16203. name: "Macro",
  16204. height: math.unit(175, "feet"),
  16205. default: true
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16211. {
  16212. front: {
  16213. height: math.unit(1.82, "meters"),
  16214. weight: math.unit(140, "lb"),
  16215. name: "Front",
  16216. image: {
  16217. source: "./media/characters/nita/front.svg",
  16218. extra: 2473 / 2363,
  16219. bottom: 0.01
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(1.82, "m")
  16227. },
  16228. {
  16229. name: "Macro",
  16230. height: math.unit(300, "m")
  16231. },
  16232. {
  16233. name: "Mistake Canon",
  16234. height: math.unit(0.5, "miles"),
  16235. default: true
  16236. },
  16237. {
  16238. name: "Big Mistake",
  16239. height: math.unit(13, "miles")
  16240. },
  16241. {
  16242. name: "Playing God",
  16243. height: math.unit(2450, "miles")
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16249. {
  16250. front: {
  16251. height: math.unit(4, "feet"),
  16252. weight: math.unit(120, "lb"),
  16253. name: "Front",
  16254. image: {
  16255. source: "./media/characters/shiriko/front.svg",
  16256. extra: 195 / 188
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(4, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(6, "feet"),
  16273. name: "front",
  16274. image: {
  16275. source: "./media/characters/deja/front.svg",
  16276. extra: 926 / 840,
  16277. bottom: 0.07
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Planck Length",
  16284. height: math.unit(1.6e-35, "meters")
  16285. },
  16286. {
  16287. name: "Normal",
  16288. height: math.unit(30.48, "meters"),
  16289. default: true
  16290. },
  16291. {
  16292. name: "Universal",
  16293. height: math.unit(8.8e26, "meters")
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16299. {
  16300. side: {
  16301. height: math.unit(8, "feet"),
  16302. weight: math.unit(6300, "lb"),
  16303. name: "Side",
  16304. image: {
  16305. source: "./media/characters/anima/side.svg",
  16306. bottom: 0.035
  16307. }
  16308. },
  16309. },
  16310. [
  16311. {
  16312. name: "Normal",
  16313. height: math.unit(8, "feet"),
  16314. default: true
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16320. {
  16321. front: {
  16322. height: math.unit(8, "feet"),
  16323. weight: math.unit(350, "lb"),
  16324. name: "Front",
  16325. image: {
  16326. source: "./media/characters/bianca/front.svg",
  16327. extra: 234 / 225,
  16328. bottom: 0.03
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(8, "feet"),
  16336. default: true
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16342. {
  16343. front: {
  16344. height: math.unit(6, "feet"),
  16345. weight: math.unit(150, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/adinia/front.svg",
  16349. extra: 1845 / 1672,
  16350. bottom: 0.02
  16351. }
  16352. },
  16353. back: {
  16354. height: math.unit(6, "feet"),
  16355. weight: math.unit(150, "lb"),
  16356. name: "Back",
  16357. image: {
  16358. source: "./media/characters/adinia/back.svg",
  16359. extra: 1845 / 1672,
  16360. bottom: 0.002
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(11 + 5 / 12, "feet"),
  16368. default: true
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(3, "meters"),
  16377. weight: math.unit(200, "kg"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/lykasa/front.svg",
  16381. extra: 1076 / 976,
  16382. bottom: 0.06
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(3, "meters")
  16390. },
  16391. {
  16392. name: "Kaiju",
  16393. height: math.unit(120, "meters"),
  16394. default: true
  16395. },
  16396. {
  16397. name: "Mega Kaiju",
  16398. height: math.unit(240, "km")
  16399. },
  16400. {
  16401. name: "Giga Kaiju",
  16402. height: math.unit(400, "megameters")
  16403. },
  16404. {
  16405. name: "Tera Kaiju",
  16406. height: math.unit(800, "gigameters")
  16407. },
  16408. {
  16409. name: "Kaiju Dragon Goddess",
  16410. height: math.unit(26, "zettaparsecs")
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16416. {
  16417. side: {
  16418. height: math.unit(283 / 124 * 6, "feet"),
  16419. weight: math.unit(35000, "lb"),
  16420. name: "Side",
  16421. image: {
  16422. source: "./media/characters/malfaren/side.svg",
  16423. extra: 2500 / 1010,
  16424. bottom: 0.01
  16425. }
  16426. },
  16427. front: {
  16428. height: math.unit(22.36, "feet"),
  16429. weight: math.unit(35000, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/malfaren/front.svg",
  16433. extra: 1631 / 1476,
  16434. bottom: 0.01
  16435. }
  16436. },
  16437. maw: {
  16438. height: math.unit(6.9, "feet"),
  16439. name: "Maw",
  16440. image: {
  16441. source: "./media/characters/malfaren/maw.svg"
  16442. }
  16443. },
  16444. },
  16445. [
  16446. {
  16447. name: "Big",
  16448. height: math.unit(283 / 162 * 6, "feet"),
  16449. },
  16450. {
  16451. name: "Bigger",
  16452. height: math.unit(283 / 124 * 6, "feet")
  16453. },
  16454. {
  16455. name: "Massive",
  16456. height: math.unit(283 / 92 * 6, "feet"),
  16457. default: true
  16458. },
  16459. {
  16460. name: "👀💦",
  16461. height: math.unit(283 / 73 * 6, "feet"),
  16462. },
  16463. ]
  16464. ))
  16465. characterMakers.push(() => makeCharacter(
  16466. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16467. {
  16468. front: {
  16469. height: math.unit(1.7, "m"),
  16470. weight: math.unit(70, "kg"),
  16471. name: "Front",
  16472. image: {
  16473. source: "./media/characters/kernel/front.svg",
  16474. extra: 222 / 210,
  16475. bottom: 0.007
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Nano",
  16482. height: math.unit(17, "micrometers")
  16483. },
  16484. {
  16485. name: "Micro",
  16486. height: math.unit(1.7, "mm")
  16487. },
  16488. {
  16489. name: "Small",
  16490. height: math.unit(1.7, "cm")
  16491. },
  16492. {
  16493. name: "Normal",
  16494. height: math.unit(1.7, "m"),
  16495. default: true
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16501. {
  16502. front: {
  16503. height: math.unit(1.75, "meters"),
  16504. weight: math.unit(65, "kg"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/jayne-folest/front.svg",
  16508. extra: 2115 / 2007,
  16509. bottom: 0.02
  16510. }
  16511. },
  16512. back: {
  16513. height: math.unit(1.75, "meters"),
  16514. weight: math.unit(65, "kg"),
  16515. name: "Back",
  16516. image: {
  16517. source: "./media/characters/jayne-folest/back.svg",
  16518. extra: 2115 / 2007,
  16519. bottom: 0.005
  16520. }
  16521. },
  16522. frontClothed: {
  16523. height: math.unit(1.75, "meters"),
  16524. weight: math.unit(65, "kg"),
  16525. name: "Front (Clothed)",
  16526. image: {
  16527. source: "./media/characters/jayne-folest/front-clothed.svg",
  16528. extra: 2115 / 2007,
  16529. bottom: 0.035
  16530. }
  16531. },
  16532. hand: {
  16533. height: math.unit(1 / 1.260, "feet"),
  16534. name: "Hand",
  16535. image: {
  16536. source: "./media/characters/jayne-folest/hand.svg"
  16537. }
  16538. },
  16539. foot: {
  16540. height: math.unit(1 / 0.918, "feet"),
  16541. name: "Foot",
  16542. image: {
  16543. source: "./media/characters/jayne-folest/foot.svg"
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Micro",
  16550. height: math.unit(4, "cm")
  16551. },
  16552. {
  16553. name: "Normal",
  16554. height: math.unit(1.75, "meters")
  16555. },
  16556. {
  16557. name: "Macro",
  16558. height: math.unit(47.5, "meters"),
  16559. default: true
  16560. },
  16561. ]
  16562. ))
  16563. characterMakers.push(() => makeCharacter(
  16564. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16565. {
  16566. front: {
  16567. height: math.unit(180, "cm"),
  16568. weight: math.unit(70, "kg"),
  16569. name: "Front",
  16570. image: {
  16571. source: "./media/characters/algier/front.svg",
  16572. extra: 596 / 572,
  16573. bottom: 0.04
  16574. }
  16575. },
  16576. back: {
  16577. height: math.unit(180, "cm"),
  16578. weight: math.unit(70, "kg"),
  16579. name: "Back",
  16580. image: {
  16581. source: "./media/characters/algier/back.svg",
  16582. extra: 596 / 572,
  16583. bottom: 0.025
  16584. }
  16585. },
  16586. frontdressed: {
  16587. height: math.unit(180, "cm"),
  16588. weight: math.unit(150, "kg"),
  16589. name: "Front-dressed",
  16590. image: {
  16591. source: "./media/characters/algier/front-dressed.svg",
  16592. extra: 596 / 572,
  16593. bottom: 0.038
  16594. }
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Micro",
  16600. height: math.unit(5, "cm")
  16601. },
  16602. {
  16603. name: "Normal",
  16604. height: math.unit(180, "cm"),
  16605. default: true
  16606. },
  16607. {
  16608. name: "Macro",
  16609. height: math.unit(64, "m")
  16610. },
  16611. ]
  16612. ))
  16613. characterMakers.push(() => makeCharacter(
  16614. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16615. {
  16616. upright: {
  16617. height: math.unit(7, "feet"),
  16618. weight: math.unit(300, "lb"),
  16619. name: "Upright",
  16620. image: {
  16621. source: "./media/characters/pretzel/upright.svg",
  16622. extra: 534 / 522,
  16623. bottom: 0.065
  16624. }
  16625. },
  16626. sprawling: {
  16627. height: math.unit(3.75, "feet"),
  16628. weight: math.unit(300, "lb"),
  16629. name: "Sprawling",
  16630. image: {
  16631. source: "./media/characters/pretzel/sprawling.svg",
  16632. extra: 314 / 281,
  16633. bottom: 0.1
  16634. }
  16635. },
  16636. tongue: {
  16637. height: math.unit(2, "feet"),
  16638. name: "Tongue",
  16639. image: {
  16640. source: "./media/characters/pretzel/tongue.svg"
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(7, "feet"),
  16648. default: true
  16649. },
  16650. {
  16651. name: "Oversized",
  16652. height: math.unit(15, "feet")
  16653. },
  16654. {
  16655. name: "Huge",
  16656. height: math.unit(30, "feet")
  16657. },
  16658. {
  16659. name: "Macro",
  16660. height: math.unit(250, "feet")
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16666. {
  16667. sideFront: {
  16668. height: math.unit(5 + 2 / 12, "feet"),
  16669. weight: math.unit(120, "lb"),
  16670. name: "Front Side",
  16671. image: {
  16672. source: "./media/characters/roxi/side-front.svg",
  16673. extra: 2924 / 2717,
  16674. bottom: 0.08
  16675. }
  16676. },
  16677. sideBack: {
  16678. height: math.unit(5 + 2 / 12, "feet"),
  16679. weight: math.unit(120, "lb"),
  16680. name: "Back Side",
  16681. image: {
  16682. source: "./media/characters/roxi/side-back.svg",
  16683. extra: 2904 / 2693,
  16684. bottom: 0.06
  16685. }
  16686. },
  16687. front: {
  16688. height: math.unit(5 + 2 / 12, "feet"),
  16689. weight: math.unit(120, "lb"),
  16690. name: "Front",
  16691. image: {
  16692. source: "./media/characters/roxi/front.svg",
  16693. extra: 2028 / 1907,
  16694. bottom: 0.01
  16695. }
  16696. },
  16697. frontAlt: {
  16698. height: math.unit(5 + 2 / 12, "feet"),
  16699. weight: math.unit(120, "lb"),
  16700. name: "Front (Alt)",
  16701. image: {
  16702. source: "./media/characters/roxi/front-alt.svg",
  16703. extra: 1828 / 1798,
  16704. bottom: 0.01
  16705. }
  16706. },
  16707. sitting: {
  16708. height: math.unit(2.8, "feet"),
  16709. weight: math.unit(120, "lb"),
  16710. name: "Sitting",
  16711. image: {
  16712. source: "./media/characters/roxi/sitting.svg",
  16713. extra: 2660 / 2462,
  16714. bottom: 0.1
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Normal",
  16721. height: math.unit(5 + 2 / 12, "feet"),
  16722. default: true
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16728. {
  16729. side: {
  16730. height: math.unit(55, "feet"),
  16731. weight: math.unit(153, "tons"),
  16732. name: "Side",
  16733. image: {
  16734. source: "./media/characters/shadow/side.svg",
  16735. extra: 701 / 628,
  16736. bottom: 0.02
  16737. }
  16738. },
  16739. flying: {
  16740. height: math.unit(145, "feet"),
  16741. weight: math.unit(153, "tons"),
  16742. name: "Flying",
  16743. image: {
  16744. source: "./media/characters/shadow/flying.svg"
  16745. }
  16746. },
  16747. },
  16748. [
  16749. {
  16750. name: "Normal",
  16751. height: math.unit(55, "feet"),
  16752. default: true
  16753. },
  16754. ]
  16755. ))
  16756. characterMakers.push(() => makeCharacter(
  16757. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16758. {
  16759. front: {
  16760. height: math.unit(6, "feet"),
  16761. weight: math.unit(200, "lb"),
  16762. name: "Front",
  16763. image: {
  16764. source: "./media/characters/marcie/front.svg",
  16765. extra: 960 / 876,
  16766. bottom: 58 / 1017.87
  16767. }
  16768. },
  16769. },
  16770. [
  16771. {
  16772. name: "Macro",
  16773. height: math.unit(1, "mile"),
  16774. default: true
  16775. },
  16776. ]
  16777. ))
  16778. characterMakers.push(() => makeCharacter(
  16779. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16780. {
  16781. front: {
  16782. height: math.unit(7, "feet"),
  16783. weight: math.unit(200, "lb"),
  16784. name: "Front",
  16785. image: {
  16786. source: "./media/characters/kachina/front.svg",
  16787. extra: 1290.68 / 1119,
  16788. bottom: 36.5 / 1327.18
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Normal",
  16795. height: math.unit(7, "feet"),
  16796. default: true
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16802. {
  16803. looking: {
  16804. height: math.unit(2, "meters"),
  16805. weight: math.unit(300, "kg"),
  16806. name: "Looking",
  16807. image: {
  16808. source: "./media/characters/kash/looking.svg",
  16809. extra: 474 / 344,
  16810. bottom: 0.03
  16811. }
  16812. },
  16813. side: {
  16814. height: math.unit(2, "meters"),
  16815. weight: math.unit(300, "kg"),
  16816. name: "Side",
  16817. image: {
  16818. source: "./media/characters/kash/side.svg",
  16819. extra: 302 / 251,
  16820. bottom: 0.03
  16821. }
  16822. },
  16823. front: {
  16824. height: math.unit(2, "meters"),
  16825. weight: math.unit(300, "kg"),
  16826. name: "Front",
  16827. image: {
  16828. source: "./media/characters/kash/front.svg",
  16829. extra: 495 / 360,
  16830. bottom: 0.015
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(2, "meters"),
  16838. default: true
  16839. },
  16840. {
  16841. name: "Big",
  16842. height: math.unit(3, "meters")
  16843. },
  16844. {
  16845. name: "Large",
  16846. height: math.unit(5, "meters")
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16852. {
  16853. feeding: {
  16854. height: math.unit(6.7, "feet"),
  16855. weight: math.unit(350, "lb"),
  16856. name: "Feeding",
  16857. image: {
  16858. source: "./media/characters/lalim/feeding.svg",
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(6.7, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16872. {
  16873. front: {
  16874. height: math.unit(9.5, "feet"),
  16875. weight: math.unit(600, "lb"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/de'vout/front.svg",
  16879. extra: 1443 / 1328,
  16880. bottom: 0.025
  16881. }
  16882. },
  16883. back: {
  16884. height: math.unit(9.5, "feet"),
  16885. weight: math.unit(600, "lb"),
  16886. name: "Back",
  16887. image: {
  16888. source: "./media/characters/de'vout/back.svg",
  16889. extra: 1443 / 1328
  16890. }
  16891. },
  16892. frontDressed: {
  16893. height: math.unit(9.5, "feet"),
  16894. weight: math.unit(600, "lb"),
  16895. name: "Front (Dressed",
  16896. image: {
  16897. source: "./media/characters/de'vout/front-dressed.svg",
  16898. extra: 1443 / 1328,
  16899. bottom: 0.025
  16900. }
  16901. },
  16902. backDressed: {
  16903. height: math.unit(9.5, "feet"),
  16904. weight: math.unit(600, "lb"),
  16905. name: "Back (Dressed",
  16906. image: {
  16907. source: "./media/characters/de'vout/back-dressed.svg",
  16908. extra: 1443 / 1328
  16909. }
  16910. },
  16911. },
  16912. [
  16913. {
  16914. name: "Normal",
  16915. height: math.unit(9.5, "feet"),
  16916. default: true
  16917. },
  16918. ]
  16919. ))
  16920. characterMakers.push(() => makeCharacter(
  16921. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16922. {
  16923. front: {
  16924. height: math.unit(8, "feet"),
  16925. weight: math.unit(225, "lb"),
  16926. name: "Front",
  16927. image: {
  16928. source: "./media/characters/talana/front.svg",
  16929. extra: 1410 / 1300,
  16930. bottom: 0.015
  16931. }
  16932. },
  16933. frontDressed: {
  16934. height: math.unit(8, "feet"),
  16935. weight: math.unit(225, "lb"),
  16936. name: "Front (Dressed",
  16937. image: {
  16938. source: "./media/characters/talana/front-dressed.svg",
  16939. extra: 1410 / 1300,
  16940. bottom: 0.015
  16941. }
  16942. },
  16943. },
  16944. [
  16945. {
  16946. name: "Normal",
  16947. height: math.unit(8, "feet"),
  16948. default: true
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16954. {
  16955. side: {
  16956. height: math.unit(7.2, "feet"),
  16957. weight: math.unit(150, "lb"),
  16958. name: "Side",
  16959. image: {
  16960. source: "./media/characters/xeauvok/side.svg",
  16961. extra: 1975 / 1523,
  16962. bottom: 0.07
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(7.2, "feet"),
  16970. default: true
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16976. {
  16977. side: {
  16978. height: math.unit(10, "feet"),
  16979. weight: math.unit(900, "kg"),
  16980. name: "Side",
  16981. image: {
  16982. source: "./media/characters/zara/side.svg",
  16983. extra: 504 / 498
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(10, "feet"),
  16991. default: true
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16997. {
  16998. side: {
  16999. height: math.unit(6, "feet"),
  17000. weight: math.unit(150, "lb"),
  17001. name: "Side",
  17002. image: {
  17003. source: "./media/characters/richard-dragon/side.svg",
  17004. extra: 845 / 340,
  17005. bottom: 0.017
  17006. }
  17007. },
  17008. maw: {
  17009. height: math.unit(2.97, "feet"),
  17010. name: "Maw",
  17011. image: {
  17012. source: "./media/characters/richard-dragon/maw.svg"
  17013. }
  17014. },
  17015. },
  17016. [
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17021. {
  17022. front: {
  17023. height: math.unit(4, "feet"),
  17024. weight: math.unit(100, "lb"),
  17025. name: "Front",
  17026. image: {
  17027. source: "./media/characters/richard-smeargle/front.svg",
  17028. extra: 2952 / 2820,
  17029. bottom: 0.028
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(4, "feet"),
  17037. default: true
  17038. },
  17039. {
  17040. name: "Dynamax",
  17041. height: math.unit(20, "meters")
  17042. },
  17043. ]
  17044. ))
  17045. characterMakers.push(() => makeCharacter(
  17046. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17047. {
  17048. front: {
  17049. height: math.unit(6, "feet"),
  17050. weight: math.unit(110, "lb"),
  17051. name: "Front",
  17052. image: {
  17053. source: "./media/characters/klay/front.svg",
  17054. extra: 962 / 883,
  17055. bottom: 0.04
  17056. }
  17057. },
  17058. back: {
  17059. height: math.unit(6, "feet"),
  17060. weight: math.unit(110, "lb"),
  17061. name: "Back",
  17062. image: {
  17063. source: "./media/characters/klay/back.svg",
  17064. extra: 962 / 883
  17065. }
  17066. },
  17067. beans: {
  17068. height: math.unit(1.15, "feet"),
  17069. name: "Beans",
  17070. image: {
  17071. source: "./media/characters/klay/beans.svg"
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Micro",
  17078. height: math.unit(6, "inches")
  17079. },
  17080. {
  17081. name: "Mini",
  17082. height: math.unit(3, "feet")
  17083. },
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(6, "feet"),
  17087. default: true
  17088. },
  17089. {
  17090. name: "Big",
  17091. height: math.unit(25, "feet")
  17092. },
  17093. {
  17094. name: "Macro",
  17095. height: math.unit(100, "feet")
  17096. },
  17097. {
  17098. name: "Megamacro",
  17099. height: math.unit(400, "feet")
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(6, "feet"),
  17108. weight: math.unit(160, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/marcus/front.svg",
  17112. extra: 734 / 676,
  17113. bottom: 0.03
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Little",
  17120. height: math.unit(6, "feet")
  17121. },
  17122. {
  17123. name: "Normal",
  17124. height: math.unit(110, "feet"),
  17125. default: true
  17126. },
  17127. {
  17128. name: "Macro",
  17129. height: math.unit(250, "feet")
  17130. },
  17131. {
  17132. name: "Megamacro",
  17133. height: math.unit(1000, "feet")
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17139. {
  17140. front: {
  17141. height: math.unit(7, "feet"),
  17142. weight: math.unit(275, "lb"),
  17143. name: "Front",
  17144. image: {
  17145. source: "./media/characters/claude-delroute/front.svg",
  17146. extra: 230 / 214,
  17147. bottom: 0.007
  17148. }
  17149. },
  17150. side: {
  17151. height: math.unit(7, "feet"),
  17152. weight: math.unit(275, "lb"),
  17153. name: "Side",
  17154. image: {
  17155. source: "./media/characters/claude-delroute/side.svg",
  17156. extra: 222 / 214,
  17157. bottom: 0.01
  17158. }
  17159. },
  17160. back: {
  17161. height: math.unit(7, "feet"),
  17162. weight: math.unit(275, "lb"),
  17163. name: "Back",
  17164. image: {
  17165. source: "./media/characters/claude-delroute/back.svg",
  17166. extra: 230 / 214,
  17167. bottom: 0.015
  17168. }
  17169. },
  17170. maw: {
  17171. height: math.unit(0.6407, "meters"),
  17172. name: "Maw",
  17173. image: {
  17174. source: "./media/characters/claude-delroute/maw.svg"
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(7, "feet"),
  17182. default: true
  17183. },
  17184. {
  17185. name: "Lorge",
  17186. height: math.unit(20, "feet")
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17192. {
  17193. front: {
  17194. height: math.unit(8 + 4 / 12, "feet"),
  17195. weight: math.unit(600, "lb"),
  17196. name: "Front",
  17197. image: {
  17198. source: "./media/characters/dragonien/front.svg",
  17199. extra: 100 / 94,
  17200. bottom: 3.3 / 103.3445
  17201. }
  17202. },
  17203. back: {
  17204. height: math.unit(8 + 4 / 12, "feet"),
  17205. weight: math.unit(600, "lb"),
  17206. name: "Back",
  17207. image: {
  17208. source: "./media/characters/dragonien/back.svg",
  17209. extra: 776 / 746,
  17210. bottom: 6.4 / 782.0616
  17211. }
  17212. },
  17213. foot: {
  17214. height: math.unit(1.54, "feet"),
  17215. name: "Foot",
  17216. image: {
  17217. source: "./media/characters/dragonien/foot.svg",
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(8 + 4 / 12, "feet"),
  17225. default: true
  17226. },
  17227. {
  17228. name: "Macro",
  17229. height: math.unit(200, "feet")
  17230. },
  17231. {
  17232. name: "Megamacro",
  17233. height: math.unit(1, "mile")
  17234. },
  17235. {
  17236. name: "Gigamacro",
  17237. height: math.unit(1000, "miles")
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(5 + 2 / 12, "feet"),
  17246. weight: math.unit(110, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/desta/front.svg",
  17250. extra: 767/726,
  17251. bottom: 11.7/779
  17252. }
  17253. },
  17254. back: {
  17255. height: math.unit(5 + 2 / 12, "feet"),
  17256. weight: math.unit(110, "lb"),
  17257. name: "Back",
  17258. image: {
  17259. source: "./media/characters/desta/back.svg",
  17260. extra: 777/728,
  17261. bottom: 6/784
  17262. }
  17263. },
  17264. frontAlt: {
  17265. height: math.unit(5 + 2 / 12, "feet"),
  17266. weight: math.unit(110, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/desta/front-alt.svg",
  17270. extra: 1482 / 1417
  17271. }
  17272. },
  17273. side: {
  17274. height: math.unit(5 + 2 / 12, "feet"),
  17275. weight: math.unit(110, "lb"),
  17276. name: "Side",
  17277. image: {
  17278. source: "./media/characters/desta/side.svg",
  17279. extra: 2579 / 2491,
  17280. bottom: 0.053
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Micro",
  17287. height: math.unit(6, "inches")
  17288. },
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(5 + 2 / 12, "feet"),
  17292. default: true
  17293. },
  17294. {
  17295. name: "Macro",
  17296. height: math.unit(62, "feet")
  17297. },
  17298. {
  17299. name: "Megamacro",
  17300. height: math.unit(1800, "feet")
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17306. {
  17307. front: {
  17308. height: math.unit(10, "feet"),
  17309. weight: math.unit(700, "lb"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/storm-alystar/front.svg",
  17313. extra: 2112 / 1898,
  17314. bottom: 0.034
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Micro",
  17321. height: math.unit(3.5, "inches")
  17322. },
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(10, "feet"),
  17326. default: true
  17327. },
  17328. {
  17329. name: "Macro",
  17330. height: math.unit(400, "feet")
  17331. },
  17332. {
  17333. name: "Deific",
  17334. height: math.unit(60, "miles")
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(2.35, "meters"),
  17343. weight: math.unit(119, "kg"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/ilia/front.svg",
  17347. extra: 1285 / 1255,
  17348. bottom: 0.06
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(2.35, "meters")
  17356. },
  17357. {
  17358. name: "Macro",
  17359. height: math.unit(140, "meters"),
  17360. default: true
  17361. },
  17362. {
  17363. name: "Megamacro",
  17364. height: math.unit(100, "miles")
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17370. {
  17371. front: {
  17372. height: math.unit(6 + 5 / 12, "feet"),
  17373. weight: math.unit(190, "lb"),
  17374. name: "Front",
  17375. image: {
  17376. source: "./media/characters/kingdead/front.svg",
  17377. extra: 1228 / 1177
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Micro",
  17384. height: math.unit(7, "inches")
  17385. },
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(6 + 5 / 12, "feet")
  17389. },
  17390. {
  17391. name: "Macro",
  17392. height: math.unit(150, "feet"),
  17393. default: true
  17394. },
  17395. {
  17396. name: "Megamacro",
  17397. height: math.unit(200, "miles")
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(8, "feet"),
  17406. weight: math.unit(600, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/kyrehx/front.svg",
  17410. extra: 1195 / 1095,
  17411. bottom: 0.034
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Micro",
  17418. height: math.unit(2, "inches")
  17419. },
  17420. {
  17421. name: "Normal",
  17422. height: math.unit(8, "feet"),
  17423. default: true
  17424. },
  17425. {
  17426. name: "Macro",
  17427. height: math.unit(255, "feet")
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17433. {
  17434. front: {
  17435. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17436. weight: math.unit(184, "lb"),
  17437. name: "Front",
  17438. image: {
  17439. source: "./media/characters/xang/front.svg",
  17440. extra: 845 / 755
  17441. }
  17442. },
  17443. },
  17444. [
  17445. {
  17446. name: "Normal",
  17447. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17448. default: true
  17449. },
  17450. {
  17451. name: "Macro",
  17452. height: math.unit(0.935 * 146, "feet")
  17453. },
  17454. {
  17455. name: "Megamacro",
  17456. height: math.unit(0.935 * 3, "miles")
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17462. {
  17463. frontDressed: {
  17464. height: math.unit(5 + 7 / 12, "feet"),
  17465. weight: math.unit(140, "lb"),
  17466. name: "Front (Dressed)",
  17467. image: {
  17468. source: "./media/characters/doc-weardno/front-dressed.svg",
  17469. extra: 263 / 234
  17470. }
  17471. },
  17472. backDressed: {
  17473. height: math.unit(5 + 7 / 12, "feet"),
  17474. weight: math.unit(140, "lb"),
  17475. name: "Back (Dressed)",
  17476. image: {
  17477. source: "./media/characters/doc-weardno/back-dressed.svg",
  17478. extra: 266 / 238
  17479. }
  17480. },
  17481. front: {
  17482. height: math.unit(5 + 7 / 12, "feet"),
  17483. weight: math.unit(140, "lb"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/doc-weardno/front.svg",
  17487. extra: 254 / 233
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Micro",
  17494. height: math.unit(3, "inches")
  17495. },
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(5 + 7 / 12, "feet"),
  17499. default: true
  17500. },
  17501. {
  17502. name: "Macro",
  17503. height: math.unit(25, "feet")
  17504. },
  17505. {
  17506. name: "Megamacro",
  17507. height: math.unit(2, "miles")
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(6 + 2 / 12, "feet"),
  17516. weight: math.unit(153, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/seth-whilst/front.svg",
  17520. bottom: 0.07
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Micro",
  17527. height: math.unit(5, "inches")
  17528. },
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(6 + 2 / 12, "feet"),
  17532. default: true
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(3, "inches"),
  17541. weight: math.unit(8, "grams"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/pocket-jabari/front.svg",
  17545. extra: 1024 / 974,
  17546. bottom: 0.039
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Minimicro",
  17553. height: math.unit(8, "mm")
  17554. },
  17555. {
  17556. name: "Micro",
  17557. height: math.unit(3, "inches"),
  17558. default: true
  17559. },
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(3, "feet")
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17568. {
  17569. front: {
  17570. height: math.unit(15, "feet"),
  17571. weight: math.unit(3280, "lb"),
  17572. name: "Front",
  17573. image: {
  17574. source: "./media/characters/sapphy/front.svg",
  17575. extra: 671 / 577,
  17576. bottom: 0.085
  17577. }
  17578. },
  17579. back: {
  17580. height: math.unit(15, "feet"),
  17581. weight: math.unit(3280, "lb"),
  17582. name: "Back",
  17583. image: {
  17584. source: "./media/characters/sapphy/back.svg",
  17585. extra: 631 / 607,
  17586. bottom: 0.045
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(15, "feet")
  17594. },
  17595. {
  17596. name: "Casual Macro",
  17597. height: math.unit(120, "feet")
  17598. },
  17599. {
  17600. name: "Macro",
  17601. height: math.unit(2150, "feet"),
  17602. default: true
  17603. },
  17604. {
  17605. name: "Megamacro",
  17606. height: math.unit(8, "miles")
  17607. },
  17608. {
  17609. name: "Galaxy Mom",
  17610. height: math.unit(6, "megalightyears")
  17611. },
  17612. ]
  17613. ))
  17614. characterMakers.push(() => makeCharacter(
  17615. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17616. {
  17617. front: {
  17618. height: math.unit(6, "feet"),
  17619. weight: math.unit(170, "lb"),
  17620. name: "Front",
  17621. image: {
  17622. source: "./media/characters/kiro/front.svg",
  17623. extra: 1064 / 1012,
  17624. bottom: 0.052
  17625. }
  17626. },
  17627. },
  17628. [
  17629. {
  17630. name: "Micro",
  17631. height: math.unit(6, "inches")
  17632. },
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(6, "feet"),
  17636. default: true
  17637. },
  17638. {
  17639. name: "Macro",
  17640. height: math.unit(72, "feet")
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(5 + 9 / 12, "feet"),
  17649. weight: math.unit(175, "lb"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/irishfox/front.svg",
  17653. extra: 1912 / 1680,
  17654. bottom: 0.02
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Nano",
  17661. height: math.unit(1, "mm")
  17662. },
  17663. {
  17664. name: "Micro",
  17665. height: math.unit(2, "inches")
  17666. },
  17667. {
  17668. name: "Normal",
  17669. height: math.unit(5 + 9 / 12, "feet"),
  17670. default: true
  17671. },
  17672. {
  17673. name: "Macro",
  17674. height: math.unit(45, "feet")
  17675. },
  17676. ]
  17677. ))
  17678. characterMakers.push(() => makeCharacter(
  17679. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17680. {
  17681. front: {
  17682. height: math.unit(6 + 1 / 12, "feet"),
  17683. weight: math.unit(150, "lb"),
  17684. name: "Front",
  17685. image: {
  17686. source: "./media/characters/aronai-sieyes/front.svg",
  17687. extra: 1556 / 1480,
  17688. bottom: 0.015
  17689. }
  17690. },
  17691. side: {
  17692. height: math.unit(6 + 1 / 12, "feet"),
  17693. weight: math.unit(150, "lb"),
  17694. name: "Side",
  17695. image: {
  17696. source: "./media/characters/aronai-sieyes/side.svg",
  17697. extra: 1433 / 1390,
  17698. bottom: 0.0393
  17699. }
  17700. },
  17701. back: {
  17702. height: math.unit(6 + 1 / 12, "feet"),
  17703. weight: math.unit(150, "lb"),
  17704. name: "Back",
  17705. image: {
  17706. source: "./media/characters/aronai-sieyes/back.svg",
  17707. extra: 1544 / 1494,
  17708. bottom: 0.02
  17709. }
  17710. },
  17711. frontClothed: {
  17712. height: math.unit(6 + 1 / 12, "feet"),
  17713. weight: math.unit(150, "lb"),
  17714. name: "Front (Clothed)",
  17715. image: {
  17716. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17717. extra: 1582 / 1527
  17718. }
  17719. },
  17720. feral: {
  17721. height: math.unit(18, "feet"),
  17722. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17723. name: "Feral",
  17724. image: {
  17725. source: "./media/characters/aronai-sieyes/feral.svg",
  17726. extra: 1530 / 1240,
  17727. bottom: 0.035
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Micro",
  17734. height: math.unit(2, "inches")
  17735. },
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(6 + 1 / 12, "feet"),
  17739. default: true
  17740. }
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(12, "feet"),
  17748. weight: math.unit(410, "kg"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/xuna/front.svg",
  17752. extra: 2184 / 1980
  17753. }
  17754. },
  17755. side: {
  17756. height: math.unit(12, "feet"),
  17757. weight: math.unit(410, "kg"),
  17758. name: "Side",
  17759. image: {
  17760. source: "./media/characters/xuna/side.svg",
  17761. extra: 2184 / 1980
  17762. }
  17763. },
  17764. back: {
  17765. height: math.unit(12, "feet"),
  17766. weight: math.unit(410, "kg"),
  17767. name: "Back",
  17768. image: {
  17769. source: "./media/characters/xuna/back.svg",
  17770. extra: 2184 / 1980
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Nano glow",
  17777. height: math.unit(10, "nm")
  17778. },
  17779. {
  17780. name: "Micro floof",
  17781. height: math.unit(0.3, "m")
  17782. },
  17783. {
  17784. name: "Huggable softy boi",
  17785. height: math.unit(3.6576, "m"),
  17786. default: true
  17787. },
  17788. {
  17789. name: "Admirable floof",
  17790. height: math.unit(80, "meters")
  17791. },
  17792. {
  17793. name: "Gentle macro",
  17794. height: math.unit(300, "meters")
  17795. },
  17796. {
  17797. name: "Very careful floof",
  17798. height: math.unit(3200, "meters")
  17799. },
  17800. {
  17801. name: "The mega floof",
  17802. height: math.unit(36000, "meters")
  17803. },
  17804. {
  17805. name: "Giga-fur-Wicker",
  17806. height: math.unit(4800000, "meters")
  17807. },
  17808. {
  17809. name: "Licky world",
  17810. height: math.unit(20000000, "meters")
  17811. },
  17812. {
  17813. name: "Floofy cyan sun",
  17814. height: math.unit(1500000000, "meters")
  17815. },
  17816. {
  17817. name: "Milky Wicker",
  17818. height: math.unit(1000000000000000000000, "meters")
  17819. },
  17820. {
  17821. name: "The observing Wicker",
  17822. height: math.unit(999999999999999999999999999, "meters")
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(5 + 9 / 12, "feet"),
  17831. weight: math.unit(150, "lb"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/arokha-sieyes/front.svg",
  17835. extra: 1425 / 1284,
  17836. bottom: 0.05
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(5 + 9 / 12, "feet")
  17844. },
  17845. {
  17846. name: "Macro",
  17847. height: math.unit(30, "meters"),
  17848. default: true
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17854. {
  17855. front: {
  17856. height: math.unit(6, "feet"),
  17857. weight: math.unit(180, "lb"),
  17858. name: "Front",
  17859. image: {
  17860. source: "./media/characters/arokh-sieyes/front.svg",
  17861. extra: 1830 / 1769,
  17862. bottom: 0.01
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(6, "feet")
  17870. },
  17871. {
  17872. name: "Macro",
  17873. height: math.unit(30, "meters"),
  17874. default: true
  17875. },
  17876. ]
  17877. ))
  17878. characterMakers.push(() => makeCharacter(
  17879. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17880. {
  17881. side: {
  17882. height: math.unit(13 + 1 / 12, "feet"),
  17883. weight: math.unit(8.5, "tonnes"),
  17884. name: "Side",
  17885. image: {
  17886. source: "./media/characters/goldeneye/side.svg",
  17887. extra: 1182 / 778,
  17888. bottom: 0.067
  17889. }
  17890. },
  17891. paw: {
  17892. height: math.unit(3.4, "feet"),
  17893. name: "Paw",
  17894. image: {
  17895. source: "./media/characters/goldeneye/paw.svg"
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Normal",
  17902. height: math.unit(13 + 1 / 12, "feet"),
  17903. default: true
  17904. },
  17905. ]
  17906. ))
  17907. characterMakers.push(() => makeCharacter(
  17908. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17909. {
  17910. front: {
  17911. height: math.unit(6 + 1 / 12, "feet"),
  17912. weight: math.unit(210, "lb"),
  17913. name: "Front",
  17914. image: {
  17915. source: "./media/characters/leonardo-lycheborne/front.svg",
  17916. extra: 390 / 365,
  17917. bottom: 0.032
  17918. }
  17919. },
  17920. side: {
  17921. height: math.unit(6 + 1 / 12, "feet"),
  17922. weight: math.unit(210, "lb"),
  17923. name: "Side",
  17924. image: {
  17925. source: "./media/characters/leonardo-lycheborne/side.svg",
  17926. extra: 390 / 365,
  17927. bottom: 0.005
  17928. }
  17929. },
  17930. back: {
  17931. height: math.unit(6 + 1 / 12, "feet"),
  17932. weight: math.unit(210, "lb"),
  17933. name: "Back",
  17934. image: {
  17935. source: "./media/characters/leonardo-lycheborne/back.svg",
  17936. extra: 392 / 366,
  17937. bottom: 0.01
  17938. }
  17939. },
  17940. hand: {
  17941. height: math.unit(1.08, "feet"),
  17942. name: "Hand",
  17943. image: {
  17944. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17945. }
  17946. },
  17947. foot: {
  17948. height: math.unit(1.32, "feet"),
  17949. name: "Foot",
  17950. image: {
  17951. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17952. }
  17953. },
  17954. were: {
  17955. height: math.unit(20, "feet"),
  17956. weight: math.unit(7800, "lb"),
  17957. name: "Were",
  17958. image: {
  17959. source: "./media/characters/leonardo-lycheborne/were.svg",
  17960. extra: 308 / 294,
  17961. bottom: 0.048
  17962. }
  17963. },
  17964. feral: {
  17965. height: math.unit(7.5, "feet"),
  17966. weight: math.unit(600, "lb"),
  17967. name: "Feral",
  17968. image: {
  17969. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17970. extra: 210 / 186,
  17971. bottom: 0.108
  17972. }
  17973. },
  17974. taur: {
  17975. height: math.unit(11, "feet"),
  17976. weight: math.unit(3300, "lb"),
  17977. name: "Taur",
  17978. image: {
  17979. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17980. extra: 320 / 303,
  17981. bottom: 0.025
  17982. }
  17983. },
  17984. barghest: {
  17985. height: math.unit(11, "feet"),
  17986. weight: math.unit(1300, "lb"),
  17987. name: "Barghest",
  17988. image: {
  17989. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17990. extra: 323 / 302,
  17991. bottom: 0.027
  17992. }
  17993. },
  17994. dick: {
  17995. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17996. name: "Dick",
  17997. image: {
  17998. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17999. }
  18000. },
  18001. dickWere: {
  18002. height: math.unit((20) / 3.8, "feet"),
  18003. name: "Dick (Were)",
  18004. image: {
  18005. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18006. }
  18007. },
  18008. },
  18009. [
  18010. {
  18011. name: "Normal",
  18012. height: math.unit(6 + 1 / 12, "feet"),
  18013. default: true
  18014. },
  18015. ]
  18016. ))
  18017. characterMakers.push(() => makeCharacter(
  18018. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18019. {
  18020. front: {
  18021. height: math.unit(10, "feet"),
  18022. weight: math.unit(350, "lb"),
  18023. name: "Front",
  18024. image: {
  18025. source: "./media/characters/jet/front.svg",
  18026. extra: 2050 / 1980,
  18027. bottom: 0.013
  18028. }
  18029. },
  18030. back: {
  18031. height: math.unit(10, "feet"),
  18032. weight: math.unit(350, "lb"),
  18033. name: "Back",
  18034. image: {
  18035. source: "./media/characters/jet/back.svg",
  18036. extra: 2050 / 1980,
  18037. bottom: 0.013
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Micro",
  18044. height: math.unit(6, "inches")
  18045. },
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(10, "feet"),
  18049. default: true
  18050. },
  18051. {
  18052. name: "Macro",
  18053. height: math.unit(100, "feet")
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18059. {
  18060. front: {
  18061. height: math.unit(15, "feet"),
  18062. weight: math.unit(2800, "lb"),
  18063. name: "Front",
  18064. image: {
  18065. source: "./media/characters/tanarath/front.svg",
  18066. extra: 2392 / 2220,
  18067. bottom: 0.03
  18068. }
  18069. },
  18070. back: {
  18071. height: math.unit(15, "feet"),
  18072. weight: math.unit(2800, "lb"),
  18073. name: "Back",
  18074. image: {
  18075. source: "./media/characters/tanarath/back.svg",
  18076. extra: 2392 / 2220,
  18077. bottom: 0.03
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(15, "feet"),
  18085. default: true
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(7 + 1 / 12, "feet"),
  18094. weight: math.unit(175, "lb"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/patty-cattybatty/front.svg",
  18098. extra: 908 / 874,
  18099. bottom: 0.025
  18100. }
  18101. },
  18102. },
  18103. [
  18104. {
  18105. name: "Micro",
  18106. height: math.unit(1, "inch")
  18107. },
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(7 + 1 / 12, "feet")
  18111. },
  18112. {
  18113. name: "Mini Macro",
  18114. height: math.unit(155, "feet")
  18115. },
  18116. {
  18117. name: "Macro",
  18118. height: math.unit(1077, "feet")
  18119. },
  18120. {
  18121. name: "Mega Macro",
  18122. height: math.unit(47650, "feet"),
  18123. default: true
  18124. },
  18125. {
  18126. name: "Giga Macro",
  18127. height: math.unit(440, "miles")
  18128. },
  18129. {
  18130. name: "Tera Macro",
  18131. height: math.unit(8700, "miles")
  18132. },
  18133. {
  18134. name: "Planetary Macro",
  18135. height: math.unit(32700, "miles")
  18136. },
  18137. {
  18138. name: "Solar Macro",
  18139. height: math.unit(550000, "miles")
  18140. },
  18141. {
  18142. name: "Celestial Macro",
  18143. height: math.unit(2.5, "AU")
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18149. {
  18150. front: {
  18151. height: math.unit(4 + 5 / 12, "feet"),
  18152. weight: math.unit(90, "lb"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/cappu/front.svg",
  18156. extra: 1247 / 1152,
  18157. bottom: 0.012
  18158. }
  18159. },
  18160. },
  18161. [
  18162. {
  18163. name: "Normal",
  18164. height: math.unit(4 + 5 / 12, "feet"),
  18165. default: true
  18166. },
  18167. ]
  18168. ))
  18169. characterMakers.push(() => makeCharacter(
  18170. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18171. {
  18172. frontDressed: {
  18173. height: math.unit(70, "cm"),
  18174. weight: math.unit(6, "kg"),
  18175. name: "Front (Dressed)",
  18176. image: {
  18177. source: "./media/characters/sebi/front-dressed.svg",
  18178. extra: 713.5 / 686.5,
  18179. bottom: 0.003
  18180. }
  18181. },
  18182. front: {
  18183. height: math.unit(70, "cm"),
  18184. weight: math.unit(5, "kg"),
  18185. name: "Front",
  18186. image: {
  18187. source: "./media/characters/sebi/front.svg",
  18188. extra: 713.5 / 686.5,
  18189. bottom: 0.003
  18190. }
  18191. }
  18192. },
  18193. [
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(70, "cm"),
  18197. default: true
  18198. },
  18199. {
  18200. name: "Macro",
  18201. height: math.unit(8, "meters")
  18202. },
  18203. ]
  18204. ))
  18205. characterMakers.push(() => makeCharacter(
  18206. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18207. {
  18208. front: {
  18209. height: math.unit(6, "feet"),
  18210. weight: math.unit(150, "lb"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/typhek/front.svg",
  18214. extra: 1948 / 1929,
  18215. bottom: 0.025
  18216. }
  18217. },
  18218. side: {
  18219. height: math.unit(6, "feet"),
  18220. weight: math.unit(150, "lb"),
  18221. name: "Side",
  18222. image: {
  18223. source: "./media/characters/typhek/side.svg",
  18224. extra: 2034 / 2010,
  18225. bottom: 0.003
  18226. }
  18227. },
  18228. back: {
  18229. height: math.unit(6, "feet"),
  18230. weight: math.unit(150, "lb"),
  18231. name: "Back",
  18232. image: {
  18233. source: "./media/characters/typhek/back.svg",
  18234. extra: 2005 / 1978,
  18235. bottom: 0.004
  18236. }
  18237. },
  18238. palm: {
  18239. height: math.unit(1.2, "feet"),
  18240. name: "Palm",
  18241. image: {
  18242. source: "./media/characters/typhek/palm.svg"
  18243. }
  18244. },
  18245. fist: {
  18246. height: math.unit(1.1, "feet"),
  18247. name: "Fist",
  18248. image: {
  18249. source: "./media/characters/typhek/fist.svg"
  18250. }
  18251. },
  18252. foot: {
  18253. height: math.unit(1.57, "feet"),
  18254. name: "Foot",
  18255. image: {
  18256. source: "./media/characters/typhek/foot.svg"
  18257. }
  18258. },
  18259. sole: {
  18260. height: math.unit(2.05, "feet"),
  18261. name: "Sole",
  18262. image: {
  18263. source: "./media/characters/typhek/sole.svg"
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Macro",
  18270. height: math.unit(40, "stories"),
  18271. default: true
  18272. },
  18273. {
  18274. name: "Megamacro",
  18275. height: math.unit(1, "mile")
  18276. },
  18277. {
  18278. name: "Gigamacro",
  18279. height: math.unit(4000, "solarradii")
  18280. },
  18281. {
  18282. name: "Universal",
  18283. height: math.unit(1.1, "universes")
  18284. }
  18285. ]
  18286. ))
  18287. characterMakers.push(() => makeCharacter(
  18288. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18289. {
  18290. side: {
  18291. height: math.unit(5 + 7 / 12, "feet"),
  18292. weight: math.unit(150, "lb"),
  18293. name: "Side",
  18294. image: {
  18295. source: "./media/characters/kassy/side.svg",
  18296. extra: 1280 / 1225,
  18297. bottom: 0.002
  18298. }
  18299. },
  18300. front: {
  18301. height: math.unit(5 + 7 / 12, "feet"),
  18302. weight: math.unit(150, "lb"),
  18303. name: "Front",
  18304. image: {
  18305. source: "./media/characters/kassy/front.svg",
  18306. extra: 1280 / 1225,
  18307. bottom: 0.025
  18308. }
  18309. },
  18310. back: {
  18311. height: math.unit(5 + 7 / 12, "feet"),
  18312. weight: math.unit(150, "lb"),
  18313. name: "Back",
  18314. image: {
  18315. source: "./media/characters/kassy/back.svg",
  18316. extra: 1280 / 1225,
  18317. bottom: 0.002
  18318. }
  18319. },
  18320. foot: {
  18321. height: math.unit(1.266, "feet"),
  18322. name: "Foot",
  18323. image: {
  18324. source: "./media/characters/kassy/foot.svg"
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(5 + 7 / 12, "feet")
  18332. },
  18333. {
  18334. name: "Macro",
  18335. height: math.unit(137, "feet"),
  18336. default: true
  18337. },
  18338. {
  18339. name: "Megamacro",
  18340. height: math.unit(1, "mile")
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18346. {
  18347. front: {
  18348. height: math.unit(6 + 1 / 12, "feet"),
  18349. weight: math.unit(200, "lb"),
  18350. name: "Front",
  18351. image: {
  18352. source: "./media/characters/neil/front.svg",
  18353. extra: 1326 / 1250,
  18354. bottom: 0.023
  18355. }
  18356. },
  18357. },
  18358. [
  18359. {
  18360. name: "Normal",
  18361. height: math.unit(6 + 1 / 12, "feet"),
  18362. default: true
  18363. },
  18364. {
  18365. name: "Macro",
  18366. height: math.unit(200, "feet")
  18367. },
  18368. ]
  18369. ))
  18370. characterMakers.push(() => makeCharacter(
  18371. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18372. {
  18373. front: {
  18374. height: math.unit(5 + 9 / 12, "feet"),
  18375. weight: math.unit(190, "lb"),
  18376. name: "Front",
  18377. image: {
  18378. source: "./media/characters/atticus/front.svg",
  18379. extra: 2934 / 2785,
  18380. bottom: 0.025
  18381. }
  18382. },
  18383. },
  18384. [
  18385. {
  18386. name: "Normal",
  18387. height: math.unit(5 + 9 / 12, "feet"),
  18388. default: true
  18389. },
  18390. {
  18391. name: "Macro",
  18392. height: math.unit(180, "feet")
  18393. },
  18394. ]
  18395. ))
  18396. characterMakers.push(() => makeCharacter(
  18397. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18398. {
  18399. side: {
  18400. height: math.unit(9, "feet"),
  18401. weight: math.unit(650, "lb"),
  18402. name: "Side",
  18403. image: {
  18404. source: "./media/characters/milo/side.svg",
  18405. extra: 2644 / 2310,
  18406. bottom: 0.032
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Normal",
  18413. height: math.unit(9, "feet"),
  18414. default: true
  18415. },
  18416. {
  18417. name: "Macro",
  18418. height: math.unit(300, "feet")
  18419. },
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18424. {
  18425. side: {
  18426. height: math.unit(8, "meters"),
  18427. weight: math.unit(90000, "kg"),
  18428. name: "Side",
  18429. image: {
  18430. source: "./media/characters/ijzer/side.svg",
  18431. extra: 2756 / 1600,
  18432. bottom: 0.01
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Small",
  18439. height: math.unit(3, "meters")
  18440. },
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(8, "meters"),
  18444. default: true
  18445. },
  18446. {
  18447. name: "Normal+",
  18448. height: math.unit(10, "meters")
  18449. },
  18450. {
  18451. name: "Bigger",
  18452. height: math.unit(24, "meters")
  18453. },
  18454. {
  18455. name: "Huge",
  18456. height: math.unit(80, "meters")
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18462. {
  18463. front: {
  18464. height: math.unit(6 + 2 / 12, "feet"),
  18465. weight: math.unit(153, "lb"),
  18466. name: "Front",
  18467. image: {
  18468. source: "./media/characters/luca-cervicum/front.svg",
  18469. extra: 370 / 327,
  18470. bottom: 0.015
  18471. }
  18472. },
  18473. back: {
  18474. height: math.unit(6 + 2 / 12, "feet"),
  18475. weight: math.unit(153, "lb"),
  18476. name: "Back",
  18477. image: {
  18478. source: "./media/characters/luca-cervicum/back.svg",
  18479. extra: 367 / 333,
  18480. bottom: 0.005
  18481. }
  18482. },
  18483. frontGear: {
  18484. height: math.unit(6 + 2 / 12, "feet"),
  18485. weight: math.unit(173, "lb"),
  18486. name: "Front (Gear)",
  18487. image: {
  18488. source: "./media/characters/luca-cervicum/front-gear.svg",
  18489. extra: 377 / 333,
  18490. bottom: 0.006
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(6 + 2 / 12, "feet"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18504. {
  18505. front: {
  18506. height: math.unit(6 + 1 / 12, "feet"),
  18507. weight: math.unit(304, "lb"),
  18508. name: "Front",
  18509. image: {
  18510. source: "./media/characters/oliver/front.svg",
  18511. extra: 157 / 143,
  18512. bottom: 0.08
  18513. }
  18514. },
  18515. },
  18516. [
  18517. {
  18518. name: "Normal",
  18519. height: math.unit(6 + 1 / 12, "feet"),
  18520. default: true
  18521. },
  18522. ]
  18523. ))
  18524. characterMakers.push(() => makeCharacter(
  18525. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18526. {
  18527. front: {
  18528. height: math.unit(5 + 7 / 12, "feet"),
  18529. weight: math.unit(140, "lb"),
  18530. name: "Front",
  18531. image: {
  18532. source: "./media/characters/shane/front.svg",
  18533. extra: 304 / 289,
  18534. bottom: 0.005
  18535. }
  18536. },
  18537. },
  18538. [
  18539. {
  18540. name: "Normal",
  18541. height: math.unit(5 + 7 / 12, "feet"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18548. {
  18549. front: {
  18550. height: math.unit(5 + 9 / 12, "feet"),
  18551. weight: math.unit(178, "lb"),
  18552. name: "Front",
  18553. image: {
  18554. source: "./media/characters/shin/front.svg",
  18555. extra: 159 / 151,
  18556. bottom: 0.015
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Normal",
  18563. height: math.unit(5 + 9 / 12, "feet"),
  18564. default: true
  18565. },
  18566. ]
  18567. ))
  18568. characterMakers.push(() => makeCharacter(
  18569. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18570. {
  18571. front: {
  18572. height: math.unit(5 + 10 / 12, "feet"),
  18573. weight: math.unit(168, "lb"),
  18574. name: "Front",
  18575. image: {
  18576. source: "./media/characters/xerxes/front.svg",
  18577. extra: 282 / 260,
  18578. bottom: 0.045
  18579. }
  18580. },
  18581. },
  18582. [
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(5 + 10 / 12, "feet"),
  18586. default: true
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18592. {
  18593. front: {
  18594. height: math.unit(6 + 7 / 12, "feet"),
  18595. weight: math.unit(208, "lb"),
  18596. name: "Front",
  18597. image: {
  18598. source: "./media/characters/chaska/front.svg",
  18599. extra: 332 / 319,
  18600. bottom: 0.015
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(6 + 7 / 12, "feet"),
  18608. default: true
  18609. },
  18610. ]
  18611. ))
  18612. characterMakers.push(() => makeCharacter(
  18613. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18614. {
  18615. front: {
  18616. height: math.unit(5 + 8 / 12, "feet"),
  18617. weight: math.unit(208, "lb"),
  18618. name: "Front",
  18619. image: {
  18620. source: "./media/characters/enuk/front.svg",
  18621. extra: 437 / 406,
  18622. bottom: 0.02
  18623. }
  18624. },
  18625. },
  18626. [
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(5 + 8 / 12, "feet"),
  18630. default: true
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18636. {
  18637. front: {
  18638. height: math.unit(5 + 10 / 12, "feet"),
  18639. weight: math.unit(252, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/bruun/front.svg",
  18643. extra: 197 / 187,
  18644. bottom: 0.012
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Normal",
  18651. height: math.unit(5 + 10 / 12, "feet"),
  18652. default: true
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18658. {
  18659. front: {
  18660. height: math.unit(6 + 10 / 12, "feet"),
  18661. weight: math.unit(255, "lb"),
  18662. name: "Front",
  18663. image: {
  18664. source: "./media/characters/alexeev/front.svg",
  18665. extra: 213 / 200,
  18666. bottom: 0.05
  18667. }
  18668. },
  18669. },
  18670. [
  18671. {
  18672. name: "Normal",
  18673. height: math.unit(6 + 10 / 12, "feet"),
  18674. default: true
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18680. {
  18681. front: {
  18682. height: math.unit(2 + 8 / 12, "feet"),
  18683. weight: math.unit(22, "lb"),
  18684. name: "Front",
  18685. image: {
  18686. source: "./media/characters/evelyn/front.svg",
  18687. extra: 208 / 180
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(2 + 8 / 12, "feet"),
  18695. default: true
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18701. {
  18702. front: {
  18703. height: math.unit(5 + 9 / 12, "feet"),
  18704. weight: math.unit(139, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/inca/front.svg",
  18708. extra: 294 / 291,
  18709. bottom: 0.03
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(5 + 9 / 12, "feet"),
  18717. default: true
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(5 + 1 / 12, "feet"),
  18726. weight: math.unit(84, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/magdalene/front.svg",
  18730. extra: 293 / 273
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(5 + 1 / 12, "feet"),
  18738. default: true
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18744. {
  18745. front: {
  18746. height: math.unit(6 + 3 / 12, "feet"),
  18747. weight: math.unit(185, "lb"),
  18748. name: "Front",
  18749. image: {
  18750. source: "./media/characters/mera/front.svg",
  18751. extra: 291 / 277,
  18752. bottom: 0.03
  18753. }
  18754. },
  18755. },
  18756. [
  18757. {
  18758. name: "Normal",
  18759. height: math.unit(6 + 3 / 12, "feet"),
  18760. default: true
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18766. {
  18767. front: {
  18768. height: math.unit(6 + 7 / 12, "feet"),
  18769. weight: math.unit(160, "lb"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/ceres/front.svg",
  18773. extra: 1023 / 950,
  18774. bottom: 0.027
  18775. }
  18776. },
  18777. back: {
  18778. height: math.unit(6 + 7 / 12, "feet"),
  18779. weight: math.unit(160, "lb"),
  18780. name: "Back",
  18781. image: {
  18782. source: "./media/characters/ceres/back.svg",
  18783. extra: 1023 / 950
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Normal",
  18790. height: math.unit(6 + 7 / 12, "feet"),
  18791. default: true
  18792. },
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18797. {
  18798. front: {
  18799. height: math.unit(5 + 10 / 12, "feet"),
  18800. weight: math.unit(150, "lb"),
  18801. name: "Front",
  18802. image: {
  18803. source: "./media/characters/kris/front.svg",
  18804. extra: 885 / 803,
  18805. bottom: 0.03
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(5 + 10 / 12, "feet"),
  18813. default: true
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18819. {
  18820. front: {
  18821. height: math.unit(7, "feet"),
  18822. weight: math.unit(120, "kg"),
  18823. name: "Front",
  18824. image: {
  18825. source: "./media/characters/taluthus/front.svg",
  18826. extra: 903 / 833,
  18827. bottom: 0.015
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Normal",
  18834. height: math.unit(7, "feet"),
  18835. default: true
  18836. },
  18837. {
  18838. name: "Macro",
  18839. height: math.unit(300, "feet")
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18845. {
  18846. front: {
  18847. height: math.unit(5 + 9 / 12, "feet"),
  18848. weight: math.unit(145, "lb"),
  18849. name: "Front",
  18850. image: {
  18851. source: "./media/characters/dawn/front.svg",
  18852. extra: 2094 / 2016,
  18853. bottom: 0.025
  18854. }
  18855. },
  18856. back: {
  18857. height: math.unit(5 + 9 / 12, "feet"),
  18858. weight: math.unit(160, "lb"),
  18859. name: "Back",
  18860. image: {
  18861. source: "./media/characters/dawn/back.svg",
  18862. extra: 2112 / 2080,
  18863. bottom: 0.005
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(6 + 7 / 12, "feet"),
  18871. default: true
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18877. {
  18878. anthro: {
  18879. height: math.unit(8 + 3 / 12, "feet"),
  18880. weight: math.unit(450, "lb"),
  18881. name: "Anthro",
  18882. image: {
  18883. source: "./media/characters/arador/anthro.svg",
  18884. extra: 1835 / 1718,
  18885. bottom: 0.025
  18886. }
  18887. },
  18888. feral: {
  18889. height: math.unit(4, "feet"),
  18890. weight: math.unit(200, "lb"),
  18891. name: "Feral",
  18892. image: {
  18893. source: "./media/characters/arador/feral.svg",
  18894. extra: 1683 / 1514,
  18895. bottom: 0.07
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(8 + 3 / 12, "feet")
  18903. },
  18904. {
  18905. name: "Macro",
  18906. height: math.unit(82.5, "feet"),
  18907. default: true
  18908. },
  18909. ]
  18910. ))
  18911. characterMakers.push(() => makeCharacter(
  18912. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18913. {
  18914. front: {
  18915. height: math.unit(5 + 10 / 12, "feet"),
  18916. weight: math.unit(125, "lb"),
  18917. name: "Front",
  18918. image: {
  18919. source: "./media/characters/dharsi/front.svg",
  18920. extra: 716 / 630,
  18921. bottom: 0.035
  18922. }
  18923. },
  18924. },
  18925. [
  18926. {
  18927. name: "Nano",
  18928. height: math.unit(100, "nm")
  18929. },
  18930. {
  18931. name: "Micro",
  18932. height: math.unit(2, "inches")
  18933. },
  18934. {
  18935. name: "Normal",
  18936. height: math.unit(5 + 10 / 12, "feet"),
  18937. default: true
  18938. },
  18939. {
  18940. name: "Macro",
  18941. height: math.unit(1000, "feet")
  18942. },
  18943. {
  18944. name: "Megamacro",
  18945. height: math.unit(10, "miles")
  18946. },
  18947. {
  18948. name: "Gigamacro",
  18949. height: math.unit(3000, "miles")
  18950. },
  18951. {
  18952. name: "Teramacro",
  18953. height: math.unit(500000, "miles")
  18954. },
  18955. {
  18956. name: "Teramacro+",
  18957. height: math.unit(30, "galaxies")
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18963. {
  18964. front: {
  18965. height: math.unit(6, "feet"),
  18966. weight: math.unit(150, "lb"),
  18967. name: "Front",
  18968. image: {
  18969. source: "./media/characters/deathy/front.svg",
  18970. extra: 1552 / 1463,
  18971. bottom: 0.025
  18972. }
  18973. },
  18974. side: {
  18975. height: math.unit(6, "feet"),
  18976. weight: math.unit(150, "lb"),
  18977. name: "Side",
  18978. image: {
  18979. source: "./media/characters/deathy/side.svg",
  18980. extra: 1604 / 1455,
  18981. bottom: 0.025
  18982. }
  18983. },
  18984. back: {
  18985. height: math.unit(6, "feet"),
  18986. weight: math.unit(150, "lb"),
  18987. name: "Back",
  18988. image: {
  18989. source: "./media/characters/deathy/back.svg",
  18990. extra: 1580 / 1463,
  18991. bottom: 0.005
  18992. }
  18993. },
  18994. },
  18995. [
  18996. {
  18997. name: "Micro",
  18998. height: math.unit(5, "millimeters")
  18999. },
  19000. {
  19001. name: "Normal",
  19002. height: math.unit(6 + 5 / 12, "feet"),
  19003. default: true
  19004. },
  19005. ]
  19006. ))
  19007. characterMakers.push(() => makeCharacter(
  19008. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19009. {
  19010. front: {
  19011. height: math.unit(16, "feet"),
  19012. weight: math.unit(4000, "lb"),
  19013. name: "Front",
  19014. image: {
  19015. source: "./media/characters/juniper/front.svg",
  19016. bottom: 0.04
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(16, "feet"),
  19024. default: true
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(6, "feet"),
  19033. weight: math.unit(150, "lb"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/hipster/front.svg",
  19037. extra: 1312 / 1209,
  19038. bottom: 0.025
  19039. }
  19040. },
  19041. back: {
  19042. height: math.unit(6, "feet"),
  19043. weight: math.unit(150, "lb"),
  19044. name: "Back",
  19045. image: {
  19046. source: "./media/characters/hipster/back.svg",
  19047. extra: 1281 / 1196,
  19048. bottom: 0.01
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Micro",
  19055. height: math.unit(1, "mm")
  19056. },
  19057. {
  19058. name: "Normal",
  19059. height: math.unit(4, "inches"),
  19060. default: true
  19061. },
  19062. {
  19063. name: "Macro",
  19064. height: math.unit(500, "feet")
  19065. },
  19066. {
  19067. name: "Megamacro",
  19068. height: math.unit(1000, "miles")
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19074. {
  19075. front: {
  19076. height: math.unit(6, "feet"),
  19077. weight: math.unit(150, "lb"),
  19078. name: "Front",
  19079. image: {
  19080. source: "./media/characters/tendirmuldr/front.svg",
  19081. extra: 1878 / 1772,
  19082. bottom: 0.015
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Megamacro",
  19089. height: math.unit(1500, "miles"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19096. {
  19097. front: {
  19098. height: math.unit(14, "feet"),
  19099. weight: math.unit(12000, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/mort/front.svg",
  19103. extra: 365 / 318,
  19104. bottom: 0.01
  19105. }
  19106. },
  19107. side: {
  19108. height: math.unit(14, "feet"),
  19109. weight: math.unit(12000, "lb"),
  19110. name: "Side",
  19111. image: {
  19112. source: "./media/characters/mort/side.svg",
  19113. extra: 365 / 318,
  19114. bottom: 0.052
  19115. },
  19116. default: true
  19117. },
  19118. back: {
  19119. height: math.unit(14, "feet"),
  19120. weight: math.unit(12000, "lb"),
  19121. name: "Back",
  19122. image: {
  19123. source: "./media/characters/mort/back.svg",
  19124. extra: 371 / 332,
  19125. bottom: 0.18
  19126. }
  19127. },
  19128. },
  19129. [
  19130. {
  19131. name: "Normal",
  19132. height: math.unit(14, "feet"),
  19133. default: true
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19139. {
  19140. front: {
  19141. height: math.unit(8, "feet"),
  19142. weight: math.unit(1, "ton"),
  19143. name: "Front",
  19144. image: {
  19145. source: "./media/characters/lycoa/front.svg",
  19146. extra: 1875 / 1789,
  19147. bottom: 0.022
  19148. }
  19149. },
  19150. back: {
  19151. height: math.unit(8, "feet"),
  19152. weight: math.unit(1, "ton"),
  19153. name: "Back",
  19154. image: {
  19155. source: "./media/characters/lycoa/back.svg",
  19156. extra: 1835 / 1781,
  19157. bottom: 0.03
  19158. }
  19159. },
  19160. head: {
  19161. height: math.unit(2.1, "feet"),
  19162. name: "Head",
  19163. image: {
  19164. source: "./media/characters/lycoa/head.svg"
  19165. }
  19166. },
  19167. tailmaw: {
  19168. height: math.unit(1.9, "feet"),
  19169. name: "Tailmaw",
  19170. image: {
  19171. source: "./media/characters/lycoa/tailmaw.svg"
  19172. }
  19173. },
  19174. tentacles: {
  19175. height: math.unit(2.1, "feet"),
  19176. name: "Tentacles",
  19177. image: {
  19178. source: "./media/characters/lycoa/tentacles.svg"
  19179. }
  19180. },
  19181. dick: {
  19182. height: math.unit(1.73, "feet"),
  19183. name: "Dick",
  19184. image: {
  19185. source: "./media/characters/lycoa/dick.svg"
  19186. }
  19187. },
  19188. },
  19189. [
  19190. {
  19191. name: "Normal",
  19192. height: math.unit(8, "feet"),
  19193. default: true
  19194. },
  19195. {
  19196. name: "Macro",
  19197. height: math.unit(30, "feet")
  19198. },
  19199. ]
  19200. ))
  19201. characterMakers.push(() => makeCharacter(
  19202. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19203. {
  19204. front: {
  19205. height: math.unit(4 + 2 / 12, "feet"),
  19206. weight: math.unit(70, "lb"),
  19207. name: "Front",
  19208. image: {
  19209. source: "./media/characters/naldara/front.svg",
  19210. extra: 841 / 720,
  19211. bottom: 0.04
  19212. }
  19213. },
  19214. naga: {
  19215. height: math.unit(23, "feet"),
  19216. weight: math.unit(15000, "kg"),
  19217. name: "Naga",
  19218. image: {
  19219. source: "./media/characters/naldara/naga.svg",
  19220. extra: 3290/2959,
  19221. bottom: 124/3432
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(4 + 2 / 12, "feet"),
  19229. default: true
  19230. },
  19231. ]
  19232. ))
  19233. characterMakers.push(() => makeCharacter(
  19234. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19235. {
  19236. front: {
  19237. height: math.unit(13 + 7 / 12, "feet"),
  19238. weight: math.unit(1500, "lb"),
  19239. name: "Front",
  19240. image: {
  19241. source: "./media/characters/briar/front.svg",
  19242. extra: 626 / 596,
  19243. bottom: 0.08
  19244. }
  19245. },
  19246. },
  19247. [
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(13 + 7 / 12, "feet"),
  19251. default: true
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19257. {
  19258. side: {
  19259. height: math.unit(10, "feet"),
  19260. weight: math.unit(500, "lb"),
  19261. name: "Side",
  19262. image: {
  19263. source: "./media/characters/vanguard/side.svg",
  19264. extra: 502 / 425,
  19265. bottom: 0.087
  19266. }
  19267. },
  19268. },
  19269. [
  19270. {
  19271. name: "Normal",
  19272. height: math.unit(10, "feet"),
  19273. default: true
  19274. },
  19275. ]
  19276. ))
  19277. characterMakers.push(() => makeCharacter(
  19278. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19279. {
  19280. front: {
  19281. height: math.unit(7.5, "feet"),
  19282. weight: math.unit(2, "lb"),
  19283. name: "Front",
  19284. image: {
  19285. source: "./media/characters/artemis/front.svg",
  19286. extra: 1192 / 1075,
  19287. bottom: 0.07
  19288. }
  19289. },
  19290. frontNsfw: {
  19291. height: math.unit(7.5, "feet"),
  19292. weight: math.unit(2, "lb"),
  19293. name: "Front (NSFW)",
  19294. image: {
  19295. source: "./media/characters/artemis/front-nsfw.svg",
  19296. extra: 1192 / 1075,
  19297. bottom: 0.07
  19298. }
  19299. },
  19300. frontNsfwer: {
  19301. height: math.unit(7.5, "feet"),
  19302. weight: math.unit(2, "lb"),
  19303. name: "Front (NSFW-er)",
  19304. image: {
  19305. source: "./media/characters/artemis/front-nsfwer.svg",
  19306. extra: 1192 / 1075,
  19307. bottom: 0.07
  19308. }
  19309. },
  19310. side: {
  19311. height: math.unit(7.5, "feet"),
  19312. weight: math.unit(2, "lb"),
  19313. name: "Side",
  19314. image: {
  19315. source: "./media/characters/artemis/side.svg",
  19316. extra: 1192 / 1075,
  19317. bottom: 0.07
  19318. }
  19319. },
  19320. sideNsfw: {
  19321. height: math.unit(7.5, "feet"),
  19322. weight: math.unit(2, "lb"),
  19323. name: "Side (NSFW)",
  19324. image: {
  19325. source: "./media/characters/artemis/side-nsfw.svg",
  19326. extra: 1192 / 1075,
  19327. bottom: 0.07
  19328. }
  19329. },
  19330. sideNsfwer: {
  19331. height: math.unit(7.5, "feet"),
  19332. weight: math.unit(2, "lb"),
  19333. name: "Side (NSFW-er)",
  19334. image: {
  19335. source: "./media/characters/artemis/side-nsfwer.svg",
  19336. extra: 1192 / 1075,
  19337. bottom: 0.07
  19338. }
  19339. },
  19340. maw: {
  19341. height: math.unit(1.1, "feet"),
  19342. name: "Maw",
  19343. image: {
  19344. source: "./media/characters/artemis/maw.svg"
  19345. }
  19346. },
  19347. stomach: {
  19348. height: math.unit(0.95, "feet"),
  19349. name: "Stomach",
  19350. image: {
  19351. source: "./media/characters/artemis/stomach.svg"
  19352. }
  19353. },
  19354. dickCanine: {
  19355. height: math.unit(1, "feet"),
  19356. name: "Dick (Canine)",
  19357. image: {
  19358. source: "./media/characters/artemis/dick-canine.svg"
  19359. }
  19360. },
  19361. dickEquine: {
  19362. height: math.unit(0.85, "feet"),
  19363. name: "Dick (Equine)",
  19364. image: {
  19365. source: "./media/characters/artemis/dick-equine.svg"
  19366. }
  19367. },
  19368. dickExotic: {
  19369. height: math.unit(0.85, "feet"),
  19370. name: "Dick (Exotic)",
  19371. image: {
  19372. source: "./media/characters/artemis/dick-exotic.svg"
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(7.5, "feet"),
  19380. default: true
  19381. },
  19382. {
  19383. name: "Enlarged",
  19384. height: math.unit(12, "feet")
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(5 + 3 / 12, "feet"),
  19393. weight: math.unit(160, "lb"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/kira/front.svg",
  19397. extra: 906 / 786,
  19398. bottom: 0.01
  19399. }
  19400. },
  19401. back: {
  19402. height: math.unit(5 + 3 / 12, "feet"),
  19403. weight: math.unit(160, "lb"),
  19404. name: "Back",
  19405. image: {
  19406. source: "./media/characters/kira/back.svg",
  19407. extra: 882 / 757,
  19408. bottom: 0.005
  19409. }
  19410. },
  19411. frontDressed: {
  19412. height: math.unit(5 + 3 / 12, "feet"),
  19413. weight: math.unit(160, "lb"),
  19414. name: "Front (Dressed)",
  19415. image: {
  19416. source: "./media/characters/kira/front-dressed.svg",
  19417. extra: 906 / 786,
  19418. bottom: 0.01
  19419. }
  19420. },
  19421. beans: {
  19422. height: math.unit(0.92, "feet"),
  19423. name: "Beans",
  19424. image: {
  19425. source: "./media/characters/kira/beans.svg"
  19426. }
  19427. },
  19428. },
  19429. [
  19430. {
  19431. name: "Normal",
  19432. height: math.unit(5 + 3 / 12, "feet"),
  19433. default: true
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(5 + 4 / 12, "feet"),
  19442. weight: math.unit(145, "lb"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/scramble/front.svg",
  19446. extra: 763 / 727,
  19447. bottom: 0.05
  19448. }
  19449. },
  19450. back: {
  19451. height: math.unit(5 + 4 / 12, "feet"),
  19452. weight: math.unit(145, "lb"),
  19453. name: "Back",
  19454. image: {
  19455. source: "./media/characters/scramble/back.svg",
  19456. extra: 826 / 737,
  19457. bottom: 0.002
  19458. }
  19459. },
  19460. },
  19461. [
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(5 + 4 / 12, "feet"),
  19465. default: true
  19466. },
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19471. {
  19472. side: {
  19473. height: math.unit(6 + 2 / 12, "feet"),
  19474. weight: math.unit(190, "lb"),
  19475. name: "Side",
  19476. image: {
  19477. source: "./media/characters/biscuit/side.svg",
  19478. extra: 858 / 791,
  19479. bottom: 0.044
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Normal",
  19486. height: math.unit(6 + 2 / 12, "feet"),
  19487. default: true
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19493. {
  19494. front: {
  19495. height: math.unit(5 + 2 / 12, "feet"),
  19496. weight: math.unit(120, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/poffin/front.svg",
  19500. extra: 786 / 680,
  19501. bottom: 0.005
  19502. }
  19503. },
  19504. },
  19505. [
  19506. {
  19507. name: "Normal",
  19508. height: math.unit(5 + 2 / 12, "feet"),
  19509. default: true
  19510. },
  19511. ]
  19512. ))
  19513. characterMakers.push(() => makeCharacter(
  19514. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19515. {
  19516. front: {
  19517. height: math.unit(6 + 3 / 12, "feet"),
  19518. weight: math.unit(519, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/dhari/front.svg",
  19522. extra: 1048 / 946,
  19523. bottom: 0.015
  19524. }
  19525. },
  19526. back: {
  19527. height: math.unit(6 + 3 / 12, "feet"),
  19528. weight: math.unit(519, "lb"),
  19529. name: "Back",
  19530. image: {
  19531. source: "./media/characters/dhari/back.svg",
  19532. extra: 1048 / 931,
  19533. bottom: 0.005
  19534. }
  19535. },
  19536. frontDressed: {
  19537. height: math.unit(6 + 3 / 12, "feet"),
  19538. weight: math.unit(519, "lb"),
  19539. name: "Front (Dressed)",
  19540. image: {
  19541. source: "./media/characters/dhari/front-dressed.svg",
  19542. extra: 1713 / 1546,
  19543. bottom: 0.02
  19544. }
  19545. },
  19546. backDressed: {
  19547. height: math.unit(6 + 3 / 12, "feet"),
  19548. weight: math.unit(519, "lb"),
  19549. name: "Back (Dressed)",
  19550. image: {
  19551. source: "./media/characters/dhari/back-dressed.svg",
  19552. extra: 1699 / 1537,
  19553. bottom: 0.01
  19554. }
  19555. },
  19556. maw: {
  19557. height: math.unit(0.95, "feet"),
  19558. name: "Maw",
  19559. image: {
  19560. source: "./media/characters/dhari/maw.svg"
  19561. }
  19562. },
  19563. wereFront: {
  19564. height: math.unit(12 + 8 / 12, "feet"),
  19565. weight: math.unit(4000, "lb"),
  19566. name: "Front (Were)",
  19567. image: {
  19568. source: "./media/characters/dhari/were-front.svg",
  19569. extra: 1065 / 969,
  19570. bottom: 0.015
  19571. }
  19572. },
  19573. wereBack: {
  19574. height: math.unit(12 + 8 / 12, "feet"),
  19575. weight: math.unit(4000, "lb"),
  19576. name: "Back (Were)",
  19577. image: {
  19578. source: "./media/characters/dhari/were-back.svg",
  19579. extra: 1065 / 969,
  19580. bottom: 0.012
  19581. }
  19582. },
  19583. wereMaw: {
  19584. height: math.unit(0.625, "meters"),
  19585. name: "Maw (Were)",
  19586. image: {
  19587. source: "./media/characters/dhari/were-maw.svg"
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(6 + 3 / 12, "feet"),
  19595. default: true
  19596. },
  19597. ]
  19598. ))
  19599. characterMakers.push(() => makeCharacter(
  19600. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19601. {
  19602. anthro: {
  19603. height: math.unit(5 + 7 / 12, "feet"),
  19604. weight: math.unit(175, "lb"),
  19605. name: "Anthro",
  19606. image: {
  19607. source: "./media/characters/rena-dyne/anthro.svg",
  19608. extra: 1849 / 1785,
  19609. bottom: 0.005
  19610. }
  19611. },
  19612. taur: {
  19613. height: math.unit(15 + 6 / 12, "feet"),
  19614. weight: math.unit(8000, "lb"),
  19615. name: "Taur",
  19616. image: {
  19617. source: "./media/characters/rena-dyne/taur.svg",
  19618. extra: 2315 / 2234,
  19619. bottom: 0.033
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(5 + 7 / 12, "feet"),
  19627. default: true
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19633. {
  19634. front: {
  19635. height: math.unit(8, "feet"),
  19636. weight: math.unit(600, "lb"),
  19637. name: "Front",
  19638. image: {
  19639. source: "./media/characters/weremeep/front.svg",
  19640. extra: 967 / 862,
  19641. bottom: 0.01
  19642. }
  19643. },
  19644. },
  19645. [
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(8, "feet"),
  19649. default: true
  19650. },
  19651. {
  19652. name: "Lorg",
  19653. height: math.unit(12, "feet")
  19654. },
  19655. {
  19656. name: "Oh Lawd She Comin'",
  19657. height: math.unit(20, "feet")
  19658. },
  19659. ]
  19660. ))
  19661. characterMakers.push(() => makeCharacter(
  19662. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19663. {
  19664. front: {
  19665. height: math.unit(4, "feet"),
  19666. weight: math.unit(90, "lb"),
  19667. name: "Front",
  19668. image: {
  19669. source: "./media/characters/reza/front.svg",
  19670. extra: 1183 / 1111,
  19671. bottom: 0.017
  19672. }
  19673. },
  19674. back: {
  19675. height: math.unit(4, "feet"),
  19676. weight: math.unit(90, "lb"),
  19677. name: "Back",
  19678. image: {
  19679. source: "./media/characters/reza/back.svg",
  19680. extra: 1183 / 1111,
  19681. bottom: 0.01
  19682. }
  19683. },
  19684. drake: {
  19685. height: math.unit(30, "feet"),
  19686. weight: math.unit(246960, "lb"),
  19687. name: "Drake",
  19688. image: {
  19689. source: "./media/characters/reza/drake.svg",
  19690. extra: 2350 / 2024,
  19691. bottom: 60.7 / 2403
  19692. }
  19693. },
  19694. },
  19695. [
  19696. {
  19697. name: "Normal",
  19698. height: math.unit(4, "feet"),
  19699. default: true
  19700. },
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19705. {
  19706. side: {
  19707. height: math.unit(15, "feet"),
  19708. weight: math.unit(14, "tons"),
  19709. name: "Side",
  19710. image: {
  19711. source: "./media/characters/athea/side.svg",
  19712. extra: 960 / 540,
  19713. bottom: 0.003
  19714. }
  19715. },
  19716. sitting: {
  19717. height: math.unit(6 * 2.85, "feet"),
  19718. weight: math.unit(14, "tons"),
  19719. name: "Sitting",
  19720. image: {
  19721. source: "./media/characters/athea/sitting.svg",
  19722. extra: 621 / 581,
  19723. bottom: 0.075
  19724. }
  19725. },
  19726. maw: {
  19727. height: math.unit(7.59498031496063, "feet"),
  19728. name: "Maw",
  19729. image: {
  19730. source: "./media/characters/athea/maw.svg"
  19731. }
  19732. },
  19733. },
  19734. [
  19735. {
  19736. name: "Lap Cat",
  19737. height: math.unit(2.5, "feet")
  19738. },
  19739. {
  19740. name: "Minimacro",
  19741. height: math.unit(15, "feet"),
  19742. default: true
  19743. },
  19744. {
  19745. name: "Macro",
  19746. height: math.unit(120, "feet")
  19747. },
  19748. {
  19749. name: "Macro+",
  19750. height: math.unit(640, "feet")
  19751. },
  19752. {
  19753. name: "Colossus",
  19754. height: math.unit(2.2, "miles")
  19755. },
  19756. ]
  19757. ))
  19758. characterMakers.push(() => makeCharacter(
  19759. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19760. {
  19761. front: {
  19762. height: math.unit(8 + 8 / 12, "feet"),
  19763. weight: math.unit(130, "kg"),
  19764. name: "Front",
  19765. image: {
  19766. source: "./media/characters/seroko/front.svg",
  19767. extra: 1385 / 1280,
  19768. bottom: 0.025
  19769. }
  19770. },
  19771. back: {
  19772. height: math.unit(8 + 8 / 12, "feet"),
  19773. weight: math.unit(130, "kg"),
  19774. name: "Back",
  19775. image: {
  19776. source: "./media/characters/seroko/back.svg",
  19777. extra: 1369 / 1238,
  19778. bottom: 0.018
  19779. }
  19780. },
  19781. frontDressed: {
  19782. height: math.unit(8 + 8 / 12, "feet"),
  19783. weight: math.unit(130, "kg"),
  19784. name: "Front (Dressed)",
  19785. image: {
  19786. source: "./media/characters/seroko/front-dressed.svg",
  19787. extra: 1366 / 1275,
  19788. bottom: 0.03
  19789. }
  19790. },
  19791. },
  19792. [
  19793. {
  19794. name: "Normal",
  19795. height: math.unit(8 + 8 / 12, "feet"),
  19796. default: true
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19802. {
  19803. front: {
  19804. height: math.unit(5.5, "feet"),
  19805. weight: math.unit(160, "lb"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/quatzi/front.svg",
  19809. extra: 2346 / 2242,
  19810. bottom: 0.015
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Normal",
  19817. height: math.unit(5.5, "feet"),
  19818. default: true
  19819. },
  19820. {
  19821. name: "Big",
  19822. height: math.unit(7.7, "feet")
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19828. {
  19829. front: {
  19830. height: math.unit(5 + 11 / 12, "feet"),
  19831. weight: math.unit(180, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/sen/front.svg",
  19835. extra: 1321 / 1254,
  19836. bottom: 0.015
  19837. }
  19838. },
  19839. side: {
  19840. height: math.unit(5 + 11 / 12, "feet"),
  19841. weight: math.unit(180, "lb"),
  19842. name: "Side",
  19843. image: {
  19844. source: "./media/characters/sen/side.svg",
  19845. extra: 1321 / 1254,
  19846. bottom: 0.007
  19847. }
  19848. },
  19849. back: {
  19850. height: math.unit(5 + 11 / 12, "feet"),
  19851. weight: math.unit(180, "lb"),
  19852. name: "Back",
  19853. image: {
  19854. source: "./media/characters/sen/back.svg",
  19855. extra: 1321 / 1254
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(5 + 11 / 12, "feet"),
  19863. default: true
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19869. {
  19870. front: {
  19871. height: math.unit(166.6, "cm"),
  19872. weight: math.unit(66.6, "kg"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/fruity/front.svg",
  19876. extra: 1510 / 1386,
  19877. bottom: 0.04
  19878. }
  19879. },
  19880. back: {
  19881. height: math.unit(166.6, "cm"),
  19882. weight: math.unit(66.6, "lb"),
  19883. name: "Back",
  19884. image: {
  19885. source: "./media/characters/fruity/back.svg",
  19886. extra: 1563 / 1435,
  19887. bottom: 0.005
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(166.6, "cm"),
  19895. default: true
  19896. },
  19897. {
  19898. name: "Demonic",
  19899. height: math.unit(166.6, "feet")
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19905. {
  19906. side: {
  19907. height: math.unit(10, "feet"),
  19908. weight: math.unit(500, "lb"),
  19909. name: "Side",
  19910. image: {
  19911. source: "./media/characters/zost/side.svg",
  19912. extra: 966 / 880,
  19913. bottom: 0.075
  19914. }
  19915. },
  19916. mawFront: {
  19917. height: math.unit(1.08, "meters"),
  19918. name: "Maw (Front)",
  19919. image: {
  19920. source: "./media/characters/zost/maw-front.svg"
  19921. }
  19922. },
  19923. mawSide: {
  19924. height: math.unit(2.66, "feet"),
  19925. name: "Maw (Side)",
  19926. image: {
  19927. source: "./media/characters/zost/maw-side.svg"
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(10, "feet"),
  19935. default: true
  19936. },
  19937. ]
  19938. ))
  19939. characterMakers.push(() => makeCharacter(
  19940. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19941. {
  19942. front: {
  19943. height: math.unit(5 + 4 / 12, "feet"),
  19944. weight: math.unit(120, "lb"),
  19945. name: "Front",
  19946. image: {
  19947. source: "./media/characters/luci/front.svg",
  19948. extra: 1985 / 1884,
  19949. bottom: 0.04
  19950. }
  19951. },
  19952. back: {
  19953. height: math.unit(5 + 4 / 12, "feet"),
  19954. weight: math.unit(120, "lb"),
  19955. name: "Back",
  19956. image: {
  19957. source: "./media/characters/luci/back.svg",
  19958. extra: 1892 / 1791,
  19959. bottom: 0.002
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(5 + 4 / 12, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(1500, "feet"),
  19976. weight: math.unit(3.8e6, "tons"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/2th/front.svg",
  19980. extra: 3489 / 3350,
  19981. bottom: 0.1
  19982. }
  19983. },
  19984. foot: {
  19985. height: math.unit(461, "feet"),
  19986. name: "Foot",
  19987. image: {
  19988. source: "./media/characters/2th/foot.svg"
  19989. }
  19990. },
  19991. },
  19992. [
  19993. {
  19994. name: "\"Micro\"",
  19995. height: math.unit(15 + 7 / 12, "feet")
  19996. },
  19997. {
  19998. name: "Normal",
  19999. height: math.unit(1500, "feet"),
  20000. default: true
  20001. },
  20002. {
  20003. name: "Macro",
  20004. height: math.unit(5000, "feet")
  20005. },
  20006. {
  20007. name: "Megamacro",
  20008. height: math.unit(15, "miles")
  20009. },
  20010. {
  20011. name: "Gigamacro",
  20012. height: math.unit(4000, "miles")
  20013. },
  20014. {
  20015. name: "Galactic",
  20016. height: math.unit(50, "AU")
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(5 + 6 / 12, "feet"),
  20025. weight: math.unit(220, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/amethyst/front.svg",
  20029. extra: 2078 / 2040,
  20030. bottom: 0.045
  20031. }
  20032. },
  20033. back: {
  20034. height: math.unit(5 + 6 / 12, "feet"),
  20035. weight: math.unit(220, "lb"),
  20036. name: "Back",
  20037. image: {
  20038. source: "./media/characters/amethyst/back.svg",
  20039. extra: 2021 / 1989,
  20040. bottom: 0.02
  20041. }
  20042. },
  20043. },
  20044. [
  20045. {
  20046. name: "Normal",
  20047. height: math.unit(5 + 6 / 12, "feet"),
  20048. default: true
  20049. },
  20050. ]
  20051. ))
  20052. characterMakers.push(() => makeCharacter(
  20053. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20054. {
  20055. front: {
  20056. height: math.unit(4 + 11 / 12, "feet"),
  20057. weight: math.unit(120, "lb"),
  20058. name: "Front",
  20059. image: {
  20060. source: "./media/characters/yumi-akiyama/front.svg",
  20061. extra: 1327 / 1235,
  20062. bottom: 0.02
  20063. }
  20064. },
  20065. back: {
  20066. height: math.unit(4 + 11 / 12, "feet"),
  20067. weight: math.unit(120, "lb"),
  20068. name: "Back",
  20069. image: {
  20070. source: "./media/characters/yumi-akiyama/back.svg",
  20071. extra: 1287 / 1245,
  20072. bottom: 0.002
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Galactic",
  20079. height: math.unit(50, "galaxies"),
  20080. default: true
  20081. },
  20082. {
  20083. name: "Universal",
  20084. height: math.unit(100, "universes")
  20085. },
  20086. ]
  20087. ))
  20088. characterMakers.push(() => makeCharacter(
  20089. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20090. {
  20091. front: {
  20092. height: math.unit(8, "feet"),
  20093. weight: math.unit(500, "lb"),
  20094. name: "Front",
  20095. image: {
  20096. source: "./media/characters/rifter-yrmori/front.svg",
  20097. extra: 1180 / 1125,
  20098. bottom: 0.02
  20099. }
  20100. },
  20101. back: {
  20102. height: math.unit(8, "feet"),
  20103. weight: math.unit(500, "lb"),
  20104. name: "Back",
  20105. image: {
  20106. source: "./media/characters/rifter-yrmori/back.svg",
  20107. extra: 1190 / 1145,
  20108. bottom: 0.001
  20109. }
  20110. },
  20111. wings: {
  20112. height: math.unit(7.75, "feet"),
  20113. weight: math.unit(500, "lb"),
  20114. name: "Wings",
  20115. image: {
  20116. source: "./media/characters/rifter-yrmori/wings.svg",
  20117. extra: 1357 / 1285
  20118. }
  20119. },
  20120. maw: {
  20121. height: math.unit(0.8, "feet"),
  20122. name: "Maw",
  20123. image: {
  20124. source: "./media/characters/rifter-yrmori/maw.svg"
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(8, "feet"),
  20132. default: true
  20133. },
  20134. {
  20135. name: "Macro",
  20136. height: math.unit(42, "meters")
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20142. {
  20143. were: {
  20144. height: math.unit(25 + 6 / 12, "feet"),
  20145. weight: math.unit(10000, "lb"),
  20146. name: "Were",
  20147. image: {
  20148. source: "./media/characters/tahajin/were.svg",
  20149. extra: 801 / 770,
  20150. bottom: 0.042
  20151. }
  20152. },
  20153. aquatic: {
  20154. height: math.unit(6 + 4 / 12, "feet"),
  20155. weight: math.unit(160, "lb"),
  20156. name: "Aquatic",
  20157. image: {
  20158. source: "./media/characters/tahajin/aquatic.svg",
  20159. extra: 572 / 542,
  20160. bottom: 0.04
  20161. }
  20162. },
  20163. chow: {
  20164. height: math.unit(8 + 11 / 12, "feet"),
  20165. weight: math.unit(450, "lb"),
  20166. name: "Chow",
  20167. image: {
  20168. source: "./media/characters/tahajin/chow.svg",
  20169. extra: 660 / 640,
  20170. bottom: 0.015
  20171. }
  20172. },
  20173. demiNaga: {
  20174. height: math.unit(6 + 8 / 12, "feet"),
  20175. weight: math.unit(300, "lb"),
  20176. name: "Demi Naga",
  20177. image: {
  20178. source: "./media/characters/tahajin/demi-naga.svg",
  20179. extra: 643 / 615,
  20180. bottom: 0.1
  20181. }
  20182. },
  20183. data: {
  20184. height: math.unit(5, "inches"),
  20185. weight: math.unit(0.1, "lb"),
  20186. name: "Data",
  20187. image: {
  20188. source: "./media/characters/tahajin/data.svg"
  20189. }
  20190. },
  20191. fluu: {
  20192. height: math.unit(5 + 7 / 12, "feet"),
  20193. weight: math.unit(140, "lb"),
  20194. name: "Fluu",
  20195. image: {
  20196. source: "./media/characters/tahajin/fluu.svg",
  20197. extra: 628 / 592,
  20198. bottom: 0.02
  20199. }
  20200. },
  20201. starWarrior: {
  20202. height: math.unit(4 + 5 / 12, "feet"),
  20203. weight: math.unit(50, "lb"),
  20204. name: "Star Warrior",
  20205. image: {
  20206. source: "./media/characters/tahajin/star-warrior.svg"
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Normal",
  20213. height: math.unit(25 + 6 / 12, "feet"),
  20214. default: true
  20215. },
  20216. ]
  20217. ))
  20218. characterMakers.push(() => makeCharacter(
  20219. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20220. {
  20221. front: {
  20222. height: math.unit(8, "feet"),
  20223. weight: math.unit(350, "lb"),
  20224. name: "Front",
  20225. image: {
  20226. source: "./media/characters/gabira/front.svg",
  20227. extra: 608 / 580,
  20228. bottom: 0.03
  20229. }
  20230. },
  20231. back: {
  20232. height: math.unit(8, "feet"),
  20233. weight: math.unit(350, "lb"),
  20234. name: "Back",
  20235. image: {
  20236. source: "./media/characters/gabira/back.svg",
  20237. extra: 608 / 580,
  20238. bottom: 0.03
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "Normal",
  20245. height: math.unit(8, "feet"),
  20246. default: true
  20247. },
  20248. ]
  20249. ))
  20250. characterMakers.push(() => makeCharacter(
  20251. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20252. {
  20253. front: {
  20254. height: math.unit(5 + 3 / 12, "feet"),
  20255. weight: math.unit(137, "lb"),
  20256. name: "Front",
  20257. image: {
  20258. source: "./media/characters/sasha-katraine/front.svg",
  20259. bottom: 0.045
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Micro",
  20266. height: math.unit(5, "inches")
  20267. },
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(5 + 3 / 12, "feet"),
  20271. default: true
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20277. {
  20278. side: {
  20279. height: math.unit(4, "inches"),
  20280. weight: math.unit(200, "grams"),
  20281. name: "Side",
  20282. image: {
  20283. source: "./media/characters/der/side.svg",
  20284. extra: 719 / 400,
  20285. bottom: 30.6 / 749.9187
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Micro",
  20292. height: math.unit(4, "inches"),
  20293. default: true
  20294. },
  20295. ]
  20296. ))
  20297. characterMakers.push(() => makeCharacter(
  20298. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20299. {
  20300. side: {
  20301. height: math.unit(30, "meters"),
  20302. weight: math.unit(700, "tonnes"),
  20303. name: "Side",
  20304. image: {
  20305. source: "./media/characters/fixerdragon/side.svg",
  20306. extra: (1293.0514 - 116.03) / 1106.86,
  20307. bottom: 116.03 / 1293.0514
  20308. }
  20309. },
  20310. },
  20311. [
  20312. {
  20313. name: "Planck",
  20314. height: math.unit(1.6e-35, "meters")
  20315. },
  20316. {
  20317. name: "Micro",
  20318. height: math.unit(0.4, "meters")
  20319. },
  20320. {
  20321. name: "Normal",
  20322. height: math.unit(30, "meters"),
  20323. default: true
  20324. },
  20325. {
  20326. name: "Megamacro",
  20327. height: math.unit(1.2, "megameters")
  20328. },
  20329. {
  20330. name: "Teramacro",
  20331. height: math.unit(130, "terameters")
  20332. },
  20333. {
  20334. name: "Yottamacro",
  20335. height: math.unit(6200, "yottameters")
  20336. },
  20337. ]
  20338. ));
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20341. {
  20342. front: {
  20343. height: math.unit(8, "feet"),
  20344. weight: math.unit(250, "lb"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/kite/front.svg",
  20348. extra: 2796 / 2659,
  20349. bottom: 0.002
  20350. }
  20351. },
  20352. },
  20353. [
  20354. {
  20355. name: "Normal",
  20356. height: math.unit(8, "feet"),
  20357. default: true
  20358. },
  20359. {
  20360. name: "Macro",
  20361. height: math.unit(360, "feet")
  20362. },
  20363. {
  20364. name: "Megamacro",
  20365. height: math.unit(1500, "feet")
  20366. },
  20367. ]
  20368. ))
  20369. characterMakers.push(() => makeCharacter(
  20370. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20371. {
  20372. front: {
  20373. height: math.unit(5 + 10 / 12, "feet"),
  20374. weight: math.unit(150, "lb"),
  20375. name: "Front",
  20376. image: {
  20377. source: "./media/characters/poojawa-vynar/front.svg",
  20378. extra: (1506.1547 - 55) / 1356.6,
  20379. bottom: 55 / 1506.1547
  20380. }
  20381. },
  20382. frontTailless: {
  20383. height: math.unit(5 + 10 / 12, "feet"),
  20384. weight: math.unit(150, "lb"),
  20385. name: "Front (Tailless)",
  20386. image: {
  20387. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20388. extra: (1506.1547 - 55) / 1356.6,
  20389. bottom: 55 / 1506.1547
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(5 + 10 / 12, "feet"),
  20397. default: true
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20403. {
  20404. front: {
  20405. height: math.unit(293, "meters"),
  20406. weight: math.unit(70400, "tons"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/violette/front.svg",
  20410. extra: 1227 / 1180,
  20411. bottom: 0.005
  20412. }
  20413. },
  20414. back: {
  20415. height: math.unit(293, "meters"),
  20416. weight: math.unit(70400, "tons"),
  20417. name: "Back",
  20418. image: {
  20419. source: "./media/characters/violette/back.svg",
  20420. extra: 1227 / 1180,
  20421. bottom: 0.005
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Macro",
  20428. height: math.unit(293, "meters"),
  20429. default: true
  20430. },
  20431. ]
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20435. {
  20436. front: {
  20437. height: math.unit(1050, "feet"),
  20438. weight: math.unit(200000, "tons"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/alessandra/front.svg",
  20442. extra: 960 / 912,
  20443. bottom: 0.06
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Macro",
  20450. height: math.unit(1050, "feet")
  20451. },
  20452. {
  20453. name: "Macro+",
  20454. height: math.unit(900, "meters"),
  20455. default: true
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20461. {
  20462. front: {
  20463. height: math.unit(5, "feet"),
  20464. weight: math.unit(187, "lb"),
  20465. name: "Front",
  20466. image: {
  20467. source: "./media/characters/person/front.svg",
  20468. extra: 3087 / 2945,
  20469. bottom: 91 / 3181
  20470. }
  20471. },
  20472. },
  20473. [
  20474. {
  20475. name: "Micro",
  20476. height: math.unit(3, "inches")
  20477. },
  20478. {
  20479. name: "Normal",
  20480. height: math.unit(5, "feet"),
  20481. default: true
  20482. },
  20483. {
  20484. name: "Macro",
  20485. height: math.unit(90, "feet")
  20486. },
  20487. {
  20488. name: "Max Size",
  20489. height: math.unit(280, "feet")
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20495. {
  20496. front: {
  20497. height: math.unit(4.5, "meters"),
  20498. weight: math.unit(3200, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/ty/front.svg",
  20502. extra: 1038 / 960,
  20503. bottom: 31.156 / 1068
  20504. }
  20505. },
  20506. back: {
  20507. height: math.unit(4.5, "meters"),
  20508. weight: math.unit(3200, "lb"),
  20509. name: "Back",
  20510. image: {
  20511. source: "./media/characters/ty/back.svg",
  20512. extra: 1044 / 966,
  20513. bottom: 7.48 / 1049
  20514. }
  20515. },
  20516. },
  20517. [
  20518. {
  20519. name: "Normal",
  20520. height: math.unit(4.5, "meters"),
  20521. default: true
  20522. },
  20523. ]
  20524. ))
  20525. characterMakers.push(() => makeCharacter(
  20526. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20527. {
  20528. front: {
  20529. height: math.unit(5 + 4 / 12, "feet"),
  20530. weight: math.unit(115, "lb"),
  20531. name: "Front",
  20532. image: {
  20533. source: "./media/characters/rocky/front.svg",
  20534. extra: 1012 / 975,
  20535. bottom: 54 / 1066
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(5 + 4 / 12, "feet"),
  20543. default: true
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20549. {
  20550. upright: {
  20551. height: math.unit(6, "meters"),
  20552. weight: math.unit(4000, "kg"),
  20553. name: "Upright",
  20554. image: {
  20555. source: "./media/characters/ruin/upright.svg",
  20556. extra: 668 / 661,
  20557. bottom: 42 / 799.8396
  20558. }
  20559. },
  20560. },
  20561. [
  20562. {
  20563. name: "Normal",
  20564. height: math.unit(6, "meters"),
  20565. default: true
  20566. },
  20567. ]
  20568. ))
  20569. characterMakers.push(() => makeCharacter(
  20570. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20571. {
  20572. front: {
  20573. height: math.unit(5, "feet"),
  20574. weight: math.unit(106, "lb"),
  20575. name: "Front",
  20576. image: {
  20577. source: "./media/characters/robin/front.svg",
  20578. extra: 862 / 799,
  20579. bottom: 42.4 / 914.8856
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(5, "feet"),
  20587. default: true
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20593. {
  20594. side: {
  20595. height: math.unit(3, "feet"),
  20596. weight: math.unit(225, "lb"),
  20597. name: "Side",
  20598. image: {
  20599. source: "./media/characters/saian/side.svg",
  20600. extra: 566 / 356,
  20601. bottom: 79.7 / 643
  20602. }
  20603. },
  20604. maw: {
  20605. height: math.unit(2.85, "feet"),
  20606. name: "Maw",
  20607. image: {
  20608. source: "./media/characters/saian/maw.svg"
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Normal",
  20615. height: math.unit(3, "feet"),
  20616. default: true
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20622. {
  20623. side: {
  20624. height: math.unit(8, "feet"),
  20625. weight: math.unit(300, "lb"),
  20626. name: "Side",
  20627. image: {
  20628. source: "./media/characters/equus-silvermane/side.svg",
  20629. extra: 2176 / 2050,
  20630. bottom: 65.7 / 2245
  20631. }
  20632. },
  20633. front: {
  20634. height: math.unit(8, "feet"),
  20635. weight: math.unit(300, "lb"),
  20636. name: "Front",
  20637. image: {
  20638. source: "./media/characters/equus-silvermane/front.svg",
  20639. extra: 4633 / 4400,
  20640. bottom: 71.3 / 4706.915
  20641. }
  20642. },
  20643. sideStepping: {
  20644. height: math.unit(8, "feet"),
  20645. weight: math.unit(300, "lb"),
  20646. name: "Side (Stepping)",
  20647. image: {
  20648. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20649. extra: 1968 / 1860,
  20650. bottom: 16.4 / 1989
  20651. }
  20652. },
  20653. },
  20654. [
  20655. {
  20656. name: "Normal",
  20657. height: math.unit(8, "feet")
  20658. },
  20659. {
  20660. name: "Minimacro",
  20661. height: math.unit(75, "feet"),
  20662. default: true
  20663. },
  20664. {
  20665. name: "Macro",
  20666. height: math.unit(150, "feet")
  20667. },
  20668. {
  20669. name: "Macro+",
  20670. height: math.unit(1000, "feet")
  20671. },
  20672. {
  20673. name: "Megamacro",
  20674. height: math.unit(1, "mile")
  20675. },
  20676. ]
  20677. ))
  20678. characterMakers.push(() => makeCharacter(
  20679. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20680. {
  20681. side: {
  20682. height: math.unit(20, "feet"),
  20683. weight: math.unit(30000, "kg"),
  20684. name: "Side",
  20685. image: {
  20686. source: "./media/characters/windar/side.svg",
  20687. extra: 1491 / 1248,
  20688. bottom: 82.56 / 1568
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(20, "feet"),
  20696. default: true
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20702. {
  20703. side: {
  20704. height: math.unit(15.66, "feet"),
  20705. weight: math.unit(150, "lb"),
  20706. name: "Side",
  20707. image: {
  20708. source: "./media/characters/melody/side.svg",
  20709. extra: 1097 / 944,
  20710. bottom: 11.8 / 1109
  20711. }
  20712. },
  20713. sideOutfit: {
  20714. height: math.unit(15.66, "feet"),
  20715. weight: math.unit(150, "lb"),
  20716. name: "Side (Outfit)",
  20717. image: {
  20718. source: "./media/characters/melody/side-outfit.svg",
  20719. extra: 1097 / 944,
  20720. bottom: 11.8 / 1109
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Normal",
  20727. height: math.unit(15.66, "feet"),
  20728. default: true
  20729. },
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20734. {
  20735. front: {
  20736. height: math.unit(8, "feet"),
  20737. weight: math.unit(325, "lb"),
  20738. name: "Front",
  20739. image: {
  20740. source: "./media/characters/windera/front.svg",
  20741. extra: 3180 / 2845,
  20742. bottom: 178 / 3365
  20743. }
  20744. },
  20745. },
  20746. [
  20747. {
  20748. name: "Normal",
  20749. height: math.unit(8, "feet"),
  20750. default: true
  20751. },
  20752. ]
  20753. ))
  20754. characterMakers.push(() => makeCharacter(
  20755. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20756. {
  20757. front: {
  20758. height: math.unit(28.75, "feet"),
  20759. weight: math.unit(2000, "kg"),
  20760. name: "Front",
  20761. image: {
  20762. source: "./media/characters/sonear/front.svg",
  20763. extra: 1041.1 / 964.9,
  20764. bottom: 53.7 / 1096.6
  20765. }
  20766. },
  20767. },
  20768. [
  20769. {
  20770. name: "Normal",
  20771. height: math.unit(28.75, "feet"),
  20772. default: true
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20778. {
  20779. side: {
  20780. height: math.unit(25.5, "feet"),
  20781. weight: math.unit(23000, "kg"),
  20782. name: "Side",
  20783. image: {
  20784. source: "./media/characters/kanara/side.svg"
  20785. }
  20786. },
  20787. },
  20788. [
  20789. {
  20790. name: "Normal",
  20791. height: math.unit(25.5, "feet"),
  20792. default: true
  20793. },
  20794. ]
  20795. ))
  20796. characterMakers.push(() => makeCharacter(
  20797. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20798. {
  20799. side: {
  20800. height: math.unit(10, "feet"),
  20801. weight: math.unit(1000, "kg"),
  20802. name: "Side",
  20803. image: {
  20804. source: "./media/characters/ereus/side.svg",
  20805. extra: 1157 / 959,
  20806. bottom: 153 / 1312.5
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(10, "feet"),
  20814. default: true
  20815. },
  20816. ]
  20817. ))
  20818. characterMakers.push(() => makeCharacter(
  20819. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20820. {
  20821. side: {
  20822. height: math.unit(4.5, "feet"),
  20823. weight: math.unit(500, "lb"),
  20824. name: "Side",
  20825. image: {
  20826. source: "./media/characters/e-ter/side.svg",
  20827. extra: 1550 / 1248,
  20828. bottom: 146 / 1694
  20829. }
  20830. },
  20831. },
  20832. [
  20833. {
  20834. name: "Normal",
  20835. height: math.unit(4.5, "feet"),
  20836. default: true
  20837. },
  20838. ]
  20839. ))
  20840. characterMakers.push(() => makeCharacter(
  20841. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20842. {
  20843. side: {
  20844. height: math.unit(9.7, "feet"),
  20845. weight: math.unit(4000, "kg"),
  20846. name: "Side",
  20847. image: {
  20848. source: "./media/characters/yamie/side.svg"
  20849. }
  20850. },
  20851. },
  20852. [
  20853. {
  20854. name: "Normal",
  20855. height: math.unit(9.7, "feet"),
  20856. default: true
  20857. },
  20858. ]
  20859. ))
  20860. characterMakers.push(() => makeCharacter(
  20861. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20862. {
  20863. front: {
  20864. height: math.unit(50, "feet"),
  20865. weight: math.unit(50000, "kg"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/anders/front.svg",
  20869. extra: 570 / 539,
  20870. bottom: 14.7 / 586.7
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Large",
  20877. height: math.unit(50, "feet")
  20878. },
  20879. {
  20880. name: "Macro",
  20881. height: math.unit(2000, "feet"),
  20882. default: true
  20883. },
  20884. {
  20885. name: "Megamacro",
  20886. height: math.unit(12, "miles")
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20892. {
  20893. front: {
  20894. height: math.unit(7 + 2 / 12, "feet"),
  20895. weight: math.unit(300, "lb"),
  20896. name: "Front",
  20897. image: {
  20898. source: "./media/characters/reban/front.svg",
  20899. extra: 516 / 487,
  20900. bottom: 42.82 / 558.356
  20901. }
  20902. },
  20903. dick: {
  20904. height: math.unit(7 / 5, "feet"),
  20905. name: "Dick",
  20906. image: {
  20907. source: "./media/characters/reban/dick.svg"
  20908. }
  20909. },
  20910. },
  20911. [
  20912. {
  20913. name: "Natural Height",
  20914. height: math.unit(7 + 2 / 12, "feet")
  20915. },
  20916. {
  20917. name: "Macro",
  20918. height: math.unit(500, "feet"),
  20919. default: true
  20920. },
  20921. {
  20922. name: "Canon Height",
  20923. height: math.unit(50, "AU")
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20929. {
  20930. front: {
  20931. height: math.unit(6, "feet"),
  20932. weight: math.unit(150, "lb"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/terrance-keayes/front.svg",
  20936. extra: 1.005,
  20937. bottom: 151 / 1615
  20938. }
  20939. },
  20940. side: {
  20941. height: math.unit(6, "feet"),
  20942. weight: math.unit(150, "lb"),
  20943. name: "Side",
  20944. image: {
  20945. source: "./media/characters/terrance-keayes/side.svg",
  20946. extra: 1.005,
  20947. bottom: 129.4 / 1544
  20948. }
  20949. },
  20950. back: {
  20951. height: math.unit(6, "feet"),
  20952. weight: math.unit(150, "lb"),
  20953. name: "Back",
  20954. image: {
  20955. source: "./media/characters/terrance-keayes/back.svg",
  20956. extra: 1.005,
  20957. bottom: 58.4 / 1557.3
  20958. }
  20959. },
  20960. dick: {
  20961. height: math.unit(6 * 0.208, "feet"),
  20962. name: "Dick",
  20963. image: {
  20964. source: "./media/characters/terrance-keayes/dick.svg"
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Canon Height",
  20971. height: math.unit(35, "miles"),
  20972. default: true
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20978. {
  20979. front: {
  20980. height: math.unit(6, "feet"),
  20981. weight: math.unit(150, "lb"),
  20982. name: "Front",
  20983. image: {
  20984. source: "./media/characters/ofelia/front.svg",
  20985. extra: 546 / 541,
  20986. bottom: 39 / 583
  20987. }
  20988. },
  20989. back: {
  20990. height: math.unit(6, "feet"),
  20991. weight: math.unit(150, "lb"),
  20992. name: "Back",
  20993. image: {
  20994. source: "./media/characters/ofelia/back.svg",
  20995. extra: 564 / 559.5,
  20996. bottom: 8.69 / 573.02
  20997. }
  20998. },
  20999. maw: {
  21000. height: math.unit(1, "feet"),
  21001. name: "Maw",
  21002. image: {
  21003. source: "./media/characters/ofelia/maw.svg"
  21004. }
  21005. },
  21006. foot: {
  21007. height: math.unit(1.949, "feet"),
  21008. name: "Foot",
  21009. image: {
  21010. source: "./media/characters/ofelia/foot.svg"
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Canon Height",
  21017. height: math.unit(2000, "miles"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21024. {
  21025. front: {
  21026. height: math.unit(6, "feet"),
  21027. weight: math.unit(150, "lb"),
  21028. name: "Front",
  21029. image: {
  21030. source: "./media/characters/samuel/front.svg",
  21031. extra: 265 / 258,
  21032. bottom: 2 / 266.1566
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Macro",
  21039. height: math.unit(100, "feet"),
  21040. default: true
  21041. },
  21042. {
  21043. name: "Full Size",
  21044. height: math.unit(1000, "miles")
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(6, "feet"),
  21053. weight: math.unit(300, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/beishir-kiel/front.svg",
  21057. extra: 569 / 547,
  21058. bottom: 41.9 / 609
  21059. }
  21060. },
  21061. maw: {
  21062. height: math.unit(6 * 0.202, "feet"),
  21063. name: "Maw",
  21064. image: {
  21065. source: "./media/characters/beishir-kiel/maw.svg"
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Macro",
  21072. height: math.unit(300, "feet"),
  21073. default: true
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21079. {
  21080. front: {
  21081. height: math.unit(5 + 8 / 12, "feet"),
  21082. weight: math.unit(120, "lb"),
  21083. name: "Front",
  21084. image: {
  21085. source: "./media/characters/logan-grey/front.svg",
  21086. extra: 2539 / 2393,
  21087. bottom: 97.6 / 2636.37
  21088. }
  21089. },
  21090. frontAlt: {
  21091. height: math.unit(5 + 8 / 12, "feet"),
  21092. weight: math.unit(120, "lb"),
  21093. name: "Front (Alt)",
  21094. image: {
  21095. source: "./media/characters/logan-grey/front-alt.svg",
  21096. extra: 958 / 893,
  21097. bottom: 15 / 970.768
  21098. }
  21099. },
  21100. back: {
  21101. height: math.unit(5 + 8 / 12, "feet"),
  21102. weight: math.unit(120, "lb"),
  21103. name: "Back",
  21104. image: {
  21105. source: "./media/characters/logan-grey/back.svg",
  21106. extra: 958 / 893,
  21107. bottom: 2.1881 / 970.9788
  21108. }
  21109. },
  21110. dick: {
  21111. height: math.unit(1.437, "feet"),
  21112. name: "Dick",
  21113. image: {
  21114. source: "./media/characters/logan-grey/dick.svg"
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Normal",
  21121. height: math.unit(5 + 8 / 12, "feet")
  21122. },
  21123. {
  21124. name: "The 500 Foot Femboy",
  21125. height: math.unit(500, "feet"),
  21126. default: true
  21127. },
  21128. {
  21129. name: "Megmacro",
  21130. height: math.unit(20, "miles")
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(8 + 2 / 12, "feet"),
  21139. weight: math.unit(275, "lb"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/draganta/front.svg",
  21143. extra: 1177 / 1135,
  21144. bottom: 33.46 / 1212.1
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(8 + 6 / 12, "feet"),
  21152. default: true
  21153. },
  21154. {
  21155. name: "Macro",
  21156. height: math.unit(150, "feet")
  21157. },
  21158. {
  21159. name: "Megamacro",
  21160. height: math.unit(1000, "miles")
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(1.72, "m"),
  21169. weight: math.unit(80, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/voski/front.svg",
  21173. extra: 2076.22 / 2022.4,
  21174. bottom: 102.7 / 2177.3866
  21175. }
  21176. },
  21177. frontNsfw: {
  21178. height: math.unit(1.72, "m"),
  21179. weight: math.unit(80, "lb"),
  21180. name: "Front (NSFW)",
  21181. image: {
  21182. source: "./media/characters/voski/front-nsfw.svg",
  21183. extra: 2076.22 / 2022.4,
  21184. bottom: 102.7 / 2177.3866
  21185. }
  21186. },
  21187. back: {
  21188. height: math.unit(1.72, "m"),
  21189. weight: math.unit(80, "lb"),
  21190. name: "Back",
  21191. image: {
  21192. source: "./media/characters/voski/back.svg",
  21193. extra: 2104 / 2051,
  21194. bottom: 10.45 / 2113.63
  21195. }
  21196. },
  21197. },
  21198. [
  21199. {
  21200. name: "Normal",
  21201. height: math.unit(1.72, "m")
  21202. },
  21203. {
  21204. name: "Macro",
  21205. height: math.unit(55, "m"),
  21206. default: true
  21207. },
  21208. {
  21209. name: "Macro+",
  21210. height: math.unit(300, "m")
  21211. },
  21212. {
  21213. name: "Macro++",
  21214. height: math.unit(700, "m")
  21215. },
  21216. {
  21217. name: "Macro+++",
  21218. height: math.unit(4500, "m")
  21219. },
  21220. {
  21221. name: "Macro++++",
  21222. height: math.unit(45, "km")
  21223. },
  21224. {
  21225. name: "Macro+++++",
  21226. height: math.unit(1220, "km")
  21227. },
  21228. ]
  21229. ))
  21230. characterMakers.push(() => makeCharacter(
  21231. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21232. {
  21233. front: {
  21234. height: math.unit(2.3, "m"),
  21235. weight: math.unit(304, "kg"),
  21236. name: "Front",
  21237. image: {
  21238. source: "./media/characters/icowom-lee/front.svg",
  21239. extra: 985 / 955,
  21240. bottom: 25.4 / 1012
  21241. }
  21242. },
  21243. fronttentacles: {
  21244. height: math.unit(2.3, "m"),
  21245. weight: math.unit(304, "kg"),
  21246. name: "Front-tentacles",
  21247. image: {
  21248. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21249. extra: 985 / 955,
  21250. bottom: 25.4 / 1012
  21251. }
  21252. },
  21253. back: {
  21254. height: math.unit(2.3, "m"),
  21255. weight: math.unit(304, "kg"),
  21256. name: "Back",
  21257. image: {
  21258. source: "./media/characters/icowom-lee/back.svg",
  21259. extra: 975 / 954,
  21260. bottom: 9.5 / 985
  21261. }
  21262. },
  21263. backtentacles: {
  21264. height: math.unit(2.3, "m"),
  21265. weight: math.unit(304, "kg"),
  21266. name: "Back-tentacles",
  21267. image: {
  21268. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21269. extra: 975 / 954,
  21270. bottom: 9.5 / 985
  21271. }
  21272. },
  21273. frontDressed: {
  21274. height: math.unit(2.3, "m"),
  21275. weight: math.unit(304, "kg"),
  21276. name: "Front (Dressed)",
  21277. image: {
  21278. source: "./media/characters/icowom-lee/front-dressed.svg",
  21279. extra: 3076 / 2933,
  21280. bottom: 51.4 / 3125.1889
  21281. }
  21282. },
  21283. rump: {
  21284. height: math.unit(0.776, "meters"),
  21285. name: "Rump",
  21286. image: {
  21287. source: "./media/characters/icowom-lee/rump.svg"
  21288. }
  21289. },
  21290. genitals: {
  21291. height: math.unit(0.78, "meters"),
  21292. name: "Genitals",
  21293. image: {
  21294. source: "./media/characters/icowom-lee/genitals.svg"
  21295. }
  21296. },
  21297. },
  21298. [
  21299. {
  21300. name: "Normal",
  21301. height: math.unit(2.3, "meters"),
  21302. default: true
  21303. },
  21304. {
  21305. name: "Macro",
  21306. height: math.unit(94, "meters"),
  21307. default: true
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21313. {
  21314. front: {
  21315. height: math.unit(22, "meters"),
  21316. weight: math.unit(21000, "kg"),
  21317. name: "Front",
  21318. image: {
  21319. source: "./media/characters/shock-diamond/front.svg",
  21320. extra: 2204 / 2053,
  21321. bottom: 65 / 2239.47
  21322. }
  21323. },
  21324. frontNude: {
  21325. height: math.unit(22, "meters"),
  21326. weight: math.unit(21000, "kg"),
  21327. name: "Front (Nude)",
  21328. image: {
  21329. source: "./media/characters/shock-diamond/front-nude.svg",
  21330. extra: 2514 / 2285,
  21331. bottom: 13 / 2527.56
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(3, "meters")
  21339. },
  21340. {
  21341. name: "Macro",
  21342. height: math.unit(22, "meters"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21349. {
  21350. front: {
  21351. height: math.unit(5 + 4 / 12, "feet"),
  21352. weight: math.unit(120, "lb"),
  21353. name: "Front",
  21354. image: {
  21355. source: "./media/characters/rory/front.svg",
  21356. extra: 589 / 556,
  21357. bottom: 45.7 / 635.76
  21358. }
  21359. },
  21360. frontNude: {
  21361. height: math.unit(5 + 4 / 12, "feet"),
  21362. weight: math.unit(120, "lb"),
  21363. name: "Front (Nude)",
  21364. image: {
  21365. source: "./media/characters/rory/front-nude.svg",
  21366. extra: 589 / 556,
  21367. bottom: 45.7 / 635.76
  21368. }
  21369. },
  21370. side: {
  21371. height: math.unit(5 + 4 / 12, "feet"),
  21372. weight: math.unit(120, "lb"),
  21373. name: "Side",
  21374. image: {
  21375. source: "./media/characters/rory/side.svg",
  21376. extra: 597 / 564,
  21377. bottom: 55 / 653
  21378. }
  21379. },
  21380. back: {
  21381. height: math.unit(5 + 4 / 12, "feet"),
  21382. weight: math.unit(120, "lb"),
  21383. name: "Back",
  21384. image: {
  21385. source: "./media/characters/rory/back.svg",
  21386. extra: 620 / 585,
  21387. bottom: 8.86 / 630.43
  21388. }
  21389. },
  21390. dick: {
  21391. height: math.unit(0.86, "feet"),
  21392. name: "Dick",
  21393. image: {
  21394. source: "./media/characters/rory/dick.svg"
  21395. }
  21396. },
  21397. },
  21398. [
  21399. {
  21400. name: "Normal",
  21401. height: math.unit(5 + 4 / 12, "feet"),
  21402. default: true
  21403. },
  21404. {
  21405. name: "Macro",
  21406. height: math.unit(100, "feet")
  21407. },
  21408. {
  21409. name: "Macro+",
  21410. height: math.unit(140, "feet")
  21411. },
  21412. {
  21413. name: "Macro++",
  21414. height: math.unit(300, "feet")
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(5 + 9 / 12, "feet"),
  21423. weight: math.unit(190, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/sprisk/front.svg",
  21427. extra: 1225 / 1180,
  21428. bottom: 42.7 / 1266.4
  21429. }
  21430. },
  21431. frontNsfw: {
  21432. height: math.unit(5 + 9 / 12, "feet"),
  21433. weight: math.unit(190, "lb"),
  21434. name: "Front (NSFW)",
  21435. image: {
  21436. source: "./media/characters/sprisk/front-nsfw.svg",
  21437. extra: 1225 / 1180,
  21438. bottom: 42.7 / 1266.4
  21439. }
  21440. },
  21441. back: {
  21442. height: math.unit(5 + 9 / 12, "feet"),
  21443. weight: math.unit(190, "lb"),
  21444. name: "Back",
  21445. image: {
  21446. source: "./media/characters/sprisk/back.svg",
  21447. extra: 1247 / 1200,
  21448. bottom: 5.6 / 1253.04
  21449. }
  21450. },
  21451. },
  21452. [
  21453. {
  21454. name: "Tiny",
  21455. height: math.unit(2, "inches")
  21456. },
  21457. {
  21458. name: "Normal",
  21459. height: math.unit(5 + 9 / 12, "feet"),
  21460. default: true
  21461. },
  21462. {
  21463. name: "Mini Macro",
  21464. height: math.unit(18, "feet")
  21465. },
  21466. {
  21467. name: "Macro",
  21468. height: math.unit(100, "feet")
  21469. },
  21470. {
  21471. name: "MACRO",
  21472. height: math.unit(50, "miles")
  21473. },
  21474. {
  21475. name: "M A C R O",
  21476. height: math.unit(300, "miles")
  21477. },
  21478. ]
  21479. ))
  21480. characterMakers.push(() => makeCharacter(
  21481. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21482. {
  21483. side: {
  21484. height: math.unit(15.6, "meters"),
  21485. weight: math.unit(700000, "kg"),
  21486. name: "Side",
  21487. image: {
  21488. source: "./media/characters/bunsen/side.svg",
  21489. extra: 1644 / 358
  21490. }
  21491. },
  21492. foot: {
  21493. height: math.unit(1.611 * 1644 / 358, "meter"),
  21494. name: "Foot",
  21495. image: {
  21496. source: "./media/characters/bunsen/foot.svg"
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Small",
  21503. height: math.unit(10, "feet")
  21504. },
  21505. {
  21506. name: "Normal",
  21507. height: math.unit(15.6, "meters"),
  21508. default: true
  21509. },
  21510. ]
  21511. ))
  21512. characterMakers.push(() => makeCharacter(
  21513. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21514. {
  21515. front: {
  21516. height: math.unit(4 + 11 / 12, "feet"),
  21517. weight: math.unit(140, "lb"),
  21518. name: "Front",
  21519. image: {
  21520. source: "./media/characters/sesh/front.svg",
  21521. extra: 3420 / 3231,
  21522. bottom: 72 / 3949.5
  21523. }
  21524. },
  21525. },
  21526. [
  21527. {
  21528. name: "Normal",
  21529. height: math.unit(4 + 11 / 12, "feet")
  21530. },
  21531. {
  21532. name: "Grown",
  21533. height: math.unit(15, "feet"),
  21534. default: true
  21535. },
  21536. {
  21537. name: "Macro",
  21538. height: math.unit(1500, "feet")
  21539. },
  21540. {
  21541. name: "Megamacro",
  21542. height: math.unit(30, "miles")
  21543. },
  21544. {
  21545. name: "Continental",
  21546. height: math.unit(3000, "miles")
  21547. },
  21548. {
  21549. name: "Gravity Mass",
  21550. height: math.unit(300000, "miles")
  21551. },
  21552. {
  21553. name: "Planet Buster",
  21554. height: math.unit(30000000, "miles")
  21555. },
  21556. {
  21557. name: "Big",
  21558. height: math.unit(3000000000, "miles")
  21559. },
  21560. ]
  21561. ))
  21562. characterMakers.push(() => makeCharacter(
  21563. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21564. {
  21565. front: {
  21566. height: math.unit(9, "feet"),
  21567. weight: math.unit(350, "lb"),
  21568. name: "Front",
  21569. image: {
  21570. source: "./media/characters/pepper/front.svg",
  21571. extra: 1448 / 1312,
  21572. bottom: 9.4 / 1457.88
  21573. }
  21574. },
  21575. back: {
  21576. height: math.unit(9, "feet"),
  21577. weight: math.unit(350, "lb"),
  21578. name: "Back",
  21579. image: {
  21580. source: "./media/characters/pepper/back.svg",
  21581. extra: 1423 / 1300,
  21582. bottom: 4.6 / 1429
  21583. }
  21584. },
  21585. maw: {
  21586. height: math.unit(0.932, "feet"),
  21587. name: "Maw",
  21588. image: {
  21589. source: "./media/characters/pepper/maw.svg"
  21590. }
  21591. },
  21592. },
  21593. [
  21594. {
  21595. name: "Normal",
  21596. height: math.unit(9, "feet"),
  21597. default: true
  21598. },
  21599. ]
  21600. ))
  21601. characterMakers.push(() => makeCharacter(
  21602. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21603. {
  21604. front: {
  21605. height: math.unit(6, "feet"),
  21606. weight: math.unit(150, "lb"),
  21607. name: "Front",
  21608. image: {
  21609. source: "./media/characters/maelstrom/front.svg",
  21610. extra: 2100 / 1883,
  21611. bottom: 94 / 2196.7
  21612. }
  21613. },
  21614. },
  21615. [
  21616. {
  21617. name: "Less Kaiju",
  21618. height: math.unit(200, "feet")
  21619. },
  21620. {
  21621. name: "Kaiju",
  21622. height: math.unit(400, "feet"),
  21623. default: true
  21624. },
  21625. {
  21626. name: "Kaiju-er",
  21627. height: math.unit(600, "feet")
  21628. },
  21629. ]
  21630. ))
  21631. characterMakers.push(() => makeCharacter(
  21632. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21633. {
  21634. front: {
  21635. height: math.unit(6 + 5 / 12, "feet"),
  21636. weight: math.unit(180, "lb"),
  21637. name: "Front",
  21638. image: {
  21639. source: "./media/characters/lexir/front.svg",
  21640. extra: 180 / 172,
  21641. bottom: 12 / 192
  21642. }
  21643. },
  21644. back: {
  21645. height: math.unit(6 + 5 / 12, "feet"),
  21646. weight: math.unit(180, "lb"),
  21647. name: "Back",
  21648. image: {
  21649. source: "./media/characters/lexir/back.svg",
  21650. extra: 183.84 / 175.5,
  21651. bottom: 3.1 / 187
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Very Smal",
  21658. height: math.unit(1, "nm")
  21659. },
  21660. {
  21661. name: "Normal",
  21662. height: math.unit(6 + 5 / 12, "feet"),
  21663. default: true
  21664. },
  21665. {
  21666. name: "Macro",
  21667. height: math.unit(1, "mile")
  21668. },
  21669. {
  21670. name: "Megamacro",
  21671. height: math.unit(50, "miles")
  21672. },
  21673. ]
  21674. ))
  21675. characterMakers.push(() => makeCharacter(
  21676. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21677. {
  21678. front: {
  21679. height: math.unit(1.5, "meters"),
  21680. weight: math.unit(100, "lb"),
  21681. name: "Front",
  21682. image: {
  21683. source: "./media/characters/maksio/front.svg",
  21684. extra: 1549 / 1531,
  21685. bottom: 123.7 / 1674.5429
  21686. }
  21687. },
  21688. back: {
  21689. height: math.unit(1.5, "meters"),
  21690. weight: math.unit(100, "lb"),
  21691. name: "Back",
  21692. image: {
  21693. source: "./media/characters/maksio/back.svg",
  21694. extra: 1541 / 1509,
  21695. bottom: 97 / 1639
  21696. }
  21697. },
  21698. hand: {
  21699. height: math.unit(0.621, "feet"),
  21700. name: "Hand",
  21701. image: {
  21702. source: "./media/characters/maksio/hand.svg"
  21703. }
  21704. },
  21705. foot: {
  21706. height: math.unit(1.611, "feet"),
  21707. name: "Foot",
  21708. image: {
  21709. source: "./media/characters/maksio/foot.svg"
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Shrunken",
  21716. height: math.unit(10, "cm")
  21717. },
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(150, "cm"),
  21721. default: true
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21727. {
  21728. front: {
  21729. height: math.unit(100, "feet"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/erza-bear/front.svg",
  21733. extra: 2449 / 2390,
  21734. bottom: 46 / 2494
  21735. }
  21736. },
  21737. back: {
  21738. height: math.unit(100, "feet"),
  21739. name: "Back",
  21740. image: {
  21741. source: "./media/characters/erza-bear/back.svg",
  21742. extra: 2489 / 2430,
  21743. bottom: 85.4 / 2480
  21744. }
  21745. },
  21746. tail: {
  21747. height: math.unit(42, "feet"),
  21748. name: "Tail",
  21749. image: {
  21750. source: "./media/characters/erza-bear/tail.svg"
  21751. }
  21752. },
  21753. tongue: {
  21754. height: math.unit(8, "feet"),
  21755. name: "Tongue",
  21756. image: {
  21757. source: "./media/characters/erza-bear/tongue.svg"
  21758. }
  21759. },
  21760. dick: {
  21761. height: math.unit(10.5, "feet"),
  21762. name: "Dick",
  21763. image: {
  21764. source: "./media/characters/erza-bear/dick.svg"
  21765. }
  21766. },
  21767. dickVertical: {
  21768. height: math.unit(16.9, "feet"),
  21769. name: "Dick (Vertical)",
  21770. image: {
  21771. source: "./media/characters/erza-bear/dick-vertical.svg"
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Macro",
  21778. height: math.unit(100, "feet"),
  21779. default: true
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21785. {
  21786. front: {
  21787. height: math.unit(172, "cm"),
  21788. weight: math.unit(73, "kg"),
  21789. name: "Front",
  21790. image: {
  21791. source: "./media/characters/violet-flor/front.svg",
  21792. extra: 1530 / 1442,
  21793. bottom: 61.9 / 1588.8
  21794. }
  21795. },
  21796. back: {
  21797. height: math.unit(180, "cm"),
  21798. weight: math.unit(73, "kg"),
  21799. name: "Back",
  21800. image: {
  21801. source: "./media/characters/violet-flor/back.svg",
  21802. extra: 1692 / 1630,
  21803. bottom: 20 / 1712
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Normal",
  21810. height: math.unit(172, "cm"),
  21811. default: true
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(6, "feet"),
  21820. weight: math.unit(220, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/lynn-rhea/front.svg",
  21824. extra: 310 / 273
  21825. }
  21826. },
  21827. back: {
  21828. height: math.unit(6, "feet"),
  21829. weight: math.unit(220, "lb"),
  21830. name: "Back",
  21831. image: {
  21832. source: "./media/characters/lynn-rhea/back.svg",
  21833. extra: 310 / 273
  21834. }
  21835. },
  21836. dicks: {
  21837. height: math.unit(0.9, "feet"),
  21838. name: "Dicks",
  21839. image: {
  21840. source: "./media/characters/lynn-rhea/dicks.svg"
  21841. }
  21842. },
  21843. slit: {
  21844. height: math.unit(0.4, "feet"),
  21845. name: "Slit",
  21846. image: {
  21847. source: "./media/characters/lynn-rhea/slit.svg"
  21848. }
  21849. },
  21850. },
  21851. [
  21852. {
  21853. name: "Micro",
  21854. height: math.unit(1, "inch")
  21855. },
  21856. {
  21857. name: "Macro",
  21858. height: math.unit(60, "feet"),
  21859. default: true
  21860. },
  21861. {
  21862. name: "Megamacro",
  21863. height: math.unit(2, "miles")
  21864. },
  21865. {
  21866. name: "Gigamacro",
  21867. height: math.unit(3, "earths")
  21868. },
  21869. {
  21870. name: "Galactic",
  21871. height: math.unit(0.8, "galaxies")
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21877. {
  21878. front: {
  21879. height: math.unit(1600, "feet"),
  21880. weight: math.unit(85758785169, "kg"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/valathos/front.svg",
  21884. extra: 1451 / 1339
  21885. }
  21886. },
  21887. },
  21888. [
  21889. {
  21890. name: "Macro",
  21891. height: math.unit(1600, "feet"),
  21892. default: true
  21893. },
  21894. ]
  21895. ))
  21896. characterMakers.push(() => makeCharacter(
  21897. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21898. {
  21899. front: {
  21900. height: math.unit(7 + 5 / 12, "feet"),
  21901. weight: math.unit(300, "lb"),
  21902. name: "Front",
  21903. image: {
  21904. source: "./media/characters/azula/front.svg",
  21905. extra: 3208 / 2880,
  21906. bottom: 80.2 / 3277
  21907. }
  21908. },
  21909. back: {
  21910. height: math.unit(7 + 5 / 12, "feet"),
  21911. weight: math.unit(300, "lb"),
  21912. name: "Back",
  21913. image: {
  21914. source: "./media/characters/azula/back.svg",
  21915. extra: 3169 / 2822,
  21916. bottom: 150.6 / 3321
  21917. }
  21918. },
  21919. },
  21920. [
  21921. {
  21922. name: "Normal",
  21923. height: math.unit(7 + 5 / 12, "feet"),
  21924. default: true
  21925. },
  21926. {
  21927. name: "Big",
  21928. height: math.unit(20, "feet")
  21929. },
  21930. ]
  21931. ))
  21932. characterMakers.push(() => makeCharacter(
  21933. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21934. {
  21935. front: {
  21936. height: math.unit(5 + 1 / 12, "feet"),
  21937. weight: math.unit(110, "lb"),
  21938. name: "Front",
  21939. image: {
  21940. source: "./media/characters/rupert/front.svg",
  21941. extra: 1549 / 1495,
  21942. bottom: 54.2 / 1604.4
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(5 + 1 / 12, "feet"),
  21950. default: true
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21956. {
  21957. front: {
  21958. height: math.unit(8 + 4 / 12, "feet"),
  21959. weight: math.unit(350, "lb"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/sheera-castellar/front.svg",
  21963. extra: 1957 / 1894,
  21964. bottom: 26.97 / 1975.017
  21965. }
  21966. },
  21967. side: {
  21968. height: math.unit(8 + 4 / 12, "feet"),
  21969. weight: math.unit(350, "lb"),
  21970. name: "Side",
  21971. image: {
  21972. source: "./media/characters/sheera-castellar/side.svg",
  21973. extra: 1957 / 1894
  21974. }
  21975. },
  21976. back: {
  21977. height: math.unit(8 + 4 / 12, "feet"),
  21978. weight: math.unit(350, "lb"),
  21979. name: "Back",
  21980. image: {
  21981. source: "./media/characters/sheera-castellar/back.svg",
  21982. extra: 1957 / 1894
  21983. }
  21984. },
  21985. angled: {
  21986. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  21987. weight: math.unit(350, "lb"),
  21988. name: "Angled",
  21989. image: {
  21990. source: "./media/characters/sheera-castellar/angled.svg",
  21991. extra: 1807 / 1707,
  21992. bottom: 68 / 1875
  21993. }
  21994. },
  21995. genitals: {
  21996. height: math.unit(2.2, "feet"),
  21997. name: "Genitals",
  21998. image: {
  21999. source: "./media/characters/sheera-castellar/genitals.svg"
  22000. }
  22001. },
  22002. },
  22003. [
  22004. {
  22005. name: "Normal",
  22006. height: math.unit(8 + 4 / 12, "feet")
  22007. },
  22008. {
  22009. name: "Macro",
  22010. height: math.unit(150, "feet"),
  22011. default: true
  22012. },
  22013. {
  22014. name: "Macro+",
  22015. height: math.unit(800, "feet")
  22016. },
  22017. ]
  22018. ))
  22019. characterMakers.push(() => makeCharacter(
  22020. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22021. {
  22022. front: {
  22023. height: math.unit(6, "feet"),
  22024. weight: math.unit(150, "lb"),
  22025. name: "Front",
  22026. image: {
  22027. source: "./media/characters/jaipur/front.svg",
  22028. extra: 3860 / 3731,
  22029. bottom: 287 / 4140
  22030. }
  22031. },
  22032. back: {
  22033. height: math.unit(6, "feet"),
  22034. weight: math.unit(150, "lb"),
  22035. name: "Back",
  22036. image: {
  22037. source: "./media/characters/jaipur/back.svg",
  22038. extra: 4060 / 3930,
  22039. bottom: 151 / 4200
  22040. }
  22041. },
  22042. },
  22043. [
  22044. {
  22045. name: "Normal",
  22046. height: math.unit(1.85, "meters"),
  22047. default: true
  22048. },
  22049. {
  22050. name: "Macro",
  22051. height: math.unit(150, "meters")
  22052. },
  22053. {
  22054. name: "Macro+",
  22055. height: math.unit(0.5, "miles")
  22056. },
  22057. {
  22058. name: "Macro++",
  22059. height: math.unit(2.5, "miles")
  22060. },
  22061. {
  22062. name: "Macro+++",
  22063. height: math.unit(12, "miles")
  22064. },
  22065. {
  22066. name: "Macro++++",
  22067. height: math.unit(120, "miles")
  22068. },
  22069. {
  22070. name: "Macro+++++",
  22071. height: math.unit(1200, "miles")
  22072. },
  22073. ]
  22074. ))
  22075. characterMakers.push(() => makeCharacter(
  22076. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22077. {
  22078. front: {
  22079. height: math.unit(6, "feet"),
  22080. weight: math.unit(150, "lb"),
  22081. name: "Front",
  22082. image: {
  22083. source: "./media/characters/sheila-wolf/front.svg",
  22084. extra: 1931 / 1808,
  22085. bottom: 29.5 / 1960
  22086. }
  22087. },
  22088. dick: {
  22089. height: math.unit(1.464, "feet"),
  22090. name: "Dick",
  22091. image: {
  22092. source: "./media/characters/sheila-wolf/dick.svg"
  22093. }
  22094. },
  22095. muzzle: {
  22096. height: math.unit(0.513, "feet"),
  22097. name: "Muzzle",
  22098. image: {
  22099. source: "./media/characters/sheila-wolf/muzzle.svg"
  22100. }
  22101. },
  22102. },
  22103. [
  22104. {
  22105. name: "Macro",
  22106. height: math.unit(70, "feet"),
  22107. default: true
  22108. },
  22109. ]
  22110. ))
  22111. characterMakers.push(() => makeCharacter(
  22112. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22113. {
  22114. front: {
  22115. height: math.unit(32, "meters"),
  22116. weight: math.unit(300000, "kg"),
  22117. name: "Front",
  22118. image: {
  22119. source: "./media/characters/almor/front.svg",
  22120. extra: 1408 / 1322,
  22121. bottom: 94.6 / 1506.5
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Macro",
  22128. height: math.unit(32, "meters"),
  22129. default: true
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22135. {
  22136. front: {
  22137. height: math.unit(7, "feet"),
  22138. weight: math.unit(200, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/silver/front.svg",
  22142. extra: 472.1 / 450.5,
  22143. bottom: 26.5 / 499.424
  22144. }
  22145. },
  22146. },
  22147. [
  22148. {
  22149. name: "Normal",
  22150. height: math.unit(7, "feet"),
  22151. default: true
  22152. },
  22153. {
  22154. name: "Macro",
  22155. height: math.unit(800, "feet")
  22156. },
  22157. {
  22158. name: "Megamacro",
  22159. height: math.unit(250, "miles")
  22160. },
  22161. ]
  22162. ))
  22163. characterMakers.push(() => makeCharacter(
  22164. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22165. {
  22166. front: {
  22167. height: math.unit(6, "feet"),
  22168. weight: math.unit(150, "lb"),
  22169. name: "Front",
  22170. image: {
  22171. source: "./media/characters/pliskin/front.svg",
  22172. extra: 1469 / 1359,
  22173. bottom: 70 / 1540
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Micro",
  22180. height: math.unit(3, "inches")
  22181. },
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(5 + 11 / 12, "feet"),
  22185. default: true
  22186. },
  22187. {
  22188. name: "Macro",
  22189. height: math.unit(120, "feet")
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22195. {
  22196. front: {
  22197. height: math.unit(6, "feet"),
  22198. weight: math.unit(150, "lb"),
  22199. name: "Front",
  22200. image: {
  22201. source: "./media/characters/sammy/front.svg",
  22202. extra: 1193 / 1089,
  22203. bottom: 30.5 / 1226
  22204. }
  22205. },
  22206. },
  22207. [
  22208. {
  22209. name: "Macro",
  22210. height: math.unit(1700, "feet"),
  22211. default: true
  22212. },
  22213. {
  22214. name: "Examacro",
  22215. height: math.unit(2.5e9, "lightyears")
  22216. },
  22217. ]
  22218. ))
  22219. characterMakers.push(() => makeCharacter(
  22220. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22221. {
  22222. front: {
  22223. height: math.unit(21, "meters"),
  22224. weight: math.unit(12, "tonnes"),
  22225. name: "Front",
  22226. image: {
  22227. source: "./media/characters/kuru/front.svg",
  22228. extra: 4301 / 3785,
  22229. bottom: 371.3 / 4691
  22230. }
  22231. },
  22232. },
  22233. [
  22234. {
  22235. name: "Macro",
  22236. height: math.unit(21, "meters"),
  22237. default: true
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22243. {
  22244. front: {
  22245. height: math.unit(23, "meters"),
  22246. weight: math.unit(12.2, "tonnes"),
  22247. name: "Front",
  22248. image: {
  22249. source: "./media/characters/rakka/front.svg",
  22250. extra: 4670 / 4169,
  22251. bottom: 301 / 4968.7
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Macro",
  22258. height: math.unit(23, "meters"),
  22259. default: true
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(6, "feet"),
  22268. weight: math.unit(150, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/rhys-feline/front.svg",
  22272. extra: 2488 / 2308,
  22273. bottom: 35.67 / 2519.19
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Really Small",
  22280. height: math.unit(1, "nm")
  22281. },
  22282. {
  22283. name: "Micro",
  22284. height: math.unit(4, "inches")
  22285. },
  22286. {
  22287. name: "Normal",
  22288. height: math.unit(4 + 10 / 12, "feet"),
  22289. default: true
  22290. },
  22291. {
  22292. name: "Macro",
  22293. height: math.unit(100, "feet")
  22294. },
  22295. {
  22296. name: "Megamacto",
  22297. height: math.unit(50, "miles")
  22298. },
  22299. ]
  22300. ))
  22301. characterMakers.push(() => makeCharacter(
  22302. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22303. {
  22304. side: {
  22305. height: math.unit(30, "feet"),
  22306. weight: math.unit(35000, "kg"),
  22307. name: "Side",
  22308. image: {
  22309. source: "./media/characters/alydar/side.svg",
  22310. extra: 234 / 222,
  22311. bottom: 6.5 / 241
  22312. }
  22313. },
  22314. front: {
  22315. height: math.unit(30, "feet"),
  22316. weight: math.unit(35000, "kg"),
  22317. name: "Front",
  22318. image: {
  22319. source: "./media/characters/alydar/front.svg",
  22320. extra: 223.37 / 210.2,
  22321. bottom: 22.3 / 246.76
  22322. }
  22323. },
  22324. top: {
  22325. height: math.unit(64.54, "feet"),
  22326. weight: math.unit(35000, "kg"),
  22327. name: "Top",
  22328. image: {
  22329. source: "./media/characters/alydar/top.svg"
  22330. }
  22331. },
  22332. anthro: {
  22333. height: math.unit(30, "feet"),
  22334. weight: math.unit(9000, "kg"),
  22335. name: "Anthro",
  22336. image: {
  22337. source: "./media/characters/alydar/anthro.svg",
  22338. extra: 432 / 421,
  22339. bottom: 7.18 / 440
  22340. }
  22341. },
  22342. maw: {
  22343. height: math.unit(11.693, "feet"),
  22344. name: "Maw",
  22345. image: {
  22346. source: "./media/characters/alydar/maw.svg"
  22347. }
  22348. },
  22349. head: {
  22350. height: math.unit(11.693, "feet"),
  22351. name: "Head",
  22352. image: {
  22353. source: "./media/characters/alydar/head.svg"
  22354. }
  22355. },
  22356. headAlt: {
  22357. height: math.unit(12.861, "feet"),
  22358. name: "Head (Alt)",
  22359. image: {
  22360. source: "./media/characters/alydar/head-alt.svg"
  22361. }
  22362. },
  22363. wing: {
  22364. height: math.unit(20.712, "feet"),
  22365. name: "Wing",
  22366. image: {
  22367. source: "./media/characters/alydar/wing.svg"
  22368. }
  22369. },
  22370. wingFeather: {
  22371. height: math.unit(9.662, "feet"),
  22372. name: "Wing Feather",
  22373. image: {
  22374. source: "./media/characters/alydar/wing-feather.svg"
  22375. }
  22376. },
  22377. countourFeather: {
  22378. height: math.unit(4.154, "feet"),
  22379. name: "Contour Feather",
  22380. image: {
  22381. source: "./media/characters/alydar/contour-feather.svg"
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Diplomatic",
  22388. height: math.unit(13, "feet"),
  22389. default: true
  22390. },
  22391. {
  22392. name: "Small",
  22393. height: math.unit(30, "feet")
  22394. },
  22395. {
  22396. name: "Normal",
  22397. height: math.unit(95, "feet"),
  22398. default: true
  22399. },
  22400. {
  22401. name: "Large",
  22402. height: math.unit(285, "feet")
  22403. },
  22404. {
  22405. name: "Incomprehensible",
  22406. height: math.unit(450, "megameters")
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22412. {
  22413. side: {
  22414. height: math.unit(11, "feet"),
  22415. weight: math.unit(1750, "kg"),
  22416. name: "Side",
  22417. image: {
  22418. source: "./media/characters/selicia/side.svg",
  22419. extra: 440 / 396,
  22420. bottom: 24.8 / 465.979
  22421. }
  22422. },
  22423. maw: {
  22424. height: math.unit(4.665, "feet"),
  22425. name: "Maw",
  22426. image: {
  22427. source: "./media/characters/selicia/maw.svg"
  22428. }
  22429. },
  22430. },
  22431. [
  22432. {
  22433. name: "Normal",
  22434. height: math.unit(11, "feet"),
  22435. default: true
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22441. {
  22442. side: {
  22443. height: math.unit(2 + 6 / 12, "feet"),
  22444. weight: math.unit(30, "lb"),
  22445. name: "Side",
  22446. image: {
  22447. source: "./media/characters/layla/side.svg",
  22448. extra: 244 / 188,
  22449. bottom: 18.2 / 262.1
  22450. }
  22451. },
  22452. back: {
  22453. height: math.unit(2 + 6 / 12, "feet"),
  22454. weight: math.unit(30, "lb"),
  22455. name: "Back",
  22456. image: {
  22457. source: "./media/characters/layla/back.svg",
  22458. extra: 308 / 241.5,
  22459. bottom: 8.9 / 316.8
  22460. }
  22461. },
  22462. cumming: {
  22463. height: math.unit(2 + 6 / 12, "feet"),
  22464. weight: math.unit(30, "lb"),
  22465. name: "Cumming",
  22466. image: {
  22467. source: "./media/characters/layla/cumming.svg",
  22468. extra: 342 / 279,
  22469. bottom: 595 / 938
  22470. }
  22471. },
  22472. dickFlaccid: {
  22473. height: math.unit(2.595, "feet"),
  22474. name: "Flaccid Genitals",
  22475. image: {
  22476. source: "./media/characters/layla/dick-flaccid.svg"
  22477. }
  22478. },
  22479. dickErect: {
  22480. height: math.unit(2.359, "feet"),
  22481. name: "Erect Genitals",
  22482. image: {
  22483. source: "./media/characters/layla/dick-erect.svg"
  22484. }
  22485. },
  22486. },
  22487. [
  22488. {
  22489. name: "Micro",
  22490. height: math.unit(1, "inch")
  22491. },
  22492. {
  22493. name: "Small",
  22494. height: math.unit(1, "foot")
  22495. },
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(2 + 6 / 12, "feet"),
  22499. default: true
  22500. },
  22501. {
  22502. name: "Macro",
  22503. height: math.unit(200, "feet")
  22504. },
  22505. {
  22506. name: "Megamacro",
  22507. height: math.unit(1000, "miles")
  22508. },
  22509. {
  22510. name: "Planetary",
  22511. height: math.unit(8000, "miles")
  22512. },
  22513. {
  22514. name: "True Layla",
  22515. height: math.unit(200000 * 7, "multiverses")
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22521. {
  22522. back: {
  22523. height: math.unit(10.5, "feet"),
  22524. weight: math.unit(800, "lb"),
  22525. name: "Back",
  22526. image: {
  22527. source: "./media/characters/knox/back.svg",
  22528. extra: 1486 / 1089,
  22529. bottom: 107 / 1601.4
  22530. }
  22531. },
  22532. side: {
  22533. height: math.unit(10.5, "feet"),
  22534. weight: math.unit(800, "lb"),
  22535. name: "Side",
  22536. image: {
  22537. source: "./media/characters/knox/side.svg",
  22538. extra: 244 / 218,
  22539. bottom: 14 / 260
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Compact",
  22546. height: math.unit(10.5, "feet"),
  22547. default: true
  22548. },
  22549. {
  22550. name: "Dynamax",
  22551. height: math.unit(210, "feet")
  22552. },
  22553. {
  22554. name: "Full Macro",
  22555. height: math.unit(850, "feet")
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22561. {
  22562. front: {
  22563. height: math.unit(6, "feet"),
  22564. weight: math.unit(152, "lb"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/shin-pikachu/front.svg",
  22568. extra: 1574 / 1480,
  22569. bottom: 53.3 / 1626
  22570. }
  22571. },
  22572. hand: {
  22573. height: math.unit(1.055, "feet"),
  22574. name: "Hand",
  22575. image: {
  22576. source: "./media/characters/shin-pikachu/hand.svg"
  22577. }
  22578. },
  22579. foot: {
  22580. height: math.unit(1.1, "feet"),
  22581. name: "Foot",
  22582. image: {
  22583. source: "./media/characters/shin-pikachu/foot.svg"
  22584. }
  22585. },
  22586. collar: {
  22587. height: math.unit(0.386, "feet"),
  22588. name: "Collar",
  22589. image: {
  22590. source: "./media/characters/shin-pikachu/collar.svg"
  22591. }
  22592. },
  22593. },
  22594. [
  22595. {
  22596. name: "Smallest",
  22597. height: math.unit(0.5, "inches")
  22598. },
  22599. {
  22600. name: "Micro",
  22601. height: math.unit(6, "inches")
  22602. },
  22603. {
  22604. name: "Normal",
  22605. height: math.unit(6, "feet"),
  22606. default: true
  22607. },
  22608. {
  22609. name: "Macro",
  22610. height: math.unit(150, "feet")
  22611. },
  22612. ]
  22613. ))
  22614. characterMakers.push(() => makeCharacter(
  22615. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22616. {
  22617. front: {
  22618. height: math.unit(28, "feet"),
  22619. weight: math.unit(10500, "lb"),
  22620. name: "Front",
  22621. image: {
  22622. source: "./media/characters/kayda/front.svg",
  22623. extra: 1536 / 1428,
  22624. bottom: 68.7 / 1603
  22625. }
  22626. },
  22627. back: {
  22628. height: math.unit(28, "feet"),
  22629. weight: math.unit(10500, "lb"),
  22630. name: "Back",
  22631. image: {
  22632. source: "./media/characters/kayda/back.svg",
  22633. extra: 1557 / 1464,
  22634. bottom: 39.5 / 1597.49
  22635. }
  22636. },
  22637. dick: {
  22638. height: math.unit(3.858, "feet"),
  22639. name: "Dick",
  22640. image: {
  22641. source: "./media/characters/kayda/dick.svg"
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Macro",
  22648. height: math.unit(28, "feet"),
  22649. default: true
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22655. {
  22656. front: {
  22657. height: math.unit(10 + 11 / 12, "feet"),
  22658. weight: math.unit(1400, "lb"),
  22659. name: "Front",
  22660. image: {
  22661. source: "./media/characters/brian/front.svg",
  22662. extra: 737 / 692,
  22663. bottom: 55.4 / 785
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Normal",
  22670. height: math.unit(10 + 11 / 12, "feet"),
  22671. default: true
  22672. },
  22673. ]
  22674. ))
  22675. characterMakers.push(() => makeCharacter(
  22676. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22677. {
  22678. front: {
  22679. height: math.unit(5 + 8 / 12, "feet"),
  22680. weight: math.unit(140, "lb"),
  22681. name: "Front",
  22682. image: {
  22683. source: "./media/characters/khemri/front.svg",
  22684. extra: 4780 / 4059,
  22685. bottom: 80.1 / 4859.25
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Micro",
  22692. height: math.unit(6, "inches")
  22693. },
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(5 + 8 / 12, "feet"),
  22697. default: true
  22698. },
  22699. ]
  22700. ))
  22701. characterMakers.push(() => makeCharacter(
  22702. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22703. {
  22704. front: {
  22705. height: math.unit(13, "feet"),
  22706. weight: math.unit(1700, "lb"),
  22707. name: "Front",
  22708. image: {
  22709. source: "./media/characters/felix-braveheart/front.svg",
  22710. extra: 1222 / 1157,
  22711. bottom: 53.2 / 1280
  22712. }
  22713. },
  22714. back: {
  22715. height: math.unit(13, "feet"),
  22716. weight: math.unit(1700, "lb"),
  22717. name: "Back",
  22718. image: {
  22719. source: "./media/characters/felix-braveheart/back.svg",
  22720. extra: 1277 / 1203,
  22721. bottom: 50.2 / 1327
  22722. }
  22723. },
  22724. feral: {
  22725. height: math.unit(6, "feet"),
  22726. weight: math.unit(400, "lb"),
  22727. name: "Feral",
  22728. image: {
  22729. source: "./media/characters/felix-braveheart/feral.svg",
  22730. extra: 682 / 625,
  22731. bottom: 6.9 / 688
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Normal",
  22738. height: math.unit(13, "feet"),
  22739. default: true
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22745. {
  22746. side: {
  22747. height: math.unit(5 + 11 / 12, "feet"),
  22748. weight: math.unit(1400, "lb"),
  22749. name: "Side",
  22750. image: {
  22751. source: "./media/characters/shadow-blade/side.svg",
  22752. extra: 1726 / 1267,
  22753. bottom: 58.4 / 1785
  22754. }
  22755. },
  22756. },
  22757. [
  22758. {
  22759. name: "Normal",
  22760. height: math.unit(5 + 11 / 12, "feet"),
  22761. default: true
  22762. },
  22763. ]
  22764. ))
  22765. characterMakers.push(() => makeCharacter(
  22766. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22767. {
  22768. front: {
  22769. height: math.unit(1 + 6 / 12, "feet"),
  22770. weight: math.unit(25, "lb"),
  22771. name: "Front",
  22772. image: {
  22773. source: "./media/characters/karla-halldor/front.svg",
  22774. extra: 1459 / 1383,
  22775. bottom: 12 / 1472
  22776. }
  22777. },
  22778. },
  22779. [
  22780. {
  22781. name: "Normal",
  22782. height: math.unit(1 + 6 / 12, "feet"),
  22783. default: true
  22784. },
  22785. ]
  22786. ))
  22787. characterMakers.push(() => makeCharacter(
  22788. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22789. {
  22790. front: {
  22791. height: math.unit(6 + 2 / 12, "feet"),
  22792. weight: math.unit(160, "lb"),
  22793. name: "Front",
  22794. image: {
  22795. source: "./media/characters/ariam/front.svg",
  22796. extra: 714 / 617,
  22797. bottom: 23.4 / 737,
  22798. }
  22799. },
  22800. squatting: {
  22801. height: math.unit(4.1, "feet"),
  22802. weight: math.unit(160, "lb"),
  22803. name: "Squatting",
  22804. image: {
  22805. source: "./media/characters/ariam/squatting.svg",
  22806. extra: 2617 / 2112,
  22807. bottom: 61.2 / 2681,
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(6 + 2 / 12, "feet"),
  22815. default: true
  22816. },
  22817. {
  22818. name: "Normal+",
  22819. height: math.unit(4, "meters")
  22820. },
  22821. {
  22822. name: "Macro",
  22823. height: math.unit(50, "meters")
  22824. },
  22825. {
  22826. name: "Macro+",
  22827. height: math.unit(100, "meters")
  22828. },
  22829. {
  22830. name: "Megamacro",
  22831. height: math.unit(20, "km")
  22832. },
  22833. ]
  22834. ))
  22835. characterMakers.push(() => makeCharacter(
  22836. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22837. {
  22838. front: {
  22839. height: math.unit(1.67, "meters"),
  22840. weight: math.unit(140, "lb"),
  22841. name: "Front",
  22842. image: {
  22843. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22844. extra: 438 / 410,
  22845. bottom: 0.75 / 439
  22846. }
  22847. },
  22848. },
  22849. [
  22850. {
  22851. name: "Shrunken",
  22852. height: math.unit(7.6, "cm")
  22853. },
  22854. {
  22855. name: "Human Scale",
  22856. height: math.unit(1.67, "meters")
  22857. },
  22858. {
  22859. name: "Wolxi Scale",
  22860. height: math.unit(36.7, "meters"),
  22861. default: true
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(1.73, "meters"),
  22870. weight: math.unit(240, "lb"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/izue-two-mothers/front.svg",
  22874. extra: 469 / 437,
  22875. bottom: 1.24 / 470.6
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Shrunken",
  22882. height: math.unit(7.86, "cm")
  22883. },
  22884. {
  22885. name: "Human Scale",
  22886. height: math.unit(1.73, "meters")
  22887. },
  22888. {
  22889. name: "Wolxi Scale",
  22890. height: math.unit(38, "meters"),
  22891. default: true
  22892. },
  22893. ]
  22894. ))
  22895. characterMakers.push(() => makeCharacter(
  22896. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22897. {
  22898. front: {
  22899. height: math.unit(1.55, "meters"),
  22900. weight: math.unit(120, "lb"),
  22901. name: "Front",
  22902. image: {
  22903. source: "./media/characters/teeku-love-shack/front.svg",
  22904. extra: 387 / 362,
  22905. bottom: 1.51 / 388
  22906. }
  22907. },
  22908. },
  22909. [
  22910. {
  22911. name: "Shrunken",
  22912. height: math.unit(7, "cm")
  22913. },
  22914. {
  22915. name: "Human Scale",
  22916. height: math.unit(1.55, "meters")
  22917. },
  22918. {
  22919. name: "Wolxi Scale",
  22920. height: math.unit(34.1, "meters"),
  22921. default: true
  22922. },
  22923. ]
  22924. ))
  22925. characterMakers.push(() => makeCharacter(
  22926. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22927. {
  22928. front: {
  22929. height: math.unit(1.83, "meters"),
  22930. weight: math.unit(135, "lb"),
  22931. name: "Front",
  22932. image: {
  22933. source: "./media/characters/dejma-the-red/front.svg",
  22934. extra: 480 / 458,
  22935. bottom: 1.8 / 482
  22936. }
  22937. },
  22938. },
  22939. [
  22940. {
  22941. name: "Shrunken",
  22942. height: math.unit(8.3, "cm")
  22943. },
  22944. {
  22945. name: "Human Scale",
  22946. height: math.unit(1.83, "meters")
  22947. },
  22948. {
  22949. name: "Wolxi Scale",
  22950. height: math.unit(40, "meters"),
  22951. default: true
  22952. },
  22953. ]
  22954. ))
  22955. characterMakers.push(() => makeCharacter(
  22956. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22957. {
  22958. front: {
  22959. height: math.unit(1.78, "meters"),
  22960. weight: math.unit(65, "kg"),
  22961. name: "Front",
  22962. image: {
  22963. source: "./media/characters/aki/front.svg",
  22964. extra: 452 / 415
  22965. }
  22966. },
  22967. frontNsfw: {
  22968. height: math.unit(1.78, "meters"),
  22969. weight: math.unit(65, "kg"),
  22970. name: "Front (NSFW)",
  22971. image: {
  22972. source: "./media/characters/aki/front-nsfw.svg",
  22973. extra: 452 / 415
  22974. }
  22975. },
  22976. back: {
  22977. height: math.unit(1.78, "meters"),
  22978. weight: math.unit(65, "kg"),
  22979. name: "Back",
  22980. image: {
  22981. source: "./media/characters/aki/back.svg",
  22982. extra: 452 / 415
  22983. }
  22984. },
  22985. rump: {
  22986. height: math.unit(2.05, "feet"),
  22987. name: "Rump",
  22988. image: {
  22989. source: "./media/characters/aki/rump.svg"
  22990. }
  22991. },
  22992. dick: {
  22993. height: math.unit(0.95, "feet"),
  22994. name: "Dick",
  22995. image: {
  22996. source: "./media/characters/aki/dick.svg"
  22997. }
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Micro",
  23003. height: math.unit(15, "cm")
  23004. },
  23005. {
  23006. name: "Normal",
  23007. height: math.unit(178, "cm"),
  23008. default: true
  23009. },
  23010. {
  23011. name: "Macro",
  23012. height: math.unit(214, "m")
  23013. },
  23014. {
  23015. name: "Macro+",
  23016. height: math.unit(534, "m")
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23022. {
  23023. front: {
  23024. height: math.unit(5 + 5 / 12, "feet"),
  23025. weight: math.unit(120, "lb"),
  23026. name: "Front",
  23027. image: {
  23028. source: "./media/characters/ari/front.svg",
  23029. extra: 714.5 / 682,
  23030. bottom: 8 / 722.5
  23031. }
  23032. },
  23033. },
  23034. [
  23035. {
  23036. name: "Normal",
  23037. height: math.unit(5 + 5 / 12, "feet")
  23038. },
  23039. {
  23040. name: "Macro",
  23041. height: math.unit(100, "feet"),
  23042. default: true
  23043. },
  23044. {
  23045. name: "Megamacro",
  23046. height: math.unit(100, "miles")
  23047. },
  23048. {
  23049. name: "Gigamacro",
  23050. height: math.unit(80000, "miles")
  23051. },
  23052. ]
  23053. ))
  23054. characterMakers.push(() => makeCharacter(
  23055. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23056. {
  23057. side: {
  23058. height: math.unit(9, "feet"),
  23059. weight: math.unit(400, "kg"),
  23060. name: "Side",
  23061. image: {
  23062. source: "./media/characters/bolt/side.svg",
  23063. extra: 1126 / 896,
  23064. bottom: 60 / 1187.3,
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Micro",
  23071. height: math.unit(5, "inches")
  23072. },
  23073. {
  23074. name: "Normal",
  23075. height: math.unit(9, "feet"),
  23076. default: true
  23077. },
  23078. {
  23079. name: "Macro",
  23080. height: math.unit(700, "feet")
  23081. },
  23082. {
  23083. name: "Max Size",
  23084. height: math.unit(1.52e22, "yottameters")
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23090. {
  23091. front: {
  23092. height: math.unit(4.53, "meters"),
  23093. weight: math.unit(3, "tons"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/draekon-sylviar/front.svg",
  23097. extra: 1228 / 1068,
  23098. bottom: 41 / 1270
  23099. }
  23100. },
  23101. tail: {
  23102. height: math.unit(1.772, "meter"),
  23103. name: "Tail",
  23104. image: {
  23105. source: "./media/characters/draekon-sylviar/tail.svg"
  23106. }
  23107. },
  23108. head: {
  23109. height: math.unit(1.331, "meter"),
  23110. name: "Head",
  23111. image: {
  23112. source: "./media/characters/draekon-sylviar/head.svg"
  23113. }
  23114. },
  23115. hand: {
  23116. height: math.unit(0.564, "meter"),
  23117. name: "Hand",
  23118. image: {
  23119. source: "./media/characters/draekon-sylviar/hand.svg"
  23120. }
  23121. },
  23122. foot: {
  23123. height: math.unit(0.621, "meter"),
  23124. name: "Foot",
  23125. image: {
  23126. source: "./media/characters/draekon-sylviar/foot.svg",
  23127. bottom: 32 / 324
  23128. }
  23129. },
  23130. dick: {
  23131. height: math.unit(61, "cm"),
  23132. name: "Dick",
  23133. image: {
  23134. source: "./media/characters/draekon-sylviar/dick.svg"
  23135. }
  23136. },
  23137. dickseparated: {
  23138. height: math.unit(61, "cm"),
  23139. name: "Dick-separated",
  23140. image: {
  23141. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23142. }
  23143. },
  23144. },
  23145. [
  23146. {
  23147. name: "Small",
  23148. height: math.unit(4.53 / 2, "meters"),
  23149. default: true
  23150. },
  23151. {
  23152. name: "Normal",
  23153. height: math.unit(4.53, "meters"),
  23154. default: true
  23155. },
  23156. {
  23157. name: "Large",
  23158. height: math.unit(4.53 * 2, "meters"),
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23164. {
  23165. front: {
  23166. height: math.unit(6 + 2 / 12, "feet"),
  23167. weight: math.unit(180, "lb"),
  23168. name: "Front",
  23169. image: {
  23170. source: "./media/characters/brawler/front.svg",
  23171. extra: 3301 / 3027,
  23172. bottom: 138 / 3439
  23173. }
  23174. },
  23175. },
  23176. [
  23177. {
  23178. name: "Normal",
  23179. height: math.unit(6 + 2 / 12, "feet"),
  23180. default: true
  23181. },
  23182. ]
  23183. ))
  23184. characterMakers.push(() => makeCharacter(
  23185. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23186. {
  23187. front: {
  23188. height: math.unit(11, "feet"),
  23189. weight: math.unit(1000, "lb"),
  23190. name: "Front",
  23191. image: {
  23192. source: "./media/characters/alex/front.svg",
  23193. bottom: 44.5 / 620
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Micro",
  23200. height: math.unit(5, "inches")
  23201. },
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(11, "feet"),
  23205. default: true
  23206. },
  23207. {
  23208. name: "Macro",
  23209. height: math.unit(9.5e9, "feet")
  23210. },
  23211. {
  23212. name: "Max Size",
  23213. height: math.unit(1.4e283, "yottameters")
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23219. {
  23220. female: {
  23221. height: math.unit(29.9, "m"),
  23222. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23223. name: "Female",
  23224. image: {
  23225. source: "./media/characters/zenari/female.svg",
  23226. extra: 3281.6 / 3217,
  23227. bottom: 72.2 / 3353
  23228. }
  23229. },
  23230. male: {
  23231. height: math.unit(27.7, "m"),
  23232. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23233. name: "Male",
  23234. image: {
  23235. source: "./media/characters/zenari/male.svg",
  23236. extra: 3008 / 2991,
  23237. bottom: 54.6 / 3069
  23238. }
  23239. },
  23240. },
  23241. [
  23242. {
  23243. name: "Macro",
  23244. height: math.unit(29.7, "meters"),
  23245. default: true
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23251. {
  23252. female: {
  23253. height: math.unit(23.8, "m"),
  23254. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23255. name: "Female",
  23256. image: {
  23257. source: "./media/characters/mactarian/female.svg",
  23258. extra: 2662 / 2569,
  23259. bottom: 73 / 2736
  23260. }
  23261. },
  23262. male: {
  23263. height: math.unit(23.8, "m"),
  23264. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23265. name: "Male",
  23266. image: {
  23267. source: "./media/characters/mactarian/male.svg",
  23268. extra: 2673 / 2600,
  23269. bottom: 76 / 2750
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Macro",
  23276. height: math.unit(23.8, "meters"),
  23277. default: true
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23283. {
  23284. female: {
  23285. height: math.unit(19.3, "m"),
  23286. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23287. name: "Female",
  23288. image: {
  23289. source: "./media/characters/umok/female.svg",
  23290. extra: 2186 / 2078,
  23291. bottom: 87 / 2277
  23292. }
  23293. },
  23294. male: {
  23295. height: math.unit(19.5, "m"),
  23296. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23297. name: "Male",
  23298. image: {
  23299. source: "./media/characters/umok/male.svg",
  23300. extra: 2233 / 2140,
  23301. bottom: 24.4 / 2258
  23302. }
  23303. },
  23304. },
  23305. [
  23306. {
  23307. name: "Macro",
  23308. height: math.unit(19.3, "meters"),
  23309. default: true
  23310. },
  23311. ]
  23312. ))
  23313. characterMakers.push(() => makeCharacter(
  23314. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23315. {
  23316. female: {
  23317. height: math.unit(26.15, "m"),
  23318. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23319. name: "Female",
  23320. image: {
  23321. source: "./media/characters/joraxian/female.svg",
  23322. extra: 2912 / 2824,
  23323. bottom: 36 / 2956
  23324. }
  23325. },
  23326. male: {
  23327. height: math.unit(25.4, "m"),
  23328. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23329. name: "Male",
  23330. image: {
  23331. source: "./media/characters/joraxian/male.svg",
  23332. extra: 2877 / 2721,
  23333. bottom: 82 / 2967
  23334. }
  23335. },
  23336. },
  23337. [
  23338. {
  23339. name: "Macro",
  23340. height: math.unit(26.15, "meters"),
  23341. default: true
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23347. {
  23348. female: {
  23349. height: math.unit(21.6, "m"),
  23350. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23351. name: "Female",
  23352. image: {
  23353. source: "./media/characters/sthara/female.svg",
  23354. extra: 2516 / 2347,
  23355. bottom: 21.5 / 2537
  23356. }
  23357. },
  23358. male: {
  23359. height: math.unit(24, "m"),
  23360. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23361. name: "Male",
  23362. image: {
  23363. source: "./media/characters/sthara/male.svg",
  23364. extra: 2732 / 2607,
  23365. bottom: 23 / 2732
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(21.6, "meters"),
  23373. default: true
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23379. {
  23380. front: {
  23381. height: math.unit(6 + 4 / 12, "feet"),
  23382. weight: math.unit(175, "lb"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/luka-bryzant/front.svg",
  23386. extra: 311 / 289,
  23387. bottom: 4 / 315
  23388. }
  23389. },
  23390. back: {
  23391. height: math.unit(6 + 4 / 12, "feet"),
  23392. weight: math.unit(175, "lb"),
  23393. name: "Back",
  23394. image: {
  23395. source: "./media/characters/luka-bryzant/back.svg",
  23396. extra: 311 / 289,
  23397. bottom: 3.8 / 313.7
  23398. }
  23399. },
  23400. },
  23401. [
  23402. {
  23403. name: "Micro",
  23404. height: math.unit(10, "inches")
  23405. },
  23406. {
  23407. name: "Normal",
  23408. height: math.unit(6 + 4 / 12, "feet"),
  23409. default: true
  23410. },
  23411. {
  23412. name: "Large",
  23413. height: math.unit(12, "feet")
  23414. },
  23415. ]
  23416. ))
  23417. characterMakers.push(() => makeCharacter(
  23418. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23419. {
  23420. front: {
  23421. height: math.unit(5 + 7 / 12, "feet"),
  23422. weight: math.unit(185, "lb"),
  23423. name: "Front",
  23424. image: {
  23425. source: "./media/characters/aman-aquila/front.svg",
  23426. extra: 1013 / 976,
  23427. bottom: 45.6 / 1057
  23428. }
  23429. },
  23430. side: {
  23431. height: math.unit(5 + 7 / 12, "feet"),
  23432. weight: math.unit(185, "lb"),
  23433. name: "Side",
  23434. image: {
  23435. source: "./media/characters/aman-aquila/side.svg",
  23436. extra: 1054 / 1011,
  23437. bottom: 15 / 1070
  23438. }
  23439. },
  23440. back: {
  23441. height: math.unit(5 + 7 / 12, "feet"),
  23442. weight: math.unit(185, "lb"),
  23443. name: "Back",
  23444. image: {
  23445. source: "./media/characters/aman-aquila/back.svg",
  23446. extra: 1026 / 970,
  23447. bottom: 12 / 1039
  23448. }
  23449. },
  23450. head: {
  23451. height: math.unit(1.211, "feet"),
  23452. name: "Head",
  23453. image: {
  23454. source: "./media/characters/aman-aquila/head.svg",
  23455. }
  23456. },
  23457. },
  23458. [
  23459. {
  23460. name: "Minimicro",
  23461. height: math.unit(0.057, "inches")
  23462. },
  23463. {
  23464. name: "Micro",
  23465. height: math.unit(7, "inches")
  23466. },
  23467. {
  23468. name: "Mini",
  23469. height: math.unit(3 + 7 / 12, "feet")
  23470. },
  23471. {
  23472. name: "Normal",
  23473. height: math.unit(5 + 7 / 12, "feet"),
  23474. default: true
  23475. },
  23476. {
  23477. name: "Macro",
  23478. height: math.unit(157 + 7 / 12, "feet")
  23479. },
  23480. {
  23481. name: "Megamacro",
  23482. height: math.unit(1557 + 7 / 12, "feet")
  23483. },
  23484. {
  23485. name: "Gigamacro",
  23486. height: math.unit(15557 + 7 / 12, "feet")
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23492. {
  23493. front: {
  23494. height: math.unit(3 + 2 / 12, "inches"),
  23495. weight: math.unit(0.3, "ounces"),
  23496. name: "Front",
  23497. image: {
  23498. source: "./media/characters/hiphae/front.svg",
  23499. extra: 1931 / 1683,
  23500. bottom: 24 / 1955
  23501. }
  23502. },
  23503. },
  23504. [
  23505. {
  23506. name: "Normal",
  23507. height: math.unit(3 + 1 / 2, "inches"),
  23508. default: true
  23509. },
  23510. ]
  23511. ))
  23512. characterMakers.push(() => makeCharacter(
  23513. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23514. {
  23515. front: {
  23516. height: math.unit(5 + 10 / 12, "feet"),
  23517. weight: math.unit(165, "lb"),
  23518. name: "Front",
  23519. image: {
  23520. source: "./media/characters/nicky/front.svg",
  23521. extra: 3144 / 2886,
  23522. bottom: 45.6 / 3192
  23523. }
  23524. },
  23525. back: {
  23526. height: math.unit(5 + 10 / 12, "feet"),
  23527. weight: math.unit(165, "lb"),
  23528. name: "Back",
  23529. image: {
  23530. source: "./media/characters/nicky/back.svg",
  23531. extra: 3055 / 2804,
  23532. bottom: 28.4 / 3087
  23533. }
  23534. },
  23535. frontclothed: {
  23536. height: math.unit(5 + 10 / 12, "feet"),
  23537. weight: math.unit(165, "lb"),
  23538. name: "Front-clothed",
  23539. image: {
  23540. source: "./media/characters/nicky/front-clothed.svg",
  23541. extra: 3184.9 / 2926.9,
  23542. bottom: 86.5 / 3239.9
  23543. }
  23544. },
  23545. foot: {
  23546. height: math.unit(1.16, "feet"),
  23547. name: "Foot",
  23548. image: {
  23549. source: "./media/characters/nicky/foot.svg"
  23550. }
  23551. },
  23552. feet: {
  23553. height: math.unit(1.34, "feet"),
  23554. name: "Feet",
  23555. image: {
  23556. source: "./media/characters/nicky/feet.svg"
  23557. }
  23558. },
  23559. maw: {
  23560. height: math.unit(0.9, "feet"),
  23561. name: "Maw",
  23562. image: {
  23563. source: "./media/characters/nicky/maw.svg"
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(5 + 10 / 12, "feet"),
  23571. default: true
  23572. },
  23573. {
  23574. name: "Macro",
  23575. height: math.unit(60, "feet")
  23576. },
  23577. {
  23578. name: "Megamacro",
  23579. height: math.unit(1, "mile")
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23585. {
  23586. side: {
  23587. height: math.unit(10, "feet"),
  23588. weight: math.unit(600, "lb"),
  23589. name: "Side",
  23590. image: {
  23591. source: "./media/characters/blair/side.svg",
  23592. bottom: 16.6 / 475,
  23593. extra: 458 / 431
  23594. }
  23595. },
  23596. },
  23597. [
  23598. {
  23599. name: "Micro",
  23600. height: math.unit(8, "inches")
  23601. },
  23602. {
  23603. name: "Normal",
  23604. height: math.unit(10, "feet"),
  23605. default: true
  23606. },
  23607. {
  23608. name: "Macro",
  23609. height: math.unit(180, "feet")
  23610. },
  23611. ]
  23612. ))
  23613. characterMakers.push(() => makeCharacter(
  23614. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23615. {
  23616. front: {
  23617. height: math.unit(5 + 4 / 12, "feet"),
  23618. weight: math.unit(125, "lb"),
  23619. name: "Front",
  23620. image: {
  23621. source: "./media/characters/fisher/front.svg",
  23622. extra: 444 / 390,
  23623. bottom: 2 / 444.8
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Micro",
  23630. height: math.unit(4, "inches")
  23631. },
  23632. {
  23633. name: "Normal",
  23634. height: math.unit(5 + 4 / 12, "feet"),
  23635. default: true
  23636. },
  23637. {
  23638. name: "Macro",
  23639. height: math.unit(100, "feet")
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(6.71, "feet"),
  23648. weight: math.unit(200, "lb"),
  23649. capacity: math.unit(1000000, "people"),
  23650. name: "Front",
  23651. image: {
  23652. source: "./media/characters/gliss/front.svg",
  23653. extra: 2347 / 2231,
  23654. bottom: 113 / 2462
  23655. }
  23656. },
  23657. hammerspaceSize: {
  23658. height: math.unit(6.71 * 717, "feet"),
  23659. weight: math.unit(200, "lb"),
  23660. capacity: math.unit(1000000, "people"),
  23661. name: "Hammerspace Size",
  23662. image: {
  23663. source: "./media/characters/gliss/front.svg",
  23664. extra: 2347 / 2231,
  23665. bottom: 113 / 2462
  23666. }
  23667. },
  23668. },
  23669. [
  23670. {
  23671. name: "Normal",
  23672. height: math.unit(6.71, "feet"),
  23673. default: true
  23674. },
  23675. ]
  23676. ))
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23679. {
  23680. side: {
  23681. height: math.unit(1.44, "m"),
  23682. weight: math.unit(80, "kg"),
  23683. name: "Side",
  23684. image: {
  23685. source: "./media/characters/dune-anderson/side.svg",
  23686. bottom: 49 / 1426
  23687. }
  23688. },
  23689. },
  23690. [
  23691. {
  23692. name: "Wolf-sized",
  23693. height: math.unit(1.44, "meters")
  23694. },
  23695. {
  23696. name: "Normal",
  23697. height: math.unit(5.05, "meters"),
  23698. default: true
  23699. },
  23700. {
  23701. name: "Big",
  23702. height: math.unit(14.4, "meters")
  23703. },
  23704. {
  23705. name: "Huge",
  23706. height: math.unit(144, "meters")
  23707. },
  23708. ]
  23709. ))
  23710. characterMakers.push(() => makeCharacter(
  23711. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23712. {
  23713. front: {
  23714. height: math.unit(7, "feet"),
  23715. weight: math.unit(425, "lb"),
  23716. name: "Front",
  23717. image: {
  23718. source: "./media/characters/hind/front.svg",
  23719. extra: 2091 / 1860,
  23720. bottom: 129 / 2220
  23721. }
  23722. },
  23723. back: {
  23724. height: math.unit(7, "feet"),
  23725. weight: math.unit(425, "lb"),
  23726. name: "Back",
  23727. image: {
  23728. source: "./media/characters/hind/back.svg",
  23729. extra: 2091 / 1860,
  23730. bottom: 24.6 / 2309
  23731. }
  23732. },
  23733. tail: {
  23734. height: math.unit(2.8, "feet"),
  23735. name: "Tail",
  23736. image: {
  23737. source: "./media/characters/hind/tail.svg"
  23738. }
  23739. },
  23740. head: {
  23741. height: math.unit(2.55, "feet"),
  23742. name: "Head",
  23743. image: {
  23744. source: "./media/characters/hind/head.svg"
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "XS",
  23751. height: math.unit(0.7, "feet")
  23752. },
  23753. {
  23754. name: "Normal",
  23755. height: math.unit(7, "feet"),
  23756. default: true
  23757. },
  23758. {
  23759. name: "XL",
  23760. height: math.unit(70, "feet")
  23761. },
  23762. ]
  23763. ))
  23764. characterMakers.push(() => makeCharacter(
  23765. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23766. {
  23767. front: {
  23768. height: math.unit(6, "feet"),
  23769. weight: math.unit(150, "lb"),
  23770. name: "Front",
  23771. image: {
  23772. source: "./media/characters/dylan-skaven/front.svg",
  23773. extra: 2318 / 2063,
  23774. bottom: 93.4 / 2410
  23775. }
  23776. },
  23777. },
  23778. [
  23779. {
  23780. name: "Nano",
  23781. height: math.unit(1, "mm")
  23782. },
  23783. {
  23784. name: "Micro",
  23785. height: math.unit(1, "cm")
  23786. },
  23787. {
  23788. name: "Normal",
  23789. height: math.unit(2.1, "meters"),
  23790. default: true
  23791. },
  23792. ]
  23793. ))
  23794. characterMakers.push(() => makeCharacter(
  23795. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23796. {
  23797. front: {
  23798. height: math.unit(7 + 5 / 12, "feet"),
  23799. weight: math.unit(357, "lb"),
  23800. name: "Front",
  23801. image: {
  23802. source: "./media/characters/solex-draconov/front.svg",
  23803. extra: 1993 / 1865,
  23804. bottom: 117 / 2111
  23805. }
  23806. },
  23807. },
  23808. [
  23809. {
  23810. name: "Natural Height",
  23811. height: math.unit(7 + 5 / 12, "feet"),
  23812. default: true
  23813. },
  23814. {
  23815. name: "Macro",
  23816. height: math.unit(350, "feet")
  23817. },
  23818. {
  23819. name: "Macro+",
  23820. height: math.unit(1000, "feet")
  23821. },
  23822. {
  23823. name: "Megamacro",
  23824. height: math.unit(20, "km")
  23825. },
  23826. {
  23827. name: "Megamacro+",
  23828. height: math.unit(1000, "km")
  23829. },
  23830. {
  23831. name: "Gigamacro",
  23832. height: math.unit(2.5, "Gm")
  23833. },
  23834. {
  23835. name: "Teramacro",
  23836. height: math.unit(15, "Tm")
  23837. },
  23838. {
  23839. name: "Galactic",
  23840. height: math.unit(30, "Zm")
  23841. },
  23842. {
  23843. name: "Universal",
  23844. height: math.unit(21000, "Ym")
  23845. },
  23846. {
  23847. name: "Omniversal",
  23848. height: math.unit(9.861e50, "Ym")
  23849. },
  23850. {
  23851. name: "Existential",
  23852. height: math.unit(1e300, "meters")
  23853. },
  23854. ]
  23855. ))
  23856. characterMakers.push(() => makeCharacter(
  23857. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23858. {
  23859. side: {
  23860. height: math.unit(25, "feet"),
  23861. weight: math.unit(90000, "lb"),
  23862. name: "Side",
  23863. image: {
  23864. source: "./media/characters/mandarax/side.svg",
  23865. extra: 614 / 332,
  23866. bottom: 55 / 630
  23867. }
  23868. },
  23869. head: {
  23870. height: math.unit(11.4, "feet"),
  23871. name: "Head",
  23872. image: {
  23873. source: "./media/characters/mandarax/head.svg"
  23874. }
  23875. },
  23876. belly: {
  23877. height: math.unit(33, "feet"),
  23878. name: "Belly",
  23879. capacity: math.unit(500, "people"),
  23880. image: {
  23881. source: "./media/characters/mandarax/belly.svg"
  23882. }
  23883. },
  23884. dick: {
  23885. height: math.unit(8.46, "feet"),
  23886. name: "Dick",
  23887. image: {
  23888. source: "./media/characters/mandarax/dick.svg"
  23889. }
  23890. },
  23891. top: {
  23892. height: math.unit(28, "meters"),
  23893. name: "Top",
  23894. image: {
  23895. source: "./media/characters/mandarax/top.svg"
  23896. }
  23897. },
  23898. },
  23899. [
  23900. {
  23901. name: "Normal",
  23902. height: math.unit(25, "feet"),
  23903. default: true
  23904. },
  23905. ]
  23906. ))
  23907. characterMakers.push(() => makeCharacter(
  23908. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23909. {
  23910. front: {
  23911. height: math.unit(5, "feet"),
  23912. weight: math.unit(90, "lb"),
  23913. name: "Front",
  23914. image: {
  23915. source: "./media/characters/pixil/front.svg",
  23916. extra: 2000 / 1618,
  23917. bottom: 12.3 / 2011
  23918. }
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Normal",
  23924. height: math.unit(5, "feet"),
  23925. default: true
  23926. },
  23927. {
  23928. name: "Megamacro",
  23929. height: math.unit(10, "miles"),
  23930. },
  23931. ]
  23932. ))
  23933. characterMakers.push(() => makeCharacter(
  23934. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23935. {
  23936. front: {
  23937. height: math.unit(7 + 2 / 12, "feet"),
  23938. weight: math.unit(200, "lb"),
  23939. name: "Front",
  23940. image: {
  23941. source: "./media/characters/angel/front.svg",
  23942. extra: 1830 / 1737,
  23943. bottom: 22.6 / 1854,
  23944. }
  23945. },
  23946. },
  23947. [
  23948. {
  23949. name: "Normal",
  23950. height: math.unit(7 + 2 / 12, "feet"),
  23951. default: true
  23952. },
  23953. {
  23954. name: "Macro",
  23955. height: math.unit(1000, "feet")
  23956. },
  23957. {
  23958. name: "Megamacro",
  23959. height: math.unit(2, "miles")
  23960. },
  23961. {
  23962. name: "Gigamacro",
  23963. height: math.unit(20, "earths")
  23964. },
  23965. ]
  23966. ))
  23967. characterMakers.push(() => makeCharacter(
  23968. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23969. {
  23970. front: {
  23971. height: math.unit(5, "feet"),
  23972. weight: math.unit(180, "lb"),
  23973. name: "Front",
  23974. image: {
  23975. source: "./media/characters/mekana/front.svg",
  23976. extra: 1671 / 1605,
  23977. bottom: 3.5 / 1691
  23978. }
  23979. },
  23980. side: {
  23981. height: math.unit(5, "feet"),
  23982. weight: math.unit(180, "lb"),
  23983. name: "Side",
  23984. image: {
  23985. source: "./media/characters/mekana/side.svg",
  23986. extra: 1671 / 1605,
  23987. bottom: 3.5 / 1691
  23988. }
  23989. },
  23990. back: {
  23991. height: math.unit(5, "feet"),
  23992. weight: math.unit(180, "lb"),
  23993. name: "Back",
  23994. image: {
  23995. source: "./media/characters/mekana/back.svg",
  23996. extra: 1671 / 1605,
  23997. bottom: 3.5 / 1691
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "Normal",
  24004. height: math.unit(5, "feet"),
  24005. default: true
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24011. {
  24012. front: {
  24013. height: math.unit(4 + 6 / 12, "feet"),
  24014. weight: math.unit(80, "lb"),
  24015. name: "Front",
  24016. image: {
  24017. source: "./media/characters/pixie/front.svg",
  24018. extra: 1924 / 1825,
  24019. bottom: 22.4 / 1946
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(4 + 6 / 12, "feet"),
  24027. default: true
  24028. },
  24029. {
  24030. name: "Macro",
  24031. height: math.unit(40, "feet")
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24037. {
  24038. front: {
  24039. height: math.unit(2.1, "meters"),
  24040. weight: math.unit(200, "lb"),
  24041. name: "Front",
  24042. image: {
  24043. source: "./media/characters/the-lascivious/front.svg",
  24044. extra: 1 / 0.893,
  24045. bottom: 3.5 / 573.7
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Human Scale",
  24052. height: math.unit(2.1, "meters")
  24053. },
  24054. {
  24055. name: "Wolxi Scale",
  24056. height: math.unit(46.2, "m"),
  24057. default: true
  24058. },
  24059. {
  24060. name: "Boinker of Buildings",
  24061. height: math.unit(10, "km")
  24062. },
  24063. {
  24064. name: "Shagger of Skyscrapers",
  24065. height: math.unit(40, "km")
  24066. },
  24067. {
  24068. name: "Banger of Boroughs",
  24069. height: math.unit(4000, "km")
  24070. },
  24071. {
  24072. name: "Screwer of States",
  24073. height: math.unit(100000, "km")
  24074. },
  24075. {
  24076. name: "Pounder of Planets",
  24077. height: math.unit(2000000, "km")
  24078. },
  24079. ]
  24080. ))
  24081. characterMakers.push(() => makeCharacter(
  24082. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24083. {
  24084. front: {
  24085. height: math.unit(6, "feet"),
  24086. weight: math.unit(150, "lb"),
  24087. name: "Front",
  24088. image: {
  24089. source: "./media/characters/aj/front.svg",
  24090. extra: 2039 / 1562,
  24091. bottom: 40 / 2079
  24092. }
  24093. },
  24094. },
  24095. [
  24096. {
  24097. name: "Normal",
  24098. height: math.unit(11 + 6 / 12, "feet"),
  24099. default: true
  24100. },
  24101. {
  24102. name: "Megamacro",
  24103. height: math.unit(60, "megameters")
  24104. },
  24105. ]
  24106. ))
  24107. characterMakers.push(() => makeCharacter(
  24108. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24109. {
  24110. side: {
  24111. height: math.unit(31 + 8/12, "feet"),
  24112. weight: math.unit(75000, "kg"),
  24113. name: "Side",
  24114. image: {
  24115. source: "./media/characters/koros/side.svg",
  24116. extra: 1442/1297,
  24117. bottom: 122.7/1562
  24118. }
  24119. },
  24120. dicksKingsCrown: {
  24121. height: math.unit(6, "feet"),
  24122. name: "Dicks (King's Crown)",
  24123. image: {
  24124. source: "./media/characters/koros/dicks-kings-crown.svg"
  24125. }
  24126. },
  24127. dicksTailSet: {
  24128. height: math.unit(3, "feet"),
  24129. name: "Dicks (Tail Set)",
  24130. image: {
  24131. source: "./media/characters/koros/dicks-tail-set.svg"
  24132. }
  24133. },
  24134. dickCumming: {
  24135. height: math.unit(7.98, "feet"),
  24136. name: "Dick (Cumming)",
  24137. image: {
  24138. source: "./media/characters/koros/dick-cumming.svg"
  24139. }
  24140. },
  24141. dicksBack: {
  24142. height: math.unit(5.9, "feet"),
  24143. name: "Dicks (Back)",
  24144. image: {
  24145. source: "./media/characters/koros/dicks-back.svg"
  24146. }
  24147. },
  24148. dicksFront: {
  24149. height: math.unit(3.72, "feet"),
  24150. name: "Dicks (Front)",
  24151. image: {
  24152. source: "./media/characters/koros/dicks-front.svg"
  24153. }
  24154. },
  24155. dicksPeeking: {
  24156. height: math.unit(3.0, "feet"),
  24157. name: "Dicks (Peeking)",
  24158. image: {
  24159. source: "./media/characters/koros/dicks-peeking.svg"
  24160. }
  24161. },
  24162. eye: {
  24163. height: math.unit(1.7, "feet"),
  24164. name: "Eye",
  24165. image: {
  24166. source: "./media/characters/koros/eye.svg"
  24167. }
  24168. },
  24169. headFront: {
  24170. height: math.unit(11.69, "feet"),
  24171. name: "Head (Front)",
  24172. image: {
  24173. source: "./media/characters/koros/head-front.svg"
  24174. }
  24175. },
  24176. headSide: {
  24177. height: math.unit(14, "feet"),
  24178. name: "Head (Side)",
  24179. image: {
  24180. source: "./media/characters/koros/head-side.svg"
  24181. }
  24182. },
  24183. leg: {
  24184. height: math.unit(17, "feet"),
  24185. name: "Leg",
  24186. image: {
  24187. source: "./media/characters/koros/leg.svg"
  24188. }
  24189. },
  24190. mawSide: {
  24191. height: math.unit(12.8, "feet"),
  24192. name: "Maw (Side)",
  24193. image: {
  24194. source: "./media/characters/koros/maw-side.svg"
  24195. }
  24196. },
  24197. mawSpitting: {
  24198. height: math.unit(17, "feet"),
  24199. name: "Maw (Spitting)",
  24200. image: {
  24201. source: "./media/characters/koros/maw-spitting.svg"
  24202. }
  24203. },
  24204. slit: {
  24205. height: math.unit(2.8, "feet"),
  24206. name: "Slit",
  24207. image: {
  24208. source: "./media/characters/koros/slit.svg"
  24209. }
  24210. },
  24211. stomach: {
  24212. height: math.unit(6.8, "feet"),
  24213. capacity: math.unit(20, "people"),
  24214. name: "Stomach",
  24215. image: {
  24216. source: "./media/characters/koros/stomach.svg"
  24217. }
  24218. },
  24219. wingspanBottom: {
  24220. height: math.unit(114, "feet"),
  24221. name: "Wingspan (Bottom)",
  24222. image: {
  24223. source: "./media/characters/koros/wingspan-bottom.svg"
  24224. }
  24225. },
  24226. wingspanTop: {
  24227. height: math.unit(104, "feet"),
  24228. name: "Wingspan (Top)",
  24229. image: {
  24230. source: "./media/characters/koros/wingspan-top.svg"
  24231. }
  24232. },
  24233. },
  24234. [
  24235. {
  24236. name: "Normal",
  24237. height: math.unit(31 + 8/12, "feet"),
  24238. default: true
  24239. },
  24240. ]
  24241. ))
  24242. characterMakers.push(() => makeCharacter(
  24243. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24244. {
  24245. front: {
  24246. height: math.unit(18 + 5/12, "feet"),
  24247. weight: math.unit(3750, "kg"),
  24248. name: "Front",
  24249. image: {
  24250. source: "./media/characters/vexx/front.svg",
  24251. extra: 426/396,
  24252. bottom: 31.5/458
  24253. }
  24254. },
  24255. maw: {
  24256. height: math.unit(6, "feet"),
  24257. name: "Maw",
  24258. image: {
  24259. source: "./media/characters/vexx/maw.svg"
  24260. }
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "Normal",
  24266. height: math.unit(18 + 5/12, "feet"),
  24267. default: true
  24268. },
  24269. ]
  24270. ))
  24271. characterMakers.push(() => makeCharacter(
  24272. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24273. {
  24274. front: {
  24275. height: math.unit(17 + 6/12, "feet"),
  24276. weight: math.unit(150, "lb"),
  24277. name: "Front",
  24278. image: {
  24279. source: "./media/characters/baadra/front.svg",
  24280. extra: 3137/2890,
  24281. bottom: 168.4/3305
  24282. }
  24283. },
  24284. back: {
  24285. height: math.unit(17 + 6/12, "feet"),
  24286. weight: math.unit(150, "lb"),
  24287. name: "Back",
  24288. image: {
  24289. source: "./media/characters/baadra/back.svg",
  24290. extra: 3142/2890,
  24291. bottom: 220/3371
  24292. }
  24293. },
  24294. head: {
  24295. height: math.unit(5.45, "feet"),
  24296. name: "Head",
  24297. image: {
  24298. source: "./media/characters/baadra/head.svg"
  24299. }
  24300. },
  24301. headAngry: {
  24302. height: math.unit(4.95, "feet"),
  24303. name: "Head (Angry)",
  24304. image: {
  24305. source: "./media/characters/baadra/head-angry.svg"
  24306. }
  24307. },
  24308. headOpen: {
  24309. height: math.unit(6, "feet"),
  24310. name: "Head (Open)",
  24311. image: {
  24312. source: "./media/characters/baadra/head-open.svg"
  24313. }
  24314. },
  24315. },
  24316. [
  24317. {
  24318. name: "Normal",
  24319. height: math.unit(17 + 6/12, "feet"),
  24320. default: true
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24326. {
  24327. front: {
  24328. height: math.unit(7 + 3/12, "feet"),
  24329. weight: math.unit(180, "lb"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/juri/front.svg",
  24333. extra: 1401/1237,
  24334. bottom: 18.5/1418
  24335. }
  24336. },
  24337. side: {
  24338. height: math.unit(7 + 3/12, "feet"),
  24339. weight: math.unit(180, "lb"),
  24340. name: "Side",
  24341. image: {
  24342. source: "./media/characters/juri/side.svg",
  24343. extra: 1424/1242,
  24344. bottom: 18.5/1447
  24345. }
  24346. },
  24347. sitting: {
  24348. height: math.unit(6, "feet"),
  24349. weight: math.unit(180, "lb"),
  24350. name: "Sitting",
  24351. image: {
  24352. source: "./media/characters/juri/sitting.svg",
  24353. extra: 1270/1143,
  24354. bottom: 100/1343
  24355. }
  24356. },
  24357. back: {
  24358. height: math.unit(7 + 3/12, "feet"),
  24359. weight: math.unit(180, "lb"),
  24360. name: "Back",
  24361. image: {
  24362. source: "./media/characters/juri/back.svg",
  24363. extra: 1377/1240,
  24364. bottom: 23.7/1405
  24365. }
  24366. },
  24367. maw: {
  24368. height: math.unit(2.8, "feet"),
  24369. name: "Maw",
  24370. image: {
  24371. source: "./media/characters/juri/maw.svg"
  24372. }
  24373. },
  24374. stomach: {
  24375. height: math.unit(0.89, "feet"),
  24376. capacity: math.unit(4, "liters"),
  24377. name: "Stomach",
  24378. image: {
  24379. source: "./media/characters/juri/stomach.svg"
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(7 + 3/12, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24393. {
  24394. fox: {
  24395. height: math.unit(5 + 6/12, "feet"),
  24396. weight: math.unit(140, "lb"),
  24397. name: "Fox",
  24398. image: {
  24399. source: "./media/characters/maxene-sita/fox.svg",
  24400. extra: 146/138,
  24401. bottom: 2.1/148.19
  24402. }
  24403. },
  24404. kitsune: {
  24405. height: math.unit(10, "feet"),
  24406. weight: math.unit(800, "lb"),
  24407. name: "Kitsune",
  24408. image: {
  24409. source: "./media/characters/maxene-sita/kitsune.svg",
  24410. extra: 185/176,
  24411. bottom: 4.7/189.9
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Normal",
  24418. height: math.unit(5 + 6/12, "feet"),
  24419. default: true
  24420. },
  24421. ]
  24422. ))
  24423. characterMakers.push(() => makeCharacter(
  24424. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24425. {
  24426. front: {
  24427. height: math.unit(3 + 4/12, "feet"),
  24428. weight: math.unit(70, "lb"),
  24429. name: "Front",
  24430. image: {
  24431. source: "./media/characters/maia/front.svg",
  24432. extra: 227/219.5,
  24433. bottom: 40 / 267
  24434. }
  24435. },
  24436. back: {
  24437. height: math.unit(3 + 4/12, "feet"),
  24438. weight: math.unit(70, "lb"),
  24439. name: "Back",
  24440. image: {
  24441. source: "./media/characters/maia/back.svg",
  24442. extra: 237/225
  24443. }
  24444. },
  24445. },
  24446. [
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(3 + 4/12, "feet"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24456. {
  24457. front: {
  24458. height: math.unit(5 + 10/12, "feet"),
  24459. weight: math.unit(197, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/jabaro/front.svg",
  24463. extra: 225/216,
  24464. bottom: 5.06/230
  24465. }
  24466. },
  24467. back: {
  24468. height: math.unit(5 + 10/12, "feet"),
  24469. weight: math.unit(197, "lb"),
  24470. name: "Back",
  24471. image: {
  24472. source: "./media/characters/jabaro/back.svg",
  24473. extra: 225/219,
  24474. bottom: 1.9/227
  24475. }
  24476. },
  24477. },
  24478. [
  24479. {
  24480. name: "Normal",
  24481. height: math.unit(5 + 10/12, "feet"),
  24482. default: true
  24483. },
  24484. ]
  24485. ))
  24486. characterMakers.push(() => makeCharacter(
  24487. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24488. {
  24489. front: {
  24490. height: math.unit(5 + 8/12, "feet"),
  24491. weight: math.unit(139, "lb"),
  24492. name: "Front",
  24493. image: {
  24494. source: "./media/characters/risa/front.svg",
  24495. extra: 270/260,
  24496. bottom: 11.2/282
  24497. }
  24498. },
  24499. back: {
  24500. height: math.unit(5 + 8/12, "feet"),
  24501. weight: math.unit(139, "lb"),
  24502. name: "Back",
  24503. image: {
  24504. source: "./media/characters/risa/back.svg",
  24505. extra: 264/255,
  24506. bottom: 4/268
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(5 + 8/12, "feet"),
  24514. default: true
  24515. },
  24516. ]
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(2 + 11/12, "feet"),
  24523. weight: math.unit(30, "lb"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/weatley/front.svg",
  24527. bottom: 10.7/414,
  24528. extra: 403.5/362
  24529. }
  24530. },
  24531. back: {
  24532. height: math.unit(2 + 11/12, "feet"),
  24533. weight: math.unit(30, "lb"),
  24534. name: "Back",
  24535. image: {
  24536. source: "./media/characters/weatley/back.svg",
  24537. bottom: 10.7/414,
  24538. extra: 403.5/362
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Normal",
  24545. height: math.unit(2 + 11/12, "feet"),
  24546. default: true
  24547. },
  24548. ]
  24549. ))
  24550. characterMakers.push(() => makeCharacter(
  24551. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24552. {
  24553. front: {
  24554. height: math.unit(5 + 2/12, "feet"),
  24555. weight: math.unit(50, "kg"),
  24556. name: "Front",
  24557. image: {
  24558. source: "./media/characters/mercury-crescent/front.svg",
  24559. extra: 1088/1033,
  24560. bottom: 18.9/1109
  24561. }
  24562. },
  24563. },
  24564. [
  24565. {
  24566. name: "Normal",
  24567. height: math.unit(5 + 2/12, "feet"),
  24568. default: true
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24574. {
  24575. front: {
  24576. height: math.unit(2, "feet"),
  24577. weight: math.unit(15, "kg"),
  24578. name: "Front",
  24579. image: {
  24580. source: "./media/characters/diamond-jones/front.svg",
  24581. bottom: 16/568
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Normal",
  24588. height: math.unit(2, "feet"),
  24589. default: true
  24590. },
  24591. ]
  24592. ))
  24593. characterMakers.push(() => makeCharacter(
  24594. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24595. {
  24596. front: {
  24597. height: math.unit(3, "feet"),
  24598. weight: math.unit(30, "kg"),
  24599. name: "Front",
  24600. image: {
  24601. source: "./media/characters/sweet-bit/front.svg",
  24602. extra: 675/567,
  24603. bottom: 27.7/703
  24604. }
  24605. },
  24606. },
  24607. [
  24608. {
  24609. name: "Normal",
  24610. height: math.unit(3, "feet"),
  24611. default: true
  24612. },
  24613. ]
  24614. ))
  24615. characterMakers.push(() => makeCharacter(
  24616. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24617. {
  24618. side: {
  24619. height: math.unit(9.178, "feet"),
  24620. weight: math.unit(500, "lb"),
  24621. name: "Side",
  24622. image: {
  24623. source: "./media/characters/umbrazen/side.svg",
  24624. extra: 1730/1473,
  24625. bottom: 34.6/1765
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Normal",
  24632. height: math.unit(9.178, "feet"),
  24633. default: true
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(10, "feet"),
  24642. weight: math.unit(750, "lb"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/arlist/front.svg",
  24646. extra: 961/778,
  24647. bottom: 6.2/986
  24648. }
  24649. },
  24650. },
  24651. [
  24652. {
  24653. name: "Normal",
  24654. height: math.unit(10, "feet"),
  24655. default: true
  24656. },
  24657. ]
  24658. ))
  24659. characterMakers.push(() => makeCharacter(
  24660. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24661. {
  24662. front: {
  24663. height: math.unit(5 + 1/12, "feet"),
  24664. weight: math.unit(110, "lb"),
  24665. name: "Front",
  24666. image: {
  24667. source: "./media/characters/aradel/front.svg",
  24668. extra: 324/303,
  24669. bottom: 3.6/329.4
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Normal",
  24676. height: math.unit(5 + 1/12, "feet"),
  24677. default: true
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24683. {
  24684. front: {
  24685. height: math.unit(3 + 8/12, "feet"),
  24686. weight: math.unit(50, "lb"),
  24687. name: "Front",
  24688. image: {
  24689. source: "./media/characters/serryn/front.svg",
  24690. extra: 1792/1656,
  24691. bottom: 43.5/1840
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(3 + 8/12, "feet"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Xavier Thyme" },
  24705. {
  24706. front: {
  24707. height: math.unit(7 + 10/12, "feet"),
  24708. weight: math.unit(255, "lb"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/xavier-thyme/front.svg",
  24712. extra: 3733/3642,
  24713. bottom: 131/3869
  24714. }
  24715. },
  24716. frontRaven: {
  24717. height: math.unit(7 + 10/12, "feet"),
  24718. weight: math.unit(255, "lb"),
  24719. name: "Front (Raven)",
  24720. image: {
  24721. source: "./media/characters/xavier-thyme/front-raven.svg",
  24722. extra: 4385/3642,
  24723. bottom: 131/4517
  24724. }
  24725. },
  24726. },
  24727. [
  24728. {
  24729. name: "Normal",
  24730. height: math.unit(7 + 10/12, "feet"),
  24731. default: true
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24737. {
  24738. front: {
  24739. height: math.unit(1.6, "m"),
  24740. weight: math.unit(50, "kg"),
  24741. name: "Front",
  24742. image: {
  24743. source: "./media/characters/kiki/front.svg",
  24744. extra: 4682/3610,
  24745. bottom: 115/4777
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Normal",
  24752. height: math.unit(1.6, "meters"),
  24753. default: true
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24759. {
  24760. front: {
  24761. height: math.unit(50, "m"),
  24762. weight: math.unit(500, "tonnes"),
  24763. name: "Front",
  24764. image: {
  24765. source: "./media/characters/ryoko/front.svg",
  24766. extra: 4632/3926,
  24767. bottom: 193/4823
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Normal",
  24774. height: math.unit(50, "meters"),
  24775. default: true
  24776. },
  24777. ]
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24781. {
  24782. front: {
  24783. height: math.unit(30, "m"),
  24784. weight: math.unit(22, "tonnes"),
  24785. name: "Front",
  24786. image: {
  24787. source: "./media/characters/elio/front.svg",
  24788. extra: 4582/3720,
  24789. bottom: 236/4828
  24790. }
  24791. },
  24792. },
  24793. [
  24794. {
  24795. name: "Normal",
  24796. height: math.unit(30, "meters"),
  24797. default: true
  24798. },
  24799. ]
  24800. ))
  24801. //characters
  24802. function makeCharacters() {
  24803. const results = [];
  24804. characterMakers.forEach(character => {
  24805. results.push(character());
  24806. });
  24807. return results;
  24808. }