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.
 
 
 

25214 lines
625 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. }
  1260. //species
  1261. function getSpeciesInfo(speciesList) {
  1262. let result = new Set();
  1263. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1264. result.add(entry)
  1265. });
  1266. return Array.from(result);
  1267. };
  1268. function getSpeciesInfoHelper(species) {
  1269. if (!speciesData[species]) {
  1270. console.warn(species + " doesn't exist");
  1271. return [];
  1272. }
  1273. if (speciesData[species].parents) {
  1274. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1275. } else {
  1276. return [species];
  1277. }
  1278. }
  1279. characterMakers.push(() => makeCharacter(
  1280. {
  1281. name: "Fen",
  1282. species: ["crux"],
  1283. description: {
  1284. title: "Bio",
  1285. text: "Very furry. Sheds on everything."
  1286. },
  1287. tags: [
  1288. "anthro",
  1289. "goo"
  1290. ]
  1291. },
  1292. {
  1293. back: {
  1294. height: math.unit(2.2428, "meter"),
  1295. weight: math.unit(124.738, "kg"),
  1296. name: "Back",
  1297. image: {
  1298. source: "./media/characters/fen/back.svg",
  1299. extra: 1025 / 935,
  1300. bottom: 0.01
  1301. },
  1302. info: {
  1303. description: {
  1304. mode: "append",
  1305. text: "\n\nHe is not currently looking at you."
  1306. }
  1307. }
  1308. },
  1309. full: {
  1310. height: math.unit(1.34, "meter"),
  1311. weight: math.unit(225, "kg"),
  1312. name: "Full",
  1313. image: {
  1314. source: "./media/characters/fen/full.svg"
  1315. },
  1316. info: {
  1317. description: {
  1318. mode: "append",
  1319. text: "\n\nMunch."
  1320. }
  1321. }
  1322. },
  1323. kneeling: {
  1324. height: math.unit(5.4, "feet"),
  1325. weight: math.unit(124.738, "kg"),
  1326. name: "Kneeling",
  1327. image: {
  1328. source: "./media/characters/fen/kneeling.svg",
  1329. extra: 563 / 507
  1330. }
  1331. },
  1332. goo: {
  1333. height: math.unit(2.8, "feet"),
  1334. weight: math.unit(125, "kg"),
  1335. capacity: math.unit(1, "people"),
  1336. name: "Goo",
  1337. image: {
  1338. source: "./media/characters/fen/goo.svg",
  1339. bottom: 116 / 613
  1340. }
  1341. },
  1342. lounging: {
  1343. height: math.unit(6.5, "feet"),
  1344. weight: math.unit(125, "kg"),
  1345. name: "Lounging",
  1346. image: {
  1347. source: "./media/characters/fen/lounging.svg"
  1348. }
  1349. },
  1350. },
  1351. [
  1352. {
  1353. name: "Normal",
  1354. height: math.unit(2.2428, "meter")
  1355. },
  1356. {
  1357. name: "Big",
  1358. height: math.unit(12, "feet")
  1359. },
  1360. {
  1361. name: "Minimacro",
  1362. height: math.unit(40, "feet"),
  1363. default: true,
  1364. info: {
  1365. description: {
  1366. mode: "append",
  1367. text: "\n\nTOO DAMN BIG"
  1368. }
  1369. }
  1370. },
  1371. {
  1372. name: "Macro",
  1373. height: math.unit(100, "feet"),
  1374. info: {
  1375. description: {
  1376. mode: "append",
  1377. text: "\n\nTOO DAMN BIG"
  1378. }
  1379. }
  1380. },
  1381. {
  1382. name: "Macro+",
  1383. height: math.unit(300, "feet")
  1384. },
  1385. {
  1386. name: "Megamacro",
  1387. height: math.unit(2, "miles")
  1388. }
  1389. ]
  1390. ))
  1391. characterMakers.push(() => makeCharacter(
  1392. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1393. {
  1394. front: {
  1395. height: math.unit(183, "cm"),
  1396. weight: math.unit(80, "kg"),
  1397. name: "Front",
  1398. image: {
  1399. source: "./media/characters/sofia-fluttertail/front.svg",
  1400. bottom: 0.01,
  1401. extra: 2154 / 2081
  1402. }
  1403. },
  1404. frontAlt: {
  1405. height: math.unit(183, "cm"),
  1406. weight: math.unit(80, "kg"),
  1407. name: "Front (alt)",
  1408. image: {
  1409. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1410. }
  1411. },
  1412. back: {
  1413. height: math.unit(183, "cm"),
  1414. weight: math.unit(80, "kg"),
  1415. name: "Back",
  1416. image: {
  1417. source: "./media/characters/sofia-fluttertail/back.svg"
  1418. }
  1419. },
  1420. kneeling: {
  1421. height: math.unit(125, "cm"),
  1422. weight: math.unit(80, "kg"),
  1423. name: "Kneeling",
  1424. image: {
  1425. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1426. extra: 1033 / 977,
  1427. bottom: 23.7 / 1057
  1428. }
  1429. },
  1430. maw: {
  1431. height: math.unit(183 / 5, "cm"),
  1432. name: "Maw",
  1433. image: {
  1434. source: "./media/characters/sofia-fluttertail/maw.svg"
  1435. }
  1436. },
  1437. mawcloseup: {
  1438. height: math.unit(183 / 5 * 0.41, "cm"),
  1439. name: "Maw (Closeup)",
  1440. image: {
  1441. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1442. }
  1443. },
  1444. },
  1445. [
  1446. {
  1447. name: "Normal",
  1448. height: math.unit(1.83, "meter")
  1449. },
  1450. {
  1451. name: "Size Thief",
  1452. height: math.unit(18, "feet")
  1453. },
  1454. {
  1455. name: "50 Foot Collie",
  1456. height: math.unit(50, "feet")
  1457. },
  1458. {
  1459. name: "Macro",
  1460. height: math.unit(96, "feet"),
  1461. default: true
  1462. },
  1463. {
  1464. name: "Megamerger",
  1465. height: math.unit(650, "feet")
  1466. },
  1467. ]
  1468. ))
  1469. characterMakers.push(() => makeCharacter(
  1470. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1471. {
  1472. front: {
  1473. height: math.unit(7, "feet"),
  1474. weight: math.unit(100, "kg"),
  1475. name: "Front",
  1476. image: {
  1477. source: "./media/characters/march/front.svg",
  1478. extra: 1,
  1479. bottom: 0.015
  1480. }
  1481. },
  1482. foot: {
  1483. height: math.unit(0.9, "feet"),
  1484. name: "Foot",
  1485. image: {
  1486. source: "./media/characters/march/foot.svg"
  1487. }
  1488. },
  1489. },
  1490. [
  1491. {
  1492. name: "Normal",
  1493. height: math.unit(7.9, "feet")
  1494. },
  1495. {
  1496. name: "Macro",
  1497. height: math.unit(220, "meters")
  1498. },
  1499. {
  1500. name: "Megamacro",
  1501. height: math.unit(2.98, "km"),
  1502. default: true
  1503. },
  1504. {
  1505. name: "Gigamacro",
  1506. height: math.unit(15963, "km")
  1507. },
  1508. {
  1509. name: "Teramacro",
  1510. height: math.unit(2980000000, "km")
  1511. },
  1512. {
  1513. name: "Examacro",
  1514. height: math.unit(250, "parsecs")
  1515. },
  1516. ]
  1517. ))
  1518. characterMakers.push(() => makeCharacter(
  1519. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1520. {
  1521. front: {
  1522. height: math.unit(6, "feet"),
  1523. weight: math.unit(60, "kg"),
  1524. name: "Front",
  1525. image: {
  1526. source: "./media/characters/noir/front.svg",
  1527. extra: 1,
  1528. bottom: 0.032
  1529. }
  1530. },
  1531. },
  1532. [
  1533. {
  1534. name: "Normal",
  1535. height: math.unit(6.6, "feet")
  1536. },
  1537. {
  1538. name: "Macro",
  1539. height: math.unit(500, "feet")
  1540. },
  1541. {
  1542. name: "Megamacro",
  1543. height: math.unit(2.5, "km"),
  1544. default: true
  1545. },
  1546. {
  1547. name: "Gigamacro",
  1548. height: math.unit(22500, "km")
  1549. },
  1550. {
  1551. name: "Teramacro",
  1552. height: math.unit(2500000000, "km")
  1553. },
  1554. {
  1555. name: "Examacro",
  1556. height: math.unit(200, "parsecs")
  1557. },
  1558. ]
  1559. ))
  1560. characterMakers.push(() => makeCharacter(
  1561. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1562. {
  1563. front: {
  1564. height: math.unit(7, "feet"),
  1565. weight: math.unit(100, "kg"),
  1566. name: "Front",
  1567. image: {
  1568. source: "./media/characters/okuri/front.svg",
  1569. extra: 1,
  1570. bottom: 0.037
  1571. }
  1572. },
  1573. back: {
  1574. height: math.unit(7, "feet"),
  1575. weight: math.unit(100, "kg"),
  1576. name: "Back",
  1577. image: {
  1578. source: "./media/characters/okuri/back.svg",
  1579. extra: 1,
  1580. bottom: 0.007
  1581. }
  1582. },
  1583. },
  1584. [
  1585. {
  1586. name: "Megamacro",
  1587. height: math.unit(100, "miles"),
  1588. default: true
  1589. },
  1590. ]
  1591. ))
  1592. characterMakers.push(() => makeCharacter(
  1593. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1594. {
  1595. front: {
  1596. height: math.unit(7, "feet"),
  1597. weight: math.unit(100, "kg"),
  1598. name: "Front",
  1599. image: {
  1600. source: "./media/characters/manny/front.svg",
  1601. extra: 1,
  1602. bottom: 0.06
  1603. }
  1604. },
  1605. back: {
  1606. height: math.unit(7, "feet"),
  1607. weight: math.unit(100, "kg"),
  1608. name: "Back",
  1609. image: {
  1610. source: "./media/characters/manny/back.svg",
  1611. extra: 1,
  1612. bottom: 0.014
  1613. }
  1614. },
  1615. },
  1616. [
  1617. {
  1618. name: "Normal",
  1619. height: math.unit(7, "feet"),
  1620. },
  1621. {
  1622. name: "Macro",
  1623. height: math.unit(78, "feet"),
  1624. default: true
  1625. },
  1626. {
  1627. name: "Macro+",
  1628. height: math.unit(300, "meters")
  1629. },
  1630. {
  1631. name: "Macro++",
  1632. height: math.unit(2400, "meters")
  1633. },
  1634. {
  1635. name: "Megamacro",
  1636. height: math.unit(5167, "meters")
  1637. },
  1638. {
  1639. name: "Gigamacro",
  1640. height: math.unit(41769, "miles")
  1641. },
  1642. ]
  1643. ))
  1644. characterMakers.push(() => makeCharacter(
  1645. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1646. {
  1647. front: {
  1648. height: math.unit(7, "feet"),
  1649. weight: math.unit(100, "kg"),
  1650. name: "Front",
  1651. image: {
  1652. source: "./media/characters/adake/front-1.svg"
  1653. }
  1654. },
  1655. frontAlt: {
  1656. height: math.unit(7, "feet"),
  1657. weight: math.unit(100, "kg"),
  1658. name: "Front (Alt)",
  1659. image: {
  1660. source: "./media/characters/adake/front-2.svg",
  1661. extra: 1,
  1662. bottom: 0.01
  1663. }
  1664. },
  1665. back: {
  1666. height: math.unit(7, "feet"),
  1667. weight: math.unit(100, "kg"),
  1668. name: "Back",
  1669. image: {
  1670. source: "./media/characters/adake/back.svg",
  1671. }
  1672. },
  1673. kneel: {
  1674. height: math.unit(5.385, "feet"),
  1675. weight: math.unit(100, "kg"),
  1676. name: "Kneeling",
  1677. image: {
  1678. source: "./media/characters/adake/kneel.svg",
  1679. bottom: 0.052
  1680. }
  1681. },
  1682. },
  1683. [
  1684. {
  1685. name: "Normal",
  1686. height: math.unit(7, "feet"),
  1687. },
  1688. {
  1689. name: "Macro",
  1690. height: math.unit(78, "feet"),
  1691. default: true
  1692. },
  1693. {
  1694. name: "Macro+",
  1695. height: math.unit(300, "meters")
  1696. },
  1697. {
  1698. name: "Macro++",
  1699. height: math.unit(2400, "meters")
  1700. },
  1701. {
  1702. name: "Megamacro",
  1703. height: math.unit(5167, "meters")
  1704. },
  1705. {
  1706. name: "Gigamacro",
  1707. height: math.unit(41769, "miles")
  1708. },
  1709. ]
  1710. ))
  1711. characterMakers.push(() => makeCharacter(
  1712. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1713. {
  1714. front: {
  1715. height: math.unit(1.65, "meters"),
  1716. weight: math.unit(50, "kg"),
  1717. name: "Front",
  1718. image: {
  1719. source: "./media/characters/elijah/front.svg",
  1720. extra: 858 / 830,
  1721. bottom: 95.5 / 953.8559
  1722. }
  1723. },
  1724. back: {
  1725. height: math.unit(1.65, "meters"),
  1726. weight: math.unit(50, "kg"),
  1727. name: "Back",
  1728. image: {
  1729. source: "./media/characters/elijah/back.svg",
  1730. extra: 895 / 850,
  1731. bottom: 5.3 / 897.956
  1732. }
  1733. },
  1734. frontNsfw: {
  1735. height: math.unit(1.65, "meters"),
  1736. weight: math.unit(50, "kg"),
  1737. name: "Front (NSFW)",
  1738. image: {
  1739. source: "./media/characters/elijah/front-nsfw.svg",
  1740. extra: 858 / 830,
  1741. bottom: 95.5 / 953.8559
  1742. }
  1743. },
  1744. backNsfw: {
  1745. height: math.unit(1.65, "meters"),
  1746. weight: math.unit(50, "kg"),
  1747. name: "Back (NSFW)",
  1748. image: {
  1749. source: "./media/characters/elijah/back-nsfw.svg",
  1750. extra: 895 / 850,
  1751. bottom: 5.3 / 897.956
  1752. }
  1753. },
  1754. dick: {
  1755. height: math.unit(1, "feet"),
  1756. name: "Dick",
  1757. image: {
  1758. source: "./media/characters/elijah/dick.svg"
  1759. }
  1760. },
  1761. beakOpen: {
  1762. height: math.unit(1.25, "feet"),
  1763. name: "Beak (Open)",
  1764. image: {
  1765. source: "./media/characters/elijah/beak-open.svg"
  1766. }
  1767. },
  1768. beakShut: {
  1769. height: math.unit(1.25, "feet"),
  1770. name: "Beak (Shut)",
  1771. image: {
  1772. source: "./media/characters/elijah/beak-shut.svg"
  1773. }
  1774. },
  1775. footFlexing: {
  1776. height: math.unit(1.61, "feet"),
  1777. name: "Foot (Flexing)",
  1778. image: {
  1779. source: "./media/characters/elijah/foot-flexing.svg"
  1780. }
  1781. },
  1782. footStepping: {
  1783. height: math.unit(1.44, "feet"),
  1784. name: "Foot (Stepping)",
  1785. image: {
  1786. source: "./media/characters/elijah/foot-stepping.svg"
  1787. }
  1788. },
  1789. plantigradeLeg: {
  1790. height: math.unit(2.34, "feet"),
  1791. name: "Plantigrade Leg",
  1792. image: {
  1793. source: "./media/characters/elijah/plantigrade-leg.svg"
  1794. }
  1795. },
  1796. plantigradeFootLeft: {
  1797. height: math.unit(0.9, "feet"),
  1798. name: "Plantigrade Foot (Left)",
  1799. image: {
  1800. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1801. }
  1802. },
  1803. plantigradeFootRight: {
  1804. height: math.unit(0.9, "feet"),
  1805. name: "Plantigrade Foot (Right)",
  1806. image: {
  1807. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1808. }
  1809. },
  1810. },
  1811. [
  1812. {
  1813. name: "Normal",
  1814. height: math.unit(1.65, "meters")
  1815. },
  1816. {
  1817. name: "Macro",
  1818. height: math.unit(55, "meters"),
  1819. default: true
  1820. },
  1821. {
  1822. name: "Macro+",
  1823. height: math.unit(105, "meters")
  1824. },
  1825. ]
  1826. ))
  1827. characterMakers.push(() => makeCharacter(
  1828. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1829. {
  1830. front: {
  1831. height: math.unit(11, "feet"),
  1832. weight: math.unit(80, "kg"),
  1833. name: "Front",
  1834. image: {
  1835. source: "./media/characters/rai/front.svg",
  1836. extra: 1,
  1837. bottom: 0.03
  1838. }
  1839. },
  1840. side: {
  1841. height: math.unit(11, "feet"),
  1842. weight: math.unit(80, "kg"),
  1843. name: "Side",
  1844. image: {
  1845. source: "./media/characters/rai/side.svg"
  1846. }
  1847. },
  1848. back: {
  1849. height: math.unit(11, "feet"),
  1850. weight: math.unit(80, "lb"),
  1851. name: "Back",
  1852. image: {
  1853. source: "./media/characters/rai/back.svg",
  1854. extra: 1,
  1855. bottom: 0.01
  1856. }
  1857. },
  1858. feral: {
  1859. height: math.unit(11, "feet"),
  1860. weight: math.unit(800, "lb"),
  1861. name: "Feral",
  1862. image: {
  1863. source: "./media/characters/rai/feral.svg",
  1864. extra: 1050 / 659,
  1865. bottom: 0.07
  1866. }
  1867. },
  1868. dragon: {
  1869. height: math.unit(23, "feet"),
  1870. weight: math.unit(50000, "lb"),
  1871. name: "Dragon",
  1872. image: {
  1873. source: "./media/characters/rai/dragon.svg",
  1874. extra: 2498 / 2030,
  1875. bottom: 85.2 / 2584
  1876. }
  1877. },
  1878. maw: {
  1879. height: math.unit(6 / 3.81416, "feet"),
  1880. name: "Maw",
  1881. image: {
  1882. source: "./media/characters/rai/maw.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Normal",
  1889. height: math.unit(11, "feet")
  1890. },
  1891. {
  1892. name: "Macro",
  1893. height: math.unit(302, "feet"),
  1894. default: true
  1895. },
  1896. ]
  1897. ))
  1898. characterMakers.push(() => makeCharacter(
  1899. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1900. {
  1901. frontDressed: {
  1902. height: math.unit(216, "feet"),
  1903. weight: math.unit(7000000, "lb"),
  1904. name: "Front (Dressed)",
  1905. image: {
  1906. source: "./media/characters/jazzy/front-dressed.svg",
  1907. extra: 2738 / 2651,
  1908. bottom: 41.8 / 2786
  1909. }
  1910. },
  1911. backDressed: {
  1912. height: math.unit(216, "feet"),
  1913. weight: math.unit(7000000, "lb"),
  1914. name: "Back (Dressed)",
  1915. image: {
  1916. source: "./media/characters/jazzy/back-dressed.svg",
  1917. extra: 2775 / 2673,
  1918. bottom: 36.8 / 2817
  1919. }
  1920. },
  1921. front: {
  1922. height: math.unit(216, "feet"),
  1923. weight: math.unit(7000000, "lb"),
  1924. name: "Front",
  1925. image: {
  1926. source: "./media/characters/jazzy/front.svg",
  1927. extra: 2738 / 2651,
  1928. bottom: 41.8 / 2786
  1929. }
  1930. },
  1931. back: {
  1932. height: math.unit(216, "feet"),
  1933. weight: math.unit(7000000, "lb"),
  1934. name: "Back",
  1935. image: {
  1936. source: "./media/characters/jazzy/back.svg",
  1937. extra: 2775 / 2673,
  1938. bottom: 36.8 / 2817
  1939. }
  1940. },
  1941. maw: {
  1942. height: math.unit(20, "feet"),
  1943. name: "Maw",
  1944. image: {
  1945. source: "./media/characters/jazzy/maw.svg"
  1946. }
  1947. },
  1948. paws: {
  1949. height: math.unit(27.5, "feet"),
  1950. name: "Paws",
  1951. image: {
  1952. source: "./media/characters/jazzy/paws.svg"
  1953. }
  1954. },
  1955. eye: {
  1956. height: math.unit(4.4, "feet"),
  1957. name: "Eye",
  1958. image: {
  1959. source: "./media/characters/jazzy/eye.svg"
  1960. }
  1961. },
  1962. droneOffense: {
  1963. height: math.unit(9.5, "inches"),
  1964. name: "Drone (Offense)",
  1965. image: {
  1966. source: "./media/characters/jazzy/drone-offense.svg"
  1967. }
  1968. },
  1969. droneRecon: {
  1970. height: math.unit(9.5, "inches"),
  1971. name: "Drone (Recon)",
  1972. image: {
  1973. source: "./media/characters/jazzy/drone-recon.svg"
  1974. }
  1975. },
  1976. droneDefense: {
  1977. height: math.unit(9.5, "inches"),
  1978. name: "Drone (Defense)",
  1979. image: {
  1980. source: "./media/characters/jazzy/drone-defense.svg"
  1981. }
  1982. },
  1983. },
  1984. [
  1985. {
  1986. name: "Macro",
  1987. height: math.unit(216, "feet"),
  1988. default: true
  1989. },
  1990. ]
  1991. ))
  1992. characterMakers.push(() => makeCharacter(
  1993. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1994. {
  1995. front: {
  1996. height: math.unit(7, "feet"),
  1997. weight: math.unit(80, "kg"),
  1998. name: "Front",
  1999. image: {
  2000. source: "./media/characters/flamm/front.svg",
  2001. extra: 1794 / 1677,
  2002. bottom: 31.7 / 1828.5
  2003. }
  2004. },
  2005. },
  2006. [
  2007. {
  2008. name: "Normal",
  2009. height: math.unit(9.5, "feet")
  2010. },
  2011. {
  2012. name: "Macro",
  2013. height: math.unit(200, "feet"),
  2014. default: true
  2015. },
  2016. ]
  2017. ))
  2018. characterMakers.push(() => makeCharacter(
  2019. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2020. {
  2021. front: {
  2022. height: math.unit(7, "feet"),
  2023. weight: math.unit(80, "kg"),
  2024. name: "Front",
  2025. image: {
  2026. source: "./media/characters/zephiro/front.svg",
  2027. extra: 2309 / 2162,
  2028. bottom: 0.069
  2029. }
  2030. },
  2031. side: {
  2032. height: math.unit(7, "feet"),
  2033. weight: math.unit(80, "kg"),
  2034. name: "Side",
  2035. image: {
  2036. source: "./media/characters/zephiro/side.svg",
  2037. extra: 2403 / 2279,
  2038. bottom: 0.015
  2039. }
  2040. },
  2041. back: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(80, "kg"),
  2044. name: "Back",
  2045. image: {
  2046. source: "./media/characters/zephiro/back.svg",
  2047. extra: 2373 / 2244,
  2048. bottom: 0.013
  2049. }
  2050. },
  2051. },
  2052. [
  2053. {
  2054. name: "Micro",
  2055. height: math.unit(3, "inches")
  2056. },
  2057. {
  2058. name: "Normal",
  2059. height: math.unit(5 + 3 / 12, "feet"),
  2060. default: true
  2061. },
  2062. {
  2063. name: "Macro",
  2064. height: math.unit(118, "feet")
  2065. },
  2066. ]
  2067. ))
  2068. characterMakers.push(() => makeCharacter(
  2069. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2070. {
  2071. front: {
  2072. height: math.unit(5, "feet"),
  2073. weight: math.unit(90, "kg"),
  2074. name: "Front",
  2075. image: {
  2076. source: "./media/characters/fory/front.svg",
  2077. extra: 2862 / 2674,
  2078. bottom: 180 / 3043.8
  2079. }
  2080. },
  2081. back: {
  2082. height: math.unit(5, "feet"),
  2083. weight: math.unit(90, "kg"),
  2084. name: "Back",
  2085. image: {
  2086. source: "./media/characters/fory/back.svg",
  2087. extra: 2962 / 2791,
  2088. bottom: 106 / 3071.8
  2089. }
  2090. },
  2091. foot: {
  2092. height: math.unit(2.14, "feet"),
  2093. name: "Foot",
  2094. image: {
  2095. source: "./media/characters/fory/foot.svg"
  2096. }
  2097. },
  2098. },
  2099. [
  2100. {
  2101. name: "Normal",
  2102. height: math.unit(5, "feet")
  2103. },
  2104. {
  2105. name: "Macro",
  2106. height: math.unit(50, "feet"),
  2107. default: true
  2108. },
  2109. {
  2110. name: "Megamacro",
  2111. height: math.unit(10, "miles")
  2112. },
  2113. {
  2114. name: "Gigamacro",
  2115. height: math.unit(5, "earths")
  2116. },
  2117. ]
  2118. ))
  2119. characterMakers.push(() => makeCharacter(
  2120. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2121. {
  2122. front: {
  2123. height: math.unit(7, "feet"),
  2124. weight: math.unit(90, "kg"),
  2125. name: "Front",
  2126. image: {
  2127. source: "./media/characters/kurrikage/front.svg",
  2128. extra: 1,
  2129. bottom: 0.035
  2130. }
  2131. },
  2132. back: {
  2133. height: math.unit(7, "feet"),
  2134. weight: math.unit(90, "lb"),
  2135. name: "Back",
  2136. image: {
  2137. source: "./media/characters/kurrikage/back.svg"
  2138. }
  2139. },
  2140. paw: {
  2141. height: math.unit(1.5, "feet"),
  2142. name: "Paw",
  2143. image: {
  2144. source: "./media/characters/kurrikage/paw.svg"
  2145. }
  2146. },
  2147. staff: {
  2148. height: math.unit(6.7, "feet"),
  2149. name: "Staff",
  2150. image: {
  2151. source: "./media/characters/kurrikage/staff.svg"
  2152. }
  2153. },
  2154. peek: {
  2155. height: math.unit(1.05, "feet"),
  2156. name: "Peeking",
  2157. image: {
  2158. source: "./media/characters/kurrikage/peek.svg",
  2159. bottom: 0.08
  2160. }
  2161. },
  2162. },
  2163. [
  2164. {
  2165. name: "Normal",
  2166. height: math.unit(12, "feet"),
  2167. default: true
  2168. },
  2169. {
  2170. name: "Big",
  2171. height: math.unit(20, "feet")
  2172. },
  2173. {
  2174. name: "Macro",
  2175. height: math.unit(500, "feet")
  2176. },
  2177. {
  2178. name: "Megamacro",
  2179. height: math.unit(20, "miles")
  2180. },
  2181. ]
  2182. ))
  2183. characterMakers.push(() => makeCharacter(
  2184. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2185. {
  2186. front: {
  2187. height: math.unit(6, "feet"),
  2188. weight: math.unit(75, "kg"),
  2189. name: "Front",
  2190. image: {
  2191. source: "./media/characters/shingo/front.svg",
  2192. extra: 3511 / 3338,
  2193. bottom: 0.005
  2194. }
  2195. },
  2196. },
  2197. [
  2198. {
  2199. name: "Micro",
  2200. height: math.unit(4, "inches")
  2201. },
  2202. {
  2203. name: "Normal",
  2204. height: math.unit(6, "feet"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Macro",
  2209. height: math.unit(108, "feet")
  2210. }
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2215. {
  2216. side: {
  2217. height: math.unit(6, "feet"),
  2218. weight: math.unit(75, "kg"),
  2219. name: "Side",
  2220. image: {
  2221. source: "./media/characters/aigey/side.svg"
  2222. }
  2223. },
  2224. },
  2225. [
  2226. {
  2227. name: "Macro",
  2228. height: math.unit(200, "feet"),
  2229. default: true
  2230. },
  2231. {
  2232. name: "Megamacro",
  2233. height: math.unit(100, "miles")
  2234. },
  2235. ]
  2236. )
  2237. )
  2238. characterMakers.push(() => makeCharacter(
  2239. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2240. {
  2241. front: {
  2242. height: math.unit(5 + 5 / 12, "feet"),
  2243. weight: math.unit(75, "kg"),
  2244. name: "Front",
  2245. image: {
  2246. source: "./media/characters/natasha/front.svg",
  2247. extra: 859 / 824,
  2248. bottom: 23 / 879.6
  2249. }
  2250. },
  2251. frontNsfw: {
  2252. height: math.unit(5 + 5 / 12, "feet"),
  2253. weight: math.unit(75, "kg"),
  2254. name: "Front (NSFW)",
  2255. image: {
  2256. source: "./media/characters/natasha/front-nsfw.svg",
  2257. extra: 859 / 824,
  2258. bottom: 23 / 879.6
  2259. }
  2260. },
  2261. frontErect: {
  2262. height: math.unit(5 + 5 / 12, "feet"),
  2263. weight: math.unit(75, "kg"),
  2264. name: "Front (Erect)",
  2265. image: {
  2266. source: "./media/characters/natasha/front-erect.svg",
  2267. extra: 859 / 824,
  2268. bottom: 23 / 879.6
  2269. }
  2270. },
  2271. back: {
  2272. height: math.unit(5 + 5 / 12, "feet"),
  2273. weight: math.unit(75, "kg"),
  2274. name: "Back",
  2275. image: {
  2276. source: "./media/characters/natasha/back.svg",
  2277. extra: 887.9 / 852.6,
  2278. bottom: 9.7 / 896.4
  2279. }
  2280. },
  2281. backAlt: {
  2282. height: math.unit(5 + 5 / 12, "feet"),
  2283. weight: math.unit(75, "kg"),
  2284. name: "Back (Alt)",
  2285. image: {
  2286. source: "./media/characters/natasha/back-alt.svg",
  2287. extra: 1236.7 / 1192,
  2288. bottom: 22.3 / 1258.2
  2289. }
  2290. },
  2291. dick: {
  2292. height: math.unit(1.772, "feet"),
  2293. name: "Dick",
  2294. image: {
  2295. source: "./media/characters/natasha/dick.svg"
  2296. }
  2297. },
  2298. },
  2299. [
  2300. {
  2301. name: "Normal",
  2302. height: math.unit(5 + 5 / 12, "feet")
  2303. },
  2304. {
  2305. name: "Large",
  2306. height: math.unit(12, "feet")
  2307. },
  2308. {
  2309. name: "Macro",
  2310. height: math.unit(100, "feet"),
  2311. default: true
  2312. },
  2313. {
  2314. name: "Macro+",
  2315. height: math.unit(260, "feet")
  2316. },
  2317. {
  2318. name: "Macro++",
  2319. height: math.unit(1, "mile")
  2320. },
  2321. ]
  2322. ))
  2323. characterMakers.push(() => makeCharacter(
  2324. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2325. {
  2326. front: {
  2327. height: math.unit(6, "feet"),
  2328. weight: math.unit(75, "kg"),
  2329. name: "Front",
  2330. image: {
  2331. source: "./media/characters/malik/front.svg"
  2332. }
  2333. },
  2334. side: {
  2335. height: math.unit(6, "feet"),
  2336. weight: math.unit(75, "kg"),
  2337. name: "Side",
  2338. image: {
  2339. source: "./media/characters/malik/side.svg",
  2340. extra: 1.1539
  2341. }
  2342. },
  2343. back: {
  2344. height: math.unit(6, "feet"),
  2345. weight: math.unit(75, "kg"),
  2346. name: "Back",
  2347. image: {
  2348. source: "./media/characters/malik/back.svg"
  2349. }
  2350. },
  2351. },
  2352. [
  2353. {
  2354. name: "Macro",
  2355. height: math.unit(156, "feet"),
  2356. default: true
  2357. },
  2358. {
  2359. name: "Macro+",
  2360. height: math.unit(1188, "feet")
  2361. },
  2362. ]
  2363. ))
  2364. characterMakers.push(() => makeCharacter(
  2365. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2366. {
  2367. front: {
  2368. height: math.unit(6, "feet"),
  2369. weight: math.unit(75, "kg"),
  2370. name: "Front",
  2371. image: {
  2372. source: "./media/characters/sefer/front.svg",
  2373. extra: 848 / 659,
  2374. bottom: 28.3 / 876.442
  2375. }
  2376. },
  2377. back: {
  2378. height: math.unit(6, "feet"),
  2379. weight: math.unit(75, "kg"),
  2380. name: "Back",
  2381. image: {
  2382. source: "./media/characters/sefer/back.svg",
  2383. extra: 864 / 695,
  2384. bottom: 10 / 871
  2385. }
  2386. },
  2387. frontDressed: {
  2388. height: math.unit(6, "feet"),
  2389. weight: math.unit(75, "kg"),
  2390. name: "Front (Dressed)",
  2391. image: {
  2392. source: "./media/characters/sefer/front-dressed.svg",
  2393. extra: 839 / 653,
  2394. bottom: 37.6 / 878
  2395. }
  2396. },
  2397. },
  2398. [
  2399. {
  2400. name: "Normal",
  2401. height: math.unit(6, "feet"),
  2402. default: true
  2403. },
  2404. ]
  2405. ))
  2406. characterMakers.push(() => makeCharacter(
  2407. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2408. {
  2409. body: {
  2410. height: math.unit(2.2428, "meter"),
  2411. weight: math.unit(124.738, "kg"),
  2412. name: "Body",
  2413. image: {
  2414. extra: 1225 / 1050,
  2415. source: "./media/characters/north/front.svg"
  2416. }
  2417. }
  2418. },
  2419. [
  2420. {
  2421. name: "Micro",
  2422. height: math.unit(4, "inches")
  2423. },
  2424. {
  2425. name: "Macro",
  2426. height: math.unit(63, "meters")
  2427. },
  2428. {
  2429. name: "Megamacro",
  2430. height: math.unit(101, "miles"),
  2431. default: true
  2432. }
  2433. ]
  2434. ))
  2435. characterMakers.push(() => makeCharacter(
  2436. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2437. {
  2438. angled: {
  2439. height: math.unit(4, "meter"),
  2440. weight: math.unit(150, "kg"),
  2441. name: "Angled",
  2442. image: {
  2443. source: "./media/characters/talan/angled-sfw.svg",
  2444. bottom: 29 / 3734
  2445. }
  2446. },
  2447. angledNsfw: {
  2448. height: math.unit(4, "meter"),
  2449. weight: math.unit(150, "kg"),
  2450. name: "Angled (NSFW)",
  2451. image: {
  2452. source: "./media/characters/talan/angled-nsfw.svg",
  2453. bottom: 29 / 3734
  2454. }
  2455. },
  2456. frontNsfw: {
  2457. height: math.unit(4, "meter"),
  2458. weight: math.unit(150, "kg"),
  2459. name: "Front (NSFW)",
  2460. image: {
  2461. source: "./media/characters/talan/front-nsfw.svg",
  2462. bottom: 29 / 3734
  2463. }
  2464. },
  2465. sideNsfw: {
  2466. height: math.unit(4, "meter"),
  2467. weight: math.unit(150, "kg"),
  2468. name: "Side (NSFW)",
  2469. image: {
  2470. source: "./media/characters/talan/side-nsfw.svg",
  2471. bottom: 29 / 3734
  2472. }
  2473. },
  2474. back: {
  2475. height: math.unit(4, "meter"),
  2476. weight: math.unit(150, "kg"),
  2477. name: "Back",
  2478. image: {
  2479. source: "./media/characters/talan/back.svg"
  2480. }
  2481. },
  2482. dickBottom: {
  2483. height: math.unit(0.621, "meter"),
  2484. name: "Dick (Bottom)",
  2485. image: {
  2486. source: "./media/characters/talan/dick-bottom.svg"
  2487. }
  2488. },
  2489. dickTop: {
  2490. height: math.unit(0.621, "meter"),
  2491. name: "Dick (Top)",
  2492. image: {
  2493. source: "./media/characters/talan/dick-top.svg"
  2494. }
  2495. },
  2496. dickSide: {
  2497. height: math.unit(0.305, "meter"),
  2498. name: "Dick (Side)",
  2499. image: {
  2500. source: "./media/characters/talan/dick-side.svg"
  2501. }
  2502. },
  2503. dickFront: {
  2504. height: math.unit(0.305, "meter"),
  2505. name: "Dick (Front)",
  2506. image: {
  2507. source: "./media/characters/talan/dick-front.svg"
  2508. }
  2509. },
  2510. },
  2511. [
  2512. {
  2513. name: "Normal",
  2514. height: math.unit(4, "meters")
  2515. },
  2516. {
  2517. name: "Macro",
  2518. height: math.unit(100, "meters")
  2519. },
  2520. {
  2521. name: "Megamacro",
  2522. height: math.unit(2, "miles"),
  2523. default: true
  2524. },
  2525. {
  2526. name: "Gigamacro",
  2527. height: math.unit(5000, "miles")
  2528. },
  2529. {
  2530. name: "Teramacro",
  2531. height: math.unit(100, "parsecs")
  2532. }
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2537. {
  2538. front: {
  2539. height: math.unit(2, "meter"),
  2540. weight: math.unit(90, "kg"),
  2541. name: "Front",
  2542. image: {
  2543. source: "./media/characters/gael'rathus/front.svg"
  2544. }
  2545. },
  2546. frontAlt: {
  2547. height: math.unit(2, "meter"),
  2548. weight: math.unit(90, "kg"),
  2549. name: "Front (alt)",
  2550. image: {
  2551. source: "./media/characters/gael'rathus/front-alt.svg"
  2552. }
  2553. },
  2554. frontAlt2: {
  2555. height: math.unit(2, "meter"),
  2556. weight: math.unit(90, "kg"),
  2557. name: "Front (alt 2)",
  2558. image: {
  2559. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2560. }
  2561. }
  2562. },
  2563. [
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(9, "feet"),
  2567. default: true
  2568. },
  2569. {
  2570. name: "Large",
  2571. height: math.unit(25, "feet")
  2572. },
  2573. {
  2574. name: "Macro",
  2575. height: math.unit(0.25, "miles")
  2576. },
  2577. {
  2578. name: "Megamacro",
  2579. height: math.unit(10, "miles")
  2580. }
  2581. ]
  2582. ))
  2583. characterMakers.push(() => makeCharacter(
  2584. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2585. {
  2586. side: {
  2587. height: math.unit(2, "meter"),
  2588. weight: math.unit(140, "kg"),
  2589. name: "Side",
  2590. image: {
  2591. source: "./media/characters/sosha/side.svg",
  2592. bottom: 0.042
  2593. }
  2594. },
  2595. },
  2596. [
  2597. {
  2598. name: "Normal",
  2599. height: math.unit(12, "feet"),
  2600. default: true
  2601. }
  2602. ]
  2603. ))
  2604. characterMakers.push(() => makeCharacter(
  2605. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2606. {
  2607. side: {
  2608. height: math.unit(5 + 5 / 12, "feet"),
  2609. weight: math.unit(170, "kg"),
  2610. name: "Side",
  2611. image: {
  2612. source: "./media/characters/runnola/side.svg",
  2613. extra: 741 / 448,
  2614. bottom: 0.05
  2615. }
  2616. },
  2617. },
  2618. [
  2619. {
  2620. name: "Small",
  2621. height: math.unit(3, "feet")
  2622. },
  2623. {
  2624. name: "Normal",
  2625. height: math.unit(5 + 5 / 12, "feet"),
  2626. default: true
  2627. },
  2628. {
  2629. name: "Big",
  2630. height: math.unit(10, "feet")
  2631. },
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2636. {
  2637. front: {
  2638. height: math.unit(2, "meter"),
  2639. weight: math.unit(50, "kg"),
  2640. name: "Front",
  2641. image: {
  2642. source: "./media/characters/kurribird/front.svg",
  2643. bottom: 0.015
  2644. }
  2645. },
  2646. frontAlt: {
  2647. height: math.unit(1.5, "meter"),
  2648. weight: math.unit(50, "kg"),
  2649. name: "Front (Alt)",
  2650. image: {
  2651. source: "./media/characters/kurribird/front-alt.svg",
  2652. extra: 1.45
  2653. }
  2654. },
  2655. },
  2656. [
  2657. {
  2658. name: "Normal",
  2659. height: math.unit(7, "feet")
  2660. },
  2661. {
  2662. name: "Big",
  2663. height: math.unit(12, "feet"),
  2664. default: true
  2665. },
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(1500, "feet")
  2669. },
  2670. {
  2671. name: "Megamacro",
  2672. height: math.unit(2, "miles")
  2673. }
  2674. ]
  2675. ))
  2676. characterMakers.push(() => makeCharacter(
  2677. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2678. {
  2679. front: {
  2680. height: math.unit(2, "meter"),
  2681. weight: math.unit(80, "kg"),
  2682. name: "Front",
  2683. image: {
  2684. source: "./media/characters/elbial/front.svg",
  2685. extra: 1643 / 1556,
  2686. bottom: 60.2 / 1696
  2687. }
  2688. },
  2689. side: {
  2690. height: math.unit(2, "meter"),
  2691. weight: math.unit(80, "kg"),
  2692. name: "Side",
  2693. image: {
  2694. source: "./media/characters/elbial/side.svg",
  2695. extra: 1630 / 1565,
  2696. bottom: 71.5 / 1697
  2697. }
  2698. },
  2699. back: {
  2700. height: math.unit(2, "meter"),
  2701. weight: math.unit(80, "kg"),
  2702. name: "Back",
  2703. image: {
  2704. source: "./media/characters/elbial/back.svg",
  2705. extra: 1668 / 1595,
  2706. bottom: 5.6 / 1672
  2707. }
  2708. },
  2709. frontDressed: {
  2710. height: math.unit(2, "meter"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Front (Dressed)",
  2713. image: {
  2714. source: "./media/characters/elbial/front-dressed.svg",
  2715. extra: 1653 / 1584,
  2716. bottom: 57 / 1708
  2717. }
  2718. },
  2719. genitals: {
  2720. height: math.unit(2 / 3.367, "meter"),
  2721. name: "Genitals",
  2722. image: {
  2723. source: "./media/characters/elbial/genitals.svg"
  2724. }
  2725. },
  2726. },
  2727. [
  2728. {
  2729. name: "Large",
  2730. height: math.unit(100, "feet")
  2731. },
  2732. {
  2733. name: "Macro",
  2734. height: math.unit(500, "feet"),
  2735. default: true
  2736. },
  2737. {
  2738. name: "Megamacro",
  2739. height: math.unit(10, "miles")
  2740. },
  2741. {
  2742. name: "Gigamacro",
  2743. height: math.unit(25000, "miles")
  2744. },
  2745. {
  2746. name: "Full-Size",
  2747. height: math.unit(8000000, "gigaparsecs")
  2748. }
  2749. ]
  2750. ))
  2751. characterMakers.push(() => makeCharacter(
  2752. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2753. {
  2754. front: {
  2755. height: math.unit(2, "meter"),
  2756. weight: math.unit(60, "kg"),
  2757. name: "Front",
  2758. image: {
  2759. source: "./media/characters/noah/front.svg"
  2760. }
  2761. },
  2762. talons: {
  2763. height: math.unit(0.315, "meter"),
  2764. name: "Talons",
  2765. image: {
  2766. source: "./media/characters/noah/talons.svg"
  2767. }
  2768. }
  2769. },
  2770. [
  2771. {
  2772. name: "Large",
  2773. height: math.unit(50, "feet")
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(750, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Megamacro",
  2782. height: math.unit(50, "miles")
  2783. },
  2784. {
  2785. name: "Gigamacro",
  2786. height: math.unit(100000, "miles")
  2787. },
  2788. {
  2789. name: "Full-Size",
  2790. height: math.unit(3000000000, "miles")
  2791. }
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(2, "meter"),
  2799. weight: math.unit(80, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/natalya/front.svg"
  2803. }
  2804. },
  2805. back: {
  2806. height: math.unit(2, "meter"),
  2807. weight: math.unit(80, "kg"),
  2808. name: "Back",
  2809. image: {
  2810. source: "./media/characters/natalya/back.svg"
  2811. }
  2812. }
  2813. },
  2814. [
  2815. {
  2816. name: "Normal",
  2817. height: math.unit(150, "feet"),
  2818. default: true
  2819. },
  2820. {
  2821. name: "Megamacro",
  2822. height: math.unit(5, "miles")
  2823. },
  2824. {
  2825. name: "Full-Size",
  2826. height: math.unit(600, "kiloparsecs")
  2827. }
  2828. ]
  2829. ))
  2830. characterMakers.push(() => makeCharacter(
  2831. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2832. {
  2833. front: {
  2834. height: math.unit(2, "meter"),
  2835. weight: math.unit(50, "kg"),
  2836. name: "Front",
  2837. image: {
  2838. source: "./media/characters/erestrebah/front.svg",
  2839. extra: 208 / 193,
  2840. bottom: 0.055
  2841. }
  2842. },
  2843. back: {
  2844. height: math.unit(2, "meter"),
  2845. weight: math.unit(50, "kg"),
  2846. name: "Back",
  2847. image: {
  2848. source: "./media/characters/erestrebah/back.svg",
  2849. extra: 1.3
  2850. }
  2851. }
  2852. },
  2853. [
  2854. {
  2855. name: "Normal",
  2856. height: math.unit(10, "feet")
  2857. },
  2858. {
  2859. name: "Large",
  2860. height: math.unit(50, "feet"),
  2861. default: true
  2862. },
  2863. {
  2864. name: "Macro",
  2865. height: math.unit(300, "feet")
  2866. },
  2867. {
  2868. name: "Macro+",
  2869. height: math.unit(750, "feet")
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(3, "miles")
  2874. }
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2879. {
  2880. front: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(80, "kg"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/jennifer/front.svg",
  2886. bottom: 0.11,
  2887. extra: 1.16
  2888. }
  2889. },
  2890. frontAlt: {
  2891. height: math.unit(2, "meter"),
  2892. weight: math.unit(80, "kg"),
  2893. name: "Front (Alt)",
  2894. image: {
  2895. source: "./media/characters/jennifer/front-alt.svg"
  2896. }
  2897. }
  2898. },
  2899. [
  2900. {
  2901. name: "Canon Height",
  2902. height: math.unit(120, "feet"),
  2903. default: true
  2904. },
  2905. {
  2906. name: "Macro+",
  2907. height: math.unit(300, "feet")
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(20000, "feet")
  2912. }
  2913. ]
  2914. ))
  2915. characterMakers.push(() => makeCharacter(
  2916. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2917. {
  2918. front: {
  2919. height: math.unit(2, "meter"),
  2920. weight: math.unit(50, "kg"),
  2921. name: "Front",
  2922. image: {
  2923. source: "./media/characters/kalista/front.svg",
  2924. extra: 1947 / 1700,
  2925. bottom: 76.6 / 1412.98
  2926. }
  2927. },
  2928. back: {
  2929. height: math.unit(2, "meter"),
  2930. weight: math.unit(50, "kg"),
  2931. name: "Back",
  2932. image: {
  2933. source: "./media/characters/kalista/back.svg",
  2934. extra: 1366 / 1156,
  2935. bottom: 33.9 / 1362.78
  2936. }
  2937. }
  2938. },
  2939. [
  2940. {
  2941. name: "Uncomfortably Small",
  2942. height: math.unit(10, "feet")
  2943. },
  2944. {
  2945. name: "Small",
  2946. height: math.unit(30, "feet")
  2947. },
  2948. {
  2949. name: "Macro",
  2950. height: math.unit(100, "feet"),
  2951. default: true
  2952. },
  2953. {
  2954. name: "Macro+",
  2955. height: math.unit(2000, "feet")
  2956. },
  2957. {
  2958. name: "True Form",
  2959. height: math.unit(8924, "miles")
  2960. }
  2961. ]
  2962. ))
  2963. characterMakers.push(() => makeCharacter(
  2964. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2965. {
  2966. front: {
  2967. height: math.unit(2, "meter"),
  2968. weight: math.unit(120, "kg"),
  2969. name: "Front",
  2970. image: {
  2971. source: "./media/characters/ggv/front.svg"
  2972. }
  2973. },
  2974. side: {
  2975. height: math.unit(2, "meter"),
  2976. weight: math.unit(120, "kg"),
  2977. name: "Side",
  2978. image: {
  2979. source: "./media/characters/ggv/side.svg"
  2980. }
  2981. }
  2982. },
  2983. [
  2984. {
  2985. name: "Extremely Puny",
  2986. height: math.unit(9 + 5 / 12, "feet")
  2987. },
  2988. {
  2989. name: "Horribly Small",
  2990. height: math.unit(47.7, "miles"),
  2991. default: true
  2992. },
  2993. {
  2994. name: "Reasonably Sized",
  2995. height: math.unit(25000, "parsecs")
  2996. },
  2997. {
  2998. name: "Slightly Uncompressed",
  2999. height: math.unit(7.77e31, "parsecs")
  3000. },
  3001. {
  3002. name: "Omniversal",
  3003. height: math.unit(1e300, "meters")
  3004. },
  3005. ]
  3006. ))
  3007. characterMakers.push(() => makeCharacter(
  3008. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3009. {
  3010. front: {
  3011. height: math.unit(2, "meter"),
  3012. weight: math.unit(75, "lb"),
  3013. name: "Front",
  3014. image: {
  3015. source: "./media/characters/napalm/front.svg"
  3016. }
  3017. },
  3018. back: {
  3019. height: math.unit(2, "meter"),
  3020. weight: math.unit(75, "lb"),
  3021. name: "Back",
  3022. image: {
  3023. source: "./media/characters/napalm/back.svg"
  3024. }
  3025. }
  3026. },
  3027. [
  3028. {
  3029. name: "Standard",
  3030. height: math.unit(55, "feet"),
  3031. default: true
  3032. }
  3033. ]
  3034. ))
  3035. characterMakers.push(() => makeCharacter(
  3036. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3037. {
  3038. front: {
  3039. height: math.unit(7 + 5 / 6, "feet"),
  3040. weight: math.unit(325, "lb"),
  3041. name: "Front",
  3042. image: {
  3043. source: "./media/characters/asana/front.svg",
  3044. extra: 1128 / 1068
  3045. }
  3046. },
  3047. back: {
  3048. height: math.unit(7 + 5 / 6, "feet"),
  3049. weight: math.unit(325, "lb"),
  3050. name: "Back",
  3051. image: {
  3052. source: "./media/characters/asana/back.svg",
  3053. extra: 1128 / 1068
  3054. }
  3055. },
  3056. },
  3057. [
  3058. {
  3059. name: "Standard",
  3060. height: math.unit(7 + 5 / 6, "feet"),
  3061. default: true
  3062. },
  3063. {
  3064. name: "Large",
  3065. height: math.unit(10, "meters")
  3066. },
  3067. {
  3068. name: "Macro",
  3069. height: math.unit(2500, "meters")
  3070. },
  3071. {
  3072. name: "Megamacro",
  3073. height: math.unit(5e6, "meters")
  3074. },
  3075. {
  3076. name: "Examacro",
  3077. height: math.unit(5e12, "lightyears")
  3078. },
  3079. {
  3080. name: "Max Size",
  3081. height: math.unit(1e31, "lightyears")
  3082. }
  3083. ]
  3084. ))
  3085. characterMakers.push(() => makeCharacter(
  3086. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3087. {
  3088. front: {
  3089. height: math.unit(2, "meter"),
  3090. weight: math.unit(60, "kg"),
  3091. name: "Front",
  3092. image: {
  3093. source: "./media/characters/ebony/front.svg",
  3094. bottom: 0.03,
  3095. extra: 1045 / 810 + 0.03
  3096. }
  3097. },
  3098. side: {
  3099. height: math.unit(2, "meter"),
  3100. weight: math.unit(60, "kg"),
  3101. name: "Side",
  3102. image: {
  3103. source: "./media/characters/ebony/side.svg",
  3104. bottom: 0.03,
  3105. extra: 1045 / 810 + 0.03
  3106. }
  3107. },
  3108. back: {
  3109. height: math.unit(2, "meter"),
  3110. weight: math.unit(60, "kg"),
  3111. name: "Back",
  3112. image: {
  3113. source: "./media/characters/ebony/back.svg",
  3114. bottom: 0.01,
  3115. extra: 1045 / 810 + 0.01
  3116. }
  3117. },
  3118. },
  3119. [
  3120. // TODO check why I did this lol
  3121. {
  3122. name: "Standard",
  3123. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3124. default: true
  3125. },
  3126. {
  3127. name: "Macro",
  3128. height: math.unit(200, "feet")
  3129. },
  3130. {
  3131. name: "Gigamacro",
  3132. height: math.unit(13000, "km")
  3133. }
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3138. {
  3139. front: {
  3140. height: math.unit(6, "feet"),
  3141. weight: math.unit(175, "lb"),
  3142. name: "Front",
  3143. image: {
  3144. source: "./media/characters/mountain/front.svg"
  3145. }
  3146. },
  3147. back: {
  3148. height: math.unit(6, "feet"),
  3149. weight: math.unit(175, "lb"),
  3150. name: "Back",
  3151. image: {
  3152. source: "./media/characters/mountain/back.svg"
  3153. }
  3154. },
  3155. },
  3156. [
  3157. {
  3158. name: "Large",
  3159. height: math.unit(20, "meters")
  3160. },
  3161. {
  3162. name: "Macro",
  3163. height: math.unit(300, "meters")
  3164. },
  3165. {
  3166. name: "Gigamacro",
  3167. height: math.unit(10000, "km"),
  3168. default: true
  3169. },
  3170. {
  3171. name: "Examacro",
  3172. height: math.unit(10e9, "lightyears")
  3173. }
  3174. ]
  3175. ))
  3176. characterMakers.push(() => makeCharacter(
  3177. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3178. {
  3179. front: {
  3180. height: math.unit(8, "feet"),
  3181. weight: math.unit(500, "lb"),
  3182. name: "Front",
  3183. image: {
  3184. source: "./media/characters/rick/front.svg"
  3185. }
  3186. }
  3187. },
  3188. [
  3189. {
  3190. name: "Normal",
  3191. height: math.unit(8, "feet"),
  3192. default: true
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(5, "km")
  3197. }
  3198. ]
  3199. ))
  3200. characterMakers.push(() => makeCharacter(
  3201. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3202. {
  3203. front: {
  3204. height: math.unit(8, "feet"),
  3205. weight: math.unit(120, "lb"),
  3206. name: "Front",
  3207. image: {
  3208. source: "./media/characters/ona/front.svg"
  3209. }
  3210. },
  3211. frontAlt: {
  3212. height: math.unit(8, "feet"),
  3213. weight: math.unit(120, "lb"),
  3214. name: "Front (Alt)",
  3215. image: {
  3216. source: "./media/characters/ona/front-alt.svg"
  3217. }
  3218. },
  3219. back: {
  3220. height: math.unit(8, "feet"),
  3221. weight: math.unit(120, "lb"),
  3222. name: "Back",
  3223. image: {
  3224. source: "./media/characters/ona/back.svg"
  3225. }
  3226. },
  3227. foot: {
  3228. height: math.unit(1.1, "feet"),
  3229. name: "Foot",
  3230. image: {
  3231. source: "./media/characters/ona/foot.svg"
  3232. }
  3233. }
  3234. },
  3235. [
  3236. {
  3237. name: "Megamacro",
  3238. height: math.unit(70, "km"),
  3239. default: true
  3240. },
  3241. {
  3242. name: "Gigamacro",
  3243. height: math.unit(681818, "miles")
  3244. },
  3245. {
  3246. name: "Examacro",
  3247. height: math.unit(3800000, "lightyears")
  3248. },
  3249. ]
  3250. ))
  3251. characterMakers.push(() => makeCharacter(
  3252. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3253. {
  3254. front: {
  3255. height: math.unit(12, "feet"),
  3256. weight: math.unit(3000, "lb"),
  3257. name: "Front",
  3258. image: {
  3259. source: "./media/characters/mech/front.svg",
  3260. bottom: 0.025,
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(12, "feet"),
  3265. weight: math.unit(3000, "lb"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/mech/back.svg",
  3269. bottom: 0.03,
  3270. }
  3271. }
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(12, "feet")
  3277. },
  3278. {
  3279. name: "Macro",
  3280. height: math.unit(300, "feet"),
  3281. default: true
  3282. },
  3283. {
  3284. name: "Macro+",
  3285. height: math.unit(1500, "feet")
  3286. },
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3291. {
  3292. front: {
  3293. height: math.unit(1.3, "meter"),
  3294. weight: math.unit(30, "kg"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/gregory/front.svg",
  3298. }
  3299. }
  3300. },
  3301. [
  3302. {
  3303. name: "Normal",
  3304. height: math.unit(1.3, "meter"),
  3305. default: true
  3306. },
  3307. {
  3308. name: "Macro",
  3309. height: math.unit(20, "meter")
  3310. }
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3315. {
  3316. front: {
  3317. height: math.unit(2.8, "meter"),
  3318. weight: math.unit(200, "kg"),
  3319. name: "Front",
  3320. image: {
  3321. source: "./media/characters/elory/front.svg",
  3322. }
  3323. }
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(2.8, "meter"),
  3329. default: true
  3330. },
  3331. {
  3332. name: "Macro",
  3333. height: math.unit(38, "meter")
  3334. }
  3335. ]
  3336. ))
  3337. characterMakers.push(() => makeCharacter(
  3338. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3339. {
  3340. front: {
  3341. height: math.unit(470, "feet"),
  3342. weight: math.unit(924, "tons"),
  3343. name: "Front",
  3344. image: {
  3345. source: "./media/characters/angelpatamon/front.svg",
  3346. }
  3347. }
  3348. },
  3349. [
  3350. {
  3351. name: "Normal",
  3352. height: math.unit(470, "feet"),
  3353. default: true
  3354. },
  3355. {
  3356. name: "Deity Size I",
  3357. height: math.unit(28651.2, "km")
  3358. },
  3359. {
  3360. name: "Deity Size II",
  3361. height: math.unit(171907.2, "km")
  3362. }
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3367. {
  3368. side: {
  3369. height: math.unit(7.2, "meter"),
  3370. weight: math.unit(8.2, "tons"),
  3371. name: "Side",
  3372. image: {
  3373. source: "./media/characters/cryae/side.svg",
  3374. extra: 3500 / 1500
  3375. }
  3376. }
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(7.2, "meter"),
  3382. default: true
  3383. }
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3388. {
  3389. front: {
  3390. height: math.unit(6, "feet"),
  3391. weight: math.unit(175, "lb"),
  3392. name: "Front",
  3393. image: {
  3394. source: "./media/characters/xera/front.svg",
  3395. extra: 2300 / 2061
  3396. }
  3397. },
  3398. side: {
  3399. height: math.unit(6, "feet"),
  3400. weight: math.unit(175, "lb"),
  3401. name: "Side",
  3402. image: {
  3403. source: "./media/characters/xera/side.svg",
  3404. extra: 2300 / 2061
  3405. }
  3406. },
  3407. back: {
  3408. height: math.unit(6, "feet"),
  3409. weight: math.unit(175, "lb"),
  3410. name: "Back",
  3411. image: {
  3412. source: "./media/characters/xera/back.svg"
  3413. }
  3414. },
  3415. },
  3416. [
  3417. {
  3418. name: "Small",
  3419. height: math.unit(10, "feet")
  3420. },
  3421. {
  3422. name: "Macro",
  3423. height: math.unit(500, "meters"),
  3424. default: true
  3425. },
  3426. {
  3427. name: "Macro+",
  3428. height: math.unit(10, "km")
  3429. },
  3430. {
  3431. name: "Gigamacro",
  3432. height: math.unit(25000, "km")
  3433. },
  3434. {
  3435. name: "Teramacro",
  3436. height: math.unit(3e6, "km")
  3437. }
  3438. ]
  3439. ))
  3440. characterMakers.push(() => makeCharacter(
  3441. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3442. {
  3443. front: {
  3444. height: math.unit(6, "feet"),
  3445. weight: math.unit(175, "lb"),
  3446. name: "Front",
  3447. image: {
  3448. source: "./media/characters/nebula/front.svg",
  3449. extra: 2600 / 2450
  3450. }
  3451. }
  3452. },
  3453. [
  3454. {
  3455. name: "Small",
  3456. height: math.unit(4.5, "meters")
  3457. },
  3458. {
  3459. name: "Macro",
  3460. height: math.unit(1500, "meters"),
  3461. default: true
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(150, "km")
  3466. },
  3467. {
  3468. name: "Gigamacro",
  3469. height: math.unit(27000, "km")
  3470. }
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3475. {
  3476. front: {
  3477. height: math.unit(6, "feet"),
  3478. weight: math.unit(225, "lb"),
  3479. name: "Front",
  3480. image: {
  3481. source: "./media/characters/abysgar/front.svg"
  3482. }
  3483. }
  3484. },
  3485. [
  3486. {
  3487. name: "Small",
  3488. height: math.unit(4.5, "meters")
  3489. },
  3490. {
  3491. name: "Macro",
  3492. height: math.unit(1250, "meters"),
  3493. default: true
  3494. },
  3495. {
  3496. name: "Megamacro",
  3497. height: math.unit(125, "km")
  3498. },
  3499. {
  3500. name: "Gigamacro",
  3501. height: math.unit(26000, "km")
  3502. }
  3503. ]
  3504. ))
  3505. characterMakers.push(() => makeCharacter(
  3506. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3507. {
  3508. front: {
  3509. height: math.unit(6, "feet"),
  3510. weight: math.unit(180, "lb"),
  3511. name: "Front",
  3512. image: {
  3513. source: "./media/characters/yakuz/front.svg"
  3514. }
  3515. }
  3516. },
  3517. [
  3518. {
  3519. name: "Small",
  3520. height: math.unit(5, "meters")
  3521. },
  3522. {
  3523. name: "Macro",
  3524. height: math.unit(1500, "meters"),
  3525. default: true
  3526. },
  3527. {
  3528. name: "Megamacro",
  3529. height: math.unit(200, "km")
  3530. },
  3531. {
  3532. name: "Gigamacro",
  3533. height: math.unit(100000, "km")
  3534. }
  3535. ]
  3536. ))
  3537. characterMakers.push(() => makeCharacter(
  3538. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3539. {
  3540. front: {
  3541. height: math.unit(6, "feet"),
  3542. weight: math.unit(175, "lb"),
  3543. name: "Front",
  3544. image: {
  3545. source: "./media/characters/mirova/front.svg"
  3546. }
  3547. }
  3548. },
  3549. [
  3550. {
  3551. name: "Small",
  3552. height: math.unit(5, "meters")
  3553. },
  3554. {
  3555. name: "Macro",
  3556. height: math.unit(900, "meters"),
  3557. default: true
  3558. },
  3559. {
  3560. name: "Megamacro",
  3561. height: math.unit(135, "km")
  3562. },
  3563. {
  3564. name: "Gigamacro",
  3565. height: math.unit(20000, "km")
  3566. }
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3571. {
  3572. side: {
  3573. height: math.unit(28.35, "feet"),
  3574. weight: math.unit(99.75, "tons"),
  3575. name: "Side",
  3576. image: {
  3577. source: "./media/characters/asana-mech/side.svg"
  3578. }
  3579. }
  3580. },
  3581. [
  3582. {
  3583. name: "Normal",
  3584. height: math.unit(28.35, "feet"),
  3585. default: true
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(2500, "feet")
  3590. },
  3591. {
  3592. name: "Megamacro",
  3593. height: math.unit(25, "miles")
  3594. },
  3595. {
  3596. name: "Examacro",
  3597. height: math.unit(6e8, "lightyears")
  3598. },
  3599. ]
  3600. ))
  3601. characterMakers.push(() => makeCharacter(
  3602. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3603. {
  3604. front: {
  3605. height: math.unit(2, "meters"),
  3606. weight: math.unit(70, "kg"),
  3607. name: "Front",
  3608. image: {
  3609. source: "./media/characters/ashtrek/front.svg",
  3610. extra: 560 / 524,
  3611. bottom: 0.01
  3612. }
  3613. },
  3614. frontArmor: {
  3615. height: math.unit(2, "meters"),
  3616. weight: math.unit(76, "kg"),
  3617. name: "Front (Armor)",
  3618. image: {
  3619. source: "./media/characters/ashtrek/front-armor.svg",
  3620. extra: 561 / 527,
  3621. bottom: 0.01
  3622. }
  3623. },
  3624. side: {
  3625. height: math.unit(2, "meters"),
  3626. weight: math.unit(70, "kg"),
  3627. name: "Side",
  3628. image: {
  3629. source: "./media/characters/ashtrek/side.svg",
  3630. extra: 1717 / 1609,
  3631. bottom: 0.005
  3632. }
  3633. },
  3634. back: {
  3635. height: math.unit(2, "meters"),
  3636. weight: math.unit(70, "kg"),
  3637. name: "Back",
  3638. image: {
  3639. source: "./media/characters/ashtrek/back.svg",
  3640. extra: 1570 / 1501
  3641. }
  3642. },
  3643. },
  3644. [
  3645. {
  3646. name: "DEFCON 5",
  3647. height: math.unit(5, "meters")
  3648. },
  3649. {
  3650. name: "DEFCON 4",
  3651. height: math.unit(500, "meters"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "DEFCON 3",
  3656. height: math.unit(5, "km")
  3657. },
  3658. {
  3659. name: "DEFCON 2",
  3660. height: math.unit(500, "km")
  3661. },
  3662. {
  3663. name: "DEFCON 1",
  3664. height: math.unit(500000, "km")
  3665. },
  3666. {
  3667. name: "DEFCON 0",
  3668. height: math.unit(3, "gigaparsecs")
  3669. },
  3670. ]
  3671. ))
  3672. characterMakers.push(() => makeCharacter(
  3673. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3674. {
  3675. front: {
  3676. height: math.unit(2, "meters"),
  3677. weight: math.unit(76, "kg"),
  3678. name: "Front",
  3679. image: {
  3680. source: "./media/characters/gale/front.svg"
  3681. }
  3682. },
  3683. frontAlt1: {
  3684. height: math.unit(2, "meters"),
  3685. weight: math.unit(76, "kg"),
  3686. name: "Front (Alt 1)",
  3687. image: {
  3688. source: "./media/characters/gale/front-alt-1.svg"
  3689. }
  3690. },
  3691. frontAlt2: {
  3692. height: math.unit(2, "meters"),
  3693. weight: math.unit(76, "kg"),
  3694. name: "Front (Alt 2)",
  3695. image: {
  3696. source: "./media/characters/gale/front-alt-2.svg"
  3697. }
  3698. },
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(7, "feet")
  3704. },
  3705. {
  3706. name: "Macro",
  3707. height: math.unit(150, "feet"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Macro+",
  3712. height: math.unit(300, "feet")
  3713. },
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(2, "meters"),
  3721. weight: math.unit(76, "kg"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/draylen/front.svg"
  3725. }
  3726. }
  3727. },
  3728. [
  3729. {
  3730. name: "Macro",
  3731. height: math.unit(150, "feet"),
  3732. default: true
  3733. }
  3734. ]
  3735. ))
  3736. characterMakers.push(() => makeCharacter(
  3737. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3738. {
  3739. front: {
  3740. height: math.unit(7 + 9 / 12, "feet"),
  3741. weight: math.unit(379, "lbs"),
  3742. name: "Front",
  3743. image: {
  3744. source: "./media/characters/chez/front.svg"
  3745. }
  3746. },
  3747. side: {
  3748. height: math.unit(7 + 9 / 12, "feet"),
  3749. weight: math.unit(379, "lbs"),
  3750. name: "Side",
  3751. image: {
  3752. source: "./media/characters/chez/side.svg"
  3753. }
  3754. }
  3755. },
  3756. [
  3757. {
  3758. name: "Normal",
  3759. height: math.unit(7 + 9 / 12, "feet"),
  3760. default: true
  3761. },
  3762. {
  3763. name: "God King",
  3764. height: math.unit(9750000, "meters")
  3765. }
  3766. ]
  3767. ))
  3768. characterMakers.push(() => makeCharacter(
  3769. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3770. {
  3771. front: {
  3772. height: math.unit(6, "feet"),
  3773. weight: math.unit(275, "lbs"),
  3774. name: "Front",
  3775. image: {
  3776. source: "./media/characters/kaylum/front.svg",
  3777. bottom: 0.01,
  3778. extra: 1166 / 1031
  3779. }
  3780. },
  3781. frontWingless: {
  3782. height: math.unit(6, "feet"),
  3783. weight: math.unit(275, "lbs"),
  3784. name: "Front (Wingless)",
  3785. image: {
  3786. source: "./media/characters/kaylum/front-wingless.svg",
  3787. bottom: 0.01,
  3788. extra: 1117 / 1031
  3789. }
  3790. }
  3791. },
  3792. [
  3793. {
  3794. name: "Normal",
  3795. height: math.unit(3.05, "meters")
  3796. },
  3797. {
  3798. name: "Master",
  3799. height: math.unit(5.5, "meters")
  3800. },
  3801. {
  3802. name: "Rampage",
  3803. height: math.unit(19, "meters")
  3804. },
  3805. {
  3806. name: "Macro Lite",
  3807. height: math.unit(37, "meters")
  3808. },
  3809. {
  3810. name: "Hyper Predator",
  3811. height: math.unit(61, "meters")
  3812. },
  3813. {
  3814. name: "Macro",
  3815. height: math.unit(138, "meters"),
  3816. default: true
  3817. }
  3818. ]
  3819. ))
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3822. {
  3823. front: {
  3824. height: math.unit(6, "feet"),
  3825. weight: math.unit(150, "lbs"),
  3826. name: "Front",
  3827. image: {
  3828. source: "./media/characters/geta/front.svg"
  3829. }
  3830. }
  3831. },
  3832. [
  3833. {
  3834. name: "Micro",
  3835. height: math.unit(3, "inches"),
  3836. default: true
  3837. },
  3838. {
  3839. name: "Normal",
  3840. height: math.unit(5 + 5 / 12, "feet")
  3841. }
  3842. ]
  3843. ))
  3844. characterMakers.push(() => makeCharacter(
  3845. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3846. {
  3847. front: {
  3848. height: math.unit(6, "feet"),
  3849. weight: math.unit(300, "lbs"),
  3850. name: "Front",
  3851. image: {
  3852. source: "./media/characters/tyrnn/front.svg"
  3853. }
  3854. }
  3855. },
  3856. [
  3857. {
  3858. name: "Main Height",
  3859. height: math.unit(355, "feet"),
  3860. default: true
  3861. },
  3862. {
  3863. name: "Fave. Height",
  3864. height: math.unit(2400, "feet")
  3865. }
  3866. ]
  3867. ))
  3868. characterMakers.push(() => makeCharacter(
  3869. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3870. {
  3871. front: {
  3872. height: math.unit(6, "feet"),
  3873. weight: math.unit(300, "lbs"),
  3874. name: "Front",
  3875. image: {
  3876. source: "./media/characters/appledectomy/front.svg"
  3877. }
  3878. }
  3879. },
  3880. [
  3881. {
  3882. name: "Macro",
  3883. height: math.unit(2500, "feet")
  3884. },
  3885. {
  3886. name: "Megamacro",
  3887. height: math.unit(50, "miles"),
  3888. default: true
  3889. },
  3890. {
  3891. name: "Gigamacro",
  3892. height: math.unit(5000, "miles")
  3893. },
  3894. {
  3895. name: "Teramacro",
  3896. height: math.unit(250000, "miles")
  3897. },
  3898. ]
  3899. ))
  3900. characterMakers.push(() => makeCharacter(
  3901. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3902. {
  3903. front: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(200, "lbs"),
  3906. name: "Front",
  3907. image: {
  3908. source: "./media/characters/vulpes/front.svg",
  3909. extra: 573 / 543,
  3910. bottom: 0.033
  3911. }
  3912. },
  3913. side: {
  3914. height: math.unit(6, "feet"),
  3915. weight: math.unit(200, "lbs"),
  3916. name: "Side",
  3917. image: {
  3918. source: "./media/characters/vulpes/side.svg",
  3919. extra: 573 / 543,
  3920. bottom: 0.01
  3921. }
  3922. },
  3923. back: {
  3924. height: math.unit(6, "feet"),
  3925. weight: math.unit(200, "lbs"),
  3926. name: "Back",
  3927. image: {
  3928. source: "./media/characters/vulpes/back.svg",
  3929. extra: 573 / 543,
  3930. }
  3931. },
  3932. feet: {
  3933. height: math.unit(1.276, "feet"),
  3934. name: "Feet",
  3935. image: {
  3936. source: "./media/characters/vulpes/feet.svg"
  3937. }
  3938. },
  3939. maw: {
  3940. height: math.unit(1.18, "feet"),
  3941. name: "Maw",
  3942. image: {
  3943. source: "./media/characters/vulpes/maw.svg"
  3944. }
  3945. },
  3946. },
  3947. [
  3948. {
  3949. name: "Micro",
  3950. height: math.unit(2, "inches")
  3951. },
  3952. {
  3953. name: "Normal",
  3954. height: math.unit(6.3, "feet")
  3955. },
  3956. {
  3957. name: "Macro",
  3958. height: math.unit(850, "feet")
  3959. },
  3960. {
  3961. name: "Megamacro",
  3962. height: math.unit(7500, "feet"),
  3963. default: true
  3964. },
  3965. {
  3966. name: "Gigamacro",
  3967. height: math.unit(570000, "miles")
  3968. }
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  3973. {
  3974. front: {
  3975. height: math.unit(6, "feet"),
  3976. weight: math.unit(210, "lbs"),
  3977. name: "Front",
  3978. image: {
  3979. source: "./media/characters/rain-fallen/front.svg"
  3980. }
  3981. },
  3982. side: {
  3983. height: math.unit(6, "feet"),
  3984. weight: math.unit(210, "lbs"),
  3985. name: "Side",
  3986. image: {
  3987. source: "./media/characters/rain-fallen/side.svg"
  3988. }
  3989. },
  3990. back: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(210, "lbs"),
  3993. name: "Back",
  3994. image: {
  3995. source: "./media/characters/rain-fallen/back.svg"
  3996. }
  3997. },
  3998. feral: {
  3999. height: math.unit(9, "feet"),
  4000. weight: math.unit(700, "lbs"),
  4001. name: "Feral",
  4002. image: {
  4003. source: "./media/characters/rain-fallen/feral.svg"
  4004. }
  4005. },
  4006. },
  4007. [
  4008. {
  4009. name: "Normal",
  4010. height: math.unit(5, "meter")
  4011. },
  4012. {
  4013. name: "Macro",
  4014. height: math.unit(150, "meter"),
  4015. default: true
  4016. },
  4017. {
  4018. name: "Megamacro",
  4019. height: math.unit(278e6, "meter")
  4020. },
  4021. {
  4022. name: "Gigamacro",
  4023. height: math.unit(2e9, "meter")
  4024. },
  4025. {
  4026. name: "Teramacro",
  4027. height: math.unit(8e12, "meter")
  4028. },
  4029. {
  4030. name: "Devourer",
  4031. height: math.unit(14, "zettameters")
  4032. },
  4033. {
  4034. name: "Scarlet King",
  4035. height: math.unit(18, "yottameters")
  4036. },
  4037. {
  4038. name: "Void",
  4039. height: math.unit(6.66e66, "yottameters")
  4040. }
  4041. ]
  4042. ))
  4043. characterMakers.push(() => makeCharacter(
  4044. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4045. {
  4046. standing: {
  4047. height: math.unit(6, "feet"),
  4048. weight: math.unit(180, "lbs"),
  4049. name: "Standing",
  4050. image: {
  4051. source: "./media/characters/zaakira/standing.svg"
  4052. }
  4053. },
  4054. laying: {
  4055. height: math.unit(3, "feet"),
  4056. weight: math.unit(180, "lbs"),
  4057. name: "Laying",
  4058. image: {
  4059. source: "./media/characters/zaakira/laying.svg"
  4060. }
  4061. },
  4062. },
  4063. [
  4064. {
  4065. name: "Normal",
  4066. height: math.unit(12, "feet")
  4067. },
  4068. {
  4069. name: "Macro",
  4070. height: math.unit(279, "feet"),
  4071. default: true
  4072. }
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4077. {
  4078. front: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(250, "lbs"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/sigvald/front.svg",
  4084. extra: 1000 / 850
  4085. }
  4086. },
  4087. back: {
  4088. height: math.unit(6, "feet"),
  4089. weight: math.unit(250, "lbs"),
  4090. name: "Back",
  4091. image: {
  4092. source: "./media/characters/sigvald/back.svg"
  4093. }
  4094. },
  4095. },
  4096. [
  4097. {
  4098. name: "Normal",
  4099. height: math.unit(8, "feet")
  4100. },
  4101. {
  4102. name: "Large",
  4103. height: math.unit(12, "feet")
  4104. },
  4105. {
  4106. name: "Larger",
  4107. height: math.unit(20, "feet")
  4108. },
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(150, "feet")
  4112. },
  4113. {
  4114. name: "Macro+",
  4115. height: math.unit(200, "feet"),
  4116. default: true
  4117. },
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4122. {
  4123. side: {
  4124. height: math.unit(12, "feet"),
  4125. weight: math.unit(2000, "kg"),
  4126. name: "Side",
  4127. image: {
  4128. source: "./media/characters/scott/side.svg",
  4129. extra: 754 / 724,
  4130. bottom: 0.069
  4131. }
  4132. },
  4133. upright: {
  4134. height: math.unit(12, "feet"),
  4135. weight: math.unit(2000, "kg"),
  4136. name: "Upright",
  4137. image: {
  4138. source: "./media/characters/scott/upright.svg",
  4139. extra: 3881 / 3722,
  4140. bottom: 0.05
  4141. }
  4142. },
  4143. },
  4144. [
  4145. {
  4146. name: "Normal",
  4147. height: math.unit(12, "feet"),
  4148. default: true
  4149. },
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4154. {
  4155. side: {
  4156. height: math.unit(8, "meters"),
  4157. weight: math.unit(84755, "lbs"),
  4158. name: "Side",
  4159. image: {
  4160. source: "./media/characters/tobias/side.svg",
  4161. extra: 1474 / 1096,
  4162. bottom: 38.9 / 1513.1235
  4163. }
  4164. },
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(8, "meters"),
  4170. default: true
  4171. },
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4176. {
  4177. front: {
  4178. height: math.unit(5.5, "feet"),
  4179. weight: math.unit(400, "lbs"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/kieran/front.svg",
  4183. extra: 2694 / 2364,
  4184. bottom: 217 / 2908
  4185. }
  4186. },
  4187. side: {
  4188. height: math.unit(5.5, "feet"),
  4189. weight: math.unit(400, "lbs"),
  4190. name: "Side",
  4191. image: {
  4192. source: "./media/characters/kieran/side.svg",
  4193. extra: 875 / 777,
  4194. bottom: 84.6 / 959
  4195. }
  4196. },
  4197. },
  4198. [
  4199. {
  4200. name: "Normal",
  4201. height: math.unit(5.5, "feet"),
  4202. default: true
  4203. },
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4208. {
  4209. side: {
  4210. height: math.unit(2, "meters"),
  4211. weight: math.unit(70, "kg"),
  4212. name: "Side",
  4213. image: {
  4214. source: "./media/characters/sanya/side.svg",
  4215. bottom: 0.02,
  4216. extra: 1.02
  4217. }
  4218. },
  4219. },
  4220. [
  4221. {
  4222. name: "Small",
  4223. height: math.unit(2, "meters")
  4224. },
  4225. {
  4226. name: "Normal",
  4227. height: math.unit(3, "meters")
  4228. },
  4229. {
  4230. name: "Macro",
  4231. height: math.unit(16, "meters"),
  4232. default: true
  4233. },
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4238. {
  4239. side: {
  4240. height: math.unit(2, "meters"),
  4241. weight: math.unit(120, "kg"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/miranda/front.svg",
  4245. extra: 10.6 / 10
  4246. }
  4247. },
  4248. },
  4249. [
  4250. {
  4251. name: "Normal",
  4252. height: math.unit(10, "feet"),
  4253. default: true
  4254. }
  4255. ]
  4256. ))
  4257. characterMakers.push(() => makeCharacter(
  4258. { name: "James", species: ["deer"], tags: ["anthro"] },
  4259. {
  4260. side: {
  4261. height: math.unit(2, "meters"),
  4262. weight: math.unit(100, "kg"),
  4263. name: "Front",
  4264. image: {
  4265. source: "./media/characters/james/front.svg",
  4266. extra: 10 / 8.5
  4267. }
  4268. },
  4269. },
  4270. [
  4271. {
  4272. name: "Normal",
  4273. height: math.unit(8.5, "feet"),
  4274. default: true
  4275. }
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4280. {
  4281. side: {
  4282. height: math.unit(9.5, "feet"),
  4283. weight: math.unit(2500, "lbs"),
  4284. name: "Side",
  4285. image: {
  4286. source: "./media/characters/heather/side.svg"
  4287. }
  4288. },
  4289. },
  4290. [
  4291. {
  4292. name: "Normal",
  4293. height: math.unit(9.5, "feet"),
  4294. default: true
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4300. {
  4301. side: {
  4302. height: math.unit(6.5, "feet"),
  4303. weight: math.unit(400, "lbs"),
  4304. name: "Side",
  4305. image: {
  4306. source: "./media/characters/lukas/side.svg",
  4307. extra: 7.25 / 6.5
  4308. }
  4309. },
  4310. },
  4311. [
  4312. {
  4313. name: "Normal",
  4314. height: math.unit(6.5, "feet"),
  4315. default: true
  4316. }
  4317. ]
  4318. ))
  4319. characterMakers.push(() => makeCharacter(
  4320. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4321. {
  4322. side: {
  4323. height: math.unit(5, "feet"),
  4324. weight: math.unit(3000, "lbs"),
  4325. name: "Side",
  4326. image: {
  4327. source: "./media/characters/louise/side.svg"
  4328. }
  4329. },
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(5, "feet"),
  4335. default: true
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4341. {
  4342. side: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(150, "lbs"),
  4345. name: "Side",
  4346. image: {
  4347. source: "./media/characters/ramona/side.svg"
  4348. }
  4349. },
  4350. },
  4351. [
  4352. {
  4353. name: "Normal",
  4354. height: math.unit(5.3, "meters"),
  4355. default: true
  4356. },
  4357. {
  4358. name: "Macro",
  4359. height: math.unit(20, "stories")
  4360. },
  4361. {
  4362. name: "Macro+",
  4363. height: math.unit(50, "stories")
  4364. },
  4365. ]
  4366. ))
  4367. characterMakers.push(() => makeCharacter(
  4368. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4369. {
  4370. standing: {
  4371. height: math.unit(5.75, "feet"),
  4372. weight: math.unit(160, "lbs"),
  4373. name: "Standing",
  4374. image: {
  4375. source: "./media/characters/deerpuff/standing.svg",
  4376. extra: 682 / 624
  4377. }
  4378. },
  4379. sitting: {
  4380. height: math.unit(5.75 / 1.79, "feet"),
  4381. weight: math.unit(160, "lbs"),
  4382. name: "Sitting",
  4383. image: {
  4384. source: "./media/characters/deerpuff/sitting.svg",
  4385. bottom: 44 / 400,
  4386. extra: 1
  4387. }
  4388. },
  4389. taurLaying: {
  4390. height: math.unit(6, "feet"),
  4391. weight: math.unit(400, "lbs"),
  4392. name: "Taur (Laying)",
  4393. image: {
  4394. source: "./media/characters/deerpuff/taur-laying.svg"
  4395. }
  4396. },
  4397. },
  4398. [
  4399. {
  4400. name: "Puffball",
  4401. height: math.unit(6, "inches")
  4402. },
  4403. {
  4404. name: "Normalpuff",
  4405. height: math.unit(5.75, "feet")
  4406. },
  4407. {
  4408. name: "Macropuff",
  4409. height: math.unit(1500, "feet"),
  4410. default: true
  4411. },
  4412. {
  4413. name: "Megapuff",
  4414. height: math.unit(500, "miles")
  4415. },
  4416. {
  4417. name: "Gigapuff",
  4418. height: math.unit(250000, "miles")
  4419. },
  4420. {
  4421. name: "Omegapuff",
  4422. height: math.unit(1000, "lightyears")
  4423. },
  4424. ]
  4425. ))
  4426. characterMakers.push(() => makeCharacter(
  4427. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4428. {
  4429. stomping: {
  4430. height: math.unit(6, "feet"),
  4431. weight: math.unit(170, "lbs"),
  4432. name: "Stomping",
  4433. image: {
  4434. source: "./media/characters/vivian/stomping.svg"
  4435. }
  4436. },
  4437. sitting: {
  4438. height: math.unit(6 / 1.75, "feet"),
  4439. weight: math.unit(170, "lbs"),
  4440. name: "Sitting",
  4441. image: {
  4442. source: "./media/characters/vivian/sitting.svg",
  4443. bottom: 1 / 6.4,
  4444. extra: 1,
  4445. }
  4446. },
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(7, "feet"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(10, "stories")
  4457. },
  4458. {
  4459. name: "Macro+",
  4460. height: math.unit(30, "stories")
  4461. },
  4462. {
  4463. name: "Megamacro",
  4464. height: math.unit(10, "miles")
  4465. },
  4466. {
  4467. name: "Megamacro+",
  4468. height: math.unit(2750000, "meters")
  4469. },
  4470. ]
  4471. ))
  4472. characterMakers.push(() => makeCharacter(
  4473. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4474. {
  4475. front: {
  4476. height: math.unit(6, "feet"),
  4477. weight: math.unit(160, "lbs"),
  4478. name: "Front",
  4479. image: {
  4480. source: "./media/characters/prince/front.svg",
  4481. extra: 3400 / 3000
  4482. }
  4483. },
  4484. jumping: {
  4485. height: math.unit(6, "feet"),
  4486. weight: math.unit(160, "lbs"),
  4487. name: "Jumping",
  4488. image: {
  4489. source: "./media/characters/prince/jump.svg",
  4490. extra: 2555 / 2134
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "Normal",
  4497. height: math.unit(7.75, "feet"),
  4498. default: true
  4499. },
  4500. {
  4501. name: "Not cute",
  4502. height: math.unit(17, "feet")
  4503. },
  4504. {
  4505. name: "I said NOT",
  4506. height: math.unit(91, "feet")
  4507. },
  4508. {
  4509. name: "Please stop",
  4510. height: math.unit(560, "feet")
  4511. },
  4512. {
  4513. name: "What have you done",
  4514. height: math.unit(2200, "feet")
  4515. },
  4516. {
  4517. name: "Deer God",
  4518. height: math.unit(3.6, "miles")
  4519. },
  4520. ]
  4521. ))
  4522. characterMakers.push(() => makeCharacter(
  4523. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4524. {
  4525. standing: {
  4526. height: math.unit(6, "feet"),
  4527. weight: math.unit(300, "lbs"),
  4528. name: "Standing",
  4529. image: {
  4530. source: "./media/characters/psymon/standing.svg",
  4531. extra: 1888 / 1810,
  4532. bottom: 0.05
  4533. }
  4534. },
  4535. slithering: {
  4536. height: math.unit(6, "feet"),
  4537. weight: math.unit(300, "lbs"),
  4538. name: "Slithering",
  4539. image: {
  4540. source: "./media/characters/psymon/slithering.svg",
  4541. extra: 1330 / 1224
  4542. }
  4543. },
  4544. slitheringAlt: {
  4545. height: math.unit(6, "feet"),
  4546. weight: math.unit(300, "lbs"),
  4547. name: "Slithering (Alt)",
  4548. image: {
  4549. source: "./media/characters/psymon/slithering-alt.svg",
  4550. extra: 1330 / 1224
  4551. }
  4552. },
  4553. },
  4554. [
  4555. {
  4556. name: "Normal",
  4557. height: math.unit(11.25, "feet"),
  4558. default: true
  4559. },
  4560. {
  4561. name: "Large",
  4562. height: math.unit(27, "feet")
  4563. },
  4564. {
  4565. name: "Giant",
  4566. height: math.unit(87, "feet")
  4567. },
  4568. {
  4569. name: "Macro",
  4570. height: math.unit(365, "feet")
  4571. },
  4572. {
  4573. name: "Megamacro",
  4574. height: math.unit(3, "miles")
  4575. },
  4576. {
  4577. name: "World Serpent",
  4578. height: math.unit(8000, "miles")
  4579. },
  4580. ]
  4581. ))
  4582. characterMakers.push(() => makeCharacter(
  4583. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4584. {
  4585. front: {
  4586. height: math.unit(6, "feet"),
  4587. weight: math.unit(180, "lbs"),
  4588. name: "Front",
  4589. image: {
  4590. source: "./media/characters/daimos/front.svg",
  4591. extra: 4160 / 3897,
  4592. bottom: 0.021
  4593. }
  4594. }
  4595. },
  4596. [
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(8, "feet"),
  4600. default: true
  4601. },
  4602. {
  4603. name: "Big Dog",
  4604. height: math.unit(22, "feet")
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(127, "feet")
  4609. },
  4610. {
  4611. name: "Megamacro",
  4612. height: math.unit(3600, "feet")
  4613. },
  4614. ]
  4615. ))
  4616. characterMakers.push(() => makeCharacter(
  4617. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4618. {
  4619. side: {
  4620. height: math.unit(6, "feet"),
  4621. weight: math.unit(180, "lbs"),
  4622. name: "Side",
  4623. image: {
  4624. source: "./media/characters/blake/side.svg",
  4625. extra: 1212 / 1120,
  4626. bottom: 0.05
  4627. }
  4628. },
  4629. crouched: {
  4630. height: math.unit(6 * 0.57, "feet"),
  4631. weight: math.unit(180, "lbs"),
  4632. name: "Crouched",
  4633. image: {
  4634. source: "./media/characters/blake/crouched.svg",
  4635. extra: 840 / 587,
  4636. bottom: 0.04
  4637. }
  4638. },
  4639. bent: {
  4640. height: math.unit(6 * 0.75, "feet"),
  4641. weight: math.unit(180, "lbs"),
  4642. name: "Bent",
  4643. image: {
  4644. source: "./media/characters/blake/bent.svg",
  4645. extra: 592 / 544,
  4646. bottom: 0.035
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "Normal",
  4653. height: math.unit(8 + 1 / 6, "feet"),
  4654. default: true
  4655. },
  4656. {
  4657. name: "Big Backside",
  4658. height: math.unit(37, "feet")
  4659. },
  4660. {
  4661. name: "Subway Shredder",
  4662. height: math.unit(72, "feet")
  4663. },
  4664. {
  4665. name: "City Carver",
  4666. height: math.unit(1675, "feet")
  4667. },
  4668. {
  4669. name: "Tectonic Tweaker",
  4670. height: math.unit(2300, "miles")
  4671. },
  4672. ]
  4673. ))
  4674. characterMakers.push(() => makeCharacter(
  4675. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4676. {
  4677. front: {
  4678. height: math.unit(6, "feet"),
  4679. weight: math.unit(180, "lbs"),
  4680. name: "Front",
  4681. image: {
  4682. source: "./media/characters/guisetto/front.svg",
  4683. extra: 856 / 817,
  4684. bottom: 0.06
  4685. }
  4686. },
  4687. airborne: {
  4688. height: math.unit(6, "feet"),
  4689. weight: math.unit(180, "lbs"),
  4690. name: "Airborne",
  4691. image: {
  4692. source: "./media/characters/guisetto/airborne.svg",
  4693. extra: 584 / 525
  4694. }
  4695. },
  4696. },
  4697. [
  4698. {
  4699. name: "Normal",
  4700. height: math.unit(10 + 11 / 12, "feet"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Large",
  4705. height: math.unit(35, "feet")
  4706. },
  4707. {
  4708. name: "Macro",
  4709. height: math.unit(475, "feet")
  4710. },
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4715. {
  4716. front: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(180, "lbs"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/luxor/front.svg",
  4722. extra: 2940 / 2152
  4723. }
  4724. },
  4725. back: {
  4726. height: math.unit(6, "feet"),
  4727. weight: math.unit(180, "lbs"),
  4728. name: "Back",
  4729. image: {
  4730. source: "./media/characters/luxor/back.svg",
  4731. extra: 1083 / 960
  4732. }
  4733. },
  4734. },
  4735. [
  4736. {
  4737. name: "Normal",
  4738. height: math.unit(5 + 5 / 6, "feet"),
  4739. default: true
  4740. },
  4741. {
  4742. name: "Lamp",
  4743. height: math.unit(50, "feet")
  4744. },
  4745. {
  4746. name: "Lämp",
  4747. height: math.unit(300, "feet")
  4748. },
  4749. {
  4750. name: "The sun is a lamp",
  4751. height: math.unit(250000, "miles")
  4752. },
  4753. ]
  4754. ))
  4755. characterMakers.push(() => makeCharacter(
  4756. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4757. {
  4758. front: {
  4759. height: math.unit(6, "feet"),
  4760. weight: math.unit(50, "lbs"),
  4761. name: "Front",
  4762. image: {
  4763. source: "./media/characters/huoyan/front.svg"
  4764. }
  4765. },
  4766. side: {
  4767. height: math.unit(6, "feet"),
  4768. weight: math.unit(180, "lbs"),
  4769. name: "Side",
  4770. image: {
  4771. source: "./media/characters/huoyan/side.svg"
  4772. }
  4773. },
  4774. },
  4775. [
  4776. {
  4777. name: "Chef",
  4778. height: math.unit(9, "feet")
  4779. },
  4780. {
  4781. name: "Normal",
  4782. height: math.unit(65, "feet"),
  4783. default: true
  4784. },
  4785. {
  4786. name: "Macro",
  4787. height: math.unit(780, "feet")
  4788. },
  4789. {
  4790. name: "Flaming Mountain",
  4791. height: math.unit(4.8, "miles")
  4792. },
  4793. {
  4794. name: "Celestial",
  4795. height: math.unit(765000, "miles")
  4796. },
  4797. ]
  4798. ))
  4799. characterMakers.push(() => makeCharacter(
  4800. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4801. {
  4802. front: {
  4803. height: math.unit(5 + 3 / 4, "feet"),
  4804. weight: math.unit(120, "lbs"),
  4805. name: "Front",
  4806. image: {
  4807. source: "./media/characters/tails/front.svg"
  4808. }
  4809. }
  4810. },
  4811. [
  4812. {
  4813. name: "Normal",
  4814. height: math.unit(5 + 3 / 4, "feet"),
  4815. default: true
  4816. }
  4817. ]
  4818. ))
  4819. characterMakers.push(() => makeCharacter(
  4820. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4821. {
  4822. front: {
  4823. height: math.unit(4, "feet"),
  4824. weight: math.unit(50, "lbs"),
  4825. name: "Front",
  4826. image: {
  4827. source: "./media/characters/rainy/front.svg"
  4828. }
  4829. }
  4830. },
  4831. [
  4832. {
  4833. name: "Macro",
  4834. height: math.unit(800, "feet"),
  4835. default: true
  4836. }
  4837. ]
  4838. ))
  4839. characterMakers.push(() => makeCharacter(
  4840. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4841. {
  4842. front: {
  4843. height: math.unit(6, "feet"),
  4844. weight: math.unit(150, "lbs"),
  4845. name: "Front",
  4846. image: {
  4847. source: "./media/characters/rainier/front.svg"
  4848. }
  4849. }
  4850. },
  4851. [
  4852. {
  4853. name: "Micro",
  4854. height: math.unit(2, "mm"),
  4855. default: true
  4856. }
  4857. ]
  4858. ))
  4859. characterMakers.push(() => makeCharacter(
  4860. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4861. {
  4862. front: {
  4863. height: math.unit(6, "feet"),
  4864. weight: math.unit(180, "lbs"),
  4865. name: "Front",
  4866. image: {
  4867. source: "./media/characters/andy/front.svg"
  4868. }
  4869. }
  4870. },
  4871. [
  4872. {
  4873. name: "Normal",
  4874. height: math.unit(8, "feet"),
  4875. default: true
  4876. },
  4877. {
  4878. name: "Macro",
  4879. height: math.unit(1000, "feet")
  4880. },
  4881. {
  4882. name: "Megamacro",
  4883. height: math.unit(5, "miles")
  4884. },
  4885. {
  4886. name: "Gigamacro",
  4887. height: math.unit(5000, "miles")
  4888. },
  4889. ]
  4890. ))
  4891. characterMakers.push(() => makeCharacter(
  4892. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4893. {
  4894. front: {
  4895. height: math.unit(6, "feet"),
  4896. weight: math.unit(210, "lbs"),
  4897. name: "Front",
  4898. image: {
  4899. source: "./media/characters/cimmaron/front-sfw.svg",
  4900. extra: 701 / 676,
  4901. bottom: 0.046
  4902. }
  4903. },
  4904. back: {
  4905. height: math.unit(6, "feet"),
  4906. weight: math.unit(210, "lbs"),
  4907. name: "Back",
  4908. image: {
  4909. source: "./media/characters/cimmaron/back-sfw.svg",
  4910. extra: 701 / 676,
  4911. bottom: 0.046
  4912. }
  4913. },
  4914. frontNsfw: {
  4915. height: math.unit(6, "feet"),
  4916. weight: math.unit(210, "lbs"),
  4917. name: "Front (NSFW)",
  4918. image: {
  4919. source: "./media/characters/cimmaron/front-nsfw.svg",
  4920. extra: 701 / 676,
  4921. bottom: 0.046
  4922. }
  4923. },
  4924. backNsfw: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(210, "lbs"),
  4927. name: "Back (NSFW)",
  4928. image: {
  4929. source: "./media/characters/cimmaron/back-nsfw.svg",
  4930. extra: 701 / 676,
  4931. bottom: 0.046
  4932. }
  4933. },
  4934. dick: {
  4935. height: math.unit(1.714, "feet"),
  4936. name: "Dick",
  4937. image: {
  4938. source: "./media/characters/cimmaron/dick.svg"
  4939. }
  4940. },
  4941. },
  4942. [
  4943. {
  4944. name: "Normal",
  4945. height: math.unit(6, "feet"),
  4946. default: true
  4947. },
  4948. {
  4949. name: "Macro Mayor",
  4950. height: math.unit(350, "meters")
  4951. },
  4952. ]
  4953. ))
  4954. characterMakers.push(() => makeCharacter(
  4955. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4956. {
  4957. front: {
  4958. height: math.unit(6, "feet"),
  4959. weight: math.unit(200, "lbs"),
  4960. name: "Front",
  4961. image: {
  4962. source: "./media/characters/akari/front.svg",
  4963. extra: 962 / 901,
  4964. bottom: 0.04
  4965. }
  4966. }
  4967. },
  4968. [
  4969. {
  4970. name: "Micro",
  4971. height: math.unit(5, "inches"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(7, "feet")
  4977. },
  4978. ]
  4979. ))
  4980. characterMakers.push(() => makeCharacter(
  4981. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4982. {
  4983. front: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(140, "lbs"),
  4986. name: "Front",
  4987. image: {
  4988. source: "./media/characters/cynosura/front.svg",
  4989. extra: 896 / 847
  4990. }
  4991. },
  4992. back: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(140, "lbs"),
  4995. name: "Back",
  4996. image: {
  4997. source: "./media/characters/cynosura/back.svg",
  4998. extra: 1365 / 1250
  4999. }
  5000. },
  5001. },
  5002. [
  5003. {
  5004. name: "Micro",
  5005. height: math.unit(4, "inches")
  5006. },
  5007. {
  5008. name: "Normal",
  5009. height: math.unit(5.75, "feet"),
  5010. default: true
  5011. },
  5012. {
  5013. name: "Tall",
  5014. height: math.unit(10, "feet")
  5015. },
  5016. {
  5017. name: "Big",
  5018. height: math.unit(20, "feet")
  5019. },
  5020. {
  5021. name: "Macro",
  5022. height: math.unit(50, "feet")
  5023. },
  5024. ]
  5025. ))
  5026. characterMakers.push(() => makeCharacter(
  5027. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5028. {
  5029. front: {
  5030. height: math.unit(6, "feet"),
  5031. weight: math.unit(170, "lbs"),
  5032. name: "Front",
  5033. image: {
  5034. source: "./media/characters/gin/front.svg",
  5035. extra: 1.053,
  5036. bottom: 0.025
  5037. }
  5038. },
  5039. foot: {
  5040. height: math.unit(6 / 4.25, "feet"),
  5041. name: "Foot",
  5042. image: {
  5043. source: "./media/characters/gin/foot.svg"
  5044. }
  5045. },
  5046. sole: {
  5047. height: math.unit(6 / 4.40, "feet"),
  5048. name: "Sole",
  5049. image: {
  5050. source: "./media/characters/gin/sole.svg"
  5051. }
  5052. },
  5053. },
  5054. [
  5055. {
  5056. name: "Normal",
  5057. height: math.unit(13 + 2 / 12, "feet")
  5058. },
  5059. {
  5060. name: "Macro",
  5061. height: math.unit(1500, "feet")
  5062. },
  5063. {
  5064. name: "Megamacro",
  5065. height: math.unit(200, "miles"),
  5066. default: true
  5067. },
  5068. {
  5069. name: "Gigamacro",
  5070. height: math.unit(500, "megameters")
  5071. },
  5072. {
  5073. name: "Teramacro",
  5074. height: math.unit(15, "lightyears")
  5075. }
  5076. ]
  5077. ))
  5078. characterMakers.push(() => makeCharacter(
  5079. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5080. {
  5081. front: {
  5082. height: math.unit(6 + 1 / 6, "feet"),
  5083. weight: math.unit(178, "lbs"),
  5084. name: "Front",
  5085. image: {
  5086. source: "./media/characters/guy/front.svg"
  5087. }
  5088. }
  5089. },
  5090. [
  5091. {
  5092. name: "Normal",
  5093. height: math.unit(6 + 1 / 6, "feet"),
  5094. default: true
  5095. },
  5096. {
  5097. name: "Large",
  5098. height: math.unit(25 + 7 / 12, "feet")
  5099. },
  5100. {
  5101. name: "Macro",
  5102. height: math.unit(60 + 9 / 12, "feet")
  5103. },
  5104. {
  5105. name: "Macro+",
  5106. height: math.unit(246, "feet")
  5107. },
  5108. {
  5109. name: "Macro++",
  5110. height: math.unit(878, "feet")
  5111. }
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5116. {
  5117. front: {
  5118. height: math.unit(9, "feet"),
  5119. weight: math.unit(800, "lbs"),
  5120. name: "Front",
  5121. image: {
  5122. source: "./media/characters/tiberius/front.svg",
  5123. extra: 2295 / 2071
  5124. }
  5125. },
  5126. back: {
  5127. height: math.unit(9, "feet"),
  5128. weight: math.unit(800, "lbs"),
  5129. name: "Back",
  5130. image: {
  5131. source: "./media/characters/tiberius/back.svg",
  5132. extra: 2373 / 2160
  5133. }
  5134. },
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(9, "feet"),
  5140. default: true
  5141. }
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5146. {
  5147. front: {
  5148. height: math.unit(6, "feet"),
  5149. weight: math.unit(600, "lbs"),
  5150. name: "Front",
  5151. image: {
  5152. source: "./media/characters/surgo/front.svg",
  5153. extra: 3591 / 2227
  5154. }
  5155. },
  5156. back: {
  5157. height: math.unit(6, "feet"),
  5158. weight: math.unit(600, "lbs"),
  5159. name: "Back",
  5160. image: {
  5161. source: "./media/characters/surgo/back.svg",
  5162. extra: 3557 / 2228
  5163. }
  5164. },
  5165. laying: {
  5166. height: math.unit(6 * 0.85, "feet"),
  5167. weight: math.unit(600, "lbs"),
  5168. name: "Laying",
  5169. image: {
  5170. source: "./media/characters/surgo/laying.svg"
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Normal",
  5177. height: math.unit(6, "feet"),
  5178. default: true
  5179. }
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5184. {
  5185. side: {
  5186. height: math.unit(6, "feet"),
  5187. weight: math.unit(150, "lbs"),
  5188. name: "Side",
  5189. image: {
  5190. source: "./media/characters/cibus/side.svg",
  5191. extra: 800 / 400
  5192. }
  5193. },
  5194. },
  5195. [
  5196. {
  5197. name: "Normal",
  5198. height: math.unit(6, "feet"),
  5199. default: true
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5205. {
  5206. front: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(240, "lbs"),
  5209. name: "Front",
  5210. image: {
  5211. source: "./media/characters/nibbles/front.svg"
  5212. }
  5213. },
  5214. side: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(240, "lbs"),
  5217. name: "Side",
  5218. image: {
  5219. source: "./media/characters/nibbles/side.svg"
  5220. }
  5221. },
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(9, "feet"),
  5227. default: true
  5228. }
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5233. {
  5234. side: {
  5235. height: math.unit(5 + 1 / 6, "feet"),
  5236. weight: math.unit(130, "lbs"),
  5237. name: "Side",
  5238. image: {
  5239. source: "./media/characters/rikky/side.svg"
  5240. }
  5241. },
  5242. },
  5243. [
  5244. {
  5245. name: "Normal",
  5246. height: math.unit(5 + 1 / 6, "feet")
  5247. },
  5248. {
  5249. name: "Macro",
  5250. height: math.unit(152, "feet"),
  5251. default: true
  5252. },
  5253. {
  5254. name: "Megamacro",
  5255. height: math.unit(7, "miles")
  5256. }
  5257. ]
  5258. ))
  5259. characterMakers.push(() => makeCharacter(
  5260. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5261. {
  5262. side: {
  5263. height: math.unit(370, "cm"),
  5264. weight: math.unit(350, "lbs"),
  5265. name: "Side",
  5266. image: {
  5267. source: "./media/characters/malfressa/side.svg"
  5268. }
  5269. },
  5270. walking: {
  5271. height: math.unit(370, "cm"),
  5272. weight: math.unit(350, "lbs"),
  5273. name: "Walking",
  5274. image: {
  5275. source: "./media/characters/malfressa/walking.svg"
  5276. }
  5277. },
  5278. feral: {
  5279. height: math.unit(2500, "cm"),
  5280. weight: math.unit(100000, "lbs"),
  5281. name: "Feral",
  5282. image: {
  5283. source: "./media/characters/malfressa/feral.svg",
  5284. extra: 2108 / 837,
  5285. bottom: 0.02
  5286. }
  5287. },
  5288. },
  5289. [
  5290. {
  5291. name: "Normal",
  5292. height: math.unit(370, "cm")
  5293. },
  5294. {
  5295. name: "Macro",
  5296. height: math.unit(300, "meters"),
  5297. default: true
  5298. }
  5299. ]
  5300. ))
  5301. characterMakers.push(() => makeCharacter(
  5302. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5303. {
  5304. front: {
  5305. height: math.unit(6, "feet"),
  5306. weight: math.unit(60, "kg"),
  5307. name: "Front",
  5308. image: {
  5309. source: "./media/characters/jaro/front.svg"
  5310. }
  5311. },
  5312. back: {
  5313. height: math.unit(6, "feet"),
  5314. weight: math.unit(60, "kg"),
  5315. name: "Back",
  5316. image: {
  5317. source: "./media/characters/jaro/back.svg"
  5318. }
  5319. },
  5320. },
  5321. [
  5322. {
  5323. name: "Micro",
  5324. height: math.unit(7, "inches")
  5325. },
  5326. {
  5327. name: "Normal",
  5328. height: math.unit(5.5, "feet"),
  5329. default: true
  5330. },
  5331. {
  5332. name: "Minimacro",
  5333. height: math.unit(20, "feet")
  5334. },
  5335. {
  5336. name: "Macro",
  5337. height: math.unit(200, "meters")
  5338. }
  5339. ]
  5340. ))
  5341. characterMakers.push(() => makeCharacter(
  5342. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5343. {
  5344. front: {
  5345. height: math.unit(6, "feet"),
  5346. weight: math.unit(195, "lb"),
  5347. name: "Front",
  5348. image: {
  5349. source: "./media/characters/rogue/front.svg"
  5350. }
  5351. },
  5352. },
  5353. [
  5354. {
  5355. name: "Macro",
  5356. height: math.unit(90, "feet"),
  5357. default: true
  5358. },
  5359. ]
  5360. ))
  5361. characterMakers.push(() => makeCharacter(
  5362. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5363. {
  5364. front: {
  5365. height: math.unit(5 + 8 / 12, "feet"),
  5366. weight: math.unit(140, "lb"),
  5367. name: "Front",
  5368. image: {
  5369. source: "./media/characters/piper/front.svg",
  5370. extra: 3928 / 3681
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Micro",
  5377. height: math.unit(2, "inches")
  5378. },
  5379. {
  5380. name: "Normal",
  5381. height: math.unit(5 + 8 / 12, "feet")
  5382. },
  5383. {
  5384. name: "Macro",
  5385. height: math.unit(250, "feet"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Megamacro",
  5390. height: math.unit(7, "miles")
  5391. },
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5396. {
  5397. front: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(220, "lb"),
  5400. name: "Front",
  5401. image: {
  5402. source: "./media/characters/gemini/front.svg"
  5403. }
  5404. },
  5405. back: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(220, "lb"),
  5408. name: "Back",
  5409. image: {
  5410. source: "./media/characters/gemini/back.svg"
  5411. }
  5412. },
  5413. kneeling: {
  5414. height: math.unit(6 / 1.5, "feet"),
  5415. weight: math.unit(220, "lb"),
  5416. name: "Kneeling",
  5417. image: {
  5418. source: "./media/characters/gemini/kneeling.svg",
  5419. bottom: 0.02
  5420. }
  5421. },
  5422. },
  5423. [
  5424. {
  5425. name: "Macro",
  5426. height: math.unit(300, "meters"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Megamacro",
  5431. height: math.unit(6900, "meters")
  5432. },
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5437. {
  5438. anthro: {
  5439. height: math.unit(2.35, "meters"),
  5440. weight: math.unit(73, "kg"),
  5441. name: "Anthro",
  5442. image: {
  5443. source: "./media/characters/alicia/anthro.svg",
  5444. extra: 2571 / 2385,
  5445. bottom: 75 / 2648
  5446. }
  5447. },
  5448. paw: {
  5449. height: math.unit(1.32, "feet"),
  5450. name: "Paw",
  5451. image: {
  5452. source: "./media/characters/alicia/paw.svg"
  5453. }
  5454. },
  5455. feral: {
  5456. height: math.unit(1.69, "meters"),
  5457. weight: math.unit(73, "kg"),
  5458. name: "Feral",
  5459. image: {
  5460. source: "./media/characters/alicia/feral.svg",
  5461. extra: 2123 / 1715,
  5462. bottom: 222 / 2349
  5463. }
  5464. },
  5465. },
  5466. [
  5467. {
  5468. name: "Normal",
  5469. height: math.unit(2.35, "meters")
  5470. },
  5471. {
  5472. name: "Macro",
  5473. height: math.unit(60, "meters"),
  5474. default: true
  5475. },
  5476. {
  5477. name: "Megamacro",
  5478. height: math.unit(10000, "kilometers")
  5479. },
  5480. ]
  5481. ))
  5482. characterMakers.push(() => makeCharacter(
  5483. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5484. {
  5485. front: {
  5486. height: math.unit(7, "feet"),
  5487. weight: math.unit(250, "lbs"),
  5488. name: "Front",
  5489. image: {
  5490. source: "./media/characters/archy/front.svg"
  5491. }
  5492. }
  5493. },
  5494. [
  5495. {
  5496. name: "Micro",
  5497. height: math.unit(1, "inch")
  5498. },
  5499. {
  5500. name: "Shorty",
  5501. height: math.unit(5, "feet")
  5502. },
  5503. {
  5504. name: "Normal",
  5505. height: math.unit(7, "feet")
  5506. },
  5507. {
  5508. name: "Macro",
  5509. height: math.unit(600, "meters"),
  5510. default: true
  5511. },
  5512. {
  5513. name: "Megamacro",
  5514. height: math.unit(1, "mile")
  5515. },
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5520. {
  5521. front: {
  5522. height: math.unit(1.65, "meters"),
  5523. weight: math.unit(74, "kg"),
  5524. name: "Front",
  5525. image: {
  5526. source: "./media/characters/berri/front.svg",
  5527. extra: 857 / 837,
  5528. bottom: 18 / 877
  5529. }
  5530. },
  5531. bum: {
  5532. height: math.unit(1.46, "feet"),
  5533. name: "Bum",
  5534. image: {
  5535. source: "./media/characters/berri/bum.svg"
  5536. }
  5537. },
  5538. mouth: {
  5539. height: math.unit(0.44, "feet"),
  5540. name: "Mouth",
  5541. image: {
  5542. source: "./media/characters/berri/mouth.svg"
  5543. }
  5544. },
  5545. paw: {
  5546. height: math.unit(0.826, "feet"),
  5547. name: "Paw",
  5548. image: {
  5549. source: "./media/characters/berri/paw.svg"
  5550. }
  5551. },
  5552. },
  5553. [
  5554. {
  5555. name: "Normal",
  5556. height: math.unit(1.65, "meters")
  5557. },
  5558. {
  5559. name: "Macro",
  5560. height: math.unit(60, "m"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Megamacro",
  5565. height: math.unit(9.213, "km")
  5566. },
  5567. {
  5568. name: "Planet Eater",
  5569. height: math.unit(489, "megameters")
  5570. },
  5571. {
  5572. name: "Teramacro",
  5573. height: math.unit(2471635000000, "meters")
  5574. },
  5575. {
  5576. name: "Examacro",
  5577. height: math.unit(8.0624e+26, "meters")
  5578. }
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5583. {
  5584. front: {
  5585. height: math.unit(1.72, "meters"),
  5586. weight: math.unit(68, "kg"),
  5587. name: "Front",
  5588. image: {
  5589. source: "./media/characters/lexi/front.svg"
  5590. }
  5591. }
  5592. },
  5593. [
  5594. {
  5595. name: "Very Smol",
  5596. height: math.unit(10, "mm")
  5597. },
  5598. {
  5599. name: "Micro",
  5600. height: math.unit(6.8, "cm"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(1.72, "m")
  5606. }
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(1.69, "meters"),
  5614. weight: math.unit(68, "kg"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/martin/front.svg",
  5618. extra: 596 / 581
  5619. }
  5620. }
  5621. },
  5622. [
  5623. {
  5624. name: "Micro",
  5625. height: math.unit(6.85, "cm"),
  5626. default: true
  5627. },
  5628. {
  5629. name: "Normal",
  5630. height: math.unit(1.69, "m")
  5631. }
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5636. {
  5637. front: {
  5638. height: math.unit(1.69, "meters"),
  5639. weight: math.unit(68, "kg"),
  5640. name: "Front",
  5641. image: {
  5642. source: "./media/characters/juno/front.svg"
  5643. }
  5644. }
  5645. },
  5646. [
  5647. {
  5648. name: "Micro",
  5649. height: math.unit(7, "cm")
  5650. },
  5651. {
  5652. name: "Normal",
  5653. height: math.unit(1.89, "m")
  5654. },
  5655. {
  5656. name: "Macro",
  5657. height: math.unit(353, "meters"),
  5658. default: true
  5659. }
  5660. ]
  5661. ))
  5662. characterMakers.push(() => makeCharacter(
  5663. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5664. {
  5665. front: {
  5666. height: math.unit(1.93, "meters"),
  5667. weight: math.unit(83, "kg"),
  5668. name: "Front",
  5669. image: {
  5670. source: "./media/characters/samantha/front.svg"
  5671. }
  5672. },
  5673. frontClothed: {
  5674. height: math.unit(1.93, "meters"),
  5675. weight: math.unit(83, "kg"),
  5676. name: "Front (Clothed)",
  5677. image: {
  5678. source: "./media/characters/samantha/front-clothed.svg"
  5679. }
  5680. },
  5681. back: {
  5682. height: math.unit(1.93, "meters"),
  5683. weight: math.unit(83, "kg"),
  5684. name: "Back",
  5685. image: {
  5686. source: "./media/characters/samantha/back.svg"
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(1.93, "m")
  5694. },
  5695. {
  5696. name: "Macro",
  5697. height: math.unit(74, "meters"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Macro+",
  5702. height: math.unit(223, "meters"),
  5703. },
  5704. {
  5705. name: "Megamacro",
  5706. height: math.unit(8381, "meters"),
  5707. },
  5708. {
  5709. name: "Megamacro+",
  5710. height: math.unit(12000, "kilometers")
  5711. },
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(1.92, "meters"),
  5719. weight: math.unit(80, "kg"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/dr-clay/front.svg"
  5723. }
  5724. },
  5725. frontClothed: {
  5726. height: math.unit(1.92, "meters"),
  5727. weight: math.unit(80, "kg"),
  5728. name: "Front (Clothed)",
  5729. image: {
  5730. source: "./media/characters/dr-clay/front-clothed.svg"
  5731. }
  5732. }
  5733. },
  5734. [
  5735. {
  5736. name: "Normal",
  5737. height: math.unit(1.92, "m")
  5738. },
  5739. {
  5740. name: "Macro",
  5741. height: math.unit(214, "meters"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Macro+",
  5746. height: math.unit(12.237, "meters"),
  5747. },
  5748. {
  5749. name: "Megamacro",
  5750. height: math.unit(557, "megameters"),
  5751. },
  5752. {
  5753. name: "Unimaginable",
  5754. height: math.unit(120e9, "lightyears")
  5755. },
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5760. {
  5761. front: {
  5762. height: math.unit(2, "meters"),
  5763. weight: math.unit(80, "kg"),
  5764. name: "Front",
  5765. image: {
  5766. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5767. }
  5768. }
  5769. },
  5770. [
  5771. {
  5772. name: "Teramacro",
  5773. height: math.unit(500000, "lightyears"),
  5774. default: true
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(2, "meters"),
  5783. weight: math.unit(150, "kg"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/vemus/front.svg",
  5787. extra: 2384 / 2084,
  5788. bottom: 0.0123
  5789. }
  5790. }
  5791. },
  5792. [
  5793. {
  5794. name: "Normal",
  5795. height: math.unit(3.75, "meters"),
  5796. default: true
  5797. },
  5798. {
  5799. name: "Big",
  5800. height: math.unit(8, "meters")
  5801. },
  5802. {
  5803. name: "Macro",
  5804. height: math.unit(100, "meters")
  5805. },
  5806. {
  5807. name: "Macro+",
  5808. height: math.unit(1500, "meters")
  5809. },
  5810. {
  5811. name: "Stellar",
  5812. height: math.unit(14e8, "meters")
  5813. },
  5814. ]
  5815. ))
  5816. characterMakers.push(() => makeCharacter(
  5817. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5818. {
  5819. front: {
  5820. height: math.unit(2, "meters"),
  5821. weight: math.unit(70, "kg"),
  5822. name: "Front",
  5823. image: {
  5824. source: "./media/characters/beherit/front.svg",
  5825. extra: 1408 / 1242
  5826. }
  5827. }
  5828. },
  5829. [
  5830. {
  5831. name: "Normal",
  5832. height: math.unit(6, "feet")
  5833. },
  5834. {
  5835. name: "Lorg",
  5836. height: math.unit(25, "feet"),
  5837. default: true
  5838. },
  5839. {
  5840. name: "Lorger",
  5841. height: math.unit(75, "feet")
  5842. },
  5843. {
  5844. name: "Macro",
  5845. height: math.unit(200, "meters")
  5846. },
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(2, "meters"),
  5854. weight: math.unit(150, "kg"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/everett/front.svg",
  5858. extra: 2038 / 1737,
  5859. bottom: 0.03
  5860. }
  5861. },
  5862. paw: {
  5863. height: math.unit(2 / 3.6, "meters"),
  5864. name: "Paw",
  5865. image: {
  5866. source: "./media/characters/everett/paw.svg"
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Normal",
  5873. height: math.unit(15, "feet"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Lorg",
  5878. height: math.unit(70, "feet"),
  5879. default: true
  5880. },
  5881. {
  5882. name: "Lorger",
  5883. height: math.unit(250, "feet")
  5884. },
  5885. {
  5886. name: "Macro",
  5887. height: math.unit(500, "meters")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(2, "meters"),
  5896. weight: math.unit(86, "kg"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/rose-lion/front.svg"
  5900. }
  5901. },
  5902. bent: {
  5903. height: math.unit(2 / 1.4288, "meters"),
  5904. weight: math.unit(86, "kg"),
  5905. name: "Bent",
  5906. image: {
  5907. source: "./media/characters/rose-lion/bent.svg"
  5908. }
  5909. }
  5910. },
  5911. [
  5912. {
  5913. name: "Mini-Micro",
  5914. height: math.unit(1, "cm")
  5915. },
  5916. {
  5917. name: "Micro",
  5918. height: math.unit(3.5, "inches"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Normal",
  5923. height: math.unit(6 + 1 / 6, "feet")
  5924. },
  5925. {
  5926. name: "Mini-Macro",
  5927. height: math.unit(9 + 10 / 12, "feet")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(2, "meters"),
  5936. weight: math.unit(350, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/regal/front.svg"
  5940. }
  5941. },
  5942. back: {
  5943. height: math.unit(2, "meters"),
  5944. weight: math.unit(350, "lbs"),
  5945. name: "Back",
  5946. image: {
  5947. source: "./media/characters/regal/back.svg"
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Macro",
  5954. height: math.unit(350, "feet"),
  5955. default: true
  5956. }
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5961. {
  5962. front: {
  5963. height: math.unit(4 + 11 / 12, "feet"),
  5964. weight: math.unit(100, "lbs"),
  5965. name: "Front",
  5966. image: {
  5967. source: "./media/characters/opal/front.svg"
  5968. }
  5969. },
  5970. frontAlt: {
  5971. height: math.unit(4 + 11 / 12, "feet"),
  5972. weight: math.unit(100, "lbs"),
  5973. name: "Front (Alt)",
  5974. image: {
  5975. source: "./media/characters/opal/front-alt.svg"
  5976. }
  5977. },
  5978. },
  5979. [
  5980. {
  5981. name: "Small",
  5982. height: math.unit(4 + 11 / 12, "feet")
  5983. },
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(20, "feet"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(120, "feet")
  5992. },
  5993. {
  5994. name: "Megamacro",
  5995. height: math.unit(80, "miles")
  5996. },
  5997. {
  5998. name: "True Size",
  5999. height: math.unit(100000, "lightyears")
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(6, "feet"),
  6008. weight: math.unit(200, "lbs"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/vector-wuff/front.svg"
  6012. }
  6013. }
  6014. },
  6015. [
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(2.8, "meters")
  6019. },
  6020. {
  6021. name: "Macro",
  6022. height: math.unit(450, "meters"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Megamacro",
  6027. height: math.unit(15, "kilometers")
  6028. }
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6033. {
  6034. front: {
  6035. height: math.unit(6, "feet"),
  6036. weight: math.unit(256, "lbs"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/dannik/front.svg"
  6040. }
  6041. }
  6042. },
  6043. [
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(69.57, "meters"),
  6047. default: true
  6048. },
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6053. {
  6054. front: {
  6055. height: math.unit(6, "feet"),
  6056. weight: math.unit(120, "lbs"),
  6057. name: "Front",
  6058. image: {
  6059. source: "./media/characters/azura-saharah/front.svg"
  6060. }
  6061. },
  6062. back: {
  6063. height: math.unit(6, "feet"),
  6064. weight: math.unit(120, "lbs"),
  6065. name: "Back",
  6066. image: {
  6067. source: "./media/characters/azura-saharah/back.svg"
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Macro",
  6074. height: math.unit(100, "feet"),
  6075. default: true
  6076. },
  6077. ]
  6078. ))
  6079. characterMakers.push(() => makeCharacter(
  6080. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6081. {
  6082. side: {
  6083. height: math.unit(5 + 4 / 12, "feet"),
  6084. weight: math.unit(163, "lbs"),
  6085. name: "Side",
  6086. image: {
  6087. source: "./media/characters/kennedy/side.svg"
  6088. }
  6089. }
  6090. },
  6091. [
  6092. {
  6093. name: "Standard Doggo",
  6094. height: math.unit(5 + 4 / 12, "feet")
  6095. },
  6096. {
  6097. name: "Big Doggo",
  6098. height: math.unit(25 + 3 / 12, "feet"),
  6099. default: true
  6100. },
  6101. ]
  6102. ))
  6103. characterMakers.push(() => makeCharacter(
  6104. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6105. {
  6106. front: {
  6107. height: math.unit(6, "feet"),
  6108. weight: math.unit(90, "lbs"),
  6109. name: "Front",
  6110. image: {
  6111. source: "./media/characters/odi-lunar/front.svg"
  6112. }
  6113. }
  6114. },
  6115. [
  6116. {
  6117. name: "Micro",
  6118. height: math.unit(3, "inches"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(5.5, "feet")
  6124. }
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6129. {
  6130. back: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(220, "lbs"),
  6133. name: "Back",
  6134. image: {
  6135. source: "./media/characters/mandake/back.svg"
  6136. }
  6137. }
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(7, "feet"),
  6143. default: true
  6144. },
  6145. {
  6146. name: "Macro",
  6147. height: math.unit(78, "feet")
  6148. },
  6149. {
  6150. name: "Macro+",
  6151. height: math.unit(300, "meters")
  6152. },
  6153. {
  6154. name: "Macro++",
  6155. height: math.unit(2400, "feet")
  6156. },
  6157. {
  6158. name: "Megamacro",
  6159. height: math.unit(5167, "meters")
  6160. },
  6161. {
  6162. name: "Gigamacro",
  6163. height: math.unit(41769, "miles")
  6164. },
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6169. {
  6170. front: {
  6171. height: math.unit(6, "feet"),
  6172. weight: math.unit(120, "lbs"),
  6173. name: "Front",
  6174. image: {
  6175. source: "./media/characters/yozey/front.svg"
  6176. }
  6177. },
  6178. frontAlt: {
  6179. height: math.unit(6, "feet"),
  6180. weight: math.unit(120, "lbs"),
  6181. name: "Front (Alt)",
  6182. image: {
  6183. source: "./media/characters/yozey/front-alt.svg"
  6184. }
  6185. },
  6186. side: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(120, "lbs"),
  6189. name: "Side",
  6190. image: {
  6191. source: "./media/characters/yozey/side.svg"
  6192. }
  6193. },
  6194. },
  6195. [
  6196. {
  6197. name: "Micro",
  6198. height: math.unit(3, "inches"),
  6199. default: true
  6200. },
  6201. {
  6202. name: "Normal",
  6203. height: math.unit(6, "feet")
  6204. }
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6209. {
  6210. front: {
  6211. height: math.unit(6, "feet"),
  6212. weight: math.unit(103, "lbs"),
  6213. name: "Front",
  6214. image: {
  6215. source: "./media/characters/valeska-voss/front.svg"
  6216. }
  6217. }
  6218. },
  6219. [
  6220. {
  6221. name: "Mini-Sized Sub",
  6222. height: math.unit(3.1, "inches")
  6223. },
  6224. {
  6225. name: "Mid-Sized Sub",
  6226. height: math.unit(6.2, "inches")
  6227. },
  6228. {
  6229. name: "Full-Sized Sub",
  6230. height: math.unit(9.3, "inches")
  6231. },
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(5 + 2 / 12, "foot"),
  6235. default: true
  6236. },
  6237. ]
  6238. ))
  6239. characterMakers.push(() => makeCharacter(
  6240. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6241. {
  6242. front: {
  6243. height: math.unit(6, "feet"),
  6244. weight: math.unit(160, "lbs"),
  6245. name: "Front",
  6246. image: {
  6247. source: "./media/characters/gene-zeta/front.svg",
  6248. bottom: 0.03,
  6249. extra: 1
  6250. }
  6251. }
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(6.25, "foot"),
  6257. default: true
  6258. },
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6263. {
  6264. front: {
  6265. height: math.unit(6, "feet"),
  6266. weight: math.unit(350, "lbs"),
  6267. name: "Front",
  6268. image: {
  6269. source: "./media/characters/razinox/front.svg",
  6270. extra: 1686 / 1548,
  6271. bottom: 28.2 / 1868
  6272. }
  6273. },
  6274. back: {
  6275. height: math.unit(6, "feet"),
  6276. weight: math.unit(350, "lbs"),
  6277. name: "Back",
  6278. image: {
  6279. source: "./media/characters/razinox/back.svg",
  6280. extra: 1660 / 1590,
  6281. bottom: 15 / 1665
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Normal",
  6288. height: math.unit(10 + 8 / 12, "foot")
  6289. },
  6290. {
  6291. name: "Minimacro",
  6292. height: math.unit(15, "foot")
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(60, "foot"),
  6297. default: true
  6298. },
  6299. {
  6300. name: "Megamacro",
  6301. height: math.unit(5, "miles")
  6302. },
  6303. {
  6304. name: "Gigamacro",
  6305. height: math.unit(6000, "miles")
  6306. },
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(6, "feet"),
  6314. weight: math.unit(150, "lbs"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/cobalt/front.svg"
  6318. }
  6319. }
  6320. },
  6321. [
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(8 + 1 / 12, "foot")
  6325. },
  6326. {
  6327. name: "Macro",
  6328. height: math.unit(111, "foot"),
  6329. default: true
  6330. },
  6331. {
  6332. name: "Supracosmic",
  6333. height: math.unit(1e42, "feet")
  6334. },
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(6, "feet"),
  6342. weight: math.unit(140, "lbs"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/amanda/front.svg"
  6346. }
  6347. }
  6348. },
  6349. [
  6350. {
  6351. name: "Micro",
  6352. height: math.unit(5, "inches"),
  6353. default: true
  6354. },
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(5.59, "feet"),
  6362. weight: math.unit(250, "lbs"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/teal/front.svg"
  6366. }
  6367. },
  6368. frontAlt: {
  6369. height: math.unit(6, "feet"),
  6370. weight: math.unit(250, "lbs"),
  6371. name: "Front (Alt)",
  6372. image: {
  6373. source: "./media/characters/teal/front-alt.svg",
  6374. bottom: 0.04,
  6375. extra: 1
  6376. }
  6377. },
  6378. },
  6379. [
  6380. {
  6381. name: "Normal",
  6382. height: math.unit(12, "feet"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Macro",
  6387. height: math.unit(300, "feet")
  6388. },
  6389. ]
  6390. ))
  6391. characterMakers.push(() => makeCharacter(
  6392. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6393. {
  6394. frontCat: {
  6395. height: math.unit(6, "feet"),
  6396. weight: math.unit(180, "lbs"),
  6397. name: "Front (Cat)",
  6398. image: {
  6399. source: "./media/characters/ravin-amulet/front-cat.svg"
  6400. }
  6401. },
  6402. frontCatAlt: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(180, "lbs"),
  6405. name: "Front (Alt, Cat)",
  6406. image: {
  6407. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6408. }
  6409. },
  6410. frontWerewolf: {
  6411. height: math.unit(6 * 1.2, "feet"),
  6412. weight: math.unit(225, "lbs"),
  6413. name: "Front (Werewolf)",
  6414. image: {
  6415. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6416. }
  6417. },
  6418. backWerewolf: {
  6419. height: math.unit(6 * 1.2, "feet"),
  6420. weight: math.unit(225, "lbs"),
  6421. name: "Back (Werewolf)",
  6422. image: {
  6423. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6424. }
  6425. },
  6426. },
  6427. [
  6428. {
  6429. name: "Nano",
  6430. height: math.unit(1, "micrometer")
  6431. },
  6432. {
  6433. name: "Micro",
  6434. height: math.unit(1, "inch")
  6435. },
  6436. {
  6437. name: "Normal",
  6438. height: math.unit(6, "feet"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Macro",
  6443. height: math.unit(60, "feet")
  6444. }
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(6, "feet"),
  6452. weight: math.unit(165, "lbs"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/fluoresce/front.svg"
  6456. }
  6457. }
  6458. },
  6459. [
  6460. {
  6461. name: "Micro",
  6462. height: math.unit(6, "cm")
  6463. },
  6464. {
  6465. name: "Normal",
  6466. height: math.unit(5 + 7 / 12, "feet"),
  6467. default: true
  6468. },
  6469. {
  6470. name: "Macro",
  6471. height: math.unit(56, "feet")
  6472. },
  6473. {
  6474. name: "Megamacro",
  6475. height: math.unit(1.9, "miles")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(9 + 6 / 12, "feet"),
  6484. weight: math.unit(523, "lbs"),
  6485. name: "Side",
  6486. image: {
  6487. source: "./media/characters/aurora/side.svg"
  6488. }
  6489. }
  6490. },
  6491. [
  6492. {
  6493. name: "Normal",
  6494. height: math.unit(9 + 6 / 12, "feet")
  6495. },
  6496. {
  6497. name: "Macro",
  6498. height: math.unit(96, "feet"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Macro+",
  6503. height: math.unit(243, "feet")
  6504. },
  6505. ]
  6506. ))
  6507. characterMakers.push(() => makeCharacter(
  6508. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6509. {
  6510. front: {
  6511. height: math.unit(194, "cm"),
  6512. weight: math.unit(90, "kg"),
  6513. name: "Front",
  6514. image: {
  6515. source: "./media/characters/ranek/front.svg"
  6516. }
  6517. },
  6518. side: {
  6519. height: math.unit(194, "cm"),
  6520. weight: math.unit(90, "kg"),
  6521. name: "Side",
  6522. image: {
  6523. source: "./media/characters/ranek/side.svg"
  6524. }
  6525. },
  6526. back: {
  6527. height: math.unit(194, "cm"),
  6528. weight: math.unit(90, "kg"),
  6529. name: "Back",
  6530. image: {
  6531. source: "./media/characters/ranek/back.svg"
  6532. }
  6533. },
  6534. feral: {
  6535. height: math.unit(30, "cm"),
  6536. weight: math.unit(1.6, "lbs"),
  6537. name: "Feral",
  6538. image: {
  6539. source: "./media/characters/ranek/feral.svg"
  6540. }
  6541. },
  6542. },
  6543. [
  6544. {
  6545. name: "Normal",
  6546. height: math.unit(194, "cm"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Macro",
  6551. height: math.unit(100, "meters")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6557. {
  6558. front: {
  6559. height: math.unit(5 + 6 / 12, "feet"),
  6560. weight: math.unit(153, "lbs"),
  6561. name: "Front",
  6562. image: {
  6563. source: "./media/characters/andrew-cooper/front.svg"
  6564. }
  6565. },
  6566. },
  6567. [
  6568. {
  6569. name: "Nano",
  6570. height: math.unit(1, "mm")
  6571. },
  6572. {
  6573. name: "Micro",
  6574. height: math.unit(2, "inches")
  6575. },
  6576. {
  6577. name: "Normal",
  6578. height: math.unit(5 + 6 / 12, "feet"),
  6579. default: true
  6580. }
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6585. {
  6586. front: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(180, "lbs"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/akane-sato/front.svg",
  6592. extra: 1219 / 1140
  6593. }
  6594. },
  6595. back: {
  6596. height: math.unit(6, "feet"),
  6597. weight: math.unit(180, "lbs"),
  6598. name: "Back",
  6599. image: {
  6600. source: "./media/characters/akane-sato/back.svg",
  6601. extra: 1219 / 1170
  6602. }
  6603. },
  6604. },
  6605. [
  6606. {
  6607. name: "Normal",
  6608. height: math.unit(2.5, "meters")
  6609. },
  6610. {
  6611. name: "Macro",
  6612. height: math.unit(250, "meters"),
  6613. default: true
  6614. },
  6615. {
  6616. name: "Megamacro",
  6617. height: math.unit(25, "km")
  6618. },
  6619. ]
  6620. ))
  6621. characterMakers.push(() => makeCharacter(
  6622. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6623. {
  6624. front: {
  6625. height: math.unit(6, "feet"),
  6626. weight: math.unit(65, "kg"),
  6627. name: "Front",
  6628. image: {
  6629. source: "./media/characters/rook/front.svg",
  6630. extra: 960 / 950
  6631. }
  6632. }
  6633. },
  6634. [
  6635. {
  6636. name: "Normal",
  6637. height: math.unit(8.8, "feet")
  6638. },
  6639. {
  6640. name: "Macro",
  6641. height: math.unit(88, "feet"),
  6642. default: true
  6643. },
  6644. {
  6645. name: "Megamacro",
  6646. height: math.unit(8, "miles")
  6647. },
  6648. ]
  6649. ))
  6650. characterMakers.push(() => makeCharacter(
  6651. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6652. {
  6653. front: {
  6654. height: math.unit(12 + 2 / 12, "feet"),
  6655. weight: math.unit(808, "lbs"),
  6656. name: "Front",
  6657. image: {
  6658. source: "./media/characters/prodigy/front.svg"
  6659. }
  6660. }
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(12 + 2 / 12, "feet"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Macro",
  6670. height: math.unit(143, "feet")
  6671. },
  6672. {
  6673. name: "Macro+",
  6674. height: math.unit(400, "feet")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(225, "lbs"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/daniel/front.svg"
  6687. }
  6688. },
  6689. leaning: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(225, "lbs"),
  6692. name: "Leaning",
  6693. image: {
  6694. source: "./media/characters/daniel/leaning.svg"
  6695. }
  6696. },
  6697. },
  6698. [
  6699. {
  6700. name: "Macro",
  6701. height: math.unit(1000, "feet"),
  6702. default: true
  6703. },
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(88, "lbs"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/chiros/front.svg",
  6715. extra: 306 / 226
  6716. }
  6717. },
  6718. side: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(88, "lbs"),
  6721. name: "Side",
  6722. image: {
  6723. source: "./media/characters/chiros/side.svg",
  6724. extra: 306 / 226
  6725. }
  6726. },
  6727. },
  6728. [
  6729. {
  6730. name: "Normal",
  6731. height: math.unit(6, "cm"),
  6732. default: true
  6733. },
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6738. {
  6739. front: {
  6740. height: math.unit(6, "feet"),
  6741. weight: math.unit(100, "lbs"),
  6742. name: "Front",
  6743. image: {
  6744. source: "./media/characters/selka/front.svg",
  6745. extra: 947 / 887
  6746. }
  6747. }
  6748. },
  6749. [
  6750. {
  6751. name: "Normal",
  6752. height: math.unit(5, "cm"),
  6753. default: true
  6754. },
  6755. ]
  6756. ))
  6757. characterMakers.push(() => makeCharacter(
  6758. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6759. {
  6760. front: {
  6761. height: math.unit(8 + 3 / 12, "feet"),
  6762. weight: math.unit(424, "lbs"),
  6763. name: "Front",
  6764. image: {
  6765. source: "./media/characters/verin/front.svg",
  6766. extra: 1845 / 1550
  6767. }
  6768. },
  6769. frontArmored: {
  6770. height: math.unit(8 + 3 / 12, "feet"),
  6771. weight: math.unit(424, "lbs"),
  6772. name: "Front (Armored)",
  6773. image: {
  6774. source: "./media/characters/verin/front-armor.svg",
  6775. extra: 1845 / 1550,
  6776. bottom: 0.01
  6777. }
  6778. },
  6779. back: {
  6780. height: math.unit(8 + 3 / 12, "feet"),
  6781. weight: math.unit(424, "lbs"),
  6782. name: "Back",
  6783. image: {
  6784. source: "./media/characters/verin/back.svg",
  6785. bottom: 0.1,
  6786. extra: 1
  6787. }
  6788. },
  6789. foot: {
  6790. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6791. name: "Foot",
  6792. image: {
  6793. source: "./media/characters/verin/foot.svg"
  6794. }
  6795. },
  6796. },
  6797. [
  6798. {
  6799. name: "Normal",
  6800. height: math.unit(8 + 3 / 12, "feet")
  6801. },
  6802. {
  6803. name: "Minimacro",
  6804. height: math.unit(21, "feet"),
  6805. default: true
  6806. },
  6807. {
  6808. name: "Macro",
  6809. height: math.unit(626, "feet")
  6810. },
  6811. ]
  6812. ))
  6813. characterMakers.push(() => makeCharacter(
  6814. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6815. {
  6816. front: {
  6817. height: math.unit(2.718, "meters"),
  6818. weight: math.unit(150, "lbs"),
  6819. name: "Front",
  6820. image: {
  6821. source: "./media/characters/sovrim-terraquian/front.svg"
  6822. }
  6823. },
  6824. back: {
  6825. height: math.unit(2.718, "meters"),
  6826. weight: math.unit(150, "lbs"),
  6827. name: "Back",
  6828. image: {
  6829. source: "./media/characters/sovrim-terraquian/back.svg"
  6830. }
  6831. }
  6832. },
  6833. [
  6834. {
  6835. name: "Micro",
  6836. height: math.unit(2, "inches")
  6837. },
  6838. {
  6839. name: "Small",
  6840. height: math.unit(1, "meter")
  6841. },
  6842. {
  6843. name: "Normal",
  6844. height: math.unit(Math.E, "meters"),
  6845. default: true
  6846. },
  6847. {
  6848. name: "Macro",
  6849. height: math.unit(20, "meters")
  6850. },
  6851. {
  6852. name: "Macro+",
  6853. height: math.unit(400, "meters")
  6854. },
  6855. ]
  6856. ))
  6857. characterMakers.push(() => makeCharacter(
  6858. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6859. {
  6860. front: {
  6861. height: math.unit(7, "feet"),
  6862. weight: math.unit(489, "lbs"),
  6863. name: "Front",
  6864. image: {
  6865. source: "./media/characters/reece-silvermane/front.svg",
  6866. bottom: 0.02,
  6867. extra: 1
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(1.5, "miles"),
  6875. default: true
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(78, "kg"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/kane/front.svg",
  6888. extra: 978 / 899
  6889. }
  6890. },
  6891. },
  6892. [
  6893. {
  6894. name: "Normal",
  6895. height: math.unit(2.1, "m"),
  6896. },
  6897. {
  6898. name: "Macro",
  6899. height: math.unit(1, "km"),
  6900. default: true
  6901. },
  6902. ]
  6903. ))
  6904. characterMakers.push(() => makeCharacter(
  6905. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6906. {
  6907. front: {
  6908. height: math.unit(6, "feet"),
  6909. weight: math.unit(200, "kg"),
  6910. name: "Front",
  6911. image: {
  6912. source: "./media/characters/tegon/front.svg",
  6913. bottom: 0.01,
  6914. extra: 1
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Micro",
  6921. height: math.unit(1, "inch")
  6922. },
  6923. {
  6924. name: "Normal",
  6925. height: math.unit(6 + 3 / 12, "feet"),
  6926. default: true
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(300, "feet")
  6931. },
  6932. {
  6933. name: "Megamacro",
  6934. height: math.unit(69, "miles")
  6935. },
  6936. ]
  6937. ))
  6938. characterMakers.push(() => makeCharacter(
  6939. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6940. {
  6941. side: {
  6942. height: math.unit(6, "feet"),
  6943. weight: math.unit(2304, "lbs"),
  6944. name: "Side",
  6945. image: {
  6946. source: "./media/characters/arcturax/side.svg",
  6947. extra: 790 / 376,
  6948. bottom: 0.01
  6949. }
  6950. },
  6951. },
  6952. [
  6953. {
  6954. name: "Micro",
  6955. height: math.unit(2, "inch")
  6956. },
  6957. {
  6958. name: "Normal",
  6959. height: math.unit(6, "feet")
  6960. },
  6961. {
  6962. name: "Macro",
  6963. height: math.unit(39, "feet"),
  6964. default: true
  6965. },
  6966. {
  6967. name: "Megamacro",
  6968. height: math.unit(7, "miles")
  6969. },
  6970. ]
  6971. ))
  6972. characterMakers.push(() => makeCharacter(
  6973. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6974. {
  6975. front: {
  6976. height: math.unit(6, "feet"),
  6977. weight: math.unit(50, "lbs"),
  6978. name: "Front",
  6979. image: {
  6980. source: "./media/characters/sentri/front.svg",
  6981. extra: 1750 / 1570,
  6982. bottom: 0.025
  6983. }
  6984. },
  6985. frontAlt: {
  6986. height: math.unit(6, "feet"),
  6987. weight: math.unit(50, "lbs"),
  6988. name: "Front (Alt)",
  6989. image: {
  6990. source: "./media/characters/sentri/front-alt.svg",
  6991. extra: 1750 / 1570,
  6992. bottom: 0.025
  6993. }
  6994. },
  6995. },
  6996. [
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(15, "feet"),
  7000. default: true
  7001. },
  7002. {
  7003. name: "Macro",
  7004. height: math.unit(2500, "feet")
  7005. }
  7006. ]
  7007. ))
  7008. characterMakers.push(() => makeCharacter(
  7009. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7010. {
  7011. front: {
  7012. height: math.unit(5 + 8 / 12, "feet"),
  7013. weight: math.unit(130, "lbs"),
  7014. name: "Front",
  7015. image: {
  7016. source: "./media/characters/corvin/front.svg",
  7017. extra: 1803 / 1629
  7018. }
  7019. },
  7020. frontShirt: {
  7021. height: math.unit(5 + 8 / 12, "feet"),
  7022. weight: math.unit(130, "lbs"),
  7023. name: "Front (Shirt)",
  7024. image: {
  7025. source: "./media/characters/corvin/front-shirt.svg",
  7026. extra: 1803 / 1629
  7027. }
  7028. },
  7029. frontPoncho: {
  7030. height: math.unit(5 + 8 / 12, "feet"),
  7031. weight: math.unit(130, "lbs"),
  7032. name: "Front (Poncho)",
  7033. image: {
  7034. source: "./media/characters/corvin/front-poncho.svg",
  7035. extra: 1803 / 1629
  7036. }
  7037. },
  7038. side: {
  7039. height: math.unit(5 + 8 / 12, "feet"),
  7040. weight: math.unit(130, "lbs"),
  7041. name: "Side",
  7042. image: {
  7043. source: "./media/characters/corvin/side.svg",
  7044. extra: 1012 / 945
  7045. }
  7046. },
  7047. back: {
  7048. height: math.unit(5 + 8 / 12, "feet"),
  7049. weight: math.unit(130, "lbs"),
  7050. name: "Back",
  7051. image: {
  7052. source: "./media/characters/corvin/back.svg",
  7053. extra: 1803 / 1629
  7054. }
  7055. },
  7056. },
  7057. [
  7058. {
  7059. name: "Micro",
  7060. height: math.unit(3, "inches")
  7061. },
  7062. {
  7063. name: "Normal",
  7064. height: math.unit(5 + 8 / 12, "feet")
  7065. },
  7066. {
  7067. name: "Macro",
  7068. height: math.unit(300, "feet"),
  7069. default: true
  7070. },
  7071. {
  7072. name: "Megamacro",
  7073. height: math.unit(500, "miles")
  7074. }
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(6, "feet"),
  7082. weight: math.unit(135, "lbs"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/q/front.svg",
  7086. extra: 854 / 752,
  7087. bottom: 0.005
  7088. }
  7089. },
  7090. back: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(130, "lbs"),
  7093. name: "Back",
  7094. image: {
  7095. source: "./media/characters/q/back.svg",
  7096. extra: 854 / 752
  7097. }
  7098. },
  7099. },
  7100. [
  7101. {
  7102. name: "Macro",
  7103. height: math.unit(90, "feet"),
  7104. default: true
  7105. },
  7106. {
  7107. name: "Extra Macro",
  7108. height: math.unit(300, "feet"),
  7109. },
  7110. {
  7111. name: "BIG WALF",
  7112. height: math.unit(750, "feet"),
  7113. },
  7114. ]
  7115. ))
  7116. characterMakers.push(() => makeCharacter(
  7117. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7118. {
  7119. front: {
  7120. height: math.unit(6, "feet"),
  7121. weight: math.unit(150, "lbs"),
  7122. name: "Front",
  7123. image: {
  7124. source: "./media/characters/carley/front.svg",
  7125. extra: 3927 / 3540,
  7126. bottom: 0.03
  7127. }
  7128. }
  7129. },
  7130. [
  7131. {
  7132. name: "Normal",
  7133. height: math.unit(6 + 3 / 12, "feet")
  7134. },
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(185, "feet"),
  7138. default: true
  7139. },
  7140. {
  7141. name: "Megamacro",
  7142. height: math.unit(8, "miles"),
  7143. },
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7148. {
  7149. front: {
  7150. height: math.unit(3, "feet"),
  7151. weight: math.unit(28, "lbs"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/citrine/front.svg"
  7155. }
  7156. }
  7157. },
  7158. [
  7159. {
  7160. name: "Normal",
  7161. height: math.unit(3, "feet"),
  7162. default: true
  7163. }
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7168. {
  7169. front: {
  7170. height: math.unit(14, "feet"),
  7171. weight: math.unit(1450, "kg"),
  7172. capacity: math.unit(15, "people"),
  7173. name: "Front",
  7174. image: {
  7175. source: "./media/characters/aura-starwind/front.svg",
  7176. extra: 1455 / 1335
  7177. }
  7178. },
  7179. side: {
  7180. height: math.unit(14, "feet"),
  7181. weight: math.unit(1450, "kg"),
  7182. capacity: math.unit(15, "people"),
  7183. name: "Side",
  7184. image: {
  7185. source: "./media/characters/aura-starwind/side.svg",
  7186. extra: 1654 / 1497
  7187. }
  7188. },
  7189. taur: {
  7190. height: math.unit(18, "feet"),
  7191. weight: math.unit(5500, "kg"),
  7192. capacity: math.unit(50, "people"),
  7193. name: "Taur",
  7194. image: {
  7195. source: "./media/characters/aura-starwind/taur.svg",
  7196. extra: 1760 / 1650
  7197. }
  7198. },
  7199. feral: {
  7200. height: math.unit(46, "feet"),
  7201. weight: math.unit(25000, "kg"),
  7202. capacity: math.unit(120, "people"),
  7203. name: "Feral",
  7204. image: {
  7205. source: "./media/characters/aura-starwind/feral.svg"
  7206. }
  7207. },
  7208. },
  7209. [
  7210. {
  7211. name: "Normal",
  7212. height: math.unit(14, "feet"),
  7213. default: true
  7214. },
  7215. {
  7216. name: "Macro",
  7217. height: math.unit(50, "meters")
  7218. },
  7219. {
  7220. name: "Megamacro",
  7221. height: math.unit(5000, "meters")
  7222. },
  7223. {
  7224. name: "Gigamacro",
  7225. height: math.unit(100000, "kilometers")
  7226. },
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(2 + 7 / 12, "feet"),
  7234. weight: math.unit(32, "lbs"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/rivet/front.svg",
  7238. extra: 1716 / 1658,
  7239. bottom: 0.03
  7240. }
  7241. },
  7242. foot: {
  7243. height: math.unit(0.551, "feet"),
  7244. name: "Rivet's Foot",
  7245. image: {
  7246. source: "./media/characters/rivet/foot.svg"
  7247. },
  7248. rename: true
  7249. }
  7250. },
  7251. [
  7252. {
  7253. name: "Micro",
  7254. height: math.unit(1.5, "inches"),
  7255. },
  7256. {
  7257. name: "Normal",
  7258. height: math.unit(2 + 7 / 12, "feet"),
  7259. default: true
  7260. },
  7261. {
  7262. name: "Macro",
  7263. height: math.unit(85, "feet")
  7264. },
  7265. {
  7266. name: "Megamacro",
  7267. height: math.unit(2.2, "km")
  7268. }
  7269. ]
  7270. ))
  7271. characterMakers.push(() => makeCharacter(
  7272. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7273. {
  7274. front: {
  7275. height: math.unit(5 + 9 / 12, "feet"),
  7276. weight: math.unit(150, "lbs"),
  7277. name: "Front",
  7278. image: {
  7279. source: "./media/characters/coffee/front.svg",
  7280. extra: 3666 / 3032,
  7281. bottom: 0.04
  7282. }
  7283. },
  7284. foot: {
  7285. height: math.unit(1.29, "feet"),
  7286. name: "Foot",
  7287. image: {
  7288. source: "./media/characters/coffee/foot.svg"
  7289. }
  7290. },
  7291. },
  7292. [
  7293. {
  7294. name: "Micro",
  7295. height: math.unit(2, "inches"),
  7296. },
  7297. {
  7298. name: "Normal",
  7299. height: math.unit(5 + 9 / 12, "feet"),
  7300. default: true
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(800, "feet")
  7305. },
  7306. {
  7307. name: "Megamacro",
  7308. height: math.unit(25, "miles")
  7309. }
  7310. ]
  7311. ))
  7312. characterMakers.push(() => makeCharacter(
  7313. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7314. {
  7315. front: {
  7316. height: math.unit(6, "feet"),
  7317. weight: math.unit(200, "lbs"),
  7318. name: "Front",
  7319. image: {
  7320. source: "./media/characters/chari-gal/front.svg",
  7321. extra: 1568 / 1385,
  7322. bottom: 0.047
  7323. }
  7324. },
  7325. gigantamax: {
  7326. height: math.unit(6 * 16, "feet"),
  7327. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7328. name: "Gigantamax",
  7329. image: {
  7330. source: "./media/characters/chari-gal/gigantamax.svg",
  7331. extra: 1124 / 888,
  7332. bottom: 0.03
  7333. }
  7334. },
  7335. },
  7336. [
  7337. {
  7338. name: "Normal",
  7339. height: math.unit(5 + 7 / 12, "feet")
  7340. },
  7341. {
  7342. name: "Macro",
  7343. height: math.unit(200, "feet"),
  7344. default: true
  7345. }
  7346. ]
  7347. ))
  7348. characterMakers.push(() => makeCharacter(
  7349. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7350. {
  7351. front: {
  7352. height: math.unit(6, "feet"),
  7353. weight: math.unit(150, "lbs"),
  7354. name: "Front",
  7355. image: {
  7356. source: "./media/characters/nova/front.svg",
  7357. extra: 5000 / 4722,
  7358. bottom: 0.02
  7359. }
  7360. }
  7361. },
  7362. [
  7363. {
  7364. name: "Micro-",
  7365. height: math.unit(0.8, "inches")
  7366. },
  7367. {
  7368. name: "Micro",
  7369. height: math.unit(2, "inches"),
  7370. default: true
  7371. },
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7376. {
  7377. front: {
  7378. height: math.unit(3 + 1 / 12, "feet"),
  7379. weight: math.unit(21.7, "lbs"),
  7380. name: "Front",
  7381. image: {
  7382. source: "./media/characters/argent/front.svg",
  7383. extra: 1471 / 1331,
  7384. bottom: 100.8 / 1575.5
  7385. }
  7386. }
  7387. },
  7388. [
  7389. {
  7390. name: "Micro",
  7391. height: math.unit(2, "inches")
  7392. },
  7393. {
  7394. name: "Normal",
  7395. height: math.unit(3 + 1 / 12, "feet"),
  7396. default: true
  7397. },
  7398. {
  7399. name: "Macro",
  7400. height: math.unit(120, "feet")
  7401. },
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7406. {
  7407. lamp: {
  7408. height: math.unit(7 * 1559 / 989, "feet"),
  7409. name: "Magic Lamp",
  7410. image: {
  7411. source: "./media/characters/mira-al-cul/lamp.svg",
  7412. extra: 1617 / 1559
  7413. }
  7414. },
  7415. front: {
  7416. height: math.unit(7, "feet"),
  7417. name: "Front",
  7418. image: {
  7419. source: "./media/characters/mira-al-cul/front.svg",
  7420. extra: 1044 / 990
  7421. }
  7422. },
  7423. },
  7424. [
  7425. {
  7426. name: "Heavily Restricted",
  7427. height: math.unit(7 * 1559 / 989, "feet")
  7428. },
  7429. {
  7430. name: "Freshly Freed",
  7431. height: math.unit(50 * 1559 / 989, "feet")
  7432. },
  7433. {
  7434. name: "World Encompassing",
  7435. height: math.unit(10000 * 1559 / 989, "miles")
  7436. },
  7437. {
  7438. name: "Galactic",
  7439. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7440. },
  7441. {
  7442. name: "Palmed Universe",
  7443. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Multiversal Matriarch",
  7448. height: math.unit(8.87e10, "yottameters")
  7449. },
  7450. {
  7451. name: "Void Mother",
  7452. height: math.unit(3.14e110, "yottaparsecs")
  7453. },
  7454. ]
  7455. ))
  7456. characterMakers.push(() => makeCharacter(
  7457. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7458. {
  7459. front: {
  7460. height: math.unit(17 + 1 / 12, "feet"),
  7461. weight: math.unit(476.2 * 5, "lbs"),
  7462. name: "Front",
  7463. image: {
  7464. source: "./media/characters/kuro-shi-uchū/front.svg",
  7465. extra: 2329 / 1835,
  7466. bottom: 0.02
  7467. }
  7468. },
  7469. },
  7470. [
  7471. {
  7472. name: "Micro",
  7473. height: math.unit(2, "inches")
  7474. },
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(12, "meters")
  7478. },
  7479. {
  7480. name: "Planetary",
  7481. height: math.unit(0.00929, "AU"),
  7482. default: true
  7483. },
  7484. {
  7485. name: "Universal",
  7486. height: math.unit(20, "gigaparsecs")
  7487. },
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7492. {
  7493. front: {
  7494. height: math.unit(5 + 2 / 12, "feet"),
  7495. weight: math.unit(120, "lbs"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/katherine/front.svg",
  7499. extra: 2075 / 1969
  7500. }
  7501. },
  7502. dress: {
  7503. height: math.unit(5 + 2 / 12, "feet"),
  7504. weight: math.unit(120, "lbs"),
  7505. name: "Dress",
  7506. image: {
  7507. source: "./media/characters/katherine/dress.svg",
  7508. extra: 2258 / 2064
  7509. }
  7510. },
  7511. },
  7512. [
  7513. {
  7514. name: "Micro",
  7515. height: math.unit(1, "inches"),
  7516. default: true
  7517. },
  7518. {
  7519. name: "Normal",
  7520. height: math.unit(5 + 2 / 12, "feet")
  7521. },
  7522. {
  7523. name: "Macro",
  7524. height: math.unit(100, "meters")
  7525. },
  7526. {
  7527. name: "Megamacro",
  7528. height: math.unit(80, "miles")
  7529. },
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7534. {
  7535. front: {
  7536. height: math.unit(7 + 8 / 12, "feet"),
  7537. weight: math.unit(250, "lbs"),
  7538. name: "Front",
  7539. image: {
  7540. source: "./media/characters/yevis/front.svg",
  7541. extra: 1938 / 1755
  7542. }
  7543. }
  7544. },
  7545. [
  7546. {
  7547. name: "Mortal",
  7548. height: math.unit(7 + 8 / 12, "feet")
  7549. },
  7550. {
  7551. name: "Battle",
  7552. height: math.unit(25 + 11 / 12, "feet")
  7553. },
  7554. {
  7555. name: "Wrath",
  7556. height: math.unit(1654 + 11 / 12, "feet")
  7557. },
  7558. {
  7559. name: "Planet Destroyer",
  7560. height: math.unit(12000, "miles")
  7561. },
  7562. {
  7563. name: "Galaxy Conqueror",
  7564. height: math.unit(1.45, "zettameters"),
  7565. default: true
  7566. },
  7567. {
  7568. name: "Universal War",
  7569. height: math.unit(184, "gigaparsecs")
  7570. },
  7571. {
  7572. name: "Eternity War",
  7573. height: math.unit(1.98e55, "yottaparsecs")
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(5 + 8 / 12, "feet"),
  7582. weight: math.unit(63, "kg"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/xavier/front.svg",
  7586. extra: 944 / 883
  7587. }
  7588. },
  7589. frontStretch: {
  7590. height: math.unit(5 + 8 / 12, "feet"),
  7591. weight: math.unit(63, "kg"),
  7592. name: "Stretching",
  7593. image: {
  7594. source: "./media/characters/xavier/front-stretch.svg",
  7595. extra: 962 / 820
  7596. }
  7597. },
  7598. },
  7599. [
  7600. {
  7601. name: "Normal",
  7602. height: math.unit(5 + 8 / 12, "feet")
  7603. },
  7604. {
  7605. name: "Macro",
  7606. height: math.unit(100, "meters"),
  7607. default: true
  7608. },
  7609. {
  7610. name: "McLargeHuge",
  7611. height: math.unit(10, "miles")
  7612. },
  7613. ]
  7614. ))
  7615. characterMakers.push(() => makeCharacter(
  7616. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7617. {
  7618. front: {
  7619. height: math.unit(5 + 5 / 12, "feet"),
  7620. weight: math.unit(150, "lb"),
  7621. name: "Front",
  7622. image: {
  7623. source: "./media/characters/joshii/front.svg"
  7624. }
  7625. },
  7626. foot: {
  7627. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7628. name: "Foot",
  7629. image: {
  7630. source: "./media/characters/joshii/foot.svg"
  7631. }
  7632. },
  7633. },
  7634. [
  7635. {
  7636. name: "Micro",
  7637. height: math.unit(2, "inches")
  7638. },
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(5 + 5 / 12, "feet"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Macro",
  7646. height: math.unit(785, "feet")
  7647. },
  7648. {
  7649. name: "Megamacro",
  7650. height: math.unit(24.5, "miles")
  7651. },
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(150, "lb"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/goddess-elizabeth/front.svg",
  7663. extra: 1800 / 1525,
  7664. bottom: 0.005
  7665. }
  7666. },
  7667. foot: {
  7668. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7669. name: "Foot",
  7670. image: {
  7671. source: "./media/characters/goddess-elizabeth/foot.svg"
  7672. }
  7673. },
  7674. mouth: {
  7675. height: math.unit(6, "feet"),
  7676. name: "Mouth",
  7677. image: {
  7678. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7679. }
  7680. },
  7681. },
  7682. [
  7683. {
  7684. name: "Micro",
  7685. height: math.unit(12, "feet")
  7686. },
  7687. {
  7688. name: "Normal",
  7689. height: math.unit(80, "miles"),
  7690. default: true
  7691. },
  7692. {
  7693. name: "Macro",
  7694. height: math.unit(15000, "parsecs")
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7700. {
  7701. front: {
  7702. height: math.unit(5 + 9 / 12, "feet"),
  7703. weight: math.unit(144, "lb"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/kara/front.svg"
  7707. }
  7708. },
  7709. feet: {
  7710. height: math.unit(6 / 6.765, "feet"),
  7711. name: "Kara's Feet",
  7712. rename: true,
  7713. image: {
  7714. source: "./media/characters/kara/feet.svg"
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(5 + 9 / 12, "feet")
  7722. },
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(174, "feet"),
  7726. default: true
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7732. {
  7733. front: {
  7734. height: math.unit(18, "feet"),
  7735. weight: math.unit(4050, "lb"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/tyrone/front.svg",
  7739. extra: 2520 / 2402,
  7740. bottom: 0.025
  7741. }
  7742. },
  7743. },
  7744. [
  7745. {
  7746. name: "Normal",
  7747. height: math.unit(18, "feet"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Macro",
  7752. height: math.unit(300, "feet")
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(7 + 8 / 12, "feet"),
  7761. weight: math.unit(120, "lb"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/danny/front.svg",
  7765. extra: 1490 / 1350
  7766. }
  7767. },
  7768. back: {
  7769. height: math.unit(7 + 8 / 12, "feet"),
  7770. weight: math.unit(120, "lb"),
  7771. name: "Back",
  7772. image: {
  7773. source: "./media/characters/danny/back.svg",
  7774. extra: 1490 / 1350
  7775. }
  7776. },
  7777. },
  7778. [
  7779. {
  7780. name: "Normal",
  7781. height: math.unit(7 + 8 / 12, "feet"),
  7782. default: true
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7788. {
  7789. front: {
  7790. height: math.unit(3.5, "inches"),
  7791. weight: math.unit(19, "grams"),
  7792. name: "Front",
  7793. image: {
  7794. source: "./media/characters/mallow/front.svg",
  7795. extra: 471 / 431
  7796. }
  7797. },
  7798. back: {
  7799. height: math.unit(3.5, "inches"),
  7800. weight: math.unit(19, "grams"),
  7801. name: "Back",
  7802. image: {
  7803. source: "./media/characters/mallow/back.svg",
  7804. extra: 471 / 431
  7805. }
  7806. },
  7807. },
  7808. [
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(3.5, "inches"),
  7812. default: true
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(9, "feet"),
  7821. weight: math.unit(230, "kg"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/starry-aqua/front.svg"
  7825. }
  7826. },
  7827. back: {
  7828. height: math.unit(9, "feet"),
  7829. weight: math.unit(230, "kg"),
  7830. name: "Back",
  7831. image: {
  7832. source: "./media/characters/starry-aqua/back.svg"
  7833. }
  7834. },
  7835. hand: {
  7836. height: math.unit(9 * 0.1168, "feet"),
  7837. name: "Hand",
  7838. image: {
  7839. source: "./media/characters/starry-aqua/hand.svg"
  7840. }
  7841. },
  7842. foot: {
  7843. height: math.unit(9 * 0.18, "feet"),
  7844. name: "Foot",
  7845. image: {
  7846. source: "./media/characters/starry-aqua/foot.svg"
  7847. }
  7848. }
  7849. },
  7850. [
  7851. {
  7852. name: "Micro",
  7853. height: math.unit(3, "inches")
  7854. },
  7855. {
  7856. name: "Normal",
  7857. height: math.unit(9, "feet")
  7858. },
  7859. {
  7860. name: "Macro",
  7861. height: math.unit(300, "feet"),
  7862. default: true
  7863. },
  7864. {
  7865. name: "Megamacro",
  7866. height: math.unit(3200, "feet")
  7867. }
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(6, "feet"),
  7875. weight: math.unit(230, "lb"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/luka/front.svg",
  7879. extra: 1,
  7880. bottom: 0.025
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(12 + 8 / 12, "feet"),
  7888. default: true
  7889. },
  7890. {
  7891. name: "Minimacro",
  7892. height: math.unit(20, "feet")
  7893. },
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(250, "feet")
  7897. },
  7898. {
  7899. name: "Megamacro",
  7900. height: math.unit(5, "miles")
  7901. },
  7902. {
  7903. name: "Gigamacro",
  7904. height: math.unit(8000, "miles")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(6, "feet"),
  7913. weight: math.unit(150, "lb"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/natalie-nightring/front.svg",
  7917. extra: 1,
  7918. bottom: 0.06
  7919. }
  7920. },
  7921. },
  7922. [
  7923. {
  7924. name: "Uh Oh",
  7925. height: math.unit(0.1, "mm")
  7926. },
  7927. {
  7928. name: "Small",
  7929. height: math.unit(3, "inches")
  7930. },
  7931. {
  7932. name: "Human Scale",
  7933. height: math.unit(6, "feet")
  7934. },
  7935. {
  7936. name: "Librarian",
  7937. height: math.unit(50, "feet"),
  7938. default: true
  7939. },
  7940. {
  7941. name: "Immense",
  7942. height: math.unit(200, "miles")
  7943. },
  7944. ]
  7945. ))
  7946. characterMakers.push(() => makeCharacter(
  7947. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7948. {
  7949. front: {
  7950. height: math.unit(6, "feet"),
  7951. weight: math.unit(180, "lbs"),
  7952. name: "Front",
  7953. image: {
  7954. source: "./media/characters/danni-rosie/front.svg",
  7955. extra: 1260 / 1128,
  7956. bottom: 0.022
  7957. }
  7958. },
  7959. },
  7960. [
  7961. {
  7962. name: "Micro",
  7963. height: math.unit(2, "inches"),
  7964. default: true
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7970. {
  7971. front: {
  7972. height: math.unit(5 + 9 / 12, "feet"),
  7973. weight: math.unit(220, "lb"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/samantha-kruse/front.svg",
  7977. extra: (985 / 935),
  7978. bottom: 0.03
  7979. }
  7980. },
  7981. frontUndressed: {
  7982. height: math.unit(5 + 9 / 12, "feet"),
  7983. weight: math.unit(220, "lb"),
  7984. name: "Front (Undressed)",
  7985. image: {
  7986. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7987. extra: (973 / 923),
  7988. bottom: 0.025
  7989. }
  7990. },
  7991. fat: {
  7992. height: math.unit(5 + 9 / 12, "feet"),
  7993. weight: math.unit(900, "lb"),
  7994. name: "Front (Fat)",
  7995. image: {
  7996. source: "./media/characters/samantha-kruse/fat.svg",
  7997. extra: 2688 / 2561
  7998. }
  7999. },
  8000. },
  8001. [
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(5 + 9 / 12, "feet"),
  8005. default: true
  8006. }
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8011. {
  8012. back: {
  8013. height: math.unit(5 + 4 / 12, "feet"),
  8014. weight: math.unit(4963, "lb"),
  8015. name: "Back",
  8016. image: {
  8017. source: "./media/characters/amelia-rosie/back.svg",
  8018. extra: 1113 / 963,
  8019. bottom: 0.01
  8020. }
  8021. },
  8022. },
  8023. [
  8024. {
  8025. name: "Level 0",
  8026. height: math.unit(5 + 4 / 12, "feet")
  8027. },
  8028. {
  8029. name: "Level 1",
  8030. height: math.unit(164597, "feet"),
  8031. default: true
  8032. },
  8033. {
  8034. name: "Level 2",
  8035. height: math.unit(956243, "miles")
  8036. },
  8037. {
  8038. name: "Level 3",
  8039. height: math.unit(29421709423, "miles")
  8040. },
  8041. {
  8042. name: "Level 4",
  8043. height: math.unit(154, "lightyears")
  8044. },
  8045. {
  8046. name: "Level 5",
  8047. height: math.unit(4738272, "lightyears")
  8048. },
  8049. {
  8050. name: "Level 6",
  8051. height: math.unit(145787152896, "lightyears")
  8052. },
  8053. ]
  8054. ))
  8055. characterMakers.push(() => makeCharacter(
  8056. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8057. {
  8058. front: {
  8059. height: math.unit(5 + 11 / 12, "feet"),
  8060. weight: math.unit(65, "kg"),
  8061. name: "Front",
  8062. image: {
  8063. source: "./media/characters/rook-kitara/front.svg",
  8064. extra: 1347 / 1274,
  8065. bottom: 0.005
  8066. }
  8067. },
  8068. },
  8069. [
  8070. {
  8071. name: "Totally Unfair",
  8072. height: math.unit(1.8, "mm")
  8073. },
  8074. {
  8075. name: "Lap Rookie",
  8076. height: math.unit(1.4, "feet")
  8077. },
  8078. {
  8079. name: "Normal",
  8080. height: math.unit(5 + 11 / 12, "feet"),
  8081. default: true
  8082. },
  8083. {
  8084. name: "How Did This Happen",
  8085. height: math.unit(80, "miles")
  8086. }
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(7, "feet"),
  8094. weight: math.unit(300, "lb"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/pisces/front.svg",
  8098. extra: 2255 / 2115,
  8099. bottom: 0.03
  8100. }
  8101. },
  8102. back: {
  8103. height: math.unit(7, "feet"),
  8104. weight: math.unit(300, "lb"),
  8105. name: "Back",
  8106. image: {
  8107. source: "./media/characters/pisces/back.svg",
  8108. extra: 2146 / 2055,
  8109. bottom: 0.04
  8110. }
  8111. },
  8112. },
  8113. [
  8114. {
  8115. name: "Normal",
  8116. height: math.unit(7, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Swimming Pool",
  8121. height: math.unit(12.2, "meters")
  8122. },
  8123. {
  8124. name: "Olympic Swimming Pool",
  8125. height: math.unit(56.3, "meters")
  8126. },
  8127. {
  8128. name: "Lake Superior",
  8129. height: math.unit(93900, "meters")
  8130. },
  8131. {
  8132. name: "Mediterranean Sea",
  8133. height: math.unit(644457, "meters")
  8134. },
  8135. {
  8136. name: "World's Oceans",
  8137. height: math.unit(4567491, "meters")
  8138. },
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8143. {
  8144. front: {
  8145. height: math.unit(2.3, "meters"),
  8146. weight: math.unit(120, "kg"),
  8147. name: "Front",
  8148. image: {
  8149. source: "./media/characters/zelas/front.svg"
  8150. }
  8151. },
  8152. side: {
  8153. height: math.unit(2.3, "meters"),
  8154. weight: math.unit(120, "kg"),
  8155. name: "Side",
  8156. image: {
  8157. source: "./media/characters/zelas/side.svg"
  8158. }
  8159. },
  8160. back: {
  8161. height: math.unit(2.3, "meters"),
  8162. weight: math.unit(120, "kg"),
  8163. name: "Back",
  8164. image: {
  8165. source: "./media/characters/zelas/back.svg"
  8166. }
  8167. },
  8168. foot: {
  8169. height: math.unit(1.116, "feet"),
  8170. name: "Foot",
  8171. image: {
  8172. source: "./media/characters/zelas/foot.svg"
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(2.3, "meters")
  8180. },
  8181. {
  8182. name: "Macro",
  8183. height: math.unit(30, "meters"),
  8184. default: true
  8185. },
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(1, "inch"),
  8193. weight: math.unit(0.21, "grams"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/talbot/front.svg",
  8197. extra: 594 / 544
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Micro",
  8204. height: math.unit(1, "inch"),
  8205. default: true
  8206. },
  8207. ]
  8208. ))
  8209. characterMakers.push(() => makeCharacter(
  8210. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8211. {
  8212. front: {
  8213. height: math.unit(3 + 3 / 12, "feet"),
  8214. weight: math.unit(51.8, "lb"),
  8215. name: "Front",
  8216. image: {
  8217. source: "./media/characters/fliss/front.svg",
  8218. extra: 840 / 640
  8219. }
  8220. },
  8221. },
  8222. [
  8223. {
  8224. name: "Teeny Tiny",
  8225. height: math.unit(1, "mm")
  8226. },
  8227. {
  8228. name: "Small",
  8229. height: math.unit(1, "inch"),
  8230. default: true
  8231. },
  8232. {
  8233. name: "Standard Sylveon",
  8234. height: math.unit(3 + 3 / 12, "feet")
  8235. },
  8236. {
  8237. name: "Large Nuisance",
  8238. height: math.unit(33, "feet")
  8239. },
  8240. {
  8241. name: "City Filler",
  8242. height: math.unit(3000, "feet")
  8243. },
  8244. {
  8245. name: "New Horizon",
  8246. height: math.unit(6000, "miles")
  8247. },
  8248. ]
  8249. ))
  8250. characterMakers.push(() => makeCharacter(
  8251. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8252. {
  8253. front: {
  8254. height: math.unit(5, "cm"),
  8255. weight: math.unit(1.94, "g"),
  8256. name: "Front",
  8257. image: {
  8258. source: "./media/characters/fleta/front.svg",
  8259. extra: 835 / 803
  8260. }
  8261. },
  8262. back: {
  8263. height: math.unit(5, "cm"),
  8264. weight: math.unit(1.94, "g"),
  8265. name: "Back",
  8266. image: {
  8267. source: "./media/characters/fleta/back.svg",
  8268. extra: 835 / 803
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Micro",
  8275. height: math.unit(5, "cm"),
  8276. default: true
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(6, "feet"),
  8285. weight: math.unit(225, "lb"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/dominic/front.svg",
  8289. extra: 1770 / 1620,
  8290. bottom: 0.025
  8291. }
  8292. },
  8293. back: {
  8294. height: math.unit(6, "feet"),
  8295. weight: math.unit(225, "lb"),
  8296. name: "Back",
  8297. image: {
  8298. source: "./media/characters/dominic/back.svg",
  8299. extra: 1745 / 1620,
  8300. bottom: 0.065
  8301. }
  8302. },
  8303. },
  8304. [
  8305. {
  8306. name: "Nano",
  8307. height: math.unit(0.1, "mm")
  8308. },
  8309. {
  8310. name: "Micro-",
  8311. height: math.unit(1, "mm")
  8312. },
  8313. {
  8314. name: "Micro",
  8315. height: math.unit(4, "inches")
  8316. },
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(6 + 4 / 12, "feet"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(115, "feet")
  8325. },
  8326. {
  8327. name: "Macro+",
  8328. height: math.unit(955, "feet")
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(8990, "feet")
  8333. },
  8334. {
  8335. name: "Gigmacro",
  8336. height: math.unit(9310, "miles")
  8337. },
  8338. {
  8339. name: "Teramacro",
  8340. height: math.unit(1567005010, "miles")
  8341. },
  8342. {
  8343. name: "Examacro",
  8344. height: math.unit(1425, "parsecs")
  8345. },
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8350. {
  8351. front: {
  8352. height: math.unit(400, "feet"),
  8353. weight: math.unit(44444444, "lb"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/major-colonel/front.svg"
  8357. }
  8358. },
  8359. back: {
  8360. height: math.unit(400, "feet"),
  8361. weight: math.unit(44444444, "lb"),
  8362. name: "Back",
  8363. image: {
  8364. source: "./media/characters/major-colonel/back.svg"
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(400, "feet"),
  8372. default: true
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8378. {
  8379. catFront: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(120, "lb"),
  8382. name: "Front (Cat Side)",
  8383. image: {
  8384. source: "./media/characters/axel-lycan/cat-front.svg",
  8385. extra: 430 / 402,
  8386. bottom: 43 / 472.35
  8387. }
  8388. },
  8389. catBack: {
  8390. height: math.unit(6, "feet"),
  8391. weight: math.unit(120, "lb"),
  8392. name: "Back (Cat Side)",
  8393. image: {
  8394. source: "./media/characters/axel-lycan/cat-back.svg",
  8395. extra: 447 / 419,
  8396. bottom: 23.3 / 469
  8397. }
  8398. },
  8399. wolfFront: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(120, "lb"),
  8402. name: "Front (Wolf Side)",
  8403. image: {
  8404. source: "./media/characters/axel-lycan/wolf-front.svg",
  8405. extra: 485 / 456,
  8406. bottom: 19 / 504
  8407. }
  8408. },
  8409. wolfBack: {
  8410. height: math.unit(6, "feet"),
  8411. weight: math.unit(120, "lb"),
  8412. name: "Back (Wolf Side)",
  8413. image: {
  8414. source: "./media/characters/axel-lycan/wolf-back.svg",
  8415. extra: 475 / 438,
  8416. bottom: 39.2 / 514
  8417. }
  8418. },
  8419. },
  8420. [
  8421. {
  8422. name: "Macro",
  8423. height: math.unit(1, "km"),
  8424. default: true
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8430. {
  8431. front: {
  8432. height: math.unit(5 + 9 / 12, "feet"),
  8433. weight: math.unit(175, "lb"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/vanrel-hyena/front.svg",
  8437. extra: 1086 / 1010,
  8438. bottom: 0.04
  8439. }
  8440. },
  8441. },
  8442. [
  8443. {
  8444. name: "Normal",
  8445. height: math.unit(5 + 9 / 12, "feet"),
  8446. default: true
  8447. },
  8448. ]
  8449. ))
  8450. characterMakers.push(() => makeCharacter(
  8451. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8452. {
  8453. front: {
  8454. height: math.unit(6, "feet"),
  8455. weight: math.unit(103, "lb"),
  8456. name: "Front",
  8457. image: {
  8458. source: "./media/characters/abbott-absol/front.svg",
  8459. extra: 2010 / 1842
  8460. }
  8461. },
  8462. },
  8463. [
  8464. {
  8465. name: "Megamicro",
  8466. height: math.unit(0.1, "mm")
  8467. },
  8468. {
  8469. name: "Micro",
  8470. height: math.unit(1, "inch")
  8471. },
  8472. {
  8473. name: "Normal",
  8474. height: math.unit(6, "feet"),
  8475. default: true
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(6, "feet"),
  8484. weight: math.unit(264, "lb"),
  8485. name: "Front",
  8486. image: {
  8487. source: "./media/characters/hector/front.svg",
  8488. extra: 2280 / 2130,
  8489. bottom: 0.07
  8490. }
  8491. },
  8492. },
  8493. [
  8494. {
  8495. name: "Normal",
  8496. height: math.unit(12.25, "foot"),
  8497. default: true
  8498. },
  8499. {
  8500. name: "Macro",
  8501. height: math.unit(160, "feet")
  8502. },
  8503. ]
  8504. ))
  8505. characterMakers.push(() => makeCharacter(
  8506. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8507. {
  8508. front: {
  8509. height: math.unit(6, "feet"),
  8510. weight: math.unit(150, "lb"),
  8511. name: "Front",
  8512. image: {
  8513. source: "./media/characters/sal/front.svg",
  8514. extra: 1846 / 1699,
  8515. bottom: 0.04
  8516. }
  8517. },
  8518. },
  8519. [
  8520. {
  8521. name: "Megamacro",
  8522. height: math.unit(10, "miles"),
  8523. default: true
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8529. {
  8530. front: {
  8531. height: math.unit(3, "meters"),
  8532. weight: math.unit(450, "kg"),
  8533. name: "front",
  8534. image: {
  8535. source: "./media/characters/ranger/front.svg",
  8536. extra: 2401 / 2243,
  8537. bottom: 0.05
  8538. }
  8539. },
  8540. },
  8541. [
  8542. {
  8543. name: "Normal",
  8544. height: math.unit(3, "meters"),
  8545. default: true
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(14, "feet"),
  8554. weight: math.unit(800, "kg"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/theresa/front.svg",
  8558. extra: 3575 / 3346,
  8559. bottom: 0.03
  8560. }
  8561. },
  8562. },
  8563. [
  8564. {
  8565. name: "Normal",
  8566. height: math.unit(14, "feet"),
  8567. default: true
  8568. },
  8569. ]
  8570. ))
  8571. characterMakers.push(() => makeCharacter(
  8572. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8573. {
  8574. front: {
  8575. height: math.unit(6, "feet"),
  8576. weight: math.unit(3, "kg"),
  8577. name: "Front",
  8578. image: {
  8579. source: "./media/characters/ine/front.svg",
  8580. extra: 678 / 539,
  8581. bottom: 0.023
  8582. }
  8583. },
  8584. },
  8585. [
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(2.265, "feet"),
  8589. default: true
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(5, "feet"),
  8598. weight: math.unit(30, "kg"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/vial/front.svg",
  8602. extra: 1365 / 1277,
  8603. bottom: 0.04
  8604. }
  8605. },
  8606. },
  8607. [
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(5, "feet"),
  8611. default: true
  8612. },
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8617. {
  8618. side: {
  8619. height: math.unit(3.4, "meters"),
  8620. weight: math.unit(1000, "lb"),
  8621. name: "Side",
  8622. image: {
  8623. source: "./media/characters/rovoska/side.svg",
  8624. extra: 4403 / 1515
  8625. }
  8626. },
  8627. },
  8628. [
  8629. {
  8630. name: "Normal",
  8631. height: math.unit(3.4, "meters"),
  8632. default: true
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8638. {
  8639. front: {
  8640. height: math.unit(8, "feet"),
  8641. weight: math.unit(315, "lb"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/gunner-rotthbauer/front.svg"
  8645. }
  8646. },
  8647. back: {
  8648. height: math.unit(8, "feet"),
  8649. weight: math.unit(315, "lb"),
  8650. name: "Back",
  8651. image: {
  8652. source: "./media/characters/gunner-rotthbauer/back.svg"
  8653. }
  8654. },
  8655. },
  8656. [
  8657. {
  8658. name: "Micro",
  8659. height: math.unit(3.5, "inches")
  8660. },
  8661. {
  8662. name: "Normal",
  8663. height: math.unit(8, "feet"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Macro",
  8668. height: math.unit(250, "feet")
  8669. },
  8670. {
  8671. name: "Megamacro",
  8672. height: math.unit(1, "AU")
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8678. {
  8679. front: {
  8680. height: math.unit(5 + 5 / 12, "feet"),
  8681. weight: math.unit(140, "lb"),
  8682. name: "Front",
  8683. image: {
  8684. source: "./media/characters/allatia/front.svg",
  8685. extra: 1227 / 1180,
  8686. bottom: 0.027
  8687. }
  8688. },
  8689. },
  8690. [
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(5 + 5 / 12, "feet")
  8694. },
  8695. {
  8696. name: "Macro",
  8697. height: math.unit(250, "feet"),
  8698. default: true
  8699. },
  8700. {
  8701. name: "Megamacro",
  8702. height: math.unit(8, "miles")
  8703. }
  8704. ]
  8705. ))
  8706. characterMakers.push(() => makeCharacter(
  8707. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8708. {
  8709. front: {
  8710. height: math.unit(6, "feet"),
  8711. weight: math.unit(120, "lb"),
  8712. name: "Front",
  8713. image: {
  8714. source: "./media/characters/tene/front.svg",
  8715. extra: 1728 / 1578,
  8716. bottom: 0.022
  8717. }
  8718. },
  8719. stomping: {
  8720. height: math.unit(2.025, "meters"),
  8721. weight: math.unit(120, "lb"),
  8722. name: "Stomping",
  8723. image: {
  8724. source: "./media/characters/tene/stomping.svg",
  8725. extra: 938 / 873,
  8726. bottom: 0.01
  8727. }
  8728. },
  8729. sitting: {
  8730. height: math.unit(1, "meter"),
  8731. weight: math.unit(120, "lb"),
  8732. name: "Sitting",
  8733. image: {
  8734. source: "./media/characters/tene/sitting.svg",
  8735. extra: 437 / 415,
  8736. bottom: 0.1
  8737. }
  8738. },
  8739. feral: {
  8740. height: math.unit(3.9, "feet"),
  8741. weight: math.unit(250, "lb"),
  8742. name: "Feral",
  8743. image: {
  8744. source: "./media/characters/tene/feral.svg",
  8745. extra: 717 / 458,
  8746. bottom: 0.179
  8747. }
  8748. },
  8749. },
  8750. [
  8751. {
  8752. name: "Normal",
  8753. height: math.unit(6, "feet")
  8754. },
  8755. {
  8756. name: "Macro",
  8757. height: math.unit(300, "feet"),
  8758. default: true
  8759. },
  8760. {
  8761. name: "Megamacro",
  8762. height: math.unit(5, "miles")
  8763. },
  8764. ]
  8765. ))
  8766. characterMakers.push(() => makeCharacter(
  8767. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8768. {
  8769. side: {
  8770. height: math.unit(6, "feet"),
  8771. name: "Side",
  8772. image: {
  8773. source: "./media/characters/evander/side.svg",
  8774. extra: 877 / 477
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Normal",
  8781. height: math.unit(0.83, "meters"),
  8782. default: true
  8783. },
  8784. ]
  8785. ))
  8786. characterMakers.push(() => makeCharacter(
  8787. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8788. {
  8789. front: {
  8790. height: math.unit(12, "feet"),
  8791. weight: math.unit(1000, "lb"),
  8792. name: "Front",
  8793. image: {
  8794. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8795. extra: 1762 / 1611
  8796. }
  8797. },
  8798. back: {
  8799. height: math.unit(12, "feet"),
  8800. weight: math.unit(1000, "lb"),
  8801. name: "Back",
  8802. image: {
  8803. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8804. extra: 1762 / 1611
  8805. }
  8806. },
  8807. },
  8808. [
  8809. {
  8810. name: "Normal",
  8811. height: math.unit(12, "feet"),
  8812. default: true
  8813. },
  8814. {
  8815. name: "Kaiju",
  8816. height: math.unit(150, "feet")
  8817. },
  8818. ]
  8819. ))
  8820. characterMakers.push(() => makeCharacter(
  8821. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8822. {
  8823. front: {
  8824. height: math.unit(6, "feet"),
  8825. weight: math.unit(150, "lb"),
  8826. name: "Front",
  8827. image: {
  8828. source: "./media/characters/zero-alurus/front.svg"
  8829. }
  8830. },
  8831. back: {
  8832. height: math.unit(6, "feet"),
  8833. weight: math.unit(150, "lb"),
  8834. name: "Back",
  8835. image: {
  8836. source: "./media/characters/zero-alurus/back.svg"
  8837. }
  8838. },
  8839. },
  8840. [
  8841. {
  8842. name: "Normal",
  8843. height: math.unit(5 + 10 / 12, "feet")
  8844. },
  8845. {
  8846. name: "Macro",
  8847. height: math.unit(60, "feet"),
  8848. default: true
  8849. },
  8850. {
  8851. name: "Macro+",
  8852. height: math.unit(450, "feet")
  8853. },
  8854. ]
  8855. ))
  8856. characterMakers.push(() => makeCharacter(
  8857. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8858. {
  8859. front: {
  8860. height: math.unit(6, "feet"),
  8861. weight: math.unit(200, "lb"),
  8862. name: "Front",
  8863. image: {
  8864. source: "./media/characters/mega-shi/front.svg",
  8865. extra: 1279 / 1250,
  8866. bottom: 0.02
  8867. }
  8868. },
  8869. back: {
  8870. height: math.unit(6, "feet"),
  8871. weight: math.unit(200, "lb"),
  8872. name: "Back",
  8873. image: {
  8874. source: "./media/characters/mega-shi/back.svg",
  8875. extra: 1279 / 1250,
  8876. bottom: 0.02
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Micro",
  8883. height: math.unit(16 + 6 / 12, "feet")
  8884. },
  8885. {
  8886. name: "Third Dimension",
  8887. height: math.unit(40, "meters")
  8888. },
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(660, "feet"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Megamacro",
  8896. height: math.unit(10, "miles")
  8897. },
  8898. {
  8899. name: "Planetary Launch",
  8900. height: math.unit(500, "miles")
  8901. },
  8902. {
  8903. name: "Interstellar",
  8904. height: math.unit(1e9, "miles")
  8905. },
  8906. {
  8907. name: "Leaving the Universe",
  8908. height: math.unit(1, "gigaparsec")
  8909. },
  8910. {
  8911. name: "Travelling Universes",
  8912. height: math.unit(30e15, "parsecs")
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(6, "feet"),
  8921. weight: math.unit(150, "lb"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/odyssey/front.svg",
  8925. extra: 1782 / 1582,
  8926. bottom: 0.01
  8927. }
  8928. },
  8929. side: {
  8930. height: math.unit(5.7, "feet"),
  8931. weight: math.unit(140, "lb"),
  8932. name: "Side",
  8933. image: {
  8934. source: "./media/characters/odyssey/side.svg",
  8935. extra: 6462 / 5700
  8936. }
  8937. },
  8938. },
  8939. [
  8940. {
  8941. name: "Normal",
  8942. height: math.unit(5 + 4 / 12, "feet")
  8943. },
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(1, "km")
  8947. },
  8948. {
  8949. name: "Megamacro",
  8950. height: math.unit(3000, "km")
  8951. },
  8952. {
  8953. name: "Gigamacro",
  8954. height: math.unit(1, "AU"),
  8955. default: true
  8956. },
  8957. {
  8958. name: "Omniversal",
  8959. height: math.unit(100e14, "lightyears")
  8960. },
  8961. ]
  8962. ))
  8963. characterMakers.push(() => makeCharacter(
  8964. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8965. {
  8966. front: {
  8967. height: math.unit(6, "feet"),
  8968. weight: math.unit(300, "lb"),
  8969. name: "Front",
  8970. image: {
  8971. source: "./media/characters/mekuto/front.svg",
  8972. extra: 921 / 832,
  8973. bottom: 0.03
  8974. }
  8975. },
  8976. hand: {
  8977. height: math.unit(6 / 10.24, "feet"),
  8978. name: "Hand",
  8979. image: {
  8980. source: "./media/characters/mekuto/hand.svg"
  8981. }
  8982. },
  8983. foot: {
  8984. height: math.unit(6 / 5.05, "feet"),
  8985. name: "Foot",
  8986. image: {
  8987. source: "./media/characters/mekuto/foot.svg"
  8988. }
  8989. },
  8990. },
  8991. [
  8992. {
  8993. name: "Minimicro",
  8994. height: math.unit(0.2, "inches")
  8995. },
  8996. {
  8997. name: "Micro",
  8998. height: math.unit(1.5, "inches")
  8999. },
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(5 + 11 / 12, "feet"),
  9003. default: true
  9004. },
  9005. {
  9006. name: "Minimacro",
  9007. height: math.unit(17 + 9 / 12, "feet")
  9008. },
  9009. {
  9010. name: "Macro",
  9011. height: math.unit(177.5, "feet")
  9012. },
  9013. {
  9014. name: "Megamacro",
  9015. height: math.unit(152, "miles")
  9016. },
  9017. ]
  9018. ))
  9019. characterMakers.push(() => makeCharacter(
  9020. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9021. {
  9022. front: {
  9023. height: math.unit(6.5, "inches"),
  9024. weight: math.unit(13, "oz"),
  9025. name: "Front",
  9026. image: {
  9027. source: "./media/characters/dafydd-tomos/front.svg",
  9028. extra: 2990 / 2603,
  9029. bottom: 0.03
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Micro",
  9036. height: math.unit(6.5, "inches"),
  9037. default: true
  9038. },
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9043. {
  9044. front: {
  9045. height: math.unit(6, "feet"),
  9046. weight: math.unit(150, "lb"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/splinter/front.svg",
  9050. extra: 2990 / 2882,
  9051. bottom: 0.04
  9052. }
  9053. },
  9054. back: {
  9055. height: math.unit(6, "feet"),
  9056. weight: math.unit(150, "lb"),
  9057. name: "Back",
  9058. image: {
  9059. source: "./media/characters/splinter/back.svg",
  9060. extra: 2990 / 2882,
  9061. bottom: 0.04
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(6, "feet")
  9069. },
  9070. {
  9071. name: "Macro",
  9072. height: math.unit(230, "meters"),
  9073. default: true
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9079. {
  9080. front: {
  9081. height: math.unit(4 + 10 / 12, "feet"),
  9082. weight: math.unit(480, "lb"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/snow-gabumon/front.svg",
  9086. extra: 1140 / 963,
  9087. bottom: 0.058
  9088. }
  9089. },
  9090. back: {
  9091. height: math.unit(4 + 10 / 12, "feet"),
  9092. weight: math.unit(480, "lb"),
  9093. name: "Back",
  9094. image: {
  9095. source: "./media/characters/snow-gabumon/back.svg",
  9096. extra: 1115 / 962,
  9097. bottom: 0.041
  9098. }
  9099. },
  9100. frontUndresed: {
  9101. height: math.unit(4 + 10 / 12, "feet"),
  9102. weight: math.unit(480, "lb"),
  9103. name: "Front (Undressed)",
  9104. image: {
  9105. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9106. extra: 1061 / 960,
  9107. bottom: 0.045
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Micro",
  9114. height: math.unit(1, "inch")
  9115. },
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(4 + 10 / 12, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(200, "feet")
  9124. },
  9125. {
  9126. name: "Megamacro",
  9127. height: math.unit(120, "miles")
  9128. },
  9129. {
  9130. name: "Gigamacro",
  9131. height: math.unit(9800, "miles")
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(1.7, "meters"),
  9140. weight: math.unit(140, "lb"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/moody/front.svg",
  9144. extra: 3226 / 3007,
  9145. bottom: 0.087
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Micro",
  9152. height: math.unit(1, "mm")
  9153. },
  9154. {
  9155. name: "Normal",
  9156. height: math.unit(1.7, "meters"),
  9157. default: true
  9158. },
  9159. {
  9160. name: "Macro",
  9161. height: math.unit(80, "meters")
  9162. },
  9163. {
  9164. name: "Macro+",
  9165. height: math.unit(500, "meters")
  9166. },
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(6, "feet"),
  9174. weight: math.unit(150, "lb"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/zyas/front.svg",
  9178. extra: 1180 / 1120,
  9179. bottom: 0.045
  9180. }
  9181. },
  9182. },
  9183. [
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(10, "feet"),
  9187. default: true
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(500, "feet")
  9192. },
  9193. {
  9194. name: "Megamacro",
  9195. height: math.unit(5, "miles")
  9196. },
  9197. {
  9198. name: "Teramacro",
  9199. height: math.unit(150000, "miles")
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(6, "feet"),
  9208. weight: math.unit(150, "lb"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/cuon/front.svg",
  9212. extra: 1390 / 1320,
  9213. bottom: 0.008
  9214. }
  9215. },
  9216. },
  9217. [
  9218. {
  9219. name: "Micro",
  9220. height: math.unit(3, "inches")
  9221. },
  9222. {
  9223. name: "Normal",
  9224. height: math.unit(18 + 9 / 12, "feet"),
  9225. default: true
  9226. },
  9227. {
  9228. name: "Macro",
  9229. height: math.unit(360, "feet")
  9230. },
  9231. {
  9232. name: "Megamacro",
  9233. height: math.unit(360, "miles")
  9234. },
  9235. ]
  9236. ))
  9237. characterMakers.push(() => makeCharacter(
  9238. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9239. {
  9240. front: {
  9241. height: math.unit(2.4, "meters"),
  9242. weight: math.unit(70, "kg"),
  9243. name: "Front",
  9244. image: {
  9245. source: "./media/characters/nyanuxk/front.svg",
  9246. extra: 1172 / 1084,
  9247. bottom: 0.065
  9248. }
  9249. },
  9250. side: {
  9251. height: math.unit(2.4, "meters"),
  9252. weight: math.unit(70, "kg"),
  9253. name: "Side",
  9254. image: {
  9255. source: "./media/characters/nyanuxk/side.svg",
  9256. extra: 1190 / 1132,
  9257. bottom: 0.007
  9258. }
  9259. },
  9260. back: {
  9261. height: math.unit(2.4, "meters"),
  9262. weight: math.unit(70, "kg"),
  9263. name: "Back",
  9264. image: {
  9265. source: "./media/characters/nyanuxk/back.svg",
  9266. extra: 1200 / 1141,
  9267. bottom: 0.015
  9268. }
  9269. },
  9270. foot: {
  9271. height: math.unit(0.52, "meters"),
  9272. name: "Foot",
  9273. image: {
  9274. source: "./media/characters/nyanuxk/foot.svg"
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Micro",
  9281. height: math.unit(2, "cm")
  9282. },
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(2.4, "meters"),
  9286. default: true
  9287. },
  9288. {
  9289. name: "Smaller Macro",
  9290. height: math.unit(120, "meters")
  9291. },
  9292. {
  9293. name: "Bigger Macro",
  9294. height: math.unit(1.2, "km")
  9295. },
  9296. {
  9297. name: "Megamacro",
  9298. height: math.unit(15, "kilometers")
  9299. },
  9300. {
  9301. name: "Gigamacro",
  9302. height: math.unit(2000, "km")
  9303. },
  9304. {
  9305. name: "Teramacro",
  9306. height: math.unit(500000, "km")
  9307. },
  9308. ]
  9309. ))
  9310. characterMakers.push(() => makeCharacter(
  9311. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9312. {
  9313. side: {
  9314. height: math.unit(6, "feet"),
  9315. name: "Side",
  9316. image: {
  9317. source: "./media/characters/ailbhe/side.svg",
  9318. extra: 757 / 464,
  9319. bottom: 0.041
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Normal",
  9326. height: math.unit(1.07, "meters"),
  9327. default: true
  9328. },
  9329. ]
  9330. ))
  9331. characterMakers.push(() => makeCharacter(
  9332. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9333. {
  9334. front: {
  9335. height: math.unit(6, "feet"),
  9336. weight: math.unit(120, "kg"),
  9337. name: "Front",
  9338. image: {
  9339. source: "./media/characters/zevulfius/front.svg",
  9340. extra: 965 / 903
  9341. }
  9342. },
  9343. side: {
  9344. height: math.unit(6, "feet"),
  9345. weight: math.unit(120, "kg"),
  9346. name: "Side",
  9347. image: {
  9348. source: "./media/characters/zevulfius/side.svg",
  9349. extra: 939 / 900
  9350. }
  9351. },
  9352. back: {
  9353. height: math.unit(6, "feet"),
  9354. weight: math.unit(120, "kg"),
  9355. name: "Back",
  9356. image: {
  9357. source: "./media/characters/zevulfius/back.svg",
  9358. extra: 918 / 854,
  9359. bottom: 0.005
  9360. }
  9361. },
  9362. foot: {
  9363. height: math.unit(6 / 3.72, "feet"),
  9364. name: "Foot",
  9365. image: {
  9366. source: "./media/characters/zevulfius/foot.svg"
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(750, "meters")
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(20, "km"),
  9378. default: true
  9379. },
  9380. {
  9381. name: "Gigamacro",
  9382. height: math.unit(2000, "km")
  9383. },
  9384. {
  9385. name: "Teramacro",
  9386. height: math.unit(250000, "km")
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(100, "feet"),
  9395. weight: math.unit(350, "kg"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/rikes/front.svg",
  9399. extra: 1565 / 1483,
  9400. bottom: 0.017
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Macro",
  9407. height: math.unit(100, "feet"),
  9408. default: true
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9414. {
  9415. anthro: {
  9416. height: math.unit(8, "feet"),
  9417. weight: math.unit(120, "kg"),
  9418. name: "Anthro",
  9419. image: {
  9420. source: "./media/characters/adam-silver-mane/anthro.svg",
  9421. extra: 5743 / 5339,
  9422. bottom: 0.07
  9423. }
  9424. },
  9425. taur: {
  9426. height: math.unit(16, "feet"),
  9427. weight: math.unit(1500, "kg"),
  9428. name: "Taur",
  9429. image: {
  9430. source: "./media/characters/adam-silver-mane/taur.svg",
  9431. extra: 1713 / 1571,
  9432. bottom: 0.01
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(8, "feet")
  9440. },
  9441. {
  9442. name: "Minimacro",
  9443. height: math.unit(80, "feet")
  9444. },
  9445. {
  9446. name: "Macro",
  9447. height: math.unit(800, "feet"),
  9448. default: true
  9449. },
  9450. {
  9451. name: "Megamacro",
  9452. height: math.unit(8000, "feet")
  9453. },
  9454. {
  9455. name: "Gigamacro",
  9456. height: math.unit(800, "miles")
  9457. },
  9458. {
  9459. name: "Teramacro",
  9460. height: math.unit(80000, "miles")
  9461. },
  9462. {
  9463. name: "Celestial",
  9464. height: math.unit(8e6, "miles")
  9465. },
  9466. {
  9467. name: "Star Dragon",
  9468. height: math.unit(800000, "parsecs")
  9469. },
  9470. {
  9471. name: "Godly",
  9472. height: math.unit(800, "teraparsecs")
  9473. },
  9474. ]
  9475. ))
  9476. characterMakers.push(() => makeCharacter(
  9477. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9478. {
  9479. front: {
  9480. height: math.unit(6, "feet"),
  9481. weight: math.unit(150, "lb"),
  9482. name: "Front",
  9483. image: {
  9484. source: "./media/characters/ky'owin/front.svg",
  9485. extra: 3888 / 3068,
  9486. bottom: 0.015
  9487. }
  9488. },
  9489. },
  9490. [
  9491. {
  9492. name: "Normal",
  9493. height: math.unit(6 + 8 / 12, "feet")
  9494. },
  9495. {
  9496. name: "Large",
  9497. height: math.unit(68, "feet")
  9498. },
  9499. {
  9500. name: "Macro",
  9501. height: math.unit(132, "feet")
  9502. },
  9503. {
  9504. name: "Macro+",
  9505. height: math.unit(340, "feet")
  9506. },
  9507. {
  9508. name: "Macro++",
  9509. height: math.unit(680, "feet"),
  9510. default: true
  9511. },
  9512. {
  9513. name: "Megamacro",
  9514. height: math.unit(1, "mile")
  9515. },
  9516. {
  9517. name: "Megamacro+",
  9518. height: math.unit(10, "miles")
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(4, "feet"),
  9527. weight: math.unit(50, "lb"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/mal/front.svg",
  9531. extra: 785 / 724,
  9532. bottom: 0.07
  9533. }
  9534. },
  9535. },
  9536. [
  9537. {
  9538. name: "Micro",
  9539. height: math.unit(4, "inches")
  9540. },
  9541. {
  9542. name: "Normal",
  9543. height: math.unit(4, "feet"),
  9544. default: true
  9545. },
  9546. {
  9547. name: "Macro",
  9548. height: math.unit(200, "feet")
  9549. },
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9554. {
  9555. front: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(150, "lb"),
  9558. name: "Front",
  9559. image: {
  9560. source: "./media/characters/jordan-deware/front.svg",
  9561. extra: 1191 / 1012
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Nano",
  9568. height: math.unit(0.01, "mm")
  9569. },
  9570. {
  9571. name: "Minimicro",
  9572. height: math.unit(1, "mm")
  9573. },
  9574. {
  9575. name: "Micro",
  9576. height: math.unit(0.5, "inches")
  9577. },
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(4, "feet"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Minimacro",
  9585. height: math.unit(40, "meters")
  9586. },
  9587. {
  9588. name: "Small Macro",
  9589. height: math.unit(400, "meters")
  9590. },
  9591. {
  9592. name: "Macro",
  9593. height: math.unit(4, "miles")
  9594. },
  9595. {
  9596. name: "Megamacro",
  9597. height: math.unit(40, "miles")
  9598. },
  9599. {
  9600. name: "Megamacro+",
  9601. height: math.unit(400, "miles")
  9602. },
  9603. {
  9604. name: "Gigamacro",
  9605. height: math.unit(400000, "miles")
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9611. {
  9612. side: {
  9613. height: math.unit(6, "feet"),
  9614. weight: math.unit(150, "lb"),
  9615. name: "Side",
  9616. image: {
  9617. source: "./media/characters/kimiko/side.svg",
  9618. extra: 600 / 358
  9619. }
  9620. },
  9621. },
  9622. [
  9623. {
  9624. name: "Normal",
  9625. height: math.unit(15, "feet"),
  9626. default: true
  9627. },
  9628. {
  9629. name: "Macro",
  9630. height: math.unit(220, "feet")
  9631. },
  9632. {
  9633. name: "Macro+",
  9634. height: math.unit(1450, "feet")
  9635. },
  9636. {
  9637. name: "Megamacro",
  9638. height: math.unit(11500, "feet")
  9639. },
  9640. {
  9641. name: "Gigamacro",
  9642. height: math.unit(9500, "miles")
  9643. },
  9644. {
  9645. name: "Teramacro",
  9646. height: math.unit(2208005005, "miles")
  9647. },
  9648. {
  9649. name: "Examacro",
  9650. height: math.unit(2750, "parsecs")
  9651. },
  9652. {
  9653. name: "Zettamacro",
  9654. height: math.unit(101500, "parsecs")
  9655. },
  9656. ]
  9657. ))
  9658. characterMakers.push(() => makeCharacter(
  9659. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9660. {
  9661. front: {
  9662. height: math.unit(6, "feet"),
  9663. weight: math.unit(70, "kg"),
  9664. name: "Front",
  9665. image: {
  9666. source: "./media/characters/andrew-sleepy/front.svg"
  9667. }
  9668. },
  9669. side: {
  9670. height: math.unit(6, "feet"),
  9671. weight: math.unit(70, "kg"),
  9672. name: "Side",
  9673. image: {
  9674. source: "./media/characters/andrew-sleepy/side.svg"
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Micro",
  9681. height: math.unit(1, "mm"),
  9682. default: true
  9683. },
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9688. {
  9689. front: {
  9690. height: math.unit(6, "feet"),
  9691. weight: math.unit(150, "lb"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/judio/front.svg",
  9695. extra: 1258 / 1110
  9696. }
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(5 + 6 / 12, "feet")
  9703. },
  9704. {
  9705. name: "Macro",
  9706. height: math.unit(1000, "feet"),
  9707. default: true
  9708. },
  9709. {
  9710. name: "Megamacro",
  9711. height: math.unit(10, "miles")
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(6, "feet"),
  9720. weight: math.unit(68, "kg"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/nomaxice/front.svg",
  9724. extra: 1498 / 1073,
  9725. bottom: 0.075
  9726. }
  9727. },
  9728. foot: {
  9729. height: math.unit(1.1, "feet"),
  9730. name: "Foot",
  9731. image: {
  9732. source: "./media/characters/nomaxice/foot.svg"
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Micro",
  9739. height: math.unit(8, "cm")
  9740. },
  9741. {
  9742. name: "Norm",
  9743. height: math.unit(1.82, "m")
  9744. },
  9745. {
  9746. name: "Norm+",
  9747. height: math.unit(8.8, "feet")
  9748. },
  9749. {
  9750. name: "Big",
  9751. height: math.unit(8, "meters"),
  9752. default: true
  9753. },
  9754. {
  9755. name: "Macro",
  9756. height: math.unit(18, "meters")
  9757. },
  9758. {
  9759. name: "Macro+",
  9760. height: math.unit(88, "meters")
  9761. },
  9762. ]
  9763. ))
  9764. characterMakers.push(() => makeCharacter(
  9765. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9766. {
  9767. front: {
  9768. height: math.unit(12, "feet"),
  9769. weight: math.unit(1.5, "tons"),
  9770. name: "Front",
  9771. image: {
  9772. source: "./media/characters/dydros/front.svg",
  9773. extra: 863 / 800,
  9774. bottom: 0.015
  9775. }
  9776. },
  9777. back: {
  9778. height: math.unit(12, "feet"),
  9779. weight: math.unit(1.5, "tons"),
  9780. name: "Back",
  9781. image: {
  9782. source: "./media/characters/dydros/back.svg",
  9783. extra: 900 / 843,
  9784. bottom: 0.005
  9785. }
  9786. },
  9787. },
  9788. [
  9789. {
  9790. name: "Normal",
  9791. height: math.unit(12, "feet"),
  9792. default: true
  9793. },
  9794. ]
  9795. ))
  9796. characterMakers.push(() => makeCharacter(
  9797. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9798. {
  9799. front: {
  9800. height: math.unit(6, "feet"),
  9801. weight: math.unit(100, "kg"),
  9802. name: "Front",
  9803. image: {
  9804. source: "./media/characters/riggi/front.svg",
  9805. extra: 5787 / 5303
  9806. }
  9807. },
  9808. hyper: {
  9809. height: math.unit(6 * 5 / 3, "feet"),
  9810. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9811. name: "Hyper",
  9812. image: {
  9813. source: "./media/characters/riggi/hyper.svg",
  9814. extra: 3595 / 3485
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Small Macro",
  9821. height: math.unit(50, "feet")
  9822. },
  9823. {
  9824. name: "Default",
  9825. height: math.unit(200, "feet"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "Loom",
  9830. height: math.unit(10000, "feet")
  9831. },
  9832. {
  9833. name: "Cruising Altitude",
  9834. height: math.unit(30000, "feet")
  9835. },
  9836. {
  9837. name: "Megamacro",
  9838. height: math.unit(100, "miles")
  9839. },
  9840. {
  9841. name: "Continent Sized",
  9842. height: math.unit(2800, "miles")
  9843. },
  9844. {
  9845. name: "Earth Sized",
  9846. height: math.unit(8000, "miles")
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9852. {
  9853. front: {
  9854. height: math.unit(6, "feet"),
  9855. weight: math.unit(250, "lb"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/alexi/front.svg",
  9859. extra: 3483 / 3291,
  9860. bottom: 0.04
  9861. }
  9862. },
  9863. back: {
  9864. height: math.unit(6, "feet"),
  9865. weight: math.unit(250, "lb"),
  9866. name: "Back",
  9867. image: {
  9868. source: "./media/characters/alexi/back.svg",
  9869. extra: 3533 / 3356,
  9870. bottom: 0.021
  9871. }
  9872. },
  9873. frontTransforming: {
  9874. height: math.unit(8.58, "feet"),
  9875. weight: math.unit(1300, "lb"),
  9876. name: "Transforming",
  9877. image: {
  9878. source: "./media/characters/alexi/front-transforming.svg",
  9879. extra: 437 / 409,
  9880. bottom: 19 / 458.66
  9881. }
  9882. },
  9883. frontTransformed: {
  9884. height: math.unit(12.5, "feet"),
  9885. weight: math.unit(4000, "lb"),
  9886. name: "Transformed",
  9887. image: {
  9888. source: "./media/characters/alexi/front-transformed.svg",
  9889. extra: 639 / 614,
  9890. bottom: 30.55 / 671
  9891. }
  9892. },
  9893. },
  9894. [
  9895. {
  9896. name: "Normal",
  9897. height: math.unit(3, "meters"),
  9898. default: true
  9899. },
  9900. {
  9901. name: "Minimacro",
  9902. height: math.unit(30, "meters")
  9903. },
  9904. {
  9905. name: "Macro",
  9906. height: math.unit(500, "meters")
  9907. },
  9908. {
  9909. name: "Megamacro",
  9910. height: math.unit(9000, "km")
  9911. },
  9912. {
  9913. name: "Teramacro",
  9914. height: math.unit(384000, "km")
  9915. },
  9916. ]
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9920. {
  9921. front: {
  9922. height: math.unit(6, "feet"),
  9923. weight: math.unit(150, "lb"),
  9924. name: "Front",
  9925. image: {
  9926. source: "./media/characters/kayroo/front.svg",
  9927. extra: 1153 / 1038,
  9928. bottom: 0.06
  9929. }
  9930. },
  9931. foot: {
  9932. height: math.unit(6, "feet"),
  9933. weight: math.unit(150, "lb"),
  9934. name: "Foot",
  9935. image: {
  9936. source: "./media/characters/kayroo/foot.svg"
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Normal",
  9943. height: math.unit(8, "feet"),
  9944. default: true
  9945. },
  9946. {
  9947. name: "Minimacro",
  9948. height: math.unit(250, "feet")
  9949. },
  9950. {
  9951. name: "Macro",
  9952. height: math.unit(2800, "feet")
  9953. },
  9954. {
  9955. name: "Megamacro",
  9956. height: math.unit(5200, "feet")
  9957. },
  9958. {
  9959. name: "Gigamacro",
  9960. height: math.unit(27000, "feet")
  9961. },
  9962. {
  9963. name: "Omega",
  9964. height: math.unit(45000, "feet")
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9970. {
  9971. front: {
  9972. height: math.unit(18, "feet"),
  9973. weight: math.unit(5800, "lb"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/rhys/front.svg",
  9977. extra: 3386 / 3090,
  9978. bottom: 0.07
  9979. }
  9980. },
  9981. },
  9982. [
  9983. {
  9984. name: "Normal",
  9985. height: math.unit(18, "feet"),
  9986. default: true
  9987. },
  9988. {
  9989. name: "Working Size",
  9990. height: math.unit(200, "feet")
  9991. },
  9992. {
  9993. name: "Demolition Size",
  9994. height: math.unit(2000, "feet")
  9995. },
  9996. {
  9997. name: "Maximum Licensed Size",
  9998. height: math.unit(5, "miles")
  9999. },
  10000. {
  10001. name: "Maximum Observed Size",
  10002. height: math.unit(10, "yottameters")
  10003. },
  10004. ]
  10005. ))
  10006. characterMakers.push(() => makeCharacter(
  10007. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10008. {
  10009. front: {
  10010. height: math.unit(6, "feet"),
  10011. weight: math.unit(250, "lb"),
  10012. name: "Front",
  10013. image: {
  10014. source: "./media/characters/toto/front.svg",
  10015. extra: 527 / 479,
  10016. bottom: 0.05
  10017. }
  10018. },
  10019. },
  10020. [
  10021. {
  10022. name: "Micro",
  10023. height: math.unit(3, "feet")
  10024. },
  10025. {
  10026. name: "Normal",
  10027. height: math.unit(10, "feet")
  10028. },
  10029. {
  10030. name: "Macro",
  10031. height: math.unit(150, "feet"),
  10032. default: true
  10033. },
  10034. {
  10035. name: "Megamacro",
  10036. height: math.unit(1200, "feet")
  10037. },
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "King", species: ["lion"], tags: ["anthro"] },
  10042. {
  10043. back: {
  10044. height: math.unit(6, "feet"),
  10045. weight: math.unit(150, "lb"),
  10046. name: "Back",
  10047. image: {
  10048. source: "./media/characters/king/back.svg"
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Micro",
  10055. height: math.unit(2, "inches")
  10056. },
  10057. {
  10058. name: "Normal",
  10059. height: math.unit(8, "feet")
  10060. },
  10061. {
  10062. name: "Macro",
  10063. height: math.unit(200, "feet"),
  10064. default: true
  10065. },
  10066. {
  10067. name: "Megamacro",
  10068. height: math.unit(50, "miles")
  10069. },
  10070. ]
  10071. ))
  10072. characterMakers.push(() => makeCharacter(
  10073. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10074. {
  10075. anthro: {
  10076. height: math.unit(6 + 5 / 12, "feet"),
  10077. weight: math.unit(280, "lb"),
  10078. name: "Anthro",
  10079. image: {
  10080. source: "./media/characters/cordite/anthro.svg",
  10081. extra: 1986 / 1905,
  10082. bottom: 0.025
  10083. }
  10084. },
  10085. feral: {
  10086. height: math.unit(2, "feet"),
  10087. weight: math.unit(90, "lb"),
  10088. name: "Feral",
  10089. image: {
  10090. source: "./media/characters/cordite/feral.svg",
  10091. extra: 1260 / 755,
  10092. bottom: 0.05
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(6 + 5 / 12, "feet"),
  10100. default: true
  10101. },
  10102. ]
  10103. ))
  10104. characterMakers.push(() => makeCharacter(
  10105. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10106. {
  10107. front: {
  10108. height: math.unit(6, "feet"),
  10109. weight: math.unit(150, "lb"),
  10110. name: "Front",
  10111. image: {
  10112. source: "./media/characters/pianostrong/front.svg",
  10113. extra: 6577 / 6254,
  10114. bottom: 0.02
  10115. }
  10116. },
  10117. side: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(150, "lb"),
  10120. name: "Side",
  10121. image: {
  10122. source: "./media/characters/pianostrong/side.svg",
  10123. extra: 6106 / 5730
  10124. }
  10125. },
  10126. back: {
  10127. height: math.unit(6, "feet"),
  10128. weight: math.unit(150, "lb"),
  10129. name: "Back",
  10130. image: {
  10131. source: "./media/characters/pianostrong/back.svg",
  10132. extra: 6085 / 5733,
  10133. bottom: 0.01
  10134. }
  10135. },
  10136. },
  10137. [
  10138. {
  10139. name: "Macro",
  10140. height: math.unit(100, "feet")
  10141. },
  10142. {
  10143. name: "Macro+",
  10144. height: math.unit(300, "feet"),
  10145. default: true
  10146. },
  10147. {
  10148. name: "Macro++",
  10149. height: math.unit(1000, "feet")
  10150. },
  10151. ]
  10152. ))
  10153. characterMakers.push(() => makeCharacter(
  10154. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10155. {
  10156. front: {
  10157. height: math.unit(6, "feet"),
  10158. weight: math.unit(150, "lb"),
  10159. name: "Front",
  10160. image: {
  10161. source: "./media/characters/kona/front.svg",
  10162. extra: 2960 / 2629,
  10163. bottom: 0.005
  10164. }
  10165. },
  10166. },
  10167. [
  10168. {
  10169. name: "Normal",
  10170. height: math.unit(11 + 8 / 12, "feet")
  10171. },
  10172. {
  10173. name: "Macro",
  10174. height: math.unit(850, "feet"),
  10175. default: true
  10176. },
  10177. {
  10178. name: "Macro+",
  10179. height: math.unit(1.5, "km"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Megamacro",
  10184. height: math.unit(80, "miles")
  10185. },
  10186. {
  10187. name: "Gigamacro",
  10188. height: math.unit(3500, "miles")
  10189. },
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10194. {
  10195. side: {
  10196. height: math.unit(1.9, "meters"),
  10197. weight: math.unit(326, "kg"),
  10198. name: "Side",
  10199. image: {
  10200. source: "./media/characters/levi/side.svg",
  10201. extra: 1704 / 1334,
  10202. bottom: 0.02
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(1.9, "meters"),
  10210. default: true
  10211. },
  10212. {
  10213. name: "Macro",
  10214. height: math.unit(20, "meters")
  10215. },
  10216. {
  10217. name: "Macro+",
  10218. height: math.unit(200, "meters")
  10219. },
  10220. {
  10221. name: "Megamacro",
  10222. height: math.unit(2, "km")
  10223. },
  10224. {
  10225. name: "Megamacro+",
  10226. height: math.unit(20, "km")
  10227. },
  10228. {
  10229. name: "Gigamacro",
  10230. height: math.unit(2500, "km")
  10231. },
  10232. {
  10233. name: "Gigamacro+",
  10234. height: math.unit(120000, "km")
  10235. },
  10236. {
  10237. name: "Teramacro",
  10238. height: math.unit(7.77e6, "km")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(6 + 4 / 12, "feet"),
  10247. weight: math.unit(188, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/bmc/front.svg",
  10251. extra: 1067 / 1022,
  10252. bottom: 0.047
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Human-sized",
  10259. height: math.unit(6 + 4 / 12, "feet")
  10260. },
  10261. {
  10262. name: "Small",
  10263. height: math.unit(250, "feet")
  10264. },
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(1250, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Good Day",
  10272. height: math.unit(88, "miles")
  10273. },
  10274. {
  10275. name: "Largest Measured Size",
  10276. height: math.unit(11.2e6, "lightyears")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(20, "feet"),
  10285. weight: math.unit(2016, "kg"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/sven-the-kaiju/front.svg",
  10289. extra: 1479 / 1449,
  10290. bottom: 0.05
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Fairy",
  10297. height: math.unit(6, "inches")
  10298. },
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(20, "feet"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "Rampage",
  10306. height: math.unit(200, "feet")
  10307. },
  10308. {
  10309. name: "Archfey Forest Guardian",
  10310. height: math.unit(1, "mile")
  10311. },
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10316. {
  10317. front: {
  10318. height: math.unit(4, "meters"),
  10319. weight: math.unit(2, "tons"),
  10320. name: "Front",
  10321. image: {
  10322. source: "./media/characters/marik/front.svg",
  10323. extra: 1057 / 1003,
  10324. bottom: 0.08
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(4, "meters"),
  10332. default: true
  10333. },
  10334. {
  10335. name: "Macro",
  10336. height: math.unit(20, "meters")
  10337. },
  10338. {
  10339. name: "Megamacro",
  10340. height: math.unit(50, "km")
  10341. },
  10342. {
  10343. name: "Gigamacro",
  10344. height: math.unit(100, "km")
  10345. },
  10346. {
  10347. name: "Alpha Macro",
  10348. height: math.unit(7.88e7, "yottameters")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(6, "feet"),
  10357. weight: math.unit(110, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/mel/front.svg",
  10361. extra: 736 / 617,
  10362. bottom: 0.017
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Pico",
  10369. height: math.unit(3, "pm")
  10370. },
  10371. {
  10372. name: "Nano",
  10373. height: math.unit(3, "nm")
  10374. },
  10375. {
  10376. name: "Micro",
  10377. height: math.unit(0.3, "mm"),
  10378. default: true
  10379. },
  10380. {
  10381. name: "Micro+",
  10382. height: math.unit(3, "mm")
  10383. },
  10384. {
  10385. name: "Normal",
  10386. height: math.unit(5 + 10.5 / 12, "feet")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10392. {
  10393. kaiju: {
  10394. height: math.unit(1.75, "meters"),
  10395. weight: math.unit(55, "kg"),
  10396. name: "Kaiju",
  10397. image: {
  10398. source: "./media/characters/lykonous/kaiju.svg",
  10399. extra: 1055 / 946,
  10400. bottom: 0.135
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Normal",
  10407. height: math.unit(2.5, "meters"),
  10408. default: true
  10409. },
  10410. {
  10411. name: "Kaiju Dragon",
  10412. height: math.unit(60, "meters")
  10413. },
  10414. {
  10415. name: "Mega Kaiju",
  10416. height: math.unit(120, "km")
  10417. },
  10418. {
  10419. name: "Giga Kaiju",
  10420. height: math.unit(200, "megameters")
  10421. },
  10422. {
  10423. name: "Terra Kaiju",
  10424. height: math.unit(400, "gigameters")
  10425. },
  10426. {
  10427. name: "Kaiju Dragon God",
  10428. height: math.unit(13000, "exaparsecs")
  10429. },
  10430. ]
  10431. ))
  10432. characterMakers.push(() => makeCharacter(
  10433. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10434. {
  10435. front: {
  10436. height: math.unit(6, "feet"),
  10437. weight: math.unit(150, "lb"),
  10438. name: "Front",
  10439. image: {
  10440. source: "./media/characters/blü/front.svg",
  10441. extra: 1883 / 1564,
  10442. bottom: 0.031
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(13, "feet"),
  10450. default: true
  10451. },
  10452. {
  10453. name: "Big Boi",
  10454. height: math.unit(150, "meters")
  10455. },
  10456. {
  10457. name: "Mini Stomper",
  10458. height: math.unit(300, "meters")
  10459. },
  10460. {
  10461. name: "Macro",
  10462. height: math.unit(1000, "meters")
  10463. },
  10464. {
  10465. name: "Megamacro",
  10466. height: math.unit(11000, "meters")
  10467. },
  10468. {
  10469. name: "Gigamacro",
  10470. height: math.unit(11000, "km")
  10471. },
  10472. {
  10473. name: "Teramacro",
  10474. height: math.unit(420000, "km")
  10475. },
  10476. {
  10477. name: "Examacro",
  10478. height: math.unit(120, "parsecs")
  10479. },
  10480. {
  10481. name: "God Tho",
  10482. height: math.unit(98000000000, "parsecs")
  10483. },
  10484. ]
  10485. ))
  10486. characterMakers.push(() => makeCharacter(
  10487. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10488. {
  10489. taurFront: {
  10490. height: math.unit(6, "feet"),
  10491. weight: math.unit(200, "lb"),
  10492. name: "Taur (Front)",
  10493. image: {
  10494. source: "./media/characters/scales/taur-front.svg",
  10495. extra: 1,
  10496. bottom: 0.05
  10497. }
  10498. },
  10499. taurBack: {
  10500. height: math.unit(6, "feet"),
  10501. weight: math.unit(200, "lb"),
  10502. name: "Taur (Back)",
  10503. image: {
  10504. source: "./media/characters/scales/taur-back.svg",
  10505. extra: 1,
  10506. bottom: 0.08
  10507. }
  10508. },
  10509. anthro: {
  10510. height: math.unit(6 * 7 / 12, "feet"),
  10511. weight: math.unit(100, "lb"),
  10512. name: "Anthro",
  10513. image: {
  10514. source: "./media/characters/scales/anthro.svg",
  10515. extra: 1,
  10516. bottom: 0.06
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Normal",
  10523. height: math.unit(12, "feet"),
  10524. default: true
  10525. },
  10526. ]
  10527. ))
  10528. characterMakers.push(() => makeCharacter(
  10529. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10530. {
  10531. front: {
  10532. height: math.unit(6, "feet"),
  10533. weight: math.unit(150, "lb"),
  10534. name: "Front",
  10535. image: {
  10536. source: "./media/characters/koragos/front.svg",
  10537. extra: 841 / 794,
  10538. bottom: 0.035
  10539. }
  10540. },
  10541. back: {
  10542. height: math.unit(6, "feet"),
  10543. weight: math.unit(150, "lb"),
  10544. name: "Back",
  10545. image: {
  10546. source: "./media/characters/koragos/back.svg",
  10547. extra: 841 / 810,
  10548. bottom: 0.022
  10549. }
  10550. },
  10551. },
  10552. [
  10553. {
  10554. name: "Normal",
  10555. height: math.unit(6 + 11 / 12, "feet"),
  10556. default: true
  10557. },
  10558. {
  10559. name: "Macro",
  10560. height: math.unit(490, "feet")
  10561. },
  10562. {
  10563. name: "Megamacro",
  10564. height: math.unit(10, "miles")
  10565. },
  10566. {
  10567. name: "Gigamacro",
  10568. height: math.unit(50, "miles")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(250, "lb"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/xylrem/front.svg",
  10581. extra: 3323 / 3050,
  10582. bottom: 0.065
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Micro",
  10589. height: math.unit(4, "feet")
  10590. },
  10591. {
  10592. name: "Normal",
  10593. height: math.unit(16, "feet"),
  10594. default: true
  10595. },
  10596. {
  10597. name: "Macro",
  10598. height: math.unit(2720, "feet")
  10599. },
  10600. {
  10601. name: "Megamacro",
  10602. height: math.unit(25000, "miles")
  10603. },
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10608. {
  10609. front: {
  10610. height: math.unit(8, "feet"),
  10611. weight: math.unit(250, "kg"),
  10612. name: "Front",
  10613. image: {
  10614. source: "./media/characters/ikideru/front.svg",
  10615. extra: 930 / 870,
  10616. bottom: 0.087
  10617. }
  10618. },
  10619. back: {
  10620. height: math.unit(8, "feet"),
  10621. weight: math.unit(250, "kg"),
  10622. name: "Back",
  10623. image: {
  10624. source: "./media/characters/ikideru/back.svg",
  10625. extra: 919 / 852,
  10626. bottom: 0.055
  10627. }
  10628. },
  10629. },
  10630. [
  10631. {
  10632. name: "Rare",
  10633. height: math.unit(8, "feet"),
  10634. default: true
  10635. },
  10636. {
  10637. name: "Playful Loom",
  10638. height: math.unit(80, "feet")
  10639. },
  10640. {
  10641. name: "City Leaner",
  10642. height: math.unit(230, "feet")
  10643. },
  10644. {
  10645. name: "Megamacro",
  10646. height: math.unit(2500, "feet")
  10647. },
  10648. {
  10649. name: "Gigamacro",
  10650. height: math.unit(26400, "feet")
  10651. },
  10652. {
  10653. name: "Tectonic Shifter",
  10654. height: math.unit(1.7, "megameters")
  10655. },
  10656. {
  10657. name: "Planet Carer",
  10658. height: math.unit(21, "megameters")
  10659. },
  10660. {
  10661. name: "God",
  10662. height: math.unit(11157.22, "parsecs")
  10663. },
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10668. {
  10669. front: {
  10670. height: math.unit(6, "feet"),
  10671. weight: math.unit(120, "lb"),
  10672. name: "Front",
  10673. image: {
  10674. source: "./media/characters/neo/front.svg"
  10675. }
  10676. },
  10677. },
  10678. [
  10679. {
  10680. name: "Micro",
  10681. height: math.unit(2, "inches"),
  10682. default: true
  10683. },
  10684. {
  10685. name: "Human Size",
  10686. height: math.unit(5 + 8 / 12, "feet")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10692. {
  10693. front: {
  10694. height: math.unit(13 + 10 / 12, "feet"),
  10695. weight: math.unit(5320, "lb"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/chauncey-chantz/front.svg",
  10699. extra: 1587 / 1435,
  10700. bottom: 0.02
  10701. }
  10702. },
  10703. },
  10704. [
  10705. {
  10706. name: "Normal",
  10707. height: math.unit(13 + 10 / 12, "feet"),
  10708. default: true
  10709. },
  10710. {
  10711. name: "Macro",
  10712. height: math.unit(45, "feet")
  10713. },
  10714. {
  10715. name: "Megamacro",
  10716. height: math.unit(250, "miles")
  10717. },
  10718. {
  10719. name: "Planetary",
  10720. height: math.unit(10000, "miles")
  10721. },
  10722. {
  10723. name: "Galactic",
  10724. height: math.unit(40000, "parsecs")
  10725. },
  10726. {
  10727. name: "Universal",
  10728. height: math.unit(1, "yottameter")
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10734. {
  10735. front: {
  10736. height: math.unit(6, "feet"),
  10737. weight: math.unit(150, "lb"),
  10738. name: "Front",
  10739. image: {
  10740. source: "./media/characters/epifox/front.svg",
  10741. extra: 1,
  10742. bottom: 0.075
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Micro",
  10749. height: math.unit(6, "inches")
  10750. },
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(12, "feet"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Macro",
  10758. height: math.unit(3810, "feet")
  10759. },
  10760. {
  10761. name: "Megamacro",
  10762. height: math.unit(500, "miles")
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10768. {
  10769. front: {
  10770. height: math.unit(1.8796, "m"),
  10771. weight: math.unit(230, "lb"),
  10772. name: "Front",
  10773. image: {
  10774. source: "./media/characters/colin-t/front.svg",
  10775. extra: 1272 / 1193,
  10776. bottom: 0.07
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Micro",
  10783. height: math.unit(0.571, "meters")
  10784. },
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(1.8796, "meters"),
  10788. default: true
  10789. },
  10790. {
  10791. name: "Tall",
  10792. height: math.unit(4, "meters")
  10793. },
  10794. {
  10795. name: "Macro",
  10796. height: math.unit(67.241, "meters")
  10797. },
  10798. {
  10799. name: "Megamacro",
  10800. height: math.unit(371.856, "meters")
  10801. },
  10802. {
  10803. name: "Planetary",
  10804. height: math.unit(12631.5689, "km")
  10805. },
  10806. ]
  10807. ))
  10808. characterMakers.push(() => makeCharacter(
  10809. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10810. {
  10811. front: {
  10812. height: math.unit(1.85, "meters"),
  10813. weight: math.unit(80, "kg"),
  10814. name: "Front",
  10815. image: {
  10816. source: "./media/characters/matvei/front.svg",
  10817. extra: 614 / 594,
  10818. bottom: 0.01
  10819. }
  10820. },
  10821. },
  10822. [
  10823. {
  10824. name: "Normal",
  10825. height: math.unit(1.85, "meters"),
  10826. default: true
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(5 + 9 / 12, "feet"),
  10835. weight: math.unit(70, "lb"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/quincy/front.svg",
  10839. extra: 3041 / 2751
  10840. }
  10841. },
  10842. back: {
  10843. height: math.unit(5 + 9 / 12, "feet"),
  10844. weight: math.unit(70, "lb"),
  10845. name: "Back",
  10846. image: {
  10847. source: "./media/characters/quincy/back.svg",
  10848. extra: 3041 / 2751
  10849. }
  10850. },
  10851. flying: {
  10852. height: math.unit(5 + 4 / 12, "feet"),
  10853. weight: math.unit(70, "lb"),
  10854. name: "Flying",
  10855. image: {
  10856. source: "./media/characters/quincy/flying.svg",
  10857. extra: 1044 / 930
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Micro",
  10864. height: math.unit(3, "cm")
  10865. },
  10866. {
  10867. name: "Normal",
  10868. height: math.unit(5 + 9 / 12, "feet")
  10869. },
  10870. {
  10871. name: "Macro",
  10872. height: math.unit(200, "meters"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Megamacro",
  10877. height: math.unit(1000, "meters")
  10878. },
  10879. ]
  10880. ))
  10881. characterMakers.push(() => makeCharacter(
  10882. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10883. {
  10884. front: {
  10885. height: math.unit(4 + 7 / 12, "feet"),
  10886. weight: math.unit(150, "lb"),
  10887. name: "Front",
  10888. image: {
  10889. source: "./media/characters/vanrel/front.svg",
  10890. extra: 1,
  10891. bottom: 0.02
  10892. }
  10893. },
  10894. elemental: {
  10895. height: math.unit(3, "feet"),
  10896. weight: math.unit(150, "lb"),
  10897. name: "Elemental",
  10898. image: {
  10899. source: "./media/characters/vanrel/elemental.svg",
  10900. extra: 192.3 / 162.8,
  10901. bottom: 1.79 / 194.17
  10902. }
  10903. },
  10904. side: {
  10905. height: math.unit(4 + 7 / 12, "feet"),
  10906. weight: math.unit(150, "lb"),
  10907. name: "Side",
  10908. image: {
  10909. source: "./media/characters/vanrel/side.svg",
  10910. extra: 1,
  10911. bottom: 0.025
  10912. }
  10913. },
  10914. tome: {
  10915. height: math.unit(1.35, "feet"),
  10916. weight: math.unit(10, "lb"),
  10917. name: "Vanrel's Tome",
  10918. rename: true,
  10919. image: {
  10920. source: "./media/characters/vanrel/tome.svg"
  10921. }
  10922. },
  10923. beans: {
  10924. height: math.unit(0.89, "feet"),
  10925. name: "Beans",
  10926. image: {
  10927. source: "./media/characters/vanrel/beans.svg"
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Normal",
  10934. height: math.unit(4 + 7 / 12, "feet"),
  10935. default: true
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10941. {
  10942. front: {
  10943. height: math.unit(7 + 5 / 12, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Front",
  10946. image: {
  10947. source: "./media/characters/kuiper-vanrel/front.svg",
  10948. extra: 1118 / 1068,
  10949. bottom: 0.09
  10950. }
  10951. },
  10952. foot: {
  10953. height: math.unit(0.55, "meters"),
  10954. name: "Foot",
  10955. image: {
  10956. source: "./media/characters/kuiper-vanrel/foot.svg",
  10957. }
  10958. },
  10959. battle: {
  10960. height: math.unit(6.824, "feet"),
  10961. weight: math.unit(150, "lb"),
  10962. name: "Battle",
  10963. image: {
  10964. source: "./media/characters/kuiper-vanrel/battle.svg",
  10965. extra: 1466 / 1327,
  10966. bottom: 29 / 1492.5
  10967. }
  10968. },
  10969. },
  10970. [
  10971. {
  10972. name: "Normal",
  10973. height: math.unit(7 + 5 / 12, "feet"),
  10974. default: true
  10975. },
  10976. ]
  10977. ))
  10978. characterMakers.push(() => makeCharacter(
  10979. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10980. {
  10981. front: {
  10982. height: math.unit(8 + 5 / 12, "feet"),
  10983. weight: math.unit(150, "lb"),
  10984. name: "Front",
  10985. image: {
  10986. source: "./media/characters/keset-vanrel/front.svg",
  10987. extra: 1150 / 1084,
  10988. bottom: 0.05
  10989. }
  10990. },
  10991. hand: {
  10992. height: math.unit(0.6, "meters"),
  10993. name: "Hand",
  10994. image: {
  10995. source: "./media/characters/keset-vanrel/hand.svg"
  10996. }
  10997. },
  10998. foot: {
  10999. height: math.unit(0.94978, "meters"),
  11000. name: "Foot",
  11001. image: {
  11002. source: "./media/characters/keset-vanrel/foot.svg"
  11003. }
  11004. },
  11005. battle: {
  11006. height: math.unit(7.408, "feet"),
  11007. weight: math.unit(150, "lb"),
  11008. name: "Battle",
  11009. image: {
  11010. source: "./media/characters/keset-vanrel/battle.svg",
  11011. extra: 1890 / 1386,
  11012. bottom: 73.28 / 1970
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(8 + 5 / 12, "feet"),
  11020. default: true
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/neos/front.svg",
  11033. extra: 1696 / 992,
  11034. bottom: 0.14
  11035. }
  11036. },
  11037. },
  11038. [
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(54, "cm"),
  11042. default: true
  11043. },
  11044. {
  11045. name: "Macro",
  11046. height: math.unit(100, "m")
  11047. },
  11048. {
  11049. name: "Megamacro",
  11050. height: math.unit(10, "km")
  11051. },
  11052. {
  11053. name: "Megamacro+",
  11054. height: math.unit(100, "km")
  11055. },
  11056. {
  11057. name: "Gigamacro",
  11058. height: math.unit(100, "Mm")
  11059. },
  11060. {
  11061. name: "Teramacro",
  11062. height: math.unit(100, "Gm")
  11063. },
  11064. {
  11065. name: "Examacro",
  11066. height: math.unit(100, "Em")
  11067. },
  11068. {
  11069. name: "Godly",
  11070. height: math.unit(10000, "Ym")
  11071. },
  11072. {
  11073. name: "Beyond Godly",
  11074. height: math.unit(10000000, "Ym")
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11080. {
  11081. feminine: {
  11082. height: math.unit(5, "feet"),
  11083. weight: math.unit(100, "lb"),
  11084. name: "Feminine",
  11085. image: {
  11086. source: "./media/characters/sammy-mouse/feminine.svg",
  11087. extra: 2526 / 2425,
  11088. bottom: 0.123
  11089. }
  11090. },
  11091. masculine: {
  11092. height: math.unit(5, "feet"),
  11093. weight: math.unit(100, "lb"),
  11094. name: "Masculine",
  11095. image: {
  11096. source: "./media/characters/sammy-mouse/masculine.svg",
  11097. extra: 2526 / 2425,
  11098. bottom: 0.123
  11099. }
  11100. },
  11101. },
  11102. [
  11103. {
  11104. name: "Micro",
  11105. height: math.unit(5, "inches")
  11106. },
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(5, "feet"),
  11110. default: true
  11111. },
  11112. {
  11113. name: "Macro",
  11114. height: math.unit(60, "feet")
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(4, "feet"),
  11123. weight: math.unit(50, "lb"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/kole/front.svg",
  11127. extra: 1423 / 1303,
  11128. bottom: 0.025
  11129. }
  11130. },
  11131. back: {
  11132. height: math.unit(4, "feet"),
  11133. weight: math.unit(50, "lb"),
  11134. name: "Back",
  11135. image: {
  11136. source: "./media/characters/kole/back.svg",
  11137. extra: 1426 / 1280,
  11138. bottom: 0.02
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Normal",
  11145. height: math.unit(4, "feet"),
  11146. default: true
  11147. },
  11148. ]
  11149. ))
  11150. characterMakers.push(() => makeCharacter(
  11151. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11152. {
  11153. front: {
  11154. height: math.unit(2 + 6 / 12, "feet"),
  11155. weight: math.unit(20, "lb"),
  11156. name: "Front",
  11157. image: {
  11158. source: "./media/characters/rufran/front.svg",
  11159. extra: 2041 / 1839,
  11160. bottom: 0.055
  11161. }
  11162. },
  11163. back: {
  11164. height: math.unit(2 + 6 / 12, "feet"),
  11165. weight: math.unit(20, "lb"),
  11166. name: "Back",
  11167. image: {
  11168. source: "./media/characters/rufran/back.svg",
  11169. extra: 2054 / 1839,
  11170. bottom: 0.01
  11171. }
  11172. },
  11173. hand: {
  11174. height: math.unit(0.2166, "meters"),
  11175. name: "Hand",
  11176. image: {
  11177. source: "./media/characters/rufran/hand.svg"
  11178. }
  11179. },
  11180. foot: {
  11181. height: math.unit(0.185, "meters"),
  11182. name: "Foot",
  11183. image: {
  11184. source: "./media/characters/rufran/foot.svg"
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Micro",
  11191. height: math.unit(1, "inch")
  11192. },
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(2 + 6 / 12, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Big",
  11200. height: math.unit(60, "feet")
  11201. },
  11202. {
  11203. name: "Macro",
  11204. height: math.unit(325, "feet")
  11205. },
  11206. ]
  11207. ))
  11208. characterMakers.push(() => makeCharacter(
  11209. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11210. {
  11211. front: {
  11212. height: math.unit(0.3, "meters"),
  11213. weight: math.unit(3.5, "kg"),
  11214. name: "Front",
  11215. image: {
  11216. source: "./media/characters/chip/front.svg",
  11217. extra: 748 / 674
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Micro",
  11224. height: math.unit(1, "inch"),
  11225. default: true
  11226. },
  11227. ]
  11228. ))
  11229. characterMakers.push(() => makeCharacter(
  11230. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11231. {
  11232. side: {
  11233. height: math.unit(2.3, "meters"),
  11234. weight: math.unit(3500, "lb"),
  11235. name: "Side",
  11236. image: {
  11237. source: "./media/characters/torvid/side.svg",
  11238. extra: 1972 / 722,
  11239. bottom: 0.035
  11240. }
  11241. },
  11242. },
  11243. [
  11244. {
  11245. name: "Normal",
  11246. height: math.unit(2.3, "meters"),
  11247. default: true
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(2, "meters"),
  11256. weight: math.unit(150.5, "kg"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/susan/front.svg",
  11260. extra: 693 / 635,
  11261. bottom: 0.05
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Megamacro",
  11268. height: math.unit(505, "miles"),
  11269. default: true
  11270. },
  11271. ]
  11272. ))
  11273. characterMakers.push(() => makeCharacter(
  11274. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11275. {
  11276. front: {
  11277. height: math.unit(6, "feet"),
  11278. weight: math.unit(150, "lb"),
  11279. name: "Front",
  11280. image: {
  11281. source: "./media/characters/raindrops/front.svg",
  11282. extra: 2655 / 2461,
  11283. bottom: 0.02
  11284. }
  11285. },
  11286. back: {
  11287. height: math.unit(6, "feet"),
  11288. weight: math.unit(150, "lb"),
  11289. name: "Back",
  11290. image: {
  11291. source: "./media/characters/raindrops/back.svg",
  11292. extra: 2574 / 2400,
  11293. bottom: 0.03
  11294. }
  11295. },
  11296. },
  11297. [
  11298. {
  11299. name: "Micro",
  11300. height: math.unit(6, "inches")
  11301. },
  11302. {
  11303. name: "Normal",
  11304. height: math.unit(6 + 2 / 12, "feet")
  11305. },
  11306. {
  11307. name: "Macro",
  11308. height: math.unit(131, "feet"),
  11309. default: true
  11310. },
  11311. {
  11312. name: "Megamacro",
  11313. height: math.unit(15, "miles")
  11314. },
  11315. {
  11316. name: "Gigamacro",
  11317. height: math.unit(4000, "miles")
  11318. },
  11319. {
  11320. name: "Teramacro",
  11321. height: math.unit(315000, "miles")
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11327. {
  11328. front: {
  11329. height: math.unit(2.794, "meters"),
  11330. weight: math.unit(325, "kg"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/tezwa/front.svg",
  11334. extra: 2083 / 1906,
  11335. bottom: 0.031
  11336. }
  11337. },
  11338. foot: {
  11339. height: math.unit(0.687, "meters"),
  11340. name: "Foot",
  11341. image: {
  11342. source: "./media/characters/tezwa/foot.svg"
  11343. }
  11344. },
  11345. },
  11346. [
  11347. {
  11348. name: "Normal",
  11349. height: math.unit(9 + 2 / 12, "feet"),
  11350. default: true
  11351. },
  11352. ]
  11353. ))
  11354. characterMakers.push(() => makeCharacter(
  11355. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11356. {
  11357. front: {
  11358. height: math.unit(58, "feet"),
  11359. weight: math.unit(89000, "lb"),
  11360. name: "Front",
  11361. image: {
  11362. source: "./media/characters/typhus/front.svg",
  11363. extra: 816 / 800,
  11364. bottom: 0.065
  11365. }
  11366. },
  11367. },
  11368. [
  11369. {
  11370. name: "Macro",
  11371. height: math.unit(58, "feet"),
  11372. default: true
  11373. },
  11374. ]
  11375. ))
  11376. characterMakers.push(() => makeCharacter(
  11377. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11378. {
  11379. front: {
  11380. height: math.unit(12, "feet"),
  11381. weight: math.unit(6, "tonnes"),
  11382. name: "Front",
  11383. image: {
  11384. source: "./media/characters/lyra-von-wulf/front.svg",
  11385. extra: 1,
  11386. bottom: 0.10
  11387. }
  11388. },
  11389. frontMecha: {
  11390. height: math.unit(12, "feet"),
  11391. weight: math.unit(12, "tonnes"),
  11392. name: "Front (Mecha)",
  11393. image: {
  11394. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11395. extra: 1,
  11396. bottom: 0.042
  11397. }
  11398. },
  11399. maw: {
  11400. height: math.unit(2.2, "feet"),
  11401. name: "Maw",
  11402. image: {
  11403. source: "./media/characters/lyra-von-wulf/maw.svg"
  11404. }
  11405. },
  11406. },
  11407. [
  11408. {
  11409. name: "Normal",
  11410. height: math.unit(12, "feet"),
  11411. default: true
  11412. },
  11413. {
  11414. name: "Classic",
  11415. height: math.unit(50, "feet")
  11416. },
  11417. {
  11418. name: "Macro",
  11419. height: math.unit(500, "feet")
  11420. },
  11421. {
  11422. name: "Megamacro",
  11423. height: math.unit(1, "mile")
  11424. },
  11425. {
  11426. name: "Gigamacro",
  11427. height: math.unit(400, "miles")
  11428. },
  11429. {
  11430. name: "Teramacro",
  11431. height: math.unit(22000, "miles")
  11432. },
  11433. {
  11434. name: "Solarmacro",
  11435. height: math.unit(8600000, "miles")
  11436. },
  11437. {
  11438. name: "Galactic",
  11439. height: math.unit(1057000, "lightyears")
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11445. {
  11446. front: {
  11447. height: math.unit(6 + 10 / 12, "feet"),
  11448. weight: math.unit(150, "lb"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/dixon/front.svg",
  11452. extra: 3361 / 3209,
  11453. bottom: 0.01
  11454. }
  11455. },
  11456. },
  11457. [
  11458. {
  11459. name: "Normal",
  11460. height: math.unit(6 + 10 / 12, "feet"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Big",
  11465. height: math.unit(12, "meters")
  11466. },
  11467. {
  11468. name: "Macro",
  11469. height: math.unit(500, "meters")
  11470. },
  11471. {
  11472. name: "Megamacro",
  11473. height: math.unit(2, "km")
  11474. },
  11475. ]
  11476. ))
  11477. characterMakers.push(() => makeCharacter(
  11478. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11479. {
  11480. front: {
  11481. height: math.unit(185, "cm"),
  11482. weight: math.unit(68, "kg"),
  11483. name: "Front",
  11484. image: {
  11485. source: "./media/characters/kauko/front.svg",
  11486. extra: 1455 / 1421,
  11487. bottom: 0.03
  11488. }
  11489. },
  11490. back: {
  11491. height: math.unit(185, "cm"),
  11492. weight: math.unit(68, "kg"),
  11493. name: "Back",
  11494. image: {
  11495. source: "./media/characters/kauko/back.svg",
  11496. extra: 1455 / 1421,
  11497. bottom: 0.004
  11498. }
  11499. },
  11500. },
  11501. [
  11502. {
  11503. name: "Normal",
  11504. height: math.unit(185, "cm"),
  11505. default: true
  11506. },
  11507. ]
  11508. ))
  11509. characterMakers.push(() => makeCharacter(
  11510. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11511. {
  11512. front: {
  11513. height: math.unit(6, "feet"),
  11514. weight: math.unit(150, "kg"),
  11515. name: "Front",
  11516. image: {
  11517. source: "./media/characters/varg/front.svg",
  11518. extra: 1108 / 1018,
  11519. bottom: 0.0375
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(5, "meters")
  11527. },
  11528. {
  11529. name: "Macro",
  11530. height: math.unit(200, "meters")
  11531. },
  11532. {
  11533. name: "Megamacro",
  11534. height: math.unit(20, "kilometers")
  11535. },
  11536. {
  11537. name: "True Size",
  11538. height: math.unit(211, "km"),
  11539. default: true
  11540. },
  11541. {
  11542. name: "Gigamacro",
  11543. height: math.unit(1000, "km")
  11544. },
  11545. {
  11546. name: "Gigamacro+",
  11547. height: math.unit(8000, "km")
  11548. },
  11549. {
  11550. name: "Teramacro",
  11551. height: math.unit(1000000, "km")
  11552. },
  11553. ]
  11554. ))
  11555. characterMakers.push(() => makeCharacter(
  11556. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11557. {
  11558. front: {
  11559. height: math.unit(7 + 7 / 12, "feet"),
  11560. weight: math.unit(267, "lb"),
  11561. name: "Front",
  11562. image: {
  11563. source: "./media/characters/dayza/front.svg",
  11564. extra: 1262 / 1200,
  11565. bottom: 0.035
  11566. }
  11567. },
  11568. side: {
  11569. height: math.unit(7 + 7 / 12, "feet"),
  11570. weight: math.unit(267, "lb"),
  11571. name: "Side",
  11572. image: {
  11573. source: "./media/characters/dayza/side.svg",
  11574. extra: 1295 / 1245,
  11575. bottom: 0.05
  11576. }
  11577. },
  11578. back: {
  11579. height: math.unit(7 + 7 / 12, "feet"),
  11580. weight: math.unit(267, "lb"),
  11581. name: "Back",
  11582. image: {
  11583. source: "./media/characters/dayza/back.svg",
  11584. extra: 1241 / 1170
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(7 + 7 / 12, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(155, "feet")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(6 + 5 / 12, "feet"),
  11605. weight: math.unit(160, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/xanthos/front.svg",
  11609. extra: 1,
  11610. bottom: 0.04
  11611. }
  11612. },
  11613. back: {
  11614. height: math.unit(6 + 5 / 12, "feet"),
  11615. weight: math.unit(160, "lb"),
  11616. name: "Back",
  11617. image: {
  11618. source: "./media/characters/xanthos/back.svg",
  11619. extra: 1,
  11620. bottom: 0.03
  11621. }
  11622. },
  11623. hand: {
  11624. height: math.unit(0.928, "feet"),
  11625. name: "Hand",
  11626. image: {
  11627. source: "./media/characters/xanthos/hand.svg"
  11628. }
  11629. },
  11630. foot: {
  11631. height: math.unit(1.286, "feet"),
  11632. name: "Foot",
  11633. image: {
  11634. source: "./media/characters/xanthos/foot.svg"
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(6 + 5 / 12, "feet"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Normal+",
  11646. height: math.unit(6, "meters")
  11647. },
  11648. {
  11649. name: "Macro",
  11650. height: math.unit(40, "feet")
  11651. },
  11652. {
  11653. name: "Macro+",
  11654. height: math.unit(200, "meters")
  11655. },
  11656. {
  11657. name: "Megamacro",
  11658. height: math.unit(20, "km")
  11659. },
  11660. {
  11661. name: "Megamacro+",
  11662. height: math.unit(100, "km")
  11663. },
  11664. ]
  11665. ))
  11666. characterMakers.push(() => makeCharacter(
  11667. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11668. {
  11669. front: {
  11670. height: math.unit(6 + 3 / 12, "feet"),
  11671. weight: math.unit(215, "lb"),
  11672. name: "Front",
  11673. image: {
  11674. source: "./media/characters/grynn/front.svg",
  11675. extra: 4627 / 4209,
  11676. bottom: 0.047
  11677. }
  11678. },
  11679. },
  11680. [
  11681. {
  11682. name: "Micro",
  11683. height: math.unit(6, "inches")
  11684. },
  11685. {
  11686. name: "Normal",
  11687. height: math.unit(6 + 3 / 12, "feet"),
  11688. default: true
  11689. },
  11690. {
  11691. name: "Big",
  11692. height: math.unit(104, "feet")
  11693. },
  11694. {
  11695. name: "Macro",
  11696. height: math.unit(944, "feet")
  11697. },
  11698. {
  11699. name: "Macro+",
  11700. height: math.unit(9480, "feet")
  11701. },
  11702. {
  11703. name: "Megamacro",
  11704. height: math.unit(78752, "feet")
  11705. },
  11706. {
  11707. name: "Megamacro+",
  11708. height: math.unit(630128, "feet")
  11709. },
  11710. {
  11711. name: "Megamacro++",
  11712. height: math.unit(3150695, "feet")
  11713. },
  11714. ]
  11715. ))
  11716. characterMakers.push(() => makeCharacter(
  11717. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11718. {
  11719. front: {
  11720. height: math.unit(7 + 5 / 12, "feet"),
  11721. weight: math.unit(450, "lb"),
  11722. name: "Front",
  11723. image: {
  11724. source: "./media/characters/mocha-aura/front.svg",
  11725. extra: 1907 / 1817,
  11726. bottom: 0.04
  11727. }
  11728. },
  11729. back: {
  11730. height: math.unit(7 + 5 / 12, "feet"),
  11731. weight: math.unit(450, "lb"),
  11732. name: "Back",
  11733. image: {
  11734. source: "./media/characters/mocha-aura/back.svg",
  11735. extra: 1900 / 1825,
  11736. bottom: 0.045
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Nano",
  11743. height: math.unit(1, "nm")
  11744. },
  11745. {
  11746. name: "Megamicro",
  11747. height: math.unit(1, "mm")
  11748. },
  11749. {
  11750. name: "Micro",
  11751. height: math.unit(3, "inches")
  11752. },
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(7 + 5 / 12, "feet"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Macro",
  11760. height: math.unit(30, "feet")
  11761. },
  11762. {
  11763. name: "Megamacro",
  11764. height: math.unit(3500, "feet")
  11765. },
  11766. {
  11767. name: "Teramacro",
  11768. height: math.unit(500000, "miles")
  11769. },
  11770. {
  11771. name: "Petamacro",
  11772. height: math.unit(50000000000000000, "parsecs")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(6, "feet"),
  11781. weight: math.unit(150, "lb"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/ilisha-devya/front.svg",
  11785. extra: 1,
  11786. bottom: 0.175
  11787. }
  11788. },
  11789. back: {
  11790. height: math.unit(6, "feet"),
  11791. weight: math.unit(150, "lb"),
  11792. name: "Back",
  11793. image: {
  11794. source: "./media/characters/ilisha-devya/back.svg",
  11795. extra: 1,
  11796. bottom: 0.015
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Macro",
  11803. height: math.unit(500, "feet"),
  11804. default: true
  11805. },
  11806. {
  11807. name: "Megamacro",
  11808. height: math.unit(10, "miles")
  11809. },
  11810. {
  11811. name: "Gigamacro",
  11812. height: math.unit(100000, "miles")
  11813. },
  11814. {
  11815. name: "Examacro",
  11816. height: math.unit(1e9, "lightyears")
  11817. },
  11818. {
  11819. name: "Omniversal",
  11820. height: math.unit(1e33, "lightyears")
  11821. },
  11822. {
  11823. name: "Beyond Infinite",
  11824. height: math.unit(1e100, "lightyears")
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11830. {
  11831. Side: {
  11832. height: math.unit(6, "feet"),
  11833. weight: math.unit(150, "lb"),
  11834. name: "Side",
  11835. image: {
  11836. source: "./media/characters/mira/side.svg",
  11837. extra: 900 / 799,
  11838. bottom: 0.02
  11839. }
  11840. },
  11841. },
  11842. [
  11843. {
  11844. name: "Human Size",
  11845. height: math.unit(6, "feet")
  11846. },
  11847. {
  11848. name: "Macro",
  11849. height: math.unit(100, "feet"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Megamacro",
  11854. height: math.unit(10, "miles")
  11855. },
  11856. {
  11857. name: "Gigamacro",
  11858. height: math.unit(25000, "miles")
  11859. },
  11860. {
  11861. name: "Teramacro",
  11862. height: math.unit(300, "AU")
  11863. },
  11864. {
  11865. name: "Full Size",
  11866. height: math.unit(4.5e10, "lightyears")
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(6, "feet"),
  11875. weight: math.unit(150, "lb"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/holly/front.svg",
  11879. extra: 639 / 606
  11880. }
  11881. },
  11882. back: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(150, "lb"),
  11885. name: "Back",
  11886. image: {
  11887. source: "./media/characters/holly/back.svg",
  11888. extra: 623 / 598
  11889. }
  11890. },
  11891. frontWorking: {
  11892. height: math.unit(6, "feet"),
  11893. weight: math.unit(150, "lb"),
  11894. name: "Front (Working)",
  11895. image: {
  11896. source: "./media/characters/holly/front-working.svg",
  11897. extra: 607 / 577,
  11898. bottom: 0.048
  11899. }
  11900. },
  11901. },
  11902. [
  11903. {
  11904. name: "Normal",
  11905. height: math.unit(12 + 3 / 12, "feet"),
  11906. default: true
  11907. },
  11908. ]
  11909. ))
  11910. characterMakers.push(() => makeCharacter(
  11911. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11912. {
  11913. front: {
  11914. height: math.unit(6, "feet"),
  11915. weight: math.unit(150, "lb"),
  11916. name: "Front",
  11917. image: {
  11918. source: "./media/characters/porter/front.svg",
  11919. extra: 1,
  11920. bottom: 0.01
  11921. }
  11922. },
  11923. frontRobes: {
  11924. height: math.unit(6, "feet"),
  11925. weight: math.unit(150, "lb"),
  11926. name: "Front (Robes)",
  11927. image: {
  11928. source: "./media/characters/porter/front-robes.svg",
  11929. extra: 1.01,
  11930. bottom: 0.01
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Normal",
  11937. height: math.unit(11 + 9 / 12, "feet"),
  11938. default: true
  11939. },
  11940. ]
  11941. ))
  11942. characterMakers.push(() => makeCharacter(
  11943. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11944. {
  11945. legendary: {
  11946. height: math.unit(6, "feet"),
  11947. weight: math.unit(150, "lb"),
  11948. name: "Legendary",
  11949. image: {
  11950. source: "./media/characters/lucy/legendary.svg",
  11951. extra: 1355 / 1100,
  11952. bottom: 0.045
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Legendary",
  11959. height: math.unit(86882 * 2, "miles"),
  11960. default: true
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(6, "feet"),
  11969. weight: math.unit(150, "lb"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/drusilla/front.svg",
  11973. extra: 678 / 635,
  11974. bottom: 0.03
  11975. }
  11976. },
  11977. back: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(150, "lb"),
  11980. name: "Back",
  11981. image: {
  11982. source: "./media/characters/drusilla/back.svg",
  11983. extra: 678 / 635,
  11984. bottom: 0.005
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Macro",
  11991. height: math.unit(100, "feet")
  11992. },
  11993. {
  11994. name: "Canon Height",
  11995. height: math.unit(2000, "feet"),
  11996. default: true
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(6, "feet"),
  12005. weight: math.unit(180, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/renard-thatch/front.svg",
  12009. extra: 2411 / 2275,
  12010. bottom: 0.01
  12011. }
  12012. },
  12013. frontPosing: {
  12014. height: math.unit(6, "feet"),
  12015. weight: math.unit(180, "lb"),
  12016. name: "Front (Posing)",
  12017. image: {
  12018. source: "./media/characters/renard-thatch/front-posing.svg",
  12019. extra: 2381 / 2261,
  12020. bottom: 0.01
  12021. }
  12022. },
  12023. back: {
  12024. height: math.unit(6, "feet"),
  12025. weight: math.unit(180, "lb"),
  12026. name: "Back",
  12027. image: {
  12028. source: "./media/characters/renard-thatch/back.svg",
  12029. extra: 2428 / 2288
  12030. }
  12031. },
  12032. },
  12033. [
  12034. {
  12035. name: "Micro",
  12036. height: math.unit(3, "inches")
  12037. },
  12038. {
  12039. name: "Default",
  12040. height: math.unit(6, "feet"),
  12041. default: true
  12042. },
  12043. {
  12044. name: "Macro",
  12045. height: math.unit(75, "feet")
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12051. {
  12052. front: {
  12053. height: math.unit(1450, "feet"),
  12054. weight: math.unit(1.21e6, "tons"),
  12055. name: "Front",
  12056. image: {
  12057. source: "./media/characters/sekvra/front.svg",
  12058. extra: 1,
  12059. bottom: 0.03
  12060. }
  12061. },
  12062. frontClothed: {
  12063. height: math.unit(1450, "feet"),
  12064. weight: math.unit(1.21e6, "tons"),
  12065. name: "Front (Clothed)",
  12066. image: {
  12067. source: "./media/characters/sekvra/front-clothed.svg",
  12068. extra: 1,
  12069. bottom: 0.03
  12070. }
  12071. },
  12072. side: {
  12073. height: math.unit(1450, "feet"),
  12074. weight: math.unit(1.21e6, "tons"),
  12075. name: "Side",
  12076. image: {
  12077. source: "./media/characters/sekvra/side.svg",
  12078. extra: 1,
  12079. bottom: 0.025
  12080. }
  12081. },
  12082. back: {
  12083. height: math.unit(1450, "feet"),
  12084. weight: math.unit(1.21e6, "tons"),
  12085. name: "Back",
  12086. image: {
  12087. source: "./media/characters/sekvra/back.svg",
  12088. extra: 1,
  12089. bottom: 0.005
  12090. }
  12091. },
  12092. },
  12093. [
  12094. {
  12095. name: "Macro",
  12096. height: math.unit(1450, "feet"),
  12097. default: true
  12098. },
  12099. {
  12100. name: "Megamacro",
  12101. height: math.unit(15000, "feet")
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12107. {
  12108. front: {
  12109. height: math.unit(6, "feet"),
  12110. weight: math.unit(150, "lb"),
  12111. name: "Front",
  12112. image: {
  12113. source: "./media/characters/carmine/front.svg",
  12114. extra: 1,
  12115. bottom: 0.035
  12116. }
  12117. },
  12118. frontArmor: {
  12119. height: math.unit(6, "feet"),
  12120. weight: math.unit(150, "lb"),
  12121. name: "Front (Armor)",
  12122. image: {
  12123. source: "./media/characters/carmine/front-armor.svg",
  12124. extra: 1,
  12125. bottom: 0.035
  12126. }
  12127. },
  12128. },
  12129. [
  12130. {
  12131. name: "Large",
  12132. height: math.unit(1, "mile")
  12133. },
  12134. {
  12135. name: "Huge",
  12136. height: math.unit(40, "miles"),
  12137. default: true
  12138. },
  12139. {
  12140. name: "Colossal",
  12141. height: math.unit(2500, "miles")
  12142. },
  12143. ]
  12144. ))
  12145. characterMakers.push(() => makeCharacter(
  12146. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12147. {
  12148. front: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(150, "lb"),
  12151. name: "Front",
  12152. image: {
  12153. source: "./media/characters/elyssia/front.svg",
  12154. extra: 2201 / 2035,
  12155. bottom: 0.05
  12156. }
  12157. },
  12158. frontClothed: {
  12159. height: math.unit(6, "feet"),
  12160. weight: math.unit(150, "lb"),
  12161. name: "Front (Clothed)",
  12162. image: {
  12163. source: "./media/characters/elyssia/front-clothed.svg",
  12164. extra: 2201 / 2035,
  12165. bottom: 0.05
  12166. }
  12167. },
  12168. back: {
  12169. height: math.unit(6, "feet"),
  12170. weight: math.unit(150, "lb"),
  12171. name: "Back",
  12172. image: {
  12173. source: "./media/characters/elyssia/back.svg",
  12174. extra: 2201 / 2035,
  12175. bottom: 0.013
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Smaller",
  12182. height: math.unit(150, "feet")
  12183. },
  12184. {
  12185. name: "Standard",
  12186. height: math.unit(1400, "feet"),
  12187. default: true
  12188. },
  12189. {
  12190. name: "Distracted",
  12191. height: math.unit(15000, "feet")
  12192. },
  12193. ]
  12194. ))
  12195. characterMakers.push(() => makeCharacter(
  12196. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12197. {
  12198. front: {
  12199. height: math.unit(7 + 4 / 12, "feet"),
  12200. weight: math.unit(500, "lb"),
  12201. name: "Front",
  12202. image: {
  12203. source: "./media/characters/geno-maxwell/front.svg",
  12204. extra: 2207 / 2040,
  12205. bottom: 0.015
  12206. }
  12207. },
  12208. },
  12209. [
  12210. {
  12211. name: "Micro",
  12212. height: math.unit(3, "inches")
  12213. },
  12214. {
  12215. name: "Normal",
  12216. height: math.unit(7 + 4 / 12, "feet"),
  12217. default: true
  12218. },
  12219. {
  12220. name: "Macro",
  12221. height: math.unit(220, "feet")
  12222. },
  12223. {
  12224. name: "Megamacro",
  12225. height: math.unit(11, "miles")
  12226. },
  12227. ]
  12228. ))
  12229. characterMakers.push(() => makeCharacter(
  12230. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12231. {
  12232. front: {
  12233. height: math.unit(7 + 4 / 12, "feet"),
  12234. weight: math.unit(500, "lb"),
  12235. name: "Front",
  12236. image: {
  12237. source: "./media/characters/regena-maxwell/front.svg",
  12238. extra: 3115 / 2770,
  12239. bottom: 0.02
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Normal",
  12246. height: math.unit(7 + 4 / 12, "feet"),
  12247. default: true
  12248. },
  12249. {
  12250. name: "Macro",
  12251. height: math.unit(220, "feet")
  12252. },
  12253. {
  12254. name: "Megamacro",
  12255. height: math.unit(11, "miles")
  12256. },
  12257. ]
  12258. ))
  12259. characterMakers.push(() => makeCharacter(
  12260. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12261. {
  12262. front: {
  12263. height: math.unit(6, "feet"),
  12264. weight: math.unit(150, "lb"),
  12265. name: "Front",
  12266. image: {
  12267. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12268. extra: 860 / 690,
  12269. bottom: 0.03
  12270. }
  12271. },
  12272. },
  12273. [
  12274. {
  12275. name: "Normal",
  12276. height: math.unit(1.7, "meters"),
  12277. default: true
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12283. {
  12284. front: {
  12285. height: math.unit(6, "feet"),
  12286. weight: math.unit(150, "lb"),
  12287. name: "Front",
  12288. image: {
  12289. source: "./media/characters/quilly/front.svg",
  12290. extra: 890 / 776
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Gigamacro",
  12297. height: math.unit(404090, "miles"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(7 + 8 / 12, "feet"),
  12307. weight: math.unit(350, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/tempest/front.svg",
  12311. extra: 1175 / 1086,
  12312. bottom: 0.02
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Normal",
  12319. height: math.unit(7 + 8 / 12, "feet"),
  12320. default: true
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12326. {
  12327. side: {
  12328. height: math.unit(4 + 5 / 12, "feet"),
  12329. weight: math.unit(80, "lb"),
  12330. name: "Side",
  12331. image: {
  12332. source: "./media/characters/rodger/side.svg",
  12333. extra: 1235 / 1118
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Micro",
  12340. height: math.unit(1, "inch")
  12341. },
  12342. {
  12343. name: "Normal",
  12344. height: math.unit(4 + 5 / 12, "feet"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Macro",
  12349. height: math.unit(120, "feet")
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(6, "feet"),
  12358. weight: math.unit(150, "lb"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/danyel/front.svg",
  12362. extra: 1185 / 1123,
  12363. bottom: 0.05
  12364. }
  12365. },
  12366. },
  12367. [
  12368. {
  12369. name: "Shrunken",
  12370. height: math.unit(0.5, "mm")
  12371. },
  12372. {
  12373. name: "Micro",
  12374. height: math.unit(1, "mm"),
  12375. default: true
  12376. },
  12377. {
  12378. name: "Upsized",
  12379. height: math.unit(5 + 5 / 12, "feet")
  12380. },
  12381. ]
  12382. ))
  12383. characterMakers.push(() => makeCharacter(
  12384. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12385. {
  12386. front: {
  12387. height: math.unit(5 + 6 / 12, "feet"),
  12388. weight: math.unit(200, "lb"),
  12389. name: "Front",
  12390. image: {
  12391. source: "./media/characters/vivian-bijoux/front.svg",
  12392. extra: 1,
  12393. bottom: 0.072
  12394. }
  12395. },
  12396. },
  12397. [
  12398. {
  12399. name: "Normal",
  12400. height: math.unit(5 + 6 / 12, "feet"),
  12401. default: true
  12402. },
  12403. {
  12404. name: "Bad Dream",
  12405. height: math.unit(500, "feet")
  12406. },
  12407. {
  12408. name: "Nightmare",
  12409. height: math.unit(500, "miles")
  12410. },
  12411. ]
  12412. ))
  12413. characterMakers.push(() => makeCharacter(
  12414. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12415. {
  12416. front: {
  12417. height: math.unit(6 + 1 / 12, "feet"),
  12418. weight: math.unit(260, "lb"),
  12419. name: "Front",
  12420. image: {
  12421. source: "./media/characters/zeta/front.svg",
  12422. extra: 1968 / 1889,
  12423. bottom: 0.06
  12424. }
  12425. },
  12426. back: {
  12427. height: math.unit(6 + 1 / 12, "feet"),
  12428. weight: math.unit(260, "lb"),
  12429. name: "Back",
  12430. image: {
  12431. source: "./media/characters/zeta/back.svg",
  12432. extra: 1944 / 1858,
  12433. bottom: 0.03
  12434. }
  12435. },
  12436. hand: {
  12437. height: math.unit(1.112, "feet"),
  12438. name: "Hand",
  12439. image: {
  12440. source: "./media/characters/zeta/hand.svg"
  12441. }
  12442. },
  12443. foot: {
  12444. height: math.unit(1.48, "feet"),
  12445. name: "Foot",
  12446. image: {
  12447. source: "./media/characters/zeta/foot.svg"
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Micro",
  12454. height: math.unit(6, "inches")
  12455. },
  12456. {
  12457. name: "Normal",
  12458. height: math.unit(6 + 1 / 12, "feet"),
  12459. default: true
  12460. },
  12461. {
  12462. name: "Macro",
  12463. height: math.unit(20, "feet")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(150, "lb"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/jamie-larsen/front.svg",
  12476. extra: 962 / 933,
  12477. bottom: 0.02
  12478. }
  12479. },
  12480. back: {
  12481. height: math.unit(6, "feet"),
  12482. weight: math.unit(150, "lb"),
  12483. name: "Back",
  12484. image: {
  12485. source: "./media/characters/jamie-larsen/back.svg",
  12486. extra: 997 / 946
  12487. }
  12488. },
  12489. },
  12490. [
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(28 + 7 / 12, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Macro+",
  12498. height: math.unit(180, "feet")
  12499. },
  12500. {
  12501. name: "Megamacro",
  12502. height: math.unit(10, "miles")
  12503. },
  12504. {
  12505. name: "Gigamacro",
  12506. height: math.unit(200000, "miles")
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12512. {
  12513. front: {
  12514. height: math.unit(6, "feet"),
  12515. weight: math.unit(120, "lb"),
  12516. name: "Front",
  12517. image: {
  12518. source: "./media/characters/vance/front.svg",
  12519. extra: 1980 / 1890,
  12520. bottom: 0.09
  12521. }
  12522. },
  12523. back: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(120, "lb"),
  12526. name: "Back",
  12527. image: {
  12528. source: "./media/characters/vance/back.svg",
  12529. extra: 2081 / 1994,
  12530. bottom: 0.014
  12531. }
  12532. },
  12533. hand: {
  12534. height: math.unit(0.88, "feet"),
  12535. name: "Hand",
  12536. image: {
  12537. source: "./media/characters/vance/hand.svg"
  12538. }
  12539. },
  12540. foot: {
  12541. height: math.unit(0.64, "feet"),
  12542. name: "Foot",
  12543. image: {
  12544. source: "./media/characters/vance/foot.svg"
  12545. }
  12546. },
  12547. },
  12548. [
  12549. {
  12550. name: "Small",
  12551. height: math.unit(90, "feet"),
  12552. default: true
  12553. },
  12554. {
  12555. name: "Macro",
  12556. height: math.unit(100, "meters")
  12557. },
  12558. {
  12559. name: "Megamacro",
  12560. height: math.unit(15, "miles")
  12561. },
  12562. ]
  12563. ))
  12564. characterMakers.push(() => makeCharacter(
  12565. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12566. {
  12567. front: {
  12568. height: math.unit(6, "feet"),
  12569. weight: math.unit(180, "lb"),
  12570. name: "Front",
  12571. image: {
  12572. source: "./media/characters/xochitl/front.svg",
  12573. extra: 2297 / 2261,
  12574. bottom: 0.065
  12575. }
  12576. },
  12577. back: {
  12578. height: math.unit(6, "feet"),
  12579. weight: math.unit(180, "lb"),
  12580. name: "Back",
  12581. image: {
  12582. source: "./media/characters/xochitl/back.svg",
  12583. extra: 2386 / 2354,
  12584. bottom: 0.01
  12585. }
  12586. },
  12587. foot: {
  12588. height: math.unit(6 / 5 * 1.15, "feet"),
  12589. weight: math.unit(150, "lb"),
  12590. name: "Foot",
  12591. image: {
  12592. source: "./media/characters/xochitl/foot.svg"
  12593. }
  12594. },
  12595. },
  12596. [
  12597. {
  12598. name: "Macro",
  12599. height: math.unit(80, "feet")
  12600. },
  12601. {
  12602. name: "Macro+",
  12603. height: math.unit(400, "feet"),
  12604. default: true
  12605. },
  12606. {
  12607. name: "Gigamacro",
  12608. height: math.unit(80000, "miles")
  12609. },
  12610. {
  12611. name: "Gigamacro+",
  12612. height: math.unit(400000, "miles")
  12613. },
  12614. {
  12615. name: "Teramacro",
  12616. height: math.unit(300, "AU")
  12617. },
  12618. ]
  12619. ))
  12620. characterMakers.push(() => makeCharacter(
  12621. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12622. {
  12623. front: {
  12624. height: math.unit(6, "feet"),
  12625. weight: math.unit(150, "lb"),
  12626. name: "Front",
  12627. image: {
  12628. source: "./media/characters/vincent/front.svg",
  12629. extra: 1130 / 1080,
  12630. bottom: 0.055
  12631. }
  12632. },
  12633. beak: {
  12634. height: math.unit(6 * 0.1, "feet"),
  12635. name: "Beak",
  12636. image: {
  12637. source: "./media/characters/vincent/beak.svg"
  12638. }
  12639. },
  12640. hand: {
  12641. height: math.unit(6 * 0.85, "feet"),
  12642. weight: math.unit(150, "lb"),
  12643. name: "Hand",
  12644. image: {
  12645. source: "./media/characters/vincent/hand.svg"
  12646. }
  12647. },
  12648. foot: {
  12649. height: math.unit(6 * 0.19, "feet"),
  12650. weight: math.unit(150, "lb"),
  12651. name: "Foot",
  12652. image: {
  12653. source: "./media/characters/vincent/foot.svg"
  12654. }
  12655. },
  12656. },
  12657. [
  12658. {
  12659. name: "Base",
  12660. height: math.unit(6 + 5 / 12, "feet"),
  12661. default: true
  12662. },
  12663. {
  12664. name: "Macro",
  12665. height: math.unit(300, "feet")
  12666. },
  12667. {
  12668. name: "Megamacro",
  12669. height: math.unit(2, "miles")
  12670. },
  12671. {
  12672. name: "Gigamacro",
  12673. height: math.unit(1000, "miles")
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(6 + 2 / 12, "feet"),
  12682. weight: math.unit(265, "lb"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/jay/front.svg",
  12686. extra: 1510 / 1430,
  12687. bottom: 0.042
  12688. }
  12689. },
  12690. back: {
  12691. height: math.unit(6 + 2 / 12, "feet"),
  12692. weight: math.unit(265, "lb"),
  12693. name: "Back",
  12694. image: {
  12695. source: "./media/characters/jay/back.svg",
  12696. extra: 1510 / 1430,
  12697. bottom: 0.025
  12698. }
  12699. },
  12700. clothed: {
  12701. height: math.unit(6 + 2 / 12, "feet"),
  12702. weight: math.unit(265, "lb"),
  12703. name: "Front (Clothed)",
  12704. image: {
  12705. source: "./media/characters/jay/clothed.svg",
  12706. extra: 744 / 699,
  12707. bottom: 0.043
  12708. }
  12709. },
  12710. head: {
  12711. height: math.unit(1.772, "feet"),
  12712. name: "Head",
  12713. image: {
  12714. source: "./media/characters/jay/head.svg"
  12715. }
  12716. },
  12717. sizeRay: {
  12718. height: math.unit(1.331, "feet"),
  12719. name: "Size Ray",
  12720. image: {
  12721. source: "./media/characters/jay/size-ray.svg"
  12722. }
  12723. },
  12724. },
  12725. [
  12726. {
  12727. name: "Micro",
  12728. height: math.unit(1, "inch")
  12729. },
  12730. {
  12731. name: "Normal",
  12732. height: math.unit(6 + 2 / 12, "feet"),
  12733. default: true
  12734. },
  12735. {
  12736. name: "Macro",
  12737. height: math.unit(1, "mile")
  12738. },
  12739. {
  12740. name: "Megamacro",
  12741. height: math.unit(100, "miles")
  12742. },
  12743. ]
  12744. ))
  12745. characterMakers.push(() => makeCharacter(
  12746. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12747. {
  12748. front: {
  12749. height: math.unit(2, "meters"),
  12750. weight: math.unit(500, "kg"),
  12751. name: "Front",
  12752. image: {
  12753. source: "./media/characters/coatl/front.svg",
  12754. extra: 3948 / 3500,
  12755. bottom: 0.082
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Normal",
  12762. height: math.unit(4, "meters")
  12763. },
  12764. {
  12765. name: "Macro",
  12766. height: math.unit(100, "meters"),
  12767. default: true
  12768. },
  12769. {
  12770. name: "Macro+",
  12771. height: math.unit(300, "meters")
  12772. },
  12773. {
  12774. name: "Megamacro",
  12775. height: math.unit(3, "gigameters")
  12776. },
  12777. {
  12778. name: "Megamacro+",
  12779. height: math.unit(300, "terameters")
  12780. },
  12781. {
  12782. name: "Megamacro++",
  12783. height: math.unit(3, "lightyears")
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12789. {
  12790. front: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(50, "kg"),
  12793. name: "front",
  12794. image: {
  12795. source: "./media/characters/shiroryu/front.svg",
  12796. extra: 1990 / 1935
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Mortal Mingling",
  12803. height: math.unit(3, "meters")
  12804. },
  12805. {
  12806. name: "Kaiju-ish",
  12807. height: math.unit(250, "meters")
  12808. },
  12809. {
  12810. name: "Somewhat Godly",
  12811. height: math.unit(400, "km"),
  12812. default: true
  12813. },
  12814. {
  12815. name: "Planetary",
  12816. height: math.unit(300, "megameters")
  12817. },
  12818. {
  12819. name: "Galaxy-dwarfing",
  12820. height: math.unit(450, "kiloparsecs")
  12821. },
  12822. {
  12823. name: "Universe Eater",
  12824. height: math.unit(150, "gigaparsecs")
  12825. },
  12826. {
  12827. name: "Almost Immeasurable",
  12828. height: math.unit(1.3e266, "yottaparsecs")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(150, "lb"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/umeko/front.svg",
  12841. extra: 1,
  12842. bottom: 0.019
  12843. }
  12844. },
  12845. frontArmored: {
  12846. height: math.unit(6, "feet"),
  12847. weight: math.unit(150, "lb"),
  12848. name: "Front (Armored)",
  12849. image: {
  12850. source: "./media/characters/umeko/front-armored.svg",
  12851. extra: 1,
  12852. bottom: 0.021
  12853. }
  12854. },
  12855. },
  12856. [
  12857. {
  12858. name: "Macro",
  12859. height: math.unit(220, "feet"),
  12860. default: true
  12861. },
  12862. {
  12863. name: "Guardian Dragon",
  12864. height: math.unit(50, "miles")
  12865. },
  12866. {
  12867. name: "Cosmic",
  12868. height: math.unit(800000, "miles")
  12869. },
  12870. ]
  12871. ))
  12872. characterMakers.push(() => makeCharacter(
  12873. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12874. {
  12875. front: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(150, "lb"),
  12878. name: "Front",
  12879. image: {
  12880. source: "./media/characters/cassidy/front.svg",
  12881. extra: 1,
  12882. bottom: 0.043
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Canon Height",
  12889. height: math.unit(120, "feet"),
  12890. default: true
  12891. },
  12892. {
  12893. name: "Macro+",
  12894. height: math.unit(400, "feet")
  12895. },
  12896. {
  12897. name: "Macro++",
  12898. height: math.unit(4000, "feet")
  12899. },
  12900. {
  12901. name: "Megamacro",
  12902. height: math.unit(3, "miles")
  12903. },
  12904. ]
  12905. ))
  12906. characterMakers.push(() => makeCharacter(
  12907. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12908. {
  12909. front: {
  12910. height: math.unit(6, "feet"),
  12911. weight: math.unit(150, "lb"),
  12912. name: "Front",
  12913. image: {
  12914. source: "./media/characters/isaac/front.svg",
  12915. extra: 896 / 815,
  12916. bottom: 0.11
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Human Size",
  12923. height: math.unit(8, "feet"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Macro",
  12928. height: math.unit(400, "feet")
  12929. },
  12930. {
  12931. name: "Megamacro",
  12932. height: math.unit(50, "miles")
  12933. },
  12934. {
  12935. name: "Canon Height",
  12936. height: math.unit(200, "AU")
  12937. },
  12938. ]
  12939. ))
  12940. characterMakers.push(() => makeCharacter(
  12941. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12942. {
  12943. front: {
  12944. height: math.unit(6, "feet"),
  12945. weight: math.unit(72, "kg"),
  12946. name: "Front",
  12947. image: {
  12948. source: "./media/characters/sleekit/front.svg",
  12949. extra: 4693 / 4487,
  12950. bottom: 0.012
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Minimum Height",
  12957. height: math.unit(10, "meters")
  12958. },
  12959. {
  12960. name: "Smaller",
  12961. height: math.unit(25, "meters")
  12962. },
  12963. {
  12964. name: "Larger",
  12965. height: math.unit(38, "meters"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Maximum height",
  12970. height: math.unit(100, "meters")
  12971. },
  12972. ]
  12973. ))
  12974. characterMakers.push(() => makeCharacter(
  12975. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12976. {
  12977. front: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(150, "lb"),
  12980. name: "Front",
  12981. image: {
  12982. source: "./media/characters/nillia/front.svg",
  12983. extra: 2195 / 2037,
  12984. bottom: 0.005
  12985. }
  12986. },
  12987. back: {
  12988. height: math.unit(6, "feet"),
  12989. weight: math.unit(150, "lb"),
  12990. name: "Back",
  12991. image: {
  12992. source: "./media/characters/nillia/back.svg",
  12993. extra: 2195 / 2037,
  12994. bottom: 0.005
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Canon Height",
  13001. height: math.unit(489, "feet"),
  13002. default: true
  13003. }
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(6, "feet"),
  13011. weight: math.unit(150, "lb"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/mesmyriza/front.svg",
  13015. extra: 2067 / 1784,
  13016. bottom: 0.035
  13017. }
  13018. },
  13019. foot: {
  13020. height: math.unit(6 / (250 / 35), "feet"),
  13021. name: "Foot",
  13022. image: {
  13023. source: "./media/characters/mesmyriza/foot.svg"
  13024. }
  13025. },
  13026. },
  13027. [
  13028. {
  13029. name: "Macro",
  13030. height: math.unit(457, "meters"),
  13031. default: true
  13032. },
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(8, "megameters")
  13036. },
  13037. ]
  13038. ))
  13039. characterMakers.push(() => makeCharacter(
  13040. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13041. {
  13042. front: {
  13043. height: math.unit(6, "feet"),
  13044. weight: math.unit(250, "lb"),
  13045. name: "Front",
  13046. image: {
  13047. source: "./media/characters/saudade/front.svg",
  13048. extra: 1172 / 1139,
  13049. bottom: 0.035
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Micro",
  13056. height: math.unit(3, "inches")
  13057. },
  13058. {
  13059. name: "Normal",
  13060. height: math.unit(6, "feet"),
  13061. default: true
  13062. },
  13063. {
  13064. name: "Macro",
  13065. height: math.unit(50, "feet")
  13066. },
  13067. {
  13068. name: "Megamacro",
  13069. height: math.unit(2800, "feet")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(5 + 4 / 12, "feet"),
  13078. weight: math.unit(100, "lb"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/keireer/front.svg",
  13082. extra: 716 / 666,
  13083. bottom: 0.05
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Normal",
  13090. height: math.unit(5 + 4 / 12, "feet"),
  13091. default: true
  13092. },
  13093. ]
  13094. ))
  13095. characterMakers.push(() => makeCharacter(
  13096. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13097. {
  13098. front: {
  13099. height: math.unit(6, "feet"),
  13100. weight: math.unit(90, "kg"),
  13101. name: "Front",
  13102. image: {
  13103. source: "./media/characters/mirja/front.svg",
  13104. extra: 1789 / 1683,
  13105. bottom: 0.05
  13106. }
  13107. },
  13108. frontDressed: {
  13109. height: math.unit(6, "feet"),
  13110. weight: math.unit(90, "lb"),
  13111. name: "Front (Dressed)",
  13112. image: {
  13113. source: "./media/characters/mirja/front-dressed.svg",
  13114. extra: 1789 / 1683,
  13115. bottom: 0.05
  13116. }
  13117. },
  13118. back: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(90, "lb"),
  13121. name: "Back",
  13122. image: {
  13123. source: "./media/characters/mirja/back.svg",
  13124. extra: 953 / 917,
  13125. bottom: 0.017
  13126. }
  13127. },
  13128. },
  13129. [
  13130. {
  13131. name: "\"Incognito\"",
  13132. height: math.unit(3, "meters")
  13133. },
  13134. {
  13135. name: "Strolling Size",
  13136. height: math.unit(15, "km")
  13137. },
  13138. {
  13139. name: "Larger Strolling Size",
  13140. height: math.unit(400, "km")
  13141. },
  13142. {
  13143. name: "Preferred Size",
  13144. height: math.unit(5000, "km")
  13145. },
  13146. {
  13147. name: "True Size",
  13148. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13149. default: true
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(15, "feet"),
  13158. weight: math.unit(880, "kg"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/nightraver/front.svg",
  13162. extra: 2444 / 2160,
  13163. bottom: 0.027
  13164. }
  13165. },
  13166. back: {
  13167. height: math.unit(15, "feet"),
  13168. weight: math.unit(880, "kg"),
  13169. name: "Back",
  13170. image: {
  13171. source: "./media/characters/nightraver/back.svg",
  13172. extra: 2309 / 2180,
  13173. bottom: 0.005
  13174. }
  13175. },
  13176. sole: {
  13177. height: math.unit(2.878, "feet"),
  13178. name: "Sole",
  13179. image: {
  13180. source: "./media/characters/nightraver/sole.svg"
  13181. }
  13182. },
  13183. foot: {
  13184. height: math.unit(2.285, "feet"),
  13185. name: "Foot",
  13186. image: {
  13187. source: "./media/characters/nightraver/foot.svg"
  13188. }
  13189. },
  13190. maw: {
  13191. height: math.unit(2.67, "feet"),
  13192. name: "Maw",
  13193. image: {
  13194. source: "./media/characters/nightraver/maw.svg"
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Micro",
  13201. height: math.unit(1, "cm")
  13202. },
  13203. {
  13204. name: "Normal",
  13205. height: math.unit(15, "feet"),
  13206. default: true
  13207. },
  13208. {
  13209. name: "Macro",
  13210. height: math.unit(300, "feet")
  13211. },
  13212. {
  13213. name: "Megamacro",
  13214. height: math.unit(300, "miles")
  13215. },
  13216. {
  13217. name: "Gigamacro",
  13218. height: math.unit(10000, "miles")
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13224. {
  13225. side: {
  13226. height: math.unit(2, "inches"),
  13227. weight: math.unit(5, "grams"),
  13228. name: "Side",
  13229. image: {
  13230. source: "./media/characters/arc/side.svg"
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Micro",
  13237. height: math.unit(2, "inches"),
  13238. default: true
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13244. {
  13245. front: {
  13246. height: math.unit(1.1938, "meters"),
  13247. weight: math.unit(54, "kg"),
  13248. name: "Front",
  13249. image: {
  13250. source: "./media/characters/nebula-shahar/front.svg",
  13251. extra: 1642 / 1436,
  13252. bottom: 0.06
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Megamicro",
  13259. height: math.unit(0.3, "mm")
  13260. },
  13261. {
  13262. name: "Micro",
  13263. height: math.unit(3, "cm")
  13264. },
  13265. {
  13266. name: "Normal",
  13267. height: math.unit(138, "cm"),
  13268. default: true
  13269. },
  13270. {
  13271. name: "Macro",
  13272. height: math.unit(30, "m")
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13278. {
  13279. front: {
  13280. height: math.unit(5.24, "feet"),
  13281. weight: math.unit(150, "lb"),
  13282. name: "Front",
  13283. image: {
  13284. source: "./media/characters/shayla/front.svg",
  13285. extra: 1512 / 1414,
  13286. bottom: 0.01
  13287. }
  13288. },
  13289. back: {
  13290. height: math.unit(5.24, "feet"),
  13291. weight: math.unit(150, "lb"),
  13292. name: "Back",
  13293. image: {
  13294. source: "./media/characters/shayla/back.svg",
  13295. extra: 1512 / 1414
  13296. }
  13297. },
  13298. hand: {
  13299. height: math.unit(0.7781496062992126, "feet"),
  13300. name: "Hand",
  13301. image: {
  13302. source: "./media/characters/shayla/hand.svg"
  13303. }
  13304. },
  13305. foot: {
  13306. height: math.unit(1.4206036745406823, "feet"),
  13307. name: "Foot",
  13308. image: {
  13309. source: "./media/characters/shayla/foot.svg"
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Micro",
  13316. height: math.unit(0.32, "feet")
  13317. },
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(5.24, "feet"),
  13321. default: true
  13322. },
  13323. {
  13324. name: "Macro",
  13325. height: math.unit(492.12, "feet")
  13326. },
  13327. {
  13328. name: "Megamacro",
  13329. height: math.unit(186.41, "miles")
  13330. },
  13331. ]
  13332. ))
  13333. characterMakers.push(() => makeCharacter(
  13334. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13335. {
  13336. front: {
  13337. height: math.unit(2.2, "m"),
  13338. weight: math.unit(120, "kg"),
  13339. name: "Front",
  13340. image: {
  13341. source: "./media/characters/pia-jr/front.svg",
  13342. extra: 1000 / 970,
  13343. bottom: 0.035
  13344. }
  13345. },
  13346. hand: {
  13347. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13348. name: "Hand",
  13349. image: {
  13350. source: "./media/characters/pia-jr/hand.svg"
  13351. }
  13352. },
  13353. paw: {
  13354. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13355. name: "Paw",
  13356. image: {
  13357. source: "./media/characters/pia-jr/paw.svg"
  13358. }
  13359. },
  13360. },
  13361. [
  13362. {
  13363. name: "Micro",
  13364. height: math.unit(1.2, "cm")
  13365. },
  13366. {
  13367. name: "Normal",
  13368. height: math.unit(2.2, "m"),
  13369. default: true
  13370. },
  13371. {
  13372. name: "Macro",
  13373. height: math.unit(180, "m")
  13374. },
  13375. {
  13376. name: "Megamacro",
  13377. height: math.unit(420, "km")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(2, "m"),
  13386. weight: math.unit(115, "kg"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/pia-sr/front.svg",
  13390. extra: 760 / 730,
  13391. bottom: 0.015
  13392. }
  13393. },
  13394. back: {
  13395. height: math.unit(2, "m"),
  13396. weight: math.unit(115, "kg"),
  13397. name: "Back",
  13398. image: {
  13399. source: "./media/characters/pia-sr/back.svg",
  13400. extra: 760 / 730,
  13401. bottom: 0.01
  13402. }
  13403. },
  13404. hand: {
  13405. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13406. name: "Hand",
  13407. image: {
  13408. source: "./media/characters/pia-sr/hand.svg"
  13409. }
  13410. },
  13411. foot: {
  13412. height: math.unit(1.83, "feet"),
  13413. name: "Foot",
  13414. image: {
  13415. source: "./media/characters/pia-sr/foot.svg"
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Micro",
  13422. height: math.unit(88, "mm")
  13423. },
  13424. {
  13425. name: "Normal",
  13426. height: math.unit(2, "m"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Macro",
  13431. height: math.unit(200, "m")
  13432. },
  13433. {
  13434. name: "Megamacro",
  13435. height: math.unit(420, "km")
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13441. {
  13442. front: {
  13443. height: math.unit(8 + 2 / 12, "feet"),
  13444. weight: math.unit(300, "lb"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/kibibyte/front.svg",
  13448. extra: 2221 / 2098,
  13449. bottom: 0.04
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Normal",
  13456. height: math.unit(8 + 2 / 12, "feet"),
  13457. default: true
  13458. },
  13459. {
  13460. name: "Socialable Macro",
  13461. height: math.unit(50, "feet")
  13462. },
  13463. {
  13464. name: "Macro",
  13465. height: math.unit(300, "feet")
  13466. },
  13467. {
  13468. name: "Megamacro",
  13469. height: math.unit(500, "miles")
  13470. },
  13471. ]
  13472. ))
  13473. characterMakers.push(() => makeCharacter(
  13474. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13475. {
  13476. front: {
  13477. height: math.unit(6, "feet"),
  13478. weight: math.unit(150, "lb"),
  13479. name: "Front",
  13480. image: {
  13481. source: "./media/characters/felix/front.svg",
  13482. extra: 762 / 722,
  13483. bottom: 0.02
  13484. }
  13485. },
  13486. frontClothed: {
  13487. height: math.unit(6, "feet"),
  13488. weight: math.unit(150, "lb"),
  13489. name: "Front (Clothed)",
  13490. image: {
  13491. source: "./media/characters/felix/front-clothed.svg",
  13492. extra: 762 / 722,
  13493. bottom: 0.02
  13494. }
  13495. },
  13496. },
  13497. [
  13498. {
  13499. name: "Normal",
  13500. height: math.unit(6 + 8 / 12, "feet"),
  13501. default: true
  13502. },
  13503. {
  13504. name: "Macro",
  13505. height: math.unit(2600, "feet")
  13506. },
  13507. {
  13508. name: "Megamacro",
  13509. height: math.unit(450, "miles")
  13510. },
  13511. ]
  13512. ))
  13513. characterMakers.push(() => makeCharacter(
  13514. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13515. {
  13516. front: {
  13517. height: math.unit(6 + 1 / 12, "feet"),
  13518. weight: math.unit(250, "lb"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/tobo/front.svg",
  13522. extra: 608 / 586,
  13523. bottom: 0.023
  13524. }
  13525. },
  13526. back: {
  13527. height: math.unit(6 + 1 / 12, "feet"),
  13528. weight: math.unit(250, "lb"),
  13529. name: "Back",
  13530. image: {
  13531. source: "./media/characters/tobo/back.svg",
  13532. extra: 608 / 586
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Nano",
  13539. height: math.unit(2, "nm")
  13540. },
  13541. {
  13542. name: "Megamicro",
  13543. height: math.unit(0.1, "mm")
  13544. },
  13545. {
  13546. name: "Micro",
  13547. height: math.unit(1, "inch"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Human-sized",
  13552. height: math.unit(6 + 1 / 12, "feet")
  13553. },
  13554. {
  13555. name: "Macro",
  13556. height: math.unit(250, "feet")
  13557. },
  13558. {
  13559. name: "Megamacro",
  13560. height: math.unit(75, "miles")
  13561. },
  13562. {
  13563. name: "Texas-sized",
  13564. height: math.unit(750, "miles")
  13565. },
  13566. {
  13567. name: "Teramacro",
  13568. height: math.unit(50000, "miles")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(6, "feet"),
  13577. weight: math.unit(269, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/danny-kapowsky/front.svg",
  13581. extra: 766 / 736,
  13582. bottom: 0.044
  13583. }
  13584. },
  13585. back: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(269, "lb"),
  13588. name: "Back",
  13589. image: {
  13590. source: "./media/characters/danny-kapowsky/back.svg",
  13591. extra: 797 / 760,
  13592. bottom: 0.025
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Macro",
  13599. height: math.unit(150, "feet"),
  13600. default: true
  13601. },
  13602. {
  13603. name: "Macro+",
  13604. height: math.unit(200, "feet")
  13605. },
  13606. {
  13607. name: "Macro++",
  13608. height: math.unit(300, "feet")
  13609. },
  13610. {
  13611. name: "Macro+++",
  13612. height: math.unit(400, "feet")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13618. {
  13619. side: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(170, "lb"),
  13622. name: "Side",
  13623. image: {
  13624. source: "./media/characters/finn/side.svg",
  13625. extra: 1953 / 1807,
  13626. bottom: 0.057
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Megamacro",
  13633. height: math.unit(14445, "feet"),
  13634. default: true
  13635. },
  13636. ]
  13637. ))
  13638. characterMakers.push(() => makeCharacter(
  13639. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13640. {
  13641. front: {
  13642. height: math.unit(5 + 6 / 12, "feet"),
  13643. weight: math.unit(125, "lb"),
  13644. name: "Front",
  13645. image: {
  13646. source: "./media/characters/roy/front.svg",
  13647. extra: 1,
  13648. bottom: 0.11
  13649. }
  13650. },
  13651. },
  13652. [
  13653. {
  13654. name: "Micro",
  13655. height: math.unit(3, "inches"),
  13656. default: true
  13657. },
  13658. {
  13659. name: "Normal",
  13660. height: math.unit(5 + 6 / 12, "feet")
  13661. },
  13662. {
  13663. name: "Lesser Macro",
  13664. height: math.unit(60, "feet")
  13665. },
  13666. {
  13667. name: "Greater Macro",
  13668. height: math.unit(120, "feet")
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(6, "feet"),
  13677. weight: math.unit(100, "lb"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/aevsivs/front.svg",
  13681. extra: 1,
  13682. bottom: 0.03
  13683. }
  13684. },
  13685. back: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(100, "lb"),
  13688. name: "Back",
  13689. image: {
  13690. source: "./media/characters/aevsivs/back.svg"
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Micro",
  13697. height: math.unit(2, "inches"),
  13698. default: true
  13699. },
  13700. {
  13701. name: "Normal",
  13702. height: math.unit(5, "feet")
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(5 + 7 / 12, "feet"),
  13711. weight: math.unit(159, "lb"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/hildegard/front.svg",
  13715. extra: 312 / 286,
  13716. bottom: 0.005
  13717. }
  13718. },
  13719. },
  13720. [
  13721. {
  13722. name: "Normal",
  13723. height: math.unit(5 + 7 / 12, "feet"),
  13724. default: true
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13730. {
  13731. bernard: {
  13732. height: math.unit(2 + 7 / 12, "feet"),
  13733. weight: math.unit(66, "lb"),
  13734. name: "Bernard",
  13735. rename: true,
  13736. image: {
  13737. source: "./media/characters/bernard-wilder/bernard.svg",
  13738. extra: 192 / 128,
  13739. bottom: 0.05
  13740. }
  13741. },
  13742. wilder: {
  13743. height: math.unit(5 + 8 / 12, "feet"),
  13744. weight: math.unit(143, "lb"),
  13745. name: "Wilder",
  13746. rename: true,
  13747. image: {
  13748. source: "./media/characters/bernard-wilder/wilder.svg",
  13749. extra: 361 / 312,
  13750. bottom: 0.02
  13751. }
  13752. },
  13753. },
  13754. [
  13755. {
  13756. name: "Normal",
  13757. height: math.unit(2 + 7 / 12, "feet"),
  13758. default: true
  13759. },
  13760. ]
  13761. ))
  13762. characterMakers.push(() => makeCharacter(
  13763. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13764. {
  13765. anthro: {
  13766. height: math.unit(6 + 1 / 12, "feet"),
  13767. weight: math.unit(155, "lb"),
  13768. name: "Anthro",
  13769. image: {
  13770. source: "./media/characters/hearth/anthro.svg",
  13771. extra: 260 / 250,
  13772. bottom: 0.02
  13773. }
  13774. },
  13775. feral: {
  13776. height: math.unit(3.78, "feet"),
  13777. weight: math.unit(35, "kg"),
  13778. name: "Feral",
  13779. image: {
  13780. source: "./media/characters/hearth/feral.svg",
  13781. extra: 153 / 135,
  13782. bottom: 0.03
  13783. }
  13784. },
  13785. },
  13786. [
  13787. {
  13788. name: "Normal",
  13789. height: math.unit(6 + 1 / 12, "feet"),
  13790. default: true
  13791. },
  13792. ]
  13793. ))
  13794. characterMakers.push(() => makeCharacter(
  13795. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13796. {
  13797. front: {
  13798. height: math.unit(6, "feet"),
  13799. weight: math.unit(182, "lb"),
  13800. name: "Front",
  13801. image: {
  13802. source: "./media/characters/ingrid/front.svg",
  13803. extra: 294 / 268,
  13804. bottom: 0.027
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Normal",
  13811. height: math.unit(6, "feet"),
  13812. default: true
  13813. },
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13818. {
  13819. eevee: {
  13820. height: math.unit(2 + 10 / 12, "feet"),
  13821. weight: math.unit(86, "lb"),
  13822. name: "Malgam",
  13823. image: {
  13824. source: "./media/characters/malgam/eevee.svg",
  13825. extra: 218 / 180,
  13826. bottom: 0.2
  13827. }
  13828. },
  13829. sylveon: {
  13830. height: math.unit(4, "feet"),
  13831. weight: math.unit(101, "lb"),
  13832. name: "Future Malgam",
  13833. rename: true,
  13834. image: {
  13835. source: "./media/characters/malgam/sylveon.svg",
  13836. extra: 371 / 325,
  13837. bottom: 0.015
  13838. }
  13839. },
  13840. gigantamax: {
  13841. height: math.unit(50, "feet"),
  13842. name: "Gigantamax Malgam",
  13843. rename: true,
  13844. image: {
  13845. source: "./media/characters/malgam/gigantamax.svg"
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Normal",
  13852. height: math.unit(2 + 10 / 12, "feet"),
  13853. default: true
  13854. },
  13855. ]
  13856. ))
  13857. characterMakers.push(() => makeCharacter(
  13858. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13859. {
  13860. front: {
  13861. height: math.unit(5 + 11 / 12, "feet"),
  13862. weight: math.unit(188, "lb"),
  13863. name: "Front",
  13864. image: {
  13865. source: "./media/characters/fleur/front.svg",
  13866. extra: 309 / 283,
  13867. bottom: 0.007
  13868. }
  13869. },
  13870. },
  13871. [
  13872. {
  13873. name: "Normal",
  13874. height: math.unit(5 + 11 / 12, "feet"),
  13875. default: true
  13876. },
  13877. ]
  13878. ))
  13879. characterMakers.push(() => makeCharacter(
  13880. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13881. {
  13882. front: {
  13883. height: math.unit(5 + 4 / 12, "feet"),
  13884. weight: math.unit(122, "lb"),
  13885. name: "Front",
  13886. image: {
  13887. source: "./media/characters/jude/front.svg",
  13888. extra: 288 / 273,
  13889. bottom: 0.03
  13890. }
  13891. },
  13892. },
  13893. [
  13894. {
  13895. name: "Normal",
  13896. height: math.unit(5 + 4 / 12, "feet"),
  13897. default: true
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(5 + 11 / 12, "feet"),
  13906. weight: math.unit(190, "lb"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/seara/front.svg",
  13910. extra: 1,
  13911. bottom: 0.05
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Normal",
  13918. height: math.unit(5 + 11 / 12, "feet"),
  13919. default: true
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13925. {
  13926. front: {
  13927. height: math.unit(16 + 5 / 12, "feet"),
  13928. weight: math.unit(524, "lb"),
  13929. name: "Front",
  13930. image: {
  13931. source: "./media/characters/caspian/front.svg",
  13932. extra: 1,
  13933. bottom: 0.04
  13934. }
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Normal",
  13940. height: math.unit(16 + 5 / 12, "feet"),
  13941. default: true
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13947. {
  13948. front: {
  13949. height: math.unit(5 + 7 / 12, "feet"),
  13950. weight: math.unit(170, "lb"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/mika/front.svg",
  13954. extra: 1,
  13955. bottom: 0.016
  13956. }
  13957. },
  13958. },
  13959. [
  13960. {
  13961. name: "Normal",
  13962. height: math.unit(5 + 7 / 12, "feet"),
  13963. default: true
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13969. {
  13970. front: {
  13971. height: math.unit(6 + 2 / 12, "feet"),
  13972. weight: math.unit(268, "lb"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/sol/front.svg",
  13976. extra: 247 / 231,
  13977. bottom: 0.05
  13978. }
  13979. },
  13980. },
  13981. [
  13982. {
  13983. name: "Normal",
  13984. height: math.unit(6 + 2 / 12, "feet"),
  13985. default: true
  13986. },
  13987. ]
  13988. ))
  13989. characterMakers.push(() => makeCharacter(
  13990. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13991. {
  13992. buizel: {
  13993. height: math.unit(2 + 5 / 12, "feet"),
  13994. weight: math.unit(87, "lb"),
  13995. name: "Buizel",
  13996. image: {
  13997. source: "./media/characters/umiko/buizel.svg",
  13998. extra: 172 / 157,
  13999. bottom: 0.01
  14000. }
  14001. },
  14002. floatzel: {
  14003. height: math.unit(5 + 9 / 12, "feet"),
  14004. weight: math.unit(250, "lb"),
  14005. name: "Floatzel",
  14006. image: {
  14007. source: "./media/characters/umiko/floatzel.svg",
  14008. extra: 262 / 248
  14009. }
  14010. },
  14011. },
  14012. [
  14013. {
  14014. name: "Normal",
  14015. height: math.unit(2 + 5 / 12, "feet"),
  14016. default: true
  14017. },
  14018. ]
  14019. ))
  14020. characterMakers.push(() => makeCharacter(
  14021. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14022. {
  14023. front: {
  14024. height: math.unit(6 + 2 / 12, "feet"),
  14025. weight: math.unit(146, "lb"),
  14026. name: "Front",
  14027. image: {
  14028. source: "./media/characters/iliac/front.svg",
  14029. extra: 389 / 365,
  14030. bottom: 0.035
  14031. }
  14032. },
  14033. },
  14034. [
  14035. {
  14036. name: "Normal",
  14037. height: math.unit(6 + 2 / 12, "feet"),
  14038. default: true
  14039. },
  14040. ]
  14041. ))
  14042. characterMakers.push(() => makeCharacter(
  14043. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14044. {
  14045. front: {
  14046. height: math.unit(6, "feet"),
  14047. weight: math.unit(170, "lb"),
  14048. name: "Front",
  14049. image: {
  14050. source: "./media/characters/topaz/front.svg",
  14051. extra: 317 / 303,
  14052. bottom: 0.055
  14053. }
  14054. },
  14055. },
  14056. [
  14057. {
  14058. name: "Normal",
  14059. height: math.unit(6, "feet"),
  14060. default: true
  14061. },
  14062. ]
  14063. ))
  14064. characterMakers.push(() => makeCharacter(
  14065. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14066. {
  14067. front: {
  14068. height: math.unit(5 + 11 / 12, "feet"),
  14069. weight: math.unit(144, "lb"),
  14070. name: "Front",
  14071. image: {
  14072. source: "./media/characters/gabriel/front.svg",
  14073. extra: 285 / 262,
  14074. bottom: 0.004
  14075. }
  14076. },
  14077. },
  14078. [
  14079. {
  14080. name: "Normal",
  14081. height: math.unit(5 + 11 / 12, "feet"),
  14082. default: true
  14083. },
  14084. ]
  14085. ))
  14086. characterMakers.push(() => makeCharacter(
  14087. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14088. {
  14089. side: {
  14090. height: math.unit(6 + 5 / 12, "feet"),
  14091. weight: math.unit(300, "lb"),
  14092. name: "Side",
  14093. image: {
  14094. source: "./media/characters/tempest-suicune/side.svg",
  14095. extra: 195 / 154,
  14096. bottom: 0.04
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(6 + 5 / 12, "feet"),
  14104. default: true
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14110. {
  14111. front: {
  14112. height: math.unit(7 + 2 / 12, "feet"),
  14113. weight: math.unit(322, "lb"),
  14114. name: "Front",
  14115. image: {
  14116. source: "./media/characters/vulcan/front.svg",
  14117. extra: 154 / 147,
  14118. bottom: 0.04
  14119. }
  14120. },
  14121. },
  14122. [
  14123. {
  14124. name: "Normal",
  14125. height: math.unit(7 + 2 / 12, "feet"),
  14126. default: true
  14127. },
  14128. ]
  14129. ))
  14130. characterMakers.push(() => makeCharacter(
  14131. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14132. {
  14133. front: {
  14134. height: math.unit(5 + 10 / 12, "feet"),
  14135. weight: math.unit(264, "lb"),
  14136. name: "Front",
  14137. image: {
  14138. source: "./media/characters/gault/front.svg",
  14139. extra: 161 / 140,
  14140. bottom: 0.028
  14141. }
  14142. },
  14143. },
  14144. [
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(5 + 10 / 12, "feet"),
  14148. default: true
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(6, "feet"),
  14157. weight: math.unit(150, "lb"),
  14158. name: "Front",
  14159. image: {
  14160. source: "./media/characters/shard/front.svg",
  14161. extra: 273 / 238,
  14162. bottom: 0.02
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Normal",
  14169. height: math.unit(3 + 6 / 12, "feet"),
  14170. default: true
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(5 + 11 / 12, "feet"),
  14179. weight: math.unit(146, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/ashe/front.svg",
  14183. extra: 400 / 373,
  14184. bottom: 0.01
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Normal",
  14191. height: math.unit(5 + 11 / 12, "feet"),
  14192. default: true
  14193. },
  14194. ]
  14195. ))
  14196. characterMakers.push(() => makeCharacter(
  14197. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14198. {
  14199. front: {
  14200. height: math.unit(5 + 5 / 12, "feet"),
  14201. weight: math.unit(135, "lb"),
  14202. name: "Front",
  14203. image: {
  14204. source: "./media/characters/beatrix/front.svg",
  14205. extra: 392 / 379,
  14206. bottom: 0.01
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(6, "feet"),
  14214. default: true
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(6, "feet"),
  14223. weight: math.unit(150, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/ignatius/front.svg",
  14227. extra: 245 / 222,
  14228. bottom: 0.01
  14229. }
  14230. },
  14231. },
  14232. [
  14233. {
  14234. name: "Normal",
  14235. height: math.unit(5 + 5 / 12, "feet"),
  14236. default: true
  14237. },
  14238. ]
  14239. ))
  14240. characterMakers.push(() => makeCharacter(
  14241. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14242. {
  14243. front: {
  14244. height: math.unit(6 + 2 / 12, "feet"),
  14245. weight: math.unit(138, "lb"),
  14246. name: "Front",
  14247. image: {
  14248. source: "./media/characters/mei-li/front.svg",
  14249. extra: 237 / 229,
  14250. bottom: 0.03
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Normal",
  14257. height: math.unit(6 + 2 / 12, "feet"),
  14258. default: true
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14264. {
  14265. front: {
  14266. height: math.unit(2 + 4 / 12, "feet"),
  14267. weight: math.unit(62, "lb"),
  14268. name: "Front",
  14269. image: {
  14270. source: "./media/characters/puru/front.svg",
  14271. extra: 206 / 149,
  14272. bottom: 0.06
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Normal",
  14279. height: math.unit(2 + 4 / 12, "feet"),
  14280. default: true
  14281. },
  14282. ]
  14283. ))
  14284. characterMakers.push(() => makeCharacter(
  14285. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14286. {
  14287. taur: {
  14288. height: math.unit(11, "feet"),
  14289. weight: math.unit(500, "lb"),
  14290. name: "Taur",
  14291. image: {
  14292. source: "./media/characters/kee/taur.svg",
  14293. extra: 1,
  14294. bottom: 0.04
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Normal",
  14301. height: math.unit(11, "feet"),
  14302. default: true
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14308. {
  14309. anthro: {
  14310. height: math.unit(7, "feet"),
  14311. weight: math.unit(190, "lb"),
  14312. name: "Anthro",
  14313. image: {
  14314. source: "./media/characters/cobalt-dracha/anthro.svg",
  14315. extra: 231 / 225,
  14316. bottom: 0.04
  14317. }
  14318. },
  14319. feral: {
  14320. height: math.unit(9 + 7 / 12, "feet"),
  14321. weight: math.unit(294, "lb"),
  14322. name: "Feral",
  14323. image: {
  14324. source: "./media/characters/cobalt-dracha/feral.svg",
  14325. extra: 692 / 633,
  14326. bottom: 0.05
  14327. }
  14328. },
  14329. },
  14330. [
  14331. {
  14332. name: "Normal",
  14333. height: math.unit(7, "feet"),
  14334. default: true
  14335. },
  14336. ]
  14337. ))
  14338. characterMakers.push(() => makeCharacter(
  14339. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14340. {
  14341. fallen: {
  14342. height: math.unit(11 + 8 / 12, "feet"),
  14343. weight: math.unit(485, "lb"),
  14344. name: "Java (Fallen)",
  14345. rename: true,
  14346. image: {
  14347. source: "./media/characters/java/fallen.svg",
  14348. extra: 226 / 208,
  14349. bottom: 0.005
  14350. }
  14351. },
  14352. godkin: {
  14353. height: math.unit(10 + 6 / 12, "feet"),
  14354. weight: math.unit(328, "lb"),
  14355. name: "Java (Godkin)",
  14356. rename: true,
  14357. image: {
  14358. source: "./media/characters/java/godkin.svg",
  14359. extra: 270 / 262,
  14360. bottom: 0.02
  14361. }
  14362. },
  14363. },
  14364. [
  14365. {
  14366. name: "Normal",
  14367. height: math.unit(11 + 8 / 12, "feet"),
  14368. default: true
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14374. {
  14375. front: {
  14376. height: math.unit(7 + 8 / 12, "feet"),
  14377. weight: math.unit(320, "lb"),
  14378. name: "Front",
  14379. image: {
  14380. source: "./media/characters/skoll/front.svg",
  14381. extra: 232 / 220,
  14382. bottom: 0.02
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Normal",
  14389. height: math.unit(7 + 8 / 12, "feet"),
  14390. default: true
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14396. {
  14397. front: {
  14398. height: math.unit(5 + 9 / 12, "feet"),
  14399. weight: math.unit(170, "lb"),
  14400. name: "Front",
  14401. image: {
  14402. source: "./media/characters/purna/front.svg",
  14403. extra: 239 / 229,
  14404. bottom: 0.01
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(5 + 9 / 12, "feet"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14418. {
  14419. front: {
  14420. height: math.unit(5 + 9 / 12, "feet"),
  14421. weight: math.unit(142, "lb"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/kuva/front.svg",
  14425. extra: 281 / 271,
  14426. bottom: 0.006
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Normal",
  14433. height: math.unit(5 + 9 / 12, "feet"),
  14434. default: true
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14440. {
  14441. anthro: {
  14442. height: math.unit(9 + 2 / 12, "feet"),
  14443. weight: math.unit(270, "lb"),
  14444. name: "Anthro",
  14445. image: {
  14446. source: "./media/characters/embra/anthro.svg",
  14447. extra: 200 / 187,
  14448. bottom: 0.02
  14449. }
  14450. },
  14451. feral: {
  14452. height: math.unit(18 + 8 / 12, "feet"),
  14453. weight: math.unit(576, "lb"),
  14454. name: "Feral",
  14455. image: {
  14456. source: "./media/characters/embra/feral.svg",
  14457. extra: 152 / 137,
  14458. bottom: 0.037
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Normal",
  14465. height: math.unit(9 + 2 / 12, "feet"),
  14466. default: true
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14472. {
  14473. anthro: {
  14474. height: math.unit(10 + 9 / 12, "feet"),
  14475. weight: math.unit(224, "lb"),
  14476. name: "Anthro",
  14477. image: {
  14478. source: "./media/characters/grottos/anthro.svg",
  14479. extra: 350 / 332,
  14480. bottom: 0.045
  14481. }
  14482. },
  14483. feral: {
  14484. height: math.unit(20 + 7 / 12, "feet"),
  14485. weight: math.unit(629, "lb"),
  14486. name: "Feral",
  14487. image: {
  14488. source: "./media/characters/grottos/feral.svg",
  14489. extra: 207 / 190,
  14490. bottom: 0.05
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Normal",
  14497. height: math.unit(10 + 9 / 12, "feet"),
  14498. default: true
  14499. },
  14500. ]
  14501. ))
  14502. characterMakers.push(() => makeCharacter(
  14503. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14504. {
  14505. anthro: {
  14506. height: math.unit(9 + 6 / 12, "feet"),
  14507. weight: math.unit(298, "lb"),
  14508. name: "Anthro",
  14509. image: {
  14510. source: "./media/characters/frifna/anthro.svg",
  14511. extra: 282 / 269,
  14512. bottom: 0.015
  14513. }
  14514. },
  14515. feral: {
  14516. height: math.unit(16 + 2 / 12, "feet"),
  14517. weight: math.unit(624, "lb"),
  14518. name: "Feral",
  14519. image: {
  14520. source: "./media/characters/frifna/feral.svg"
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Normal",
  14527. height: math.unit(9 + 6 / 12, "feet"),
  14528. default: true
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(6 + 2 / 12, "feet"),
  14537. weight: math.unit(168, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/elise/front.svg",
  14541. extra: 276 / 271
  14542. }
  14543. },
  14544. },
  14545. [
  14546. {
  14547. name: "Normal",
  14548. height: math.unit(6 + 2 / 12, "feet"),
  14549. default: true
  14550. },
  14551. ]
  14552. ))
  14553. characterMakers.push(() => makeCharacter(
  14554. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14555. {
  14556. front: {
  14557. height: math.unit(5 + 10 / 12, "feet"),
  14558. weight: math.unit(210, "lb"),
  14559. name: "Front",
  14560. image: {
  14561. source: "./media/characters/glade/front.svg",
  14562. extra: 258 / 247,
  14563. bottom: 0.008
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "Normal",
  14570. height: math.unit(5 + 10 / 12, "feet"),
  14571. default: true
  14572. },
  14573. ]
  14574. ))
  14575. characterMakers.push(() => makeCharacter(
  14576. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14577. {
  14578. front: {
  14579. height: math.unit(5 + 10 / 12, "feet"),
  14580. weight: math.unit(129, "lb"),
  14581. name: "Front",
  14582. image: {
  14583. source: "./media/characters/rina/front.svg",
  14584. extra: 266 / 255,
  14585. bottom: 0.005
  14586. }
  14587. },
  14588. },
  14589. [
  14590. {
  14591. name: "Normal",
  14592. height: math.unit(5 + 10 / 12, "feet"),
  14593. default: true
  14594. },
  14595. ]
  14596. ))
  14597. characterMakers.push(() => makeCharacter(
  14598. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14599. {
  14600. front: {
  14601. height: math.unit(6 + 1 / 12, "feet"),
  14602. weight: math.unit(192, "lb"),
  14603. name: "Front",
  14604. image: {
  14605. source: "./media/characters/veronica/front.svg",
  14606. extra: 319 / 309,
  14607. bottom: 0.005
  14608. }
  14609. },
  14610. },
  14611. [
  14612. {
  14613. name: "Normal",
  14614. height: math.unit(6 + 1 / 12, "feet"),
  14615. default: true
  14616. },
  14617. ]
  14618. ))
  14619. characterMakers.push(() => makeCharacter(
  14620. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14621. {
  14622. front: {
  14623. height: math.unit(9 + 3 / 12, "feet"),
  14624. weight: math.unit(1100, "lb"),
  14625. name: "Front",
  14626. image: {
  14627. source: "./media/characters/braxton/front.svg",
  14628. extra: 1057 / 984,
  14629. bottom: 0.05
  14630. }
  14631. },
  14632. },
  14633. [
  14634. {
  14635. name: "Normal",
  14636. height: math.unit(9 + 3 / 12, "feet")
  14637. },
  14638. {
  14639. name: "Giant",
  14640. height: math.unit(300, "feet"),
  14641. default: true
  14642. },
  14643. {
  14644. name: "Macro",
  14645. height: math.unit(700, "feet")
  14646. },
  14647. {
  14648. name: "Megamacro",
  14649. height: math.unit(6000, "feet")
  14650. },
  14651. ]
  14652. ))
  14653. characterMakers.push(() => makeCharacter(
  14654. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14655. {
  14656. front: {
  14657. height: math.unit(6 + 7 / 12, "feet"),
  14658. weight: math.unit(150, "lb"),
  14659. name: "Front",
  14660. image: {
  14661. source: "./media/characters/blue-feyonics/front.svg",
  14662. extra: 1403 / 1306,
  14663. bottom: 0.047
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(6 + 7 / 12, "feet"),
  14671. default: true
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(1.8, "meters"),
  14680. weight: math.unit(60, "kg"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/maxwell/front.svg",
  14684. extra: 2060 / 1873
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Micro",
  14691. height: math.unit(1, "mm")
  14692. },
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(1.8, "meter"),
  14696. default: true
  14697. },
  14698. {
  14699. name: "Macro",
  14700. height: math.unit(30, "meters")
  14701. },
  14702. {
  14703. name: "Megamacro",
  14704. height: math.unit(10, "km")
  14705. },
  14706. ]
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14710. {
  14711. front: {
  14712. height: math.unit(6, "feet"),
  14713. weight: math.unit(150, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/jack/front.svg",
  14717. extra: 1754 / 1640,
  14718. bottom: 0.01
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(80000, "feet"),
  14726. default: true
  14727. },
  14728. {
  14729. name: "Max size",
  14730. height: math.unit(10, "lightyears")
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14736. {
  14737. upright: {
  14738. height: math.unit(7, "feet"),
  14739. weight: math.unit(170, "lb"),
  14740. name: "Upright",
  14741. image: {
  14742. source: "./media/characters/cafat/upright.svg",
  14743. bottom: 0.01
  14744. }
  14745. },
  14746. uprightFull: {
  14747. height: math.unit(7, "feet"),
  14748. weight: math.unit(170, "lb"),
  14749. name: "Upright (Full)",
  14750. image: {
  14751. source: "./media/characters/cafat/upright-full.svg",
  14752. bottom: 0.01
  14753. }
  14754. },
  14755. side: {
  14756. height: math.unit(5, "feet"),
  14757. weight: math.unit(150, "lb"),
  14758. name: "Side",
  14759. image: {
  14760. source: "./media/characters/cafat/side.svg"
  14761. }
  14762. },
  14763. },
  14764. [
  14765. {
  14766. name: "Small",
  14767. height: math.unit(7, "feet"),
  14768. default: true
  14769. },
  14770. {
  14771. name: "Large",
  14772. height: math.unit(15.5, "feet")
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(6, "feet"),
  14781. weight: math.unit(150, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/verin-raharra/front.svg",
  14785. extra: 5019 / 4835,
  14786. bottom: 0.023
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(7 + 5 / 12, "feet"),
  14794. default: true
  14795. },
  14796. {
  14797. name: "Upsized",
  14798. height: math.unit(20, "feet")
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(7, "feet"),
  14807. weight: math.unit(230, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/nakata/front.svg",
  14811. extra: 1.005,
  14812. bottom: 0.01
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(7, "feet"),
  14820. default: true
  14821. },
  14822. {
  14823. name: "Big",
  14824. height: math.unit(14, "feet")
  14825. },
  14826. {
  14827. name: "Macro",
  14828. height: math.unit(400, "feet")
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(4.91, "feet"),
  14837. weight: math.unit(100, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/lily/front.svg",
  14841. extra: 1585 / 1415,
  14842. bottom: 0.02
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(4.91, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14856. {
  14857. laying: {
  14858. height: math.unit(4 + 4 / 12, "feet"),
  14859. weight: math.unit(600, "lb"),
  14860. name: "Laying",
  14861. image: {
  14862. source: "./media/characters/sheila/laying.svg",
  14863. extra: 1333 / 1265,
  14864. bottom: 0.16
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(4 + 4 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(190, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/sax/front.svg",
  14885. extra: 1187 / 973,
  14886. bottom: 0.042
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Micro",
  14893. height: math.unit(4, "inches"),
  14894. default: true
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(6, "feet"),
  14903. weight: math.unit(150, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/pandora/front.svg",
  14907. extra: 2720 / 2556,
  14908. bottom: 0.015
  14909. }
  14910. },
  14911. back: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(150, "lb"),
  14914. name: "Back",
  14915. image: {
  14916. source: "./media/characters/pandora/back.svg",
  14917. extra: 2720 / 2556,
  14918. bottom: 0.01
  14919. }
  14920. },
  14921. beans: {
  14922. height: math.unit(6 / 8, "feet"),
  14923. name: "Beans",
  14924. image: {
  14925. source: "./media/characters/pandora/beans.svg"
  14926. }
  14927. },
  14928. skirt: {
  14929. height: math.unit(6, "feet"),
  14930. weight: math.unit(150, "lb"),
  14931. name: "Skirt",
  14932. image: {
  14933. source: "./media/characters/pandora/skirt.svg",
  14934. extra: 1622 / 1525,
  14935. bottom: 0.015
  14936. }
  14937. },
  14938. hoodie: {
  14939. height: math.unit(6, "feet"),
  14940. weight: math.unit(150, "lb"),
  14941. name: "Hoodie",
  14942. image: {
  14943. source: "./media/characters/pandora/hoodie.svg",
  14944. extra: 1622 / 1525,
  14945. bottom: 0.015
  14946. }
  14947. },
  14948. casual: {
  14949. height: math.unit(6, "feet"),
  14950. weight: math.unit(150, "lb"),
  14951. name: "Casual",
  14952. image: {
  14953. source: "./media/characters/pandora/casual.svg",
  14954. extra: 1622 / 1525,
  14955. bottom: 0.015
  14956. }
  14957. },
  14958. },
  14959. [
  14960. {
  14961. name: "Normal",
  14962. height: math.unit(6, "feet")
  14963. },
  14964. {
  14965. name: "Big Steppy",
  14966. height: math.unit(1, "km"),
  14967. default: true
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14973. {
  14974. side: {
  14975. height: math.unit(10, "feet"),
  14976. weight: math.unit(800, "kg"),
  14977. name: "Side",
  14978. image: {
  14979. source: "./media/characters/venio-darcony/side.svg",
  14980. extra: 1373 / 1003,
  14981. bottom: 0.037
  14982. }
  14983. },
  14984. front: {
  14985. height: math.unit(19, "feet"),
  14986. weight: math.unit(800, "kg"),
  14987. name: "Front",
  14988. image: {
  14989. source: "./media/characters/venio-darcony/front.svg"
  14990. }
  14991. },
  14992. back: {
  14993. height: math.unit(19, "feet"),
  14994. weight: math.unit(800, "kg"),
  14995. name: "Back",
  14996. image: {
  14997. source: "./media/characters/venio-darcony/back.svg"
  14998. }
  14999. },
  15000. sideNsfw: {
  15001. height: math.unit(10, "feet"),
  15002. weight: math.unit(800, "kg"),
  15003. name: "Side (NSFW)",
  15004. image: {
  15005. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15006. extra: 1373 / 1003,
  15007. bottom: 0.037
  15008. }
  15009. },
  15010. frontNsfw: {
  15011. height: math.unit(19, "feet"),
  15012. weight: math.unit(800, "kg"),
  15013. name: "Front (NSFW)",
  15014. image: {
  15015. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15016. }
  15017. },
  15018. backNsfw: {
  15019. height: math.unit(19, "feet"),
  15020. weight: math.unit(800, "kg"),
  15021. name: "Back (NSFW)",
  15022. image: {
  15023. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15024. }
  15025. },
  15026. sideArmored: {
  15027. height: math.unit(10, "feet"),
  15028. weight: math.unit(800, "kg"),
  15029. name: "Side (Armored)",
  15030. image: {
  15031. source: "./media/characters/venio-darcony/side-armored.svg",
  15032. extra: 1373 / 1003,
  15033. bottom: 0.037
  15034. }
  15035. },
  15036. frontArmored: {
  15037. height: math.unit(19, "feet"),
  15038. weight: math.unit(900, "kg"),
  15039. name: "Front (Armored)",
  15040. image: {
  15041. source: "./media/characters/venio-darcony/front-armored.svg"
  15042. }
  15043. },
  15044. backArmored: {
  15045. height: math.unit(19, "feet"),
  15046. weight: math.unit(900, "kg"),
  15047. name: "Back (Armored)",
  15048. image: {
  15049. source: "./media/characters/venio-darcony/back-armored.svg"
  15050. }
  15051. },
  15052. sword: {
  15053. height: math.unit(10, "feet"),
  15054. weight: math.unit(50, "lb"),
  15055. name: "Sword",
  15056. image: {
  15057. source: "./media/characters/venio-darcony/sword.svg"
  15058. }
  15059. },
  15060. },
  15061. [
  15062. {
  15063. name: "Normal",
  15064. height: math.unit(10, "feet")
  15065. },
  15066. {
  15067. name: "Macro",
  15068. height: math.unit(130, "feet"),
  15069. default: true
  15070. },
  15071. {
  15072. name: "Macro+",
  15073. height: math.unit(240, "feet")
  15074. },
  15075. ]
  15076. ))
  15077. characterMakers.push(() => makeCharacter(
  15078. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15079. {
  15080. front: {
  15081. height: math.unit(6, "feet"),
  15082. weight: math.unit(150, "lb"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/veski/front.svg",
  15086. extra: 1299 / 1225,
  15087. bottom: 0.04
  15088. }
  15089. },
  15090. back: {
  15091. height: math.unit(6, "feet"),
  15092. weight: math.unit(150, "lb"),
  15093. name: "Back",
  15094. image: {
  15095. source: "./media/characters/veski/back.svg",
  15096. extra: 1299 / 1225,
  15097. bottom: 0.008
  15098. }
  15099. },
  15100. maw: {
  15101. height: math.unit(1.5 * 1.21, "feet"),
  15102. name: "Maw",
  15103. image: {
  15104. source: "./media/characters/veski/maw.svg"
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Macro",
  15111. height: math.unit(2, "km"),
  15112. default: true
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15118. {
  15119. front: {
  15120. height: math.unit(5 + 7 / 12, "feet"),
  15121. name: "Front",
  15122. image: {
  15123. source: "./media/characters/isabelle/front.svg",
  15124. extra: 2130 / 1976,
  15125. bottom: 0.05
  15126. }
  15127. },
  15128. },
  15129. [
  15130. {
  15131. name: "Supermicro",
  15132. height: math.unit(10, "micrometers")
  15133. },
  15134. {
  15135. name: "Micro",
  15136. height: math.unit(1, "inch")
  15137. },
  15138. {
  15139. name: "Tiny",
  15140. height: math.unit(5, "inches")
  15141. },
  15142. {
  15143. name: "Standard",
  15144. height: math.unit(5 + 7 / 12, "inches")
  15145. },
  15146. {
  15147. name: "Macro",
  15148. height: math.unit(80, "meters"),
  15149. default: true
  15150. },
  15151. {
  15152. name: "Megamacro",
  15153. height: math.unit(250, "meters")
  15154. },
  15155. {
  15156. name: "Gigamacro",
  15157. height: math.unit(5, "km")
  15158. },
  15159. {
  15160. name: "Cosmic",
  15161. height: math.unit(2.5e6, "miles")
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/hanzo/front.svg",
  15174. extra: 374 / 344,
  15175. bottom: 0.02
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(8, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(7, "feet"),
  15192. weight: math.unit(130, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/anna/front.svg",
  15196. extra: 169 / 145,
  15197. bottom: 0.06
  15198. }
  15199. },
  15200. full: {
  15201. height: math.unit(4.96, "feet"),
  15202. weight: math.unit(220, "lb"),
  15203. name: "Full",
  15204. image: {
  15205. source: "./media/characters/anna/full.svg",
  15206. extra: 138 / 114,
  15207. bottom: 0.15
  15208. }
  15209. },
  15210. tongue: {
  15211. height: math.unit(2.53, "feet"),
  15212. name: "Tongue",
  15213. image: {
  15214. source: "./media/characters/anna/tongue.svg"
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(7, "feet"),
  15222. default: true
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15228. {
  15229. front: {
  15230. height: math.unit(7, "feet"),
  15231. weight: math.unit(150, "lb"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/ian-corvid/front.svg",
  15235. extra: 150 / 142,
  15236. bottom: 0.02
  15237. }
  15238. },
  15239. back: {
  15240. height: math.unit(7, "feet"),
  15241. weight: math.unit(150, "lb"),
  15242. name: "Back",
  15243. image: {
  15244. source: "./media/characters/ian-corvid/back.svg",
  15245. extra: 150 / 143,
  15246. bottom: 0.01
  15247. }
  15248. },
  15249. stomping: {
  15250. height: math.unit(7, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Stomping",
  15253. image: {
  15254. source: "./media/characters/ian-corvid/stomping.svg",
  15255. extra: 76 / 72
  15256. }
  15257. },
  15258. sitting: {
  15259. height: math.unit(7 / 1.8, "feet"),
  15260. weight: math.unit(150, "lb"),
  15261. name: "Sitting",
  15262. image: {
  15263. source: "./media/characters/ian-corvid/sitting.svg",
  15264. extra: 1400 / 1269,
  15265. bottom: 0.15
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Tiny Microw",
  15272. height: math.unit(1, "inch")
  15273. },
  15274. {
  15275. name: "Microw",
  15276. height: math.unit(6, "inches")
  15277. },
  15278. {
  15279. name: "Crow",
  15280. height: math.unit(7 + 1 / 12, "feet"),
  15281. default: true
  15282. },
  15283. {
  15284. name: "Macrow",
  15285. height: math.unit(176, "feet")
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(5 + 7 / 12, "feet"),
  15294. weight: math.unit(147, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/natalie-kellon/front.svg",
  15298. extra: 1214 / 1141,
  15299. bottom: 0.02
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Micro",
  15306. height: math.unit(1 / 16, "inch")
  15307. },
  15308. {
  15309. name: "Tiny",
  15310. height: math.unit(4, "inches")
  15311. },
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(5 + 7 / 12, "feet"),
  15315. default: true
  15316. },
  15317. {
  15318. name: "Amazon",
  15319. height: math.unit(12, "feet")
  15320. },
  15321. {
  15322. name: "Giantess",
  15323. height: math.unit(160, "meters")
  15324. },
  15325. {
  15326. name: "Titaness",
  15327. height: math.unit(800, "meters")
  15328. },
  15329. ]
  15330. ))
  15331. characterMakers.push(() => makeCharacter(
  15332. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15333. {
  15334. front: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Front",
  15338. image: {
  15339. source: "./media/characters/alluria/front.svg",
  15340. extra: 806 / 738,
  15341. bottom: 0.01
  15342. }
  15343. },
  15344. side: {
  15345. height: math.unit(6, "feet"),
  15346. weight: math.unit(150, "lb"),
  15347. name: "Side",
  15348. image: {
  15349. source: "./media/characters/alluria/side.svg",
  15350. extra: 800 / 750,
  15351. }
  15352. },
  15353. back: {
  15354. height: math.unit(6, "feet"),
  15355. weight: math.unit(150, "lb"),
  15356. name: "Back",
  15357. image: {
  15358. source: "./media/characters/alluria/back.svg",
  15359. extra: 806 / 738,
  15360. }
  15361. },
  15362. frontMaid: {
  15363. height: math.unit(6, "feet"),
  15364. weight: math.unit(150, "lb"),
  15365. name: "Front (Maid)",
  15366. image: {
  15367. source: "./media/characters/alluria/front-maid.svg",
  15368. extra: 806 / 738,
  15369. bottom: 0.01
  15370. }
  15371. },
  15372. sideMaid: {
  15373. height: math.unit(6, "feet"),
  15374. weight: math.unit(150, "lb"),
  15375. name: "Side (Maid)",
  15376. image: {
  15377. source: "./media/characters/alluria/side-maid.svg",
  15378. extra: 800 / 750,
  15379. bottom: 0.005
  15380. }
  15381. },
  15382. backMaid: {
  15383. height: math.unit(6, "feet"),
  15384. weight: math.unit(150, "lb"),
  15385. name: "Back (Maid)",
  15386. image: {
  15387. source: "./media/characters/alluria/back-maid.svg",
  15388. extra: 806 / 738,
  15389. }
  15390. },
  15391. },
  15392. [
  15393. {
  15394. name: "Micro",
  15395. height: math.unit(6, "inches"),
  15396. default: true
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/kyle/front.svg",
  15409. extra: 1069 / 962,
  15410. bottom: 77.228 / 1727.45
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Macro",
  15417. height: math.unit(150, "feet"),
  15418. default: true
  15419. },
  15420. ]
  15421. ))
  15422. characterMakers.push(() => makeCharacter(
  15423. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15424. {
  15425. front: {
  15426. height: math.unit(6, "feet"),
  15427. weight: math.unit(300, "lb"),
  15428. name: "Front",
  15429. image: {
  15430. source: "./media/characters/duncan/front.svg",
  15431. extra: 1650 / 1482,
  15432. bottom: 0.05
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Macro",
  15439. height: math.unit(100, "feet"),
  15440. default: true
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(5 + 4 / 12, "feet"),
  15449. weight: math.unit(220, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/memory/front.svg",
  15453. extra: 3641 / 3545,
  15454. bottom: 0.03
  15455. }
  15456. },
  15457. back: {
  15458. height: math.unit(5 + 4 / 12, "feet"),
  15459. weight: math.unit(220, "lb"),
  15460. name: "Back",
  15461. image: {
  15462. source: "./media/characters/memory/back.svg",
  15463. extra: 3641 / 3545,
  15464. bottom: 0.025
  15465. }
  15466. },
  15467. frontSkirt: {
  15468. height: math.unit(5 + 4 / 12, "feet"),
  15469. weight: math.unit(220, "lb"),
  15470. name: "Front (Skirt)",
  15471. image: {
  15472. source: "./media/characters/memory/front-skirt.svg",
  15473. extra: 3641 / 3545,
  15474. bottom: 0.03
  15475. }
  15476. },
  15477. frontDress: {
  15478. height: math.unit(5 + 4 / 12, "feet"),
  15479. weight: math.unit(220, "lb"),
  15480. name: "Front (Dress)",
  15481. image: {
  15482. source: "./media/characters/memory/front-dress.svg",
  15483. extra: 3641 / 3545,
  15484. bottom: 0.03
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Micro",
  15491. height: math.unit(6, "inches"),
  15492. default: true
  15493. },
  15494. {
  15495. name: "Normal",
  15496. height: math.unit(5 + 4 / 12, "feet")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(4 + 11 / 12, "feet"),
  15505. weight: math.unit(100, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/luno/front.svg",
  15509. extra: 1535 / 1487,
  15510. bottom: 0.03
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Micro",
  15517. height: math.unit(3, "inches")
  15518. },
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(4 + 11 / 12, "feet"),
  15522. default: true
  15523. },
  15524. {
  15525. name: "Macro",
  15526. height: math.unit(300, "feet")
  15527. },
  15528. {
  15529. name: "Megamacro",
  15530. height: math.unit(700, "miles")
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(6 + 2 / 12, "feet"),
  15539. weight: math.unit(170, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/jamesy/front.svg",
  15543. extra: 440 / 382,
  15544. bottom: 0.005
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Micro",
  15551. height: math.unit(3, "inches")
  15552. },
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(6 + 2 / 12, "feet"),
  15556. default: true
  15557. },
  15558. {
  15559. name: "Macro",
  15560. height: math.unit(300, "feet")
  15561. },
  15562. {
  15563. name: "Megamacro",
  15564. height: math.unit(700, "miles")
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(6, "feet"),
  15573. weight: math.unit(160, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/mark/front.svg",
  15577. extra: 3300 / 3100,
  15578. bottom: 136.42 / 3440.47
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Macro",
  15585. height: math.unit(120, "meters")
  15586. },
  15587. {
  15588. name: "Bigger Macro",
  15589. height: math.unit(350, "meters")
  15590. },
  15591. {
  15592. name: "Megamacro",
  15593. height: math.unit(8, "km"),
  15594. default: true
  15595. },
  15596. {
  15597. name: "Continental",
  15598. height: math.unit(4550, "km")
  15599. },
  15600. {
  15601. name: "Planetary",
  15602. height: math.unit(65000, "km")
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(6, "feet"),
  15611. weight: math.unit(400, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/mac/front.svg",
  15615. extra: 1048 / 987.7,
  15616. bottom: 60 / 1107.6,
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Macro",
  15623. height: math.unit(500, "feet"),
  15624. default: true
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15630. {
  15631. front: {
  15632. height: math.unit(5 + 2 / 12, "feet"),
  15633. weight: math.unit(190, "lb"),
  15634. name: "Front",
  15635. image: {
  15636. source: "./media/characters/bari/front.svg",
  15637. extra: 3156 / 2880,
  15638. bottom: 0.03
  15639. }
  15640. },
  15641. back: {
  15642. height: math.unit(5 + 2 / 12, "feet"),
  15643. weight: math.unit(190, "lb"),
  15644. name: "Back",
  15645. image: {
  15646. source: "./media/characters/bari/back.svg",
  15647. extra: 3260 / 2834,
  15648. bottom: 0.025
  15649. }
  15650. },
  15651. frontPlush: {
  15652. height: math.unit(5 + 2 / 12, "feet"),
  15653. weight: math.unit(190, "lb"),
  15654. name: "Front (Plush)",
  15655. image: {
  15656. source: "./media/characters/bari/front-plush.svg",
  15657. extra: 1112 / 1061,
  15658. bottom: 0.002
  15659. }
  15660. },
  15661. },
  15662. [
  15663. {
  15664. name: "Micro",
  15665. height: math.unit(3, "inches")
  15666. },
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(5 + 2 / 12, "feet"),
  15670. default: true
  15671. },
  15672. {
  15673. name: "Macro",
  15674. height: math.unit(20, "feet")
  15675. },
  15676. ]
  15677. ))
  15678. characterMakers.push(() => makeCharacter(
  15679. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15680. {
  15681. front: {
  15682. height: math.unit(6 + 1 / 12, "feet"),
  15683. weight: math.unit(275, "lb"),
  15684. name: "Front",
  15685. image: {
  15686. source: "./media/characters/hunter-misha-raven/front.svg"
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Mortal",
  15693. height: math.unit(6 + 1 / 12, "feet")
  15694. },
  15695. {
  15696. name: "Divine",
  15697. height: math.unit(1.12134e34, "parsecs"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(6 + 3 / 12, "feet"),
  15707. weight: math.unit(220, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/max-calore/front.svg",
  15711. extra: 1700 / 1648,
  15712. bottom: 0.01
  15713. }
  15714. },
  15715. back: {
  15716. height: math.unit(6 + 3 / 12, "feet"),
  15717. weight: math.unit(220, "lb"),
  15718. name: "Back",
  15719. image: {
  15720. source: "./media/characters/max-calore/back.svg",
  15721. extra: 1700 / 1648,
  15722. bottom: 0.01
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(6 + 3 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15736. {
  15737. side: {
  15738. height: math.unit(2 + 8 / 12, "feet"),
  15739. weight: math.unit(99, "lb"),
  15740. name: "Side",
  15741. image: {
  15742. source: "./media/characters/aspen/side.svg",
  15743. extra: 152 / 138,
  15744. bottom: 0.032
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(2 + 8 / 12, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15758. {
  15759. side: {
  15760. height: math.unit(3 + 2 / 12, "feet"),
  15761. weight: math.unit(224, "lb"),
  15762. name: "Side",
  15763. image: {
  15764. source: "./media/characters/sheila-feral-wolf/side.svg",
  15765. extra: 179 / 166,
  15766. bottom: 0.03
  15767. }
  15768. },
  15769. },
  15770. [
  15771. {
  15772. name: "Normal",
  15773. height: math.unit(3 + 2 / 12, "feet"),
  15774. default: true
  15775. },
  15776. ]
  15777. ))
  15778. characterMakers.push(() => makeCharacter(
  15779. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15780. {
  15781. side: {
  15782. height: math.unit(1 + 9 / 12, "feet"),
  15783. weight: math.unit(38, "lb"),
  15784. name: "Side",
  15785. image: {
  15786. source: "./media/characters/michelle/side.svg",
  15787. extra: 147 / 136.7,
  15788. bottom: 0.03
  15789. }
  15790. },
  15791. },
  15792. [
  15793. {
  15794. name: "Normal",
  15795. height: math.unit(1 + 9 / 12, "feet"),
  15796. default: true
  15797. },
  15798. ]
  15799. ))
  15800. characterMakers.push(() => makeCharacter(
  15801. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15802. {
  15803. front: {
  15804. height: math.unit(1 + 1 / 12, "feet"),
  15805. weight: math.unit(18, "lb"),
  15806. name: "Front",
  15807. image: {
  15808. source: "./media/characters/nino/front.svg"
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(1 + 1 / 12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15822. {
  15823. front: {
  15824. height: math.unit(1, "feet"),
  15825. weight: math.unit(16, "lb"),
  15826. name: "Front",
  15827. image: {
  15828. source: "./media/characters/viola/front.svg"
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Normal",
  15835. height: math.unit(1, "feet"),
  15836. default: true
  15837. },
  15838. ]
  15839. ))
  15840. characterMakers.push(() => makeCharacter(
  15841. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15842. {
  15843. front: {
  15844. height: math.unit(6 + 5 / 12, "feet"),
  15845. weight: math.unit(580, "lb"),
  15846. name: "Front",
  15847. image: {
  15848. source: "./media/characters/atlas/front.svg",
  15849. extra: 298.5 / 290,
  15850. bottom: 0.015
  15851. }
  15852. },
  15853. },
  15854. [
  15855. {
  15856. name: "Normal",
  15857. height: math.unit(6 + 5 / 12, "feet"),
  15858. default: true
  15859. },
  15860. ]
  15861. ))
  15862. characterMakers.push(() => makeCharacter(
  15863. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15864. {
  15865. side: {
  15866. height: math.unit(1 + 10 / 12, "feet"),
  15867. weight: math.unit(25, "lb"),
  15868. name: "Side",
  15869. image: {
  15870. source: "./media/characters/davy/side.svg",
  15871. extra: 200 / 170,
  15872. bottom: 0.01
  15873. }
  15874. },
  15875. },
  15876. [
  15877. {
  15878. name: "Normal",
  15879. height: math.unit(1 + 10 / 12, "feet"),
  15880. default: true
  15881. },
  15882. ]
  15883. ))
  15884. characterMakers.push(() => makeCharacter(
  15885. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15886. {
  15887. side: {
  15888. height: math.unit(4 + 8 / 12, "feet"),
  15889. weight: math.unit(166, "lb"),
  15890. name: "Side",
  15891. image: {
  15892. source: "./media/characters/fiona/side.svg",
  15893. extra: 232 / 220,
  15894. bottom: 0.03
  15895. }
  15896. },
  15897. },
  15898. [
  15899. {
  15900. name: "Normal",
  15901. height: math.unit(4 + 8 / 12, "feet"),
  15902. default: true
  15903. },
  15904. ]
  15905. ))
  15906. characterMakers.push(() => makeCharacter(
  15907. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15908. {
  15909. front: {
  15910. height: math.unit(2, "feet"),
  15911. weight: math.unit(62, "lb"),
  15912. name: "Front",
  15913. image: {
  15914. source: "./media/characters/lyla/front.svg",
  15915. bottom: 0.1
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Normal",
  15922. height: math.unit(2, "feet"),
  15923. default: true
  15924. },
  15925. ]
  15926. ))
  15927. characterMakers.push(() => makeCharacter(
  15928. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15929. {
  15930. side: {
  15931. height: math.unit(1.8, "feet"),
  15932. weight: math.unit(44, "lb"),
  15933. name: "Side",
  15934. image: {
  15935. source: "./media/characters/perseus/side.svg",
  15936. bottom: 0.21
  15937. }
  15938. },
  15939. },
  15940. [
  15941. {
  15942. name: "Normal",
  15943. height: math.unit(1.8, "feet"),
  15944. default: true
  15945. },
  15946. ]
  15947. ))
  15948. characterMakers.push(() => makeCharacter(
  15949. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15950. {
  15951. side: {
  15952. height: math.unit(4 + 2 / 12, "feet"),
  15953. weight: math.unit(20, "lb"),
  15954. name: "Side",
  15955. image: {
  15956. source: "./media/characters/remus/side.svg"
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Normal",
  15963. height: math.unit(4 + 2 / 12, "feet"),
  15964. default: true
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(4 + 11 / 12, "feet"),
  15973. weight: math.unit(114, "lb"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/raf/front.svg",
  15977. bottom: 0.01
  15978. }
  15979. },
  15980. side: {
  15981. height: math.unit(4 + 11 / 12, "feet"),
  15982. weight: math.unit(114, "lb"),
  15983. name: "Side",
  15984. image: {
  15985. source: "./media/characters/raf/side.svg",
  15986. bottom: 0.005
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "Micro",
  15993. height: math.unit(2, "inches")
  15994. },
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(4 + 11 / 12, "feet"),
  15998. default: true
  15999. },
  16000. {
  16001. name: "Macro",
  16002. height: math.unit(70, "feet")
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16008. {
  16009. front: {
  16010. height: math.unit(1.5, "meters"),
  16011. weight: math.unit(68, "kg"),
  16012. name: "Front",
  16013. image: {
  16014. source: "./media/characters/liam-einarr/front.svg",
  16015. extra: 2822 / 2666
  16016. }
  16017. },
  16018. back: {
  16019. height: math.unit(1.5, "meters"),
  16020. weight: math.unit(68, "kg"),
  16021. name: "Back",
  16022. image: {
  16023. source: "./media/characters/liam-einarr/back.svg",
  16024. extra: 2822 / 2666,
  16025. bottom: 0.015
  16026. }
  16027. },
  16028. },
  16029. [
  16030. {
  16031. name: "Normal",
  16032. height: math.unit(1.5, "meters"),
  16033. default: true
  16034. },
  16035. {
  16036. name: "Macro",
  16037. height: math.unit(150, "meters")
  16038. },
  16039. {
  16040. name: "Megamacro",
  16041. height: math.unit(35, "km")
  16042. },
  16043. ]
  16044. ))
  16045. characterMakers.push(() => makeCharacter(
  16046. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16047. {
  16048. front: {
  16049. height: math.unit(6, "feet"),
  16050. weight: math.unit(75, "kg"),
  16051. name: "Front",
  16052. image: {
  16053. source: "./media/characters/linda/front.svg",
  16054. extra: 930 / 874,
  16055. bottom: 0.004
  16056. }
  16057. },
  16058. },
  16059. [
  16060. {
  16061. name: "Normal",
  16062. height: math.unit(6, "feet"),
  16063. default: true
  16064. },
  16065. ]
  16066. ))
  16067. characterMakers.push(() => makeCharacter(
  16068. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16069. {
  16070. front: {
  16071. height: math.unit(6 + 8 / 12, "feet"),
  16072. weight: math.unit(220, "lb"),
  16073. name: "Front",
  16074. image: {
  16075. source: "./media/characters/caylex/front.svg",
  16076. extra: 821 / 772,
  16077. bottom: 0.07
  16078. }
  16079. },
  16080. back: {
  16081. height: math.unit(6 + 8 / 12, "feet"),
  16082. weight: math.unit(220, "lb"),
  16083. name: "Back",
  16084. image: {
  16085. source: "./media/characters/caylex/back.svg",
  16086. extra: 821 / 772,
  16087. bottom: 0.022
  16088. }
  16089. },
  16090. hand: {
  16091. height: math.unit(1.25, "feet"),
  16092. name: "Hand",
  16093. image: {
  16094. source: "./media/characters/caylex/hand.svg"
  16095. }
  16096. },
  16097. foot: {
  16098. height: math.unit(1.6, "feet"),
  16099. name: "Foot",
  16100. image: {
  16101. source: "./media/characters/caylex/foot.svg"
  16102. }
  16103. },
  16104. armored: {
  16105. height: math.unit(6 + 8 / 12, "feet"),
  16106. weight: math.unit(250, "lb"),
  16107. name: "Armored",
  16108. image: {
  16109. source: "./media/characters/caylex/armored.svg",
  16110. extra: 1420 / 1310,
  16111. bottom: 0.045
  16112. }
  16113. },
  16114. },
  16115. [
  16116. {
  16117. name: "Normal",
  16118. height: math.unit(6 + 8 / 12, "feet"),
  16119. default: true
  16120. },
  16121. {
  16122. name: "Normal+",
  16123. height: math.unit(12, "feet")
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(7 + 6 / 12, "feet"),
  16132. weight: math.unit(288, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/alana/front.svg",
  16136. extra: 679 / 653,
  16137. bottom: 22.5 / 701
  16138. }
  16139. },
  16140. },
  16141. [
  16142. {
  16143. name: "Normal",
  16144. height: math.unit(7 + 6 / 12, "feet")
  16145. },
  16146. {
  16147. name: "Large",
  16148. height: math.unit(50, "feet")
  16149. },
  16150. {
  16151. name: "Macro",
  16152. height: math.unit(100, "feet"),
  16153. default: true
  16154. },
  16155. {
  16156. name: "Macro+",
  16157. height: math.unit(200, "feet")
  16158. },
  16159. ]
  16160. ))
  16161. characterMakers.push(() => makeCharacter(
  16162. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16163. {
  16164. front: {
  16165. height: math.unit(6 + 1 / 12, "feet"),
  16166. weight: math.unit(210, "lb"),
  16167. name: "Front",
  16168. image: {
  16169. source: "./media/characters/hasani/front.svg",
  16170. extra: 244 / 232,
  16171. bottom: 0.01
  16172. }
  16173. },
  16174. back: {
  16175. height: math.unit(6 + 1 / 12, "feet"),
  16176. weight: math.unit(210, "lb"),
  16177. name: "Back",
  16178. image: {
  16179. source: "./media/characters/hasani/back.svg",
  16180. extra: 244 / 232,
  16181. bottom: 0.01
  16182. }
  16183. },
  16184. },
  16185. [
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(6 + 1 / 12, "feet")
  16189. },
  16190. {
  16191. name: "Macro",
  16192. height: math.unit(175, "feet"),
  16193. default: true
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16199. {
  16200. front: {
  16201. height: math.unit(1.82, "meters"),
  16202. weight: math.unit(140, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/nita/front.svg",
  16206. extra: 2473 / 2363,
  16207. bottom: 0.01
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Normal",
  16214. height: math.unit(1.82, "m")
  16215. },
  16216. {
  16217. name: "Macro",
  16218. height: math.unit(300, "m")
  16219. },
  16220. {
  16221. name: "Mistake Canon",
  16222. height: math.unit(0.5, "miles"),
  16223. default: true
  16224. },
  16225. {
  16226. name: "Big Mistake",
  16227. height: math.unit(13, "miles")
  16228. },
  16229. {
  16230. name: "Playing God",
  16231. height: math.unit(2450, "miles")
  16232. },
  16233. ]
  16234. ))
  16235. characterMakers.push(() => makeCharacter(
  16236. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16237. {
  16238. front: {
  16239. height: math.unit(4, "feet"),
  16240. weight: math.unit(120, "lb"),
  16241. name: "Front",
  16242. image: {
  16243. source: "./media/characters/shiriko/front.svg",
  16244. extra: 195 / 188
  16245. }
  16246. },
  16247. },
  16248. [
  16249. {
  16250. name: "Normal",
  16251. height: math.unit(4, "feet"),
  16252. default: true
  16253. },
  16254. ]
  16255. ))
  16256. characterMakers.push(() => makeCharacter(
  16257. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16258. {
  16259. front: {
  16260. height: math.unit(6, "feet"),
  16261. name: "front",
  16262. image: {
  16263. source: "./media/characters/deja/front.svg",
  16264. extra: 926 / 840,
  16265. bottom: 0.07
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Planck Length",
  16272. height: math.unit(1.6e-35, "meters")
  16273. },
  16274. {
  16275. name: "Normal",
  16276. height: math.unit(30.48, "meters"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Universal",
  16281. height: math.unit(8.8e26, "meters")
  16282. },
  16283. ]
  16284. ))
  16285. characterMakers.push(() => makeCharacter(
  16286. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16287. {
  16288. side: {
  16289. height: math.unit(8, "feet"),
  16290. weight: math.unit(6300, "lb"),
  16291. name: "Side",
  16292. image: {
  16293. source: "./media/characters/anima/side.svg",
  16294. bottom: 0.035
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Normal",
  16301. height: math.unit(8, "feet"),
  16302. default: true
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16308. {
  16309. front: {
  16310. height: math.unit(8, "feet"),
  16311. weight: math.unit(350, "lb"),
  16312. name: "Front",
  16313. image: {
  16314. source: "./media/characters/bianca/front.svg",
  16315. extra: 234 / 225,
  16316. bottom: 0.03
  16317. }
  16318. },
  16319. },
  16320. [
  16321. {
  16322. name: "Normal",
  16323. height: math.unit(8, "feet"),
  16324. default: true
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(6, "feet"),
  16333. weight: math.unit(150, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/adinia/front.svg",
  16337. extra: 1845 / 1672,
  16338. bottom: 0.02
  16339. }
  16340. },
  16341. back: {
  16342. height: math.unit(6, "feet"),
  16343. weight: math.unit(150, "lb"),
  16344. name: "Back",
  16345. image: {
  16346. source: "./media/characters/adinia/back.svg",
  16347. extra: 1845 / 1672,
  16348. bottom: 0.002
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(11 + 5 / 12, "feet"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(3, "meters"),
  16365. weight: math.unit(200, "kg"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/lykasa/front.svg",
  16369. extra: 1076 / 976,
  16370. bottom: 0.06
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(3, "meters")
  16378. },
  16379. {
  16380. name: "Kaiju",
  16381. height: math.unit(120, "meters"),
  16382. default: true
  16383. },
  16384. {
  16385. name: "Mega Kaiju",
  16386. height: math.unit(240, "km")
  16387. },
  16388. {
  16389. name: "Giga Kaiju",
  16390. height: math.unit(400, "megameters")
  16391. },
  16392. {
  16393. name: "Tera Kaiju",
  16394. height: math.unit(800, "gigameters")
  16395. },
  16396. {
  16397. name: "Kaiju Dragon Goddess",
  16398. height: math.unit(26, "zettaparsecs")
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16404. {
  16405. side: {
  16406. height: math.unit(283 / 124 * 6, "feet"),
  16407. weight: math.unit(35000, "lb"),
  16408. name: "Side",
  16409. image: {
  16410. source: "./media/characters/malfaren/side.svg",
  16411. extra: 2500 / 1010,
  16412. bottom: 0.01
  16413. }
  16414. },
  16415. front: {
  16416. height: math.unit(22.36, "feet"),
  16417. weight: math.unit(35000, "lb"),
  16418. name: "Front",
  16419. image: {
  16420. source: "./media/characters/malfaren/front.svg",
  16421. extra: 1631 / 1476,
  16422. bottom: 0.01
  16423. }
  16424. },
  16425. maw: {
  16426. height: math.unit(6.9, "feet"),
  16427. name: "Maw",
  16428. image: {
  16429. source: "./media/characters/malfaren/maw.svg"
  16430. }
  16431. },
  16432. },
  16433. [
  16434. {
  16435. name: "Big",
  16436. height: math.unit(283 / 162 * 6, "feet"),
  16437. },
  16438. {
  16439. name: "Bigger",
  16440. height: math.unit(283 / 124 * 6, "feet")
  16441. },
  16442. {
  16443. name: "Massive",
  16444. height: math.unit(283 / 92 * 6, "feet"),
  16445. default: true
  16446. },
  16447. {
  16448. name: "👀💦",
  16449. height: math.unit(283 / 73 * 6, "feet"),
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(1.7, "m"),
  16458. weight: math.unit(70, "kg"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/kernel/front.svg",
  16462. extra: 222 / 210,
  16463. bottom: 0.007
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Nano",
  16470. height: math.unit(17, "micrometers")
  16471. },
  16472. {
  16473. name: "Micro",
  16474. height: math.unit(1.7, "mm")
  16475. },
  16476. {
  16477. name: "Small",
  16478. height: math.unit(1.7, "cm")
  16479. },
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(1.7, "m"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(1.75, "meters"),
  16492. weight: math.unit(65, "kg"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/jayne-folest/front.svg",
  16496. extra: 2115 / 2007,
  16497. bottom: 0.02
  16498. }
  16499. },
  16500. back: {
  16501. height: math.unit(1.75, "meters"),
  16502. weight: math.unit(65, "kg"),
  16503. name: "Back",
  16504. image: {
  16505. source: "./media/characters/jayne-folest/back.svg",
  16506. extra: 2115 / 2007,
  16507. bottom: 0.005
  16508. }
  16509. },
  16510. frontClothed: {
  16511. height: math.unit(1.75, "meters"),
  16512. weight: math.unit(65, "kg"),
  16513. name: "Front (Clothed)",
  16514. image: {
  16515. source: "./media/characters/jayne-folest/front-clothed.svg",
  16516. extra: 2115 / 2007,
  16517. bottom: 0.035
  16518. }
  16519. },
  16520. hand: {
  16521. height: math.unit(1 / 1.260, "feet"),
  16522. name: "Hand",
  16523. image: {
  16524. source: "./media/characters/jayne-folest/hand.svg"
  16525. }
  16526. },
  16527. foot: {
  16528. height: math.unit(1 / 0.918, "feet"),
  16529. name: "Foot",
  16530. image: {
  16531. source: "./media/characters/jayne-folest/foot.svg"
  16532. }
  16533. },
  16534. },
  16535. [
  16536. {
  16537. name: "Micro",
  16538. height: math.unit(4, "cm")
  16539. },
  16540. {
  16541. name: "Normal",
  16542. height: math.unit(1.75, "meters")
  16543. },
  16544. {
  16545. name: "Macro",
  16546. height: math.unit(47.5, "meters"),
  16547. default: true
  16548. },
  16549. ]
  16550. ))
  16551. characterMakers.push(() => makeCharacter(
  16552. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16553. {
  16554. front: {
  16555. height: math.unit(180, "cm"),
  16556. weight: math.unit(70, "kg"),
  16557. name: "Front",
  16558. image: {
  16559. source: "./media/characters/algier/front.svg",
  16560. extra: 596 / 572,
  16561. bottom: 0.04
  16562. }
  16563. },
  16564. back: {
  16565. height: math.unit(180, "cm"),
  16566. weight: math.unit(70, "kg"),
  16567. name: "Back",
  16568. image: {
  16569. source: "./media/characters/algier/back.svg",
  16570. extra: 596 / 572,
  16571. bottom: 0.025
  16572. }
  16573. },
  16574. frontdressed: {
  16575. height: math.unit(180, "cm"),
  16576. weight: math.unit(150, "kg"),
  16577. name: "Front-dressed",
  16578. image: {
  16579. source: "./media/characters/algier/front-dressed.svg",
  16580. extra: 596 / 572,
  16581. bottom: 0.038
  16582. }
  16583. },
  16584. },
  16585. [
  16586. {
  16587. name: "Micro",
  16588. height: math.unit(5, "cm")
  16589. },
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(180, "cm"),
  16593. default: true
  16594. },
  16595. {
  16596. name: "Macro",
  16597. height: math.unit(64, "m")
  16598. },
  16599. ]
  16600. ))
  16601. characterMakers.push(() => makeCharacter(
  16602. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16603. {
  16604. upright: {
  16605. height: math.unit(7, "feet"),
  16606. weight: math.unit(300, "lb"),
  16607. name: "Upright",
  16608. image: {
  16609. source: "./media/characters/pretzel/upright.svg",
  16610. extra: 534 / 522,
  16611. bottom: 0.065
  16612. }
  16613. },
  16614. sprawling: {
  16615. height: math.unit(3.75, "feet"),
  16616. weight: math.unit(300, "lb"),
  16617. name: "Sprawling",
  16618. image: {
  16619. source: "./media/characters/pretzel/sprawling.svg",
  16620. extra: 314 / 281,
  16621. bottom: 0.1
  16622. }
  16623. },
  16624. tongue: {
  16625. height: math.unit(2, "feet"),
  16626. name: "Tongue",
  16627. image: {
  16628. source: "./media/characters/pretzel/tongue.svg"
  16629. }
  16630. },
  16631. },
  16632. [
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(7, "feet"),
  16636. default: true
  16637. },
  16638. {
  16639. name: "Oversized",
  16640. height: math.unit(15, "feet")
  16641. },
  16642. {
  16643. name: "Huge",
  16644. height: math.unit(30, "feet")
  16645. },
  16646. {
  16647. name: "Macro",
  16648. height: math.unit(250, "feet")
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16654. {
  16655. sideFront: {
  16656. height: math.unit(5 + 2 / 12, "feet"),
  16657. weight: math.unit(120, "lb"),
  16658. name: "Front Side",
  16659. image: {
  16660. source: "./media/characters/roxi/side-front.svg",
  16661. extra: 2924 / 2717,
  16662. bottom: 0.08
  16663. }
  16664. },
  16665. sideBack: {
  16666. height: math.unit(5 + 2 / 12, "feet"),
  16667. weight: math.unit(120, "lb"),
  16668. name: "Back Side",
  16669. image: {
  16670. source: "./media/characters/roxi/side-back.svg",
  16671. extra: 2904 / 2693,
  16672. bottom: 0.06
  16673. }
  16674. },
  16675. front: {
  16676. height: math.unit(5 + 2 / 12, "feet"),
  16677. weight: math.unit(120, "lb"),
  16678. name: "Front",
  16679. image: {
  16680. source: "./media/characters/roxi/front.svg",
  16681. extra: 2028 / 1907,
  16682. bottom: 0.01
  16683. }
  16684. },
  16685. frontAlt: {
  16686. height: math.unit(5 + 2 / 12, "feet"),
  16687. weight: math.unit(120, "lb"),
  16688. name: "Front (Alt)",
  16689. image: {
  16690. source: "./media/characters/roxi/front-alt.svg",
  16691. extra: 1828 / 1798,
  16692. bottom: 0.01
  16693. }
  16694. },
  16695. sitting: {
  16696. height: math.unit(2.8, "feet"),
  16697. weight: math.unit(120, "lb"),
  16698. name: "Sitting",
  16699. image: {
  16700. source: "./media/characters/roxi/sitting.svg",
  16701. extra: 2660 / 2462,
  16702. bottom: 0.1
  16703. }
  16704. },
  16705. },
  16706. [
  16707. {
  16708. name: "Normal",
  16709. height: math.unit(5 + 2 / 12, "feet"),
  16710. default: true
  16711. },
  16712. ]
  16713. ))
  16714. characterMakers.push(() => makeCharacter(
  16715. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16716. {
  16717. side: {
  16718. height: math.unit(55, "feet"),
  16719. weight: math.unit(153, "tons"),
  16720. name: "Side",
  16721. image: {
  16722. source: "./media/characters/shadow/side.svg",
  16723. extra: 701 / 628,
  16724. bottom: 0.02
  16725. }
  16726. },
  16727. flying: {
  16728. height: math.unit(145, "feet"),
  16729. weight: math.unit(153, "tons"),
  16730. name: "Flying",
  16731. image: {
  16732. source: "./media/characters/shadow/flying.svg"
  16733. }
  16734. },
  16735. },
  16736. [
  16737. {
  16738. name: "Normal",
  16739. height: math.unit(55, "feet"),
  16740. default: true
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16746. {
  16747. front: {
  16748. height: math.unit(6, "feet"),
  16749. weight: math.unit(200, "lb"),
  16750. name: "Front",
  16751. image: {
  16752. source: "./media/characters/marcie/front.svg",
  16753. extra: 960 / 876,
  16754. bottom: 58 / 1017.87
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Macro",
  16761. height: math.unit(1, "mile"),
  16762. default: true
  16763. },
  16764. ]
  16765. ))
  16766. characterMakers.push(() => makeCharacter(
  16767. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16768. {
  16769. front: {
  16770. height: math.unit(7, "feet"),
  16771. weight: math.unit(200, "lb"),
  16772. name: "Front",
  16773. image: {
  16774. source: "./media/characters/kachina/front.svg",
  16775. extra: 1290.68 / 1119,
  16776. bottom: 36.5 / 1327.18
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Normal",
  16783. height: math.unit(7, "feet"),
  16784. default: true
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16790. {
  16791. looking: {
  16792. height: math.unit(2, "meters"),
  16793. weight: math.unit(300, "kg"),
  16794. name: "Looking",
  16795. image: {
  16796. source: "./media/characters/kash/looking.svg",
  16797. extra: 474 / 344,
  16798. bottom: 0.03
  16799. }
  16800. },
  16801. side: {
  16802. height: math.unit(2, "meters"),
  16803. weight: math.unit(300, "kg"),
  16804. name: "Side",
  16805. image: {
  16806. source: "./media/characters/kash/side.svg",
  16807. extra: 302 / 251,
  16808. bottom: 0.03
  16809. }
  16810. },
  16811. front: {
  16812. height: math.unit(2, "meters"),
  16813. weight: math.unit(300, "kg"),
  16814. name: "Front",
  16815. image: {
  16816. source: "./media/characters/kash/front.svg",
  16817. extra: 495 / 360,
  16818. bottom: 0.015
  16819. }
  16820. },
  16821. },
  16822. [
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(2, "meters"),
  16826. default: true
  16827. },
  16828. {
  16829. name: "Big",
  16830. height: math.unit(3, "meters")
  16831. },
  16832. {
  16833. name: "Large",
  16834. height: math.unit(5, "meters")
  16835. },
  16836. ]
  16837. ))
  16838. characterMakers.push(() => makeCharacter(
  16839. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16840. {
  16841. feeding: {
  16842. height: math.unit(6.7, "feet"),
  16843. weight: math.unit(350, "lb"),
  16844. name: "Feeding",
  16845. image: {
  16846. source: "./media/characters/lalim/feeding.svg",
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Normal",
  16853. height: math.unit(6.7, "feet"),
  16854. default: true
  16855. },
  16856. ]
  16857. ))
  16858. characterMakers.push(() => makeCharacter(
  16859. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16860. {
  16861. front: {
  16862. height: math.unit(9.5, "feet"),
  16863. weight: math.unit(600, "lb"),
  16864. name: "Front",
  16865. image: {
  16866. source: "./media/characters/de'vout/front.svg",
  16867. extra: 1443 / 1328,
  16868. bottom: 0.025
  16869. }
  16870. },
  16871. back: {
  16872. height: math.unit(9.5, "feet"),
  16873. weight: math.unit(600, "lb"),
  16874. name: "Back",
  16875. image: {
  16876. source: "./media/characters/de'vout/back.svg",
  16877. extra: 1443 / 1328
  16878. }
  16879. },
  16880. frontDressed: {
  16881. height: math.unit(9.5, "feet"),
  16882. weight: math.unit(600, "lb"),
  16883. name: "Front (Dressed",
  16884. image: {
  16885. source: "./media/characters/de'vout/front-dressed.svg",
  16886. extra: 1443 / 1328,
  16887. bottom: 0.025
  16888. }
  16889. },
  16890. backDressed: {
  16891. height: math.unit(9.5, "feet"),
  16892. weight: math.unit(600, "lb"),
  16893. name: "Back (Dressed",
  16894. image: {
  16895. source: "./media/characters/de'vout/back-dressed.svg",
  16896. extra: 1443 / 1328
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Normal",
  16903. height: math.unit(9.5, "feet"),
  16904. default: true
  16905. },
  16906. ]
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16910. {
  16911. front: {
  16912. height: math.unit(8, "feet"),
  16913. weight: math.unit(225, "lb"),
  16914. name: "Front",
  16915. image: {
  16916. source: "./media/characters/talana/front.svg",
  16917. extra: 1410 / 1300,
  16918. bottom: 0.015
  16919. }
  16920. },
  16921. frontDressed: {
  16922. height: math.unit(8, "feet"),
  16923. weight: math.unit(225, "lb"),
  16924. name: "Front (Dressed",
  16925. image: {
  16926. source: "./media/characters/talana/front-dressed.svg",
  16927. extra: 1410 / 1300,
  16928. bottom: 0.015
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(8, "feet"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16942. {
  16943. side: {
  16944. height: math.unit(7.2, "feet"),
  16945. weight: math.unit(150, "lb"),
  16946. name: "Side",
  16947. image: {
  16948. source: "./media/characters/xeauvok/side.svg",
  16949. extra: 1975 / 1523,
  16950. bottom: 0.07
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Normal",
  16957. height: math.unit(7.2, "feet"),
  16958. default: true
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16964. {
  16965. side: {
  16966. height: math.unit(10, "feet"),
  16967. weight: math.unit(900, "kg"),
  16968. name: "Side",
  16969. image: {
  16970. source: "./media/characters/zara/side.svg",
  16971. extra: 504 / 498
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Normal",
  16978. height: math.unit(10, "feet"),
  16979. default: true
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16985. {
  16986. side: {
  16987. height: math.unit(6, "feet"),
  16988. weight: math.unit(150, "lb"),
  16989. name: "Side",
  16990. image: {
  16991. source: "./media/characters/richard-dragon/side.svg",
  16992. extra: 845 / 340,
  16993. bottom: 0.017
  16994. }
  16995. },
  16996. maw: {
  16997. height: math.unit(2.97, "feet"),
  16998. name: "Maw",
  16999. image: {
  17000. source: "./media/characters/richard-dragon/maw.svg"
  17001. }
  17002. },
  17003. },
  17004. [
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17009. {
  17010. front: {
  17011. height: math.unit(4, "feet"),
  17012. weight: math.unit(100, "lb"),
  17013. name: "Front",
  17014. image: {
  17015. source: "./media/characters/richard-smeargle/front.svg",
  17016. extra: 2952 / 2820,
  17017. bottom: 0.028
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(4, "feet"),
  17025. default: true
  17026. },
  17027. {
  17028. name: "Dynamax",
  17029. height: math.unit(20, "meters")
  17030. },
  17031. ]
  17032. ))
  17033. characterMakers.push(() => makeCharacter(
  17034. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17035. {
  17036. front: {
  17037. height: math.unit(6, "feet"),
  17038. weight: math.unit(110, "lb"),
  17039. name: "Front",
  17040. image: {
  17041. source: "./media/characters/klay/front.svg",
  17042. extra: 962 / 883,
  17043. bottom: 0.04
  17044. }
  17045. },
  17046. back: {
  17047. height: math.unit(6, "feet"),
  17048. weight: math.unit(110, "lb"),
  17049. name: "Back",
  17050. image: {
  17051. source: "./media/characters/klay/back.svg",
  17052. extra: 962 / 883
  17053. }
  17054. },
  17055. beans: {
  17056. height: math.unit(1.15, "feet"),
  17057. name: "Beans",
  17058. image: {
  17059. source: "./media/characters/klay/beans.svg"
  17060. }
  17061. },
  17062. },
  17063. [
  17064. {
  17065. name: "Micro",
  17066. height: math.unit(6, "inches")
  17067. },
  17068. {
  17069. name: "Mini",
  17070. height: math.unit(3, "feet")
  17071. },
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(6, "feet"),
  17075. default: true
  17076. },
  17077. {
  17078. name: "Big",
  17079. height: math.unit(25, "feet")
  17080. },
  17081. {
  17082. name: "Macro",
  17083. height: math.unit(100, "feet")
  17084. },
  17085. {
  17086. name: "Megamacro",
  17087. height: math.unit(400, "feet")
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17093. {
  17094. front: {
  17095. height: math.unit(6, "feet"),
  17096. weight: math.unit(160, "lb"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/marcus/front.svg",
  17100. extra: 734 / 676,
  17101. bottom: 0.03
  17102. }
  17103. },
  17104. },
  17105. [
  17106. {
  17107. name: "Little",
  17108. height: math.unit(6, "feet")
  17109. },
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(110, "feet"),
  17113. default: true
  17114. },
  17115. {
  17116. name: "Macro",
  17117. height: math.unit(250, "feet")
  17118. },
  17119. {
  17120. name: "Megamacro",
  17121. height: math.unit(1000, "feet")
  17122. },
  17123. ]
  17124. ))
  17125. characterMakers.push(() => makeCharacter(
  17126. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17127. {
  17128. front: {
  17129. height: math.unit(7, "feet"),
  17130. weight: math.unit(275, "lb"),
  17131. name: "Front",
  17132. image: {
  17133. source: "./media/characters/claude-delroute/front.svg",
  17134. extra: 230 / 214,
  17135. bottom: 0.007
  17136. }
  17137. },
  17138. side: {
  17139. height: math.unit(7, "feet"),
  17140. weight: math.unit(275, "lb"),
  17141. name: "Side",
  17142. image: {
  17143. source: "./media/characters/claude-delroute/side.svg",
  17144. extra: 222 / 214,
  17145. bottom: 0.01
  17146. }
  17147. },
  17148. back: {
  17149. height: math.unit(7, "feet"),
  17150. weight: math.unit(275, "lb"),
  17151. name: "Back",
  17152. image: {
  17153. source: "./media/characters/claude-delroute/back.svg",
  17154. extra: 230 / 214,
  17155. bottom: 0.015
  17156. }
  17157. },
  17158. maw: {
  17159. height: math.unit(0.6407, "meters"),
  17160. name: "Maw",
  17161. image: {
  17162. source: "./media/characters/claude-delroute/maw.svg"
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(7, "feet"),
  17170. default: true
  17171. },
  17172. {
  17173. name: "Lorge",
  17174. height: math.unit(20, "feet")
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17180. {
  17181. front: {
  17182. height: math.unit(8 + 4 / 12, "feet"),
  17183. weight: math.unit(600, "lb"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/dragonien/front.svg",
  17187. extra: 100 / 94,
  17188. bottom: 3.3 / 103.3445
  17189. }
  17190. },
  17191. back: {
  17192. height: math.unit(8 + 4 / 12, "feet"),
  17193. weight: math.unit(600, "lb"),
  17194. name: "Back",
  17195. image: {
  17196. source: "./media/characters/dragonien/back.svg",
  17197. extra: 776 / 746,
  17198. bottom: 6.4 / 782.0616
  17199. }
  17200. },
  17201. foot: {
  17202. height: math.unit(1.54, "feet"),
  17203. name: "Foot",
  17204. image: {
  17205. source: "./media/characters/dragonien/foot.svg",
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(8 + 4 / 12, "feet"),
  17213. default: true
  17214. },
  17215. {
  17216. name: "Macro",
  17217. height: math.unit(200, "feet")
  17218. },
  17219. {
  17220. name: "Megamacro",
  17221. height: math.unit(1, "mile")
  17222. },
  17223. {
  17224. name: "Gigamacro",
  17225. height: math.unit(1000, "miles")
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(5 + 2 / 12, "feet"),
  17234. weight: math.unit(110, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/desta/front.svg",
  17238. extra: 1482 / 1417
  17239. }
  17240. },
  17241. side: {
  17242. height: math.unit(5 + 2 / 12, "feet"),
  17243. weight: math.unit(110, "lb"),
  17244. name: "Side",
  17245. image: {
  17246. source: "./media/characters/desta/side.svg",
  17247. extra: 2579 / 2491,
  17248. bottom: 0.053
  17249. }
  17250. },
  17251. },
  17252. [
  17253. {
  17254. name: "Micro",
  17255. height: math.unit(6, "inches")
  17256. },
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(5 + 2 / 12, "feet"),
  17260. default: true
  17261. },
  17262. {
  17263. name: "Macro",
  17264. height: math.unit(62, "feet")
  17265. },
  17266. {
  17267. name: "Megamacro",
  17268. height: math.unit(1800, "feet")
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17274. {
  17275. front: {
  17276. height: math.unit(10, "feet"),
  17277. weight: math.unit(700, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/storm-alystar/front.svg",
  17281. extra: 2112 / 1898,
  17282. bottom: 0.034
  17283. }
  17284. },
  17285. },
  17286. [
  17287. {
  17288. name: "Micro",
  17289. height: math.unit(3.5, "inches")
  17290. },
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(10, "feet"),
  17294. default: true
  17295. },
  17296. {
  17297. name: "Macro",
  17298. height: math.unit(400, "feet")
  17299. },
  17300. {
  17301. name: "Deific",
  17302. height: math.unit(60, "miles")
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17308. {
  17309. front: {
  17310. height: math.unit(2.35, "meters"),
  17311. weight: math.unit(119, "kg"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/ilia/front.svg",
  17315. extra: 1285 / 1255,
  17316. bottom: 0.06
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(2.35, "meters")
  17324. },
  17325. {
  17326. name: "Macro",
  17327. height: math.unit(140, "meters"),
  17328. default: true
  17329. },
  17330. {
  17331. name: "Megamacro",
  17332. height: math.unit(100, "miles")
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17338. {
  17339. front: {
  17340. height: math.unit(6 + 5 / 12, "feet"),
  17341. weight: math.unit(190, "lb"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/kingdead/front.svg",
  17345. extra: 1228 / 1177
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Micro",
  17352. height: math.unit(7, "inches")
  17353. },
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(6 + 5 / 12, "feet")
  17357. },
  17358. {
  17359. name: "Macro",
  17360. height: math.unit(150, "feet"),
  17361. default: true
  17362. },
  17363. {
  17364. name: "Megamacro",
  17365. height: math.unit(200, "miles")
  17366. },
  17367. ]
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17371. {
  17372. front: {
  17373. height: math.unit(8, "feet"),
  17374. weight: math.unit(600, "lb"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/kyrehx/front.svg",
  17378. extra: 1195 / 1095,
  17379. bottom: 0.034
  17380. }
  17381. },
  17382. },
  17383. [
  17384. {
  17385. name: "Micro",
  17386. height: math.unit(2, "inches")
  17387. },
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(8, "feet"),
  17391. default: true
  17392. },
  17393. {
  17394. name: "Macro",
  17395. height: math.unit(255, "feet")
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17404. weight: math.unit(184, "lb"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/xang/front.svg",
  17408. extra: 845 / 755
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17416. default: true
  17417. },
  17418. {
  17419. name: "Macro",
  17420. height: math.unit(0.935 * 146, "feet")
  17421. },
  17422. {
  17423. name: "Megamacro",
  17424. height: math.unit(0.935 * 3, "miles")
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17430. {
  17431. frontDressed: {
  17432. height: math.unit(5 + 7 / 12, "feet"),
  17433. weight: math.unit(140, "lb"),
  17434. name: "Front (Dressed)",
  17435. image: {
  17436. source: "./media/characters/doc-weardno/front-dressed.svg",
  17437. extra: 263 / 234
  17438. }
  17439. },
  17440. backDressed: {
  17441. height: math.unit(5 + 7 / 12, "feet"),
  17442. weight: math.unit(140, "lb"),
  17443. name: "Back (Dressed)",
  17444. image: {
  17445. source: "./media/characters/doc-weardno/back-dressed.svg",
  17446. extra: 266 / 238
  17447. }
  17448. },
  17449. front: {
  17450. height: math.unit(5 + 7 / 12, "feet"),
  17451. weight: math.unit(140, "lb"),
  17452. name: "Front",
  17453. image: {
  17454. source: "./media/characters/doc-weardno/front.svg",
  17455. extra: 254 / 233
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Micro",
  17462. height: math.unit(3, "inches")
  17463. },
  17464. {
  17465. name: "Normal",
  17466. height: math.unit(5 + 7 / 12, "feet"),
  17467. default: true
  17468. },
  17469. {
  17470. name: "Macro",
  17471. height: math.unit(25, "feet")
  17472. },
  17473. {
  17474. name: "Megamacro",
  17475. height: math.unit(2, "miles")
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17481. {
  17482. front: {
  17483. height: math.unit(6 + 2 / 12, "feet"),
  17484. weight: math.unit(153, "lb"),
  17485. name: "Front",
  17486. image: {
  17487. source: "./media/characters/seth-whilst/front.svg",
  17488. bottom: 0.07
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Micro",
  17495. height: math.unit(5, "inches")
  17496. },
  17497. {
  17498. name: "Normal",
  17499. height: math.unit(6 + 2 / 12, "feet"),
  17500. default: true
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17506. {
  17507. front: {
  17508. height: math.unit(3, "inches"),
  17509. weight: math.unit(8, "grams"),
  17510. name: "Front",
  17511. image: {
  17512. source: "./media/characters/pocket-jabari/front.svg",
  17513. extra: 1024 / 974,
  17514. bottom: 0.039
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Minimicro",
  17521. height: math.unit(8, "mm")
  17522. },
  17523. {
  17524. name: "Micro",
  17525. height: math.unit(3, "inches"),
  17526. default: true
  17527. },
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(3, "feet")
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17536. {
  17537. front: {
  17538. height: math.unit(15, "feet"),
  17539. weight: math.unit(3280, "lb"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/sapphy/front.svg",
  17543. extra: 671 / 577,
  17544. bottom: 0.085
  17545. }
  17546. },
  17547. back: {
  17548. height: math.unit(15, "feet"),
  17549. weight: math.unit(3280, "lb"),
  17550. name: "Back",
  17551. image: {
  17552. source: "./media/characters/sapphy/back.svg",
  17553. extra: 631 / 607,
  17554. bottom: 0.045
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(15, "feet")
  17562. },
  17563. {
  17564. name: "Casual Macro",
  17565. height: math.unit(120, "feet")
  17566. },
  17567. {
  17568. name: "Macro",
  17569. height: math.unit(2150, "feet"),
  17570. default: true
  17571. },
  17572. {
  17573. name: "Megamacro",
  17574. height: math.unit(8, "miles")
  17575. },
  17576. {
  17577. name: "Galaxy Mom",
  17578. height: math.unit(6, "megalightyears")
  17579. },
  17580. ]
  17581. ))
  17582. characterMakers.push(() => makeCharacter(
  17583. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17584. {
  17585. front: {
  17586. height: math.unit(6, "feet"),
  17587. weight: math.unit(170, "lb"),
  17588. name: "Front",
  17589. image: {
  17590. source: "./media/characters/kiro/front.svg",
  17591. extra: 1064 / 1012,
  17592. bottom: 0.052
  17593. }
  17594. },
  17595. },
  17596. [
  17597. {
  17598. name: "Micro",
  17599. height: math.unit(6, "inches")
  17600. },
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(6, "feet"),
  17604. default: true
  17605. },
  17606. {
  17607. name: "Macro",
  17608. height: math.unit(72, "feet")
  17609. },
  17610. ]
  17611. ))
  17612. characterMakers.push(() => makeCharacter(
  17613. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17614. {
  17615. front: {
  17616. height: math.unit(5 + 9 / 12, "feet"),
  17617. weight: math.unit(175, "lb"),
  17618. name: "Front",
  17619. image: {
  17620. source: "./media/characters/irishfox/front.svg",
  17621. extra: 1912 / 1680,
  17622. bottom: 0.02
  17623. }
  17624. },
  17625. },
  17626. [
  17627. {
  17628. name: "Nano",
  17629. height: math.unit(1, "mm")
  17630. },
  17631. {
  17632. name: "Micro",
  17633. height: math.unit(2, "inches")
  17634. },
  17635. {
  17636. name: "Normal",
  17637. height: math.unit(5 + 9 / 12, "feet"),
  17638. default: true
  17639. },
  17640. {
  17641. name: "Macro",
  17642. height: math.unit(45, "feet")
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17648. {
  17649. front: {
  17650. height: math.unit(6 + 1 / 12, "feet"),
  17651. weight: math.unit(150, "lb"),
  17652. name: "Front",
  17653. image: {
  17654. source: "./media/characters/aronai-sieyes/front.svg",
  17655. extra: 1556 / 1480,
  17656. bottom: 0.015
  17657. }
  17658. },
  17659. side: {
  17660. height: math.unit(6 + 1 / 12, "feet"),
  17661. weight: math.unit(150, "lb"),
  17662. name: "Side",
  17663. image: {
  17664. source: "./media/characters/aronai-sieyes/side.svg",
  17665. extra: 1433 / 1390,
  17666. bottom: 0.0393
  17667. }
  17668. },
  17669. back: {
  17670. height: math.unit(6 + 1 / 12, "feet"),
  17671. weight: math.unit(150, "lb"),
  17672. name: "Back",
  17673. image: {
  17674. source: "./media/characters/aronai-sieyes/back.svg",
  17675. extra: 1544 / 1494,
  17676. bottom: 0.02
  17677. }
  17678. },
  17679. frontClothed: {
  17680. height: math.unit(6 + 1 / 12, "feet"),
  17681. weight: math.unit(150, "lb"),
  17682. name: "Front (Clothed)",
  17683. image: {
  17684. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17685. extra: 1582 / 1527
  17686. }
  17687. },
  17688. feral: {
  17689. height: math.unit(18, "feet"),
  17690. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17691. name: "Feral",
  17692. image: {
  17693. source: "./media/characters/aronai-sieyes/feral.svg",
  17694. extra: 1530 / 1240,
  17695. bottom: 0.035
  17696. }
  17697. },
  17698. },
  17699. [
  17700. {
  17701. name: "Micro",
  17702. height: math.unit(2, "inches")
  17703. },
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(6 + 1 / 12, "feet"),
  17707. default: true
  17708. }
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17713. {
  17714. front: {
  17715. height: math.unit(12, "feet"),
  17716. weight: math.unit(410, "kg"),
  17717. name: "Front",
  17718. image: {
  17719. source: "./media/characters/xuna/front.svg",
  17720. extra: 2184 / 1980
  17721. }
  17722. },
  17723. side: {
  17724. height: math.unit(12, "feet"),
  17725. weight: math.unit(410, "kg"),
  17726. name: "Side",
  17727. image: {
  17728. source: "./media/characters/xuna/side.svg",
  17729. extra: 2184 / 1980
  17730. }
  17731. },
  17732. back: {
  17733. height: math.unit(12, "feet"),
  17734. weight: math.unit(410, "kg"),
  17735. name: "Back",
  17736. image: {
  17737. source: "./media/characters/xuna/back.svg",
  17738. extra: 2184 / 1980
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Nano glow",
  17745. height: math.unit(10, "nm")
  17746. },
  17747. {
  17748. name: "Micro floof",
  17749. height: math.unit(0.3, "m")
  17750. },
  17751. {
  17752. name: "Huggable softy boi",
  17753. height: math.unit(3.6576, "m"),
  17754. default: true
  17755. },
  17756. {
  17757. name: "Admirable floof",
  17758. height: math.unit(80, "meters")
  17759. },
  17760. {
  17761. name: "Gentle macro",
  17762. height: math.unit(300, "meters")
  17763. },
  17764. {
  17765. name: "Very careful floof",
  17766. height: math.unit(3200, "meters")
  17767. },
  17768. {
  17769. name: "The mega floof",
  17770. height: math.unit(36000, "meters")
  17771. },
  17772. {
  17773. name: "Giga-fur-Wicker",
  17774. height: math.unit(4800000, "meters")
  17775. },
  17776. {
  17777. name: "Licky world",
  17778. height: math.unit(20000000, "meters")
  17779. },
  17780. {
  17781. name: "Floofy cyan sun",
  17782. height: math.unit(1500000000, "meters")
  17783. },
  17784. {
  17785. name: "Milky Wicker",
  17786. height: math.unit(1000000000000000000000, "meters")
  17787. },
  17788. {
  17789. name: "The observing Wicker",
  17790. height: math.unit(999999999999999999999999999, "meters")
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17796. {
  17797. front: {
  17798. height: math.unit(5 + 9 / 12, "feet"),
  17799. weight: math.unit(150, "lb"),
  17800. name: "Front",
  17801. image: {
  17802. source: "./media/characters/arokha-sieyes/front.svg",
  17803. extra: 1425 / 1284,
  17804. bottom: 0.05
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Normal",
  17811. height: math.unit(5 + 9 / 12, "feet")
  17812. },
  17813. {
  17814. name: "Macro",
  17815. height: math.unit(30, "meters"),
  17816. default: true
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17822. {
  17823. front: {
  17824. height: math.unit(6, "feet"),
  17825. weight: math.unit(180, "lb"),
  17826. name: "Front",
  17827. image: {
  17828. source: "./media/characters/arokh-sieyes/front.svg",
  17829. extra: 1830 / 1769,
  17830. bottom: 0.01
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Normal",
  17837. height: math.unit(6, "feet")
  17838. },
  17839. {
  17840. name: "Macro",
  17841. height: math.unit(30, "meters"),
  17842. default: true
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17848. {
  17849. side: {
  17850. height: math.unit(13 + 1 / 12, "feet"),
  17851. weight: math.unit(8.5, "tonnes"),
  17852. name: "Side",
  17853. image: {
  17854. source: "./media/characters/goldeneye/side.svg",
  17855. extra: 1182 / 778,
  17856. bottom: 0.067
  17857. }
  17858. },
  17859. paw: {
  17860. height: math.unit(3.4, "feet"),
  17861. name: "Paw",
  17862. image: {
  17863. source: "./media/characters/goldeneye/paw.svg"
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Normal",
  17870. height: math.unit(13 + 1 / 12, "feet"),
  17871. default: true
  17872. },
  17873. ]
  17874. ))
  17875. characterMakers.push(() => makeCharacter(
  17876. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17877. {
  17878. front: {
  17879. height: math.unit(6 + 1 / 12, "feet"),
  17880. weight: math.unit(210, "lb"),
  17881. name: "Front",
  17882. image: {
  17883. source: "./media/characters/leonardo-lycheborne/front.svg",
  17884. extra: 390 / 365,
  17885. bottom: 0.032
  17886. }
  17887. },
  17888. side: {
  17889. height: math.unit(6 + 1 / 12, "feet"),
  17890. weight: math.unit(210, "lb"),
  17891. name: "Side",
  17892. image: {
  17893. source: "./media/characters/leonardo-lycheborne/side.svg",
  17894. extra: 390 / 365,
  17895. bottom: 0.005
  17896. }
  17897. },
  17898. back: {
  17899. height: math.unit(6 + 1 / 12, "feet"),
  17900. weight: math.unit(210, "lb"),
  17901. name: "Back",
  17902. image: {
  17903. source: "./media/characters/leonardo-lycheborne/back.svg",
  17904. extra: 392 / 366,
  17905. bottom: 0.01
  17906. }
  17907. },
  17908. hand: {
  17909. height: math.unit(1.08, "feet"),
  17910. name: "Hand",
  17911. image: {
  17912. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17913. }
  17914. },
  17915. foot: {
  17916. height: math.unit(1.32, "feet"),
  17917. name: "Foot",
  17918. image: {
  17919. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17920. }
  17921. },
  17922. were: {
  17923. height: math.unit(20, "feet"),
  17924. weight: math.unit(7800, "lb"),
  17925. name: "Were",
  17926. image: {
  17927. source: "./media/characters/leonardo-lycheborne/were.svg",
  17928. extra: 308 / 294,
  17929. bottom: 0.048
  17930. }
  17931. },
  17932. feral: {
  17933. height: math.unit(7.5, "feet"),
  17934. weight: math.unit(600, "lb"),
  17935. name: "Feral",
  17936. image: {
  17937. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17938. extra: 210 / 186,
  17939. bottom: 0.108
  17940. }
  17941. },
  17942. taur: {
  17943. height: math.unit(11, "feet"),
  17944. weight: math.unit(3300, "lb"),
  17945. name: "Taur",
  17946. image: {
  17947. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17948. extra: 320 / 303,
  17949. bottom: 0.025
  17950. }
  17951. },
  17952. barghest: {
  17953. height: math.unit(11, "feet"),
  17954. weight: math.unit(1300, "lb"),
  17955. name: "Barghest",
  17956. image: {
  17957. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17958. extra: 323 / 302,
  17959. bottom: 0.027
  17960. }
  17961. },
  17962. dick: {
  17963. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17964. name: "Dick",
  17965. image: {
  17966. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17967. }
  17968. },
  17969. dickWere: {
  17970. height: math.unit((20) / 3.8, "feet"),
  17971. name: "Dick (Were)",
  17972. image: {
  17973. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(6 + 1 / 12, "feet"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17987. {
  17988. front: {
  17989. height: math.unit(10, "feet"),
  17990. weight: math.unit(350, "lb"),
  17991. name: "Front",
  17992. image: {
  17993. source: "./media/characters/jet/front.svg",
  17994. extra: 2050 / 1980,
  17995. bottom: 0.013
  17996. }
  17997. },
  17998. back: {
  17999. height: math.unit(10, "feet"),
  18000. weight: math.unit(350, "lb"),
  18001. name: "Back",
  18002. image: {
  18003. source: "./media/characters/jet/back.svg",
  18004. extra: 2050 / 1980,
  18005. bottom: 0.013
  18006. }
  18007. },
  18008. },
  18009. [
  18010. {
  18011. name: "Micro",
  18012. height: math.unit(6, "inches")
  18013. },
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(10, "feet"),
  18017. default: true
  18018. },
  18019. {
  18020. name: "Macro",
  18021. height: math.unit(100, "feet")
  18022. },
  18023. ]
  18024. ))
  18025. characterMakers.push(() => makeCharacter(
  18026. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18027. {
  18028. front: {
  18029. height: math.unit(15, "feet"),
  18030. weight: math.unit(2800, "lb"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/tanarath/front.svg",
  18034. extra: 2392 / 2220,
  18035. bottom: 0.03
  18036. }
  18037. },
  18038. back: {
  18039. height: math.unit(15, "feet"),
  18040. weight: math.unit(2800, "lb"),
  18041. name: "Back",
  18042. image: {
  18043. source: "./media/characters/tanarath/back.svg",
  18044. extra: 2392 / 2220,
  18045. bottom: 0.03
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(15, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18059. {
  18060. front: {
  18061. height: math.unit(7 + 1 / 12, "feet"),
  18062. weight: math.unit(175, "lb"),
  18063. name: "Front",
  18064. image: {
  18065. source: "./media/characters/patty-cattybatty/front.svg",
  18066. extra: 908 / 874,
  18067. bottom: 0.025
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Micro",
  18074. height: math.unit(1, "inch")
  18075. },
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(7 + 1 / 12, "feet")
  18079. },
  18080. {
  18081. name: "Mini Macro",
  18082. height: math.unit(155, "feet")
  18083. },
  18084. {
  18085. name: "Macro",
  18086. height: math.unit(1077, "feet")
  18087. },
  18088. {
  18089. name: "Mega Macro",
  18090. height: math.unit(47650, "feet"),
  18091. default: true
  18092. },
  18093. {
  18094. name: "Giga Macro",
  18095. height: math.unit(440, "miles")
  18096. },
  18097. {
  18098. name: "Tera Macro",
  18099. height: math.unit(8700, "miles")
  18100. },
  18101. {
  18102. name: "Planetary Macro",
  18103. height: math.unit(32700, "miles")
  18104. },
  18105. {
  18106. name: "Solar Macro",
  18107. height: math.unit(550000, "miles")
  18108. },
  18109. {
  18110. name: "Celestial Macro",
  18111. height: math.unit(2.5, "AU")
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(4 + 5 / 12, "feet"),
  18120. weight: math.unit(90, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/cappu/front.svg",
  18124. extra: 1247 / 1152,
  18125. bottom: 0.012
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(4 + 5 / 12, "feet"),
  18133. default: true
  18134. },
  18135. ]
  18136. ))
  18137. characterMakers.push(() => makeCharacter(
  18138. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18139. {
  18140. frontDressed: {
  18141. height: math.unit(70, "cm"),
  18142. weight: math.unit(6, "kg"),
  18143. name: "Front (Dressed)",
  18144. image: {
  18145. source: "./media/characters/sebi/front-dressed.svg",
  18146. extra: 713.5 / 686.5,
  18147. bottom: 0.003
  18148. }
  18149. },
  18150. front: {
  18151. height: math.unit(70, "cm"),
  18152. weight: math.unit(5, "kg"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/sebi/front.svg",
  18156. extra: 713.5 / 686.5,
  18157. bottom: 0.003
  18158. }
  18159. }
  18160. },
  18161. [
  18162. {
  18163. name: "Normal",
  18164. height: math.unit(70, "cm"),
  18165. default: true
  18166. },
  18167. {
  18168. name: "Macro",
  18169. height: math.unit(8, "meters")
  18170. },
  18171. ]
  18172. ))
  18173. characterMakers.push(() => makeCharacter(
  18174. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18175. {
  18176. front: {
  18177. height: math.unit(6, "feet"),
  18178. weight: math.unit(150, "lb"),
  18179. name: "Front",
  18180. image: {
  18181. source: "./media/characters/typhek/front.svg",
  18182. extra: 1948 / 1929,
  18183. bottom: 0.025
  18184. }
  18185. },
  18186. side: {
  18187. height: math.unit(6, "feet"),
  18188. weight: math.unit(150, "lb"),
  18189. name: "Side",
  18190. image: {
  18191. source: "./media/characters/typhek/side.svg",
  18192. extra: 2034 / 2010,
  18193. bottom: 0.003
  18194. }
  18195. },
  18196. back: {
  18197. height: math.unit(6, "feet"),
  18198. weight: math.unit(150, "lb"),
  18199. name: "Back",
  18200. image: {
  18201. source: "./media/characters/typhek/back.svg",
  18202. extra: 2005 / 1978,
  18203. bottom: 0.004
  18204. }
  18205. },
  18206. palm: {
  18207. height: math.unit(1.2, "feet"),
  18208. name: "Palm",
  18209. image: {
  18210. source: "./media/characters/typhek/palm.svg"
  18211. }
  18212. },
  18213. fist: {
  18214. height: math.unit(1.1, "feet"),
  18215. name: "Fist",
  18216. image: {
  18217. source: "./media/characters/typhek/fist.svg"
  18218. }
  18219. },
  18220. foot: {
  18221. height: math.unit(1.57, "feet"),
  18222. name: "Foot",
  18223. image: {
  18224. source: "./media/characters/typhek/foot.svg"
  18225. }
  18226. },
  18227. sole: {
  18228. height: math.unit(2.05, "feet"),
  18229. name: "Sole",
  18230. image: {
  18231. source: "./media/characters/typhek/sole.svg"
  18232. }
  18233. },
  18234. },
  18235. [
  18236. {
  18237. name: "Macro",
  18238. height: math.unit(40, "stories"),
  18239. default: true
  18240. },
  18241. {
  18242. name: "Megamacro",
  18243. height: math.unit(1, "mile")
  18244. },
  18245. {
  18246. name: "Gigamacro",
  18247. height: math.unit(4000, "solarradii")
  18248. },
  18249. {
  18250. name: "Universal",
  18251. height: math.unit(1.1, "universes")
  18252. }
  18253. ]
  18254. ))
  18255. characterMakers.push(() => makeCharacter(
  18256. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18257. {
  18258. side: {
  18259. height: math.unit(5 + 7 / 12, "feet"),
  18260. weight: math.unit(150, "lb"),
  18261. name: "Side",
  18262. image: {
  18263. source: "./media/characters/kassy/side.svg",
  18264. extra: 1280 / 1225,
  18265. bottom: 0.002
  18266. }
  18267. },
  18268. front: {
  18269. height: math.unit(5 + 7 / 12, "feet"),
  18270. weight: math.unit(150, "lb"),
  18271. name: "Front",
  18272. image: {
  18273. source: "./media/characters/kassy/front.svg",
  18274. extra: 1280 / 1225,
  18275. bottom: 0.025
  18276. }
  18277. },
  18278. back: {
  18279. height: math.unit(5 + 7 / 12, "feet"),
  18280. weight: math.unit(150, "lb"),
  18281. name: "Back",
  18282. image: {
  18283. source: "./media/characters/kassy/back.svg",
  18284. extra: 1280 / 1225,
  18285. bottom: 0.002
  18286. }
  18287. },
  18288. foot: {
  18289. height: math.unit(1.266, "feet"),
  18290. name: "Foot",
  18291. image: {
  18292. source: "./media/characters/kassy/foot.svg"
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(5 + 7 / 12, "feet")
  18300. },
  18301. {
  18302. name: "Macro",
  18303. height: math.unit(137, "feet"),
  18304. default: true
  18305. },
  18306. {
  18307. name: "Megamacro",
  18308. height: math.unit(1, "mile")
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(6 + 1 / 12, "feet"),
  18317. weight: math.unit(200, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/neil/front.svg",
  18321. extra: 1326 / 1250,
  18322. bottom: 0.023
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(6 + 1 / 12, "feet"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Macro",
  18334. height: math.unit(200, "feet")
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(5 + 9 / 12, "feet"),
  18343. weight: math.unit(190, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/atticus/front.svg",
  18347. extra: 2934 / 2785,
  18348. bottom: 0.025
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(5 + 9 / 12, "feet"),
  18356. default: true
  18357. },
  18358. {
  18359. name: "Macro",
  18360. height: math.unit(180, "feet")
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18366. {
  18367. side: {
  18368. height: math.unit(9, "feet"),
  18369. weight: math.unit(650, "lb"),
  18370. name: "Side",
  18371. image: {
  18372. source: "./media/characters/milo/side.svg",
  18373. extra: 2644 / 2310,
  18374. bottom: 0.032
  18375. }
  18376. },
  18377. },
  18378. [
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(9, "feet"),
  18382. default: true
  18383. },
  18384. {
  18385. name: "Macro",
  18386. height: math.unit(300, "feet")
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18392. {
  18393. side: {
  18394. height: math.unit(8, "meters"),
  18395. weight: math.unit(90000, "kg"),
  18396. name: "Side",
  18397. image: {
  18398. source: "./media/characters/ijzer/side.svg",
  18399. extra: 2756 / 1600,
  18400. bottom: 0.01
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Small",
  18407. height: math.unit(3, "meters")
  18408. },
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(8, "meters"),
  18412. default: true
  18413. },
  18414. {
  18415. name: "Normal+",
  18416. height: math.unit(10, "meters")
  18417. },
  18418. {
  18419. name: "Bigger",
  18420. height: math.unit(24, "meters")
  18421. },
  18422. {
  18423. name: "Huge",
  18424. height: math.unit(80, "meters")
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18430. {
  18431. front: {
  18432. height: math.unit(6 + 2 / 12, "feet"),
  18433. weight: math.unit(153, "lb"),
  18434. name: "Front",
  18435. image: {
  18436. source: "./media/characters/luca-cervicum/front.svg",
  18437. extra: 370 / 327,
  18438. bottom: 0.015
  18439. }
  18440. },
  18441. back: {
  18442. height: math.unit(6 + 2 / 12, "feet"),
  18443. weight: math.unit(153, "lb"),
  18444. name: "Back",
  18445. image: {
  18446. source: "./media/characters/luca-cervicum/back.svg",
  18447. extra: 367 / 333,
  18448. bottom: 0.005
  18449. }
  18450. },
  18451. frontGear: {
  18452. height: math.unit(6 + 2 / 12, "feet"),
  18453. weight: math.unit(173, "lb"),
  18454. name: "Front (Gear)",
  18455. image: {
  18456. source: "./media/characters/luca-cervicum/front-gear.svg",
  18457. extra: 377 / 333,
  18458. bottom: 0.006
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(6 + 2 / 12, "feet"),
  18466. default: true
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18472. {
  18473. front: {
  18474. height: math.unit(6 + 1 / 12, "feet"),
  18475. weight: math.unit(304, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/oliver/front.svg",
  18479. extra: 157 / 143,
  18480. bottom: 0.08
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Normal",
  18487. height: math.unit(6 + 1 / 12, "feet"),
  18488. default: true
  18489. },
  18490. ]
  18491. ))
  18492. characterMakers.push(() => makeCharacter(
  18493. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18494. {
  18495. front: {
  18496. height: math.unit(5 + 7 / 12, "feet"),
  18497. weight: math.unit(140, "lb"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/shane/front.svg",
  18501. extra: 304 / 289,
  18502. bottom: 0.005
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(5 + 7 / 12, "feet"),
  18510. default: true
  18511. },
  18512. ]
  18513. ))
  18514. characterMakers.push(() => makeCharacter(
  18515. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18516. {
  18517. front: {
  18518. height: math.unit(5 + 9 / 12, "feet"),
  18519. weight: math.unit(178, "lb"),
  18520. name: "Front",
  18521. image: {
  18522. source: "./media/characters/shin/front.svg",
  18523. extra: 159 / 151,
  18524. bottom: 0.015
  18525. }
  18526. },
  18527. },
  18528. [
  18529. {
  18530. name: "Normal",
  18531. height: math.unit(5 + 9 / 12, "feet"),
  18532. default: true
  18533. },
  18534. ]
  18535. ))
  18536. characterMakers.push(() => makeCharacter(
  18537. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18538. {
  18539. front: {
  18540. height: math.unit(5 + 10 / 12, "feet"),
  18541. weight: math.unit(168, "lb"),
  18542. name: "Front",
  18543. image: {
  18544. source: "./media/characters/xerxes/front.svg",
  18545. extra: 282 / 260,
  18546. bottom: 0.045
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Normal",
  18553. height: math.unit(5 + 10 / 12, "feet"),
  18554. default: true
  18555. },
  18556. ]
  18557. ))
  18558. characterMakers.push(() => makeCharacter(
  18559. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18560. {
  18561. front: {
  18562. height: math.unit(6 + 7 / 12, "feet"),
  18563. weight: math.unit(208, "lb"),
  18564. name: "Front",
  18565. image: {
  18566. source: "./media/characters/chaska/front.svg",
  18567. extra: 332 / 319,
  18568. bottom: 0.015
  18569. }
  18570. },
  18571. },
  18572. [
  18573. {
  18574. name: "Normal",
  18575. height: math.unit(6 + 7 / 12, "feet"),
  18576. default: true
  18577. },
  18578. ]
  18579. ))
  18580. characterMakers.push(() => makeCharacter(
  18581. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18582. {
  18583. front: {
  18584. height: math.unit(5 + 8 / 12, "feet"),
  18585. weight: math.unit(208, "lb"),
  18586. name: "Front",
  18587. image: {
  18588. source: "./media/characters/enuk/front.svg",
  18589. extra: 437 / 406,
  18590. bottom: 0.02
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(5 + 8 / 12, "feet"),
  18598. default: true
  18599. },
  18600. ]
  18601. ))
  18602. characterMakers.push(() => makeCharacter(
  18603. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18604. {
  18605. front: {
  18606. height: math.unit(5 + 10 / 12, "feet"),
  18607. weight: math.unit(252, "lb"),
  18608. name: "Front",
  18609. image: {
  18610. source: "./media/characters/bruun/front.svg",
  18611. extra: 197 / 187,
  18612. bottom: 0.012
  18613. }
  18614. },
  18615. },
  18616. [
  18617. {
  18618. name: "Normal",
  18619. height: math.unit(5 + 10 / 12, "feet"),
  18620. default: true
  18621. },
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18626. {
  18627. front: {
  18628. height: math.unit(6 + 10 / 12, "feet"),
  18629. weight: math.unit(255, "lb"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/alexeev/front.svg",
  18633. extra: 213 / 200,
  18634. bottom: 0.05
  18635. }
  18636. },
  18637. },
  18638. [
  18639. {
  18640. name: "Normal",
  18641. height: math.unit(6 + 10 / 12, "feet"),
  18642. default: true
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18648. {
  18649. front: {
  18650. height: math.unit(2 + 8 / 12, "feet"),
  18651. weight: math.unit(22, "lb"),
  18652. name: "Front",
  18653. image: {
  18654. source: "./media/characters/evelyn/front.svg",
  18655. extra: 208 / 180
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(2 + 8 / 12, "feet"),
  18663. default: true
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18669. {
  18670. front: {
  18671. height: math.unit(5 + 9 / 12, "feet"),
  18672. weight: math.unit(139, "lb"),
  18673. name: "Front",
  18674. image: {
  18675. source: "./media/characters/inca/front.svg",
  18676. extra: 294 / 291,
  18677. bottom: 0.03
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(5 + 9 / 12, "feet"),
  18685. default: true
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18691. {
  18692. front: {
  18693. height: math.unit(5 + 1 / 12, "feet"),
  18694. weight: math.unit(84, "lb"),
  18695. name: "Front",
  18696. image: {
  18697. source: "./media/characters/magdalene/front.svg",
  18698. extra: 293 / 273
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Normal",
  18705. height: math.unit(5 + 1 / 12, "feet"),
  18706. default: true
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18712. {
  18713. front: {
  18714. height: math.unit(6 + 3 / 12, "feet"),
  18715. weight: math.unit(185, "lb"),
  18716. name: "Front",
  18717. image: {
  18718. source: "./media/characters/mera/front.svg",
  18719. extra: 291 / 277,
  18720. bottom: 0.03
  18721. }
  18722. },
  18723. },
  18724. [
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(6 + 3 / 12, "feet"),
  18728. default: true
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(6 + 7 / 12, "feet"),
  18737. weight: math.unit(160, "lb"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/ceres/front.svg",
  18741. extra: 1023 / 950,
  18742. bottom: 0.027
  18743. }
  18744. },
  18745. back: {
  18746. height: math.unit(6 + 7 / 12, "feet"),
  18747. weight: math.unit(160, "lb"),
  18748. name: "Back",
  18749. image: {
  18750. source: "./media/characters/ceres/back.svg",
  18751. extra: 1023 / 950
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(6 + 7 / 12, "feet"),
  18759. default: true
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(5 + 10 / 12, "feet"),
  18768. weight: math.unit(150, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/kris/front.svg",
  18772. extra: 885 / 803,
  18773. bottom: 0.03
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Normal",
  18780. height: math.unit(5 + 10 / 12, "feet"),
  18781. default: true
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(7, "feet"),
  18790. weight: math.unit(120, "kg"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/taluthus/front.svg",
  18794. extra: 903 / 833,
  18795. bottom: 0.015
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(7, "feet"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Macro",
  18807. height: math.unit(300, "feet")
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(5 + 9 / 12, "feet"),
  18816. weight: math.unit(145, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/dawn/front.svg",
  18820. extra: 2094 / 2016,
  18821. bottom: 0.025
  18822. }
  18823. },
  18824. back: {
  18825. height: math.unit(5 + 9 / 12, "feet"),
  18826. weight: math.unit(160, "lb"),
  18827. name: "Back",
  18828. image: {
  18829. source: "./media/characters/dawn/back.svg",
  18830. extra: 2112 / 2080,
  18831. bottom: 0.005
  18832. }
  18833. },
  18834. },
  18835. [
  18836. {
  18837. name: "Normal",
  18838. height: math.unit(6 + 7 / 12, "feet"),
  18839. default: true
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18845. {
  18846. anthro: {
  18847. height: math.unit(8 + 3 / 12, "feet"),
  18848. weight: math.unit(450, "lb"),
  18849. name: "Anthro",
  18850. image: {
  18851. source: "./media/characters/arador/anthro.svg",
  18852. extra: 1835 / 1718,
  18853. bottom: 0.025
  18854. }
  18855. },
  18856. feral: {
  18857. height: math.unit(4, "feet"),
  18858. weight: math.unit(200, "lb"),
  18859. name: "Feral",
  18860. image: {
  18861. source: "./media/characters/arador/feral.svg",
  18862. extra: 1683 / 1514,
  18863. bottom: 0.07
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(8 + 3 / 12, "feet")
  18871. },
  18872. {
  18873. name: "Macro",
  18874. height: math.unit(82.5, "feet"),
  18875. default: true
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(5 + 10 / 12, "feet"),
  18884. weight: math.unit(125, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/dharsi/front.svg",
  18888. extra: 716 / 630,
  18889. bottom: 0.035
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Nano",
  18896. height: math.unit(100, "nm")
  18897. },
  18898. {
  18899. name: "Micro",
  18900. height: math.unit(2, "inches")
  18901. },
  18902. {
  18903. name: "Normal",
  18904. height: math.unit(5 + 10 / 12, "feet"),
  18905. default: true
  18906. },
  18907. {
  18908. name: "Macro",
  18909. height: math.unit(1000, "feet")
  18910. },
  18911. {
  18912. name: "Megamacro",
  18913. height: math.unit(10, "miles")
  18914. },
  18915. {
  18916. name: "Gigamacro",
  18917. height: math.unit(3000, "miles")
  18918. },
  18919. {
  18920. name: "Teramacro",
  18921. height: math.unit(500000, "miles")
  18922. },
  18923. {
  18924. name: "Teramacro+",
  18925. height: math.unit(30, "galaxies")
  18926. },
  18927. ]
  18928. ))
  18929. characterMakers.push(() => makeCharacter(
  18930. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18931. {
  18932. front: {
  18933. height: math.unit(6, "feet"),
  18934. weight: math.unit(150, "lb"),
  18935. name: "Front",
  18936. image: {
  18937. source: "./media/characters/deathy/front.svg",
  18938. extra: 1552 / 1463,
  18939. bottom: 0.025
  18940. }
  18941. },
  18942. side: {
  18943. height: math.unit(6, "feet"),
  18944. weight: math.unit(150, "lb"),
  18945. name: "Side",
  18946. image: {
  18947. source: "./media/characters/deathy/side.svg",
  18948. extra: 1604 / 1455,
  18949. bottom: 0.025
  18950. }
  18951. },
  18952. back: {
  18953. height: math.unit(6, "feet"),
  18954. weight: math.unit(150, "lb"),
  18955. name: "Back",
  18956. image: {
  18957. source: "./media/characters/deathy/back.svg",
  18958. extra: 1580 / 1463,
  18959. bottom: 0.005
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Micro",
  18966. height: math.unit(5, "millimeters")
  18967. },
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(6 + 5 / 12, "feet"),
  18971. default: true
  18972. },
  18973. ]
  18974. ))
  18975. characterMakers.push(() => makeCharacter(
  18976. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18977. {
  18978. front: {
  18979. height: math.unit(16, "feet"),
  18980. weight: math.unit(4000, "lb"),
  18981. name: "Front",
  18982. image: {
  18983. source: "./media/characters/juniper/front.svg",
  18984. bottom: 0.04
  18985. }
  18986. },
  18987. },
  18988. [
  18989. {
  18990. name: "Normal",
  18991. height: math.unit(16, "feet"),
  18992. default: true
  18993. },
  18994. ]
  18995. ))
  18996. characterMakers.push(() => makeCharacter(
  18997. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18998. {
  18999. front: {
  19000. height: math.unit(6, "feet"),
  19001. weight: math.unit(150, "lb"),
  19002. name: "Front",
  19003. image: {
  19004. source: "./media/characters/hipster/front.svg",
  19005. extra: 1312 / 1209,
  19006. bottom: 0.025
  19007. }
  19008. },
  19009. back: {
  19010. height: math.unit(6, "feet"),
  19011. weight: math.unit(150, "lb"),
  19012. name: "Back",
  19013. image: {
  19014. source: "./media/characters/hipster/back.svg",
  19015. extra: 1281 / 1196,
  19016. bottom: 0.01
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Micro",
  19023. height: math.unit(1, "mm")
  19024. },
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(4, "inches"),
  19028. default: true
  19029. },
  19030. {
  19031. name: "Macro",
  19032. height: math.unit(500, "feet")
  19033. },
  19034. {
  19035. name: "Megamacro",
  19036. height: math.unit(1000, "miles")
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(6, "feet"),
  19045. weight: math.unit(150, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/tendirmuldr/front.svg",
  19049. extra: 1878 / 1772,
  19050. bottom: 0.015
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Megamacro",
  19057. height: math.unit(1500, "miles"),
  19058. default: true
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19064. {
  19065. front: {
  19066. height: math.unit(14, "feet"),
  19067. weight: math.unit(12000, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/mort/front.svg",
  19071. extra: 365 / 318,
  19072. bottom: 0.01
  19073. }
  19074. },
  19075. side: {
  19076. height: math.unit(14, "feet"),
  19077. weight: math.unit(12000, "lb"),
  19078. name: "Side",
  19079. image: {
  19080. source: "./media/characters/mort/side.svg",
  19081. extra: 365 / 318,
  19082. bottom: 0.052
  19083. },
  19084. default: true
  19085. },
  19086. back: {
  19087. height: math.unit(14, "feet"),
  19088. weight: math.unit(12000, "lb"),
  19089. name: "Back",
  19090. image: {
  19091. source: "./media/characters/mort/back.svg",
  19092. extra: 371 / 332,
  19093. bottom: 0.18
  19094. }
  19095. },
  19096. },
  19097. [
  19098. {
  19099. name: "Normal",
  19100. height: math.unit(14, "feet"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19107. {
  19108. front: {
  19109. height: math.unit(8, "feet"),
  19110. weight: math.unit(1, "ton"),
  19111. name: "Front",
  19112. image: {
  19113. source: "./media/characters/lycoa/front.svg",
  19114. extra: 1875 / 1789,
  19115. bottom: 0.022
  19116. }
  19117. },
  19118. back: {
  19119. height: math.unit(8, "feet"),
  19120. weight: math.unit(1, "ton"),
  19121. name: "Back",
  19122. image: {
  19123. source: "./media/characters/lycoa/back.svg",
  19124. extra: 1835 / 1781,
  19125. bottom: 0.03
  19126. }
  19127. },
  19128. head: {
  19129. height: math.unit(2.1, "feet"),
  19130. name: "Head",
  19131. image: {
  19132. source: "./media/characters/lycoa/head.svg"
  19133. }
  19134. },
  19135. tailmaw: {
  19136. height: math.unit(1.9, "feet"),
  19137. name: "Tailmaw",
  19138. image: {
  19139. source: "./media/characters/lycoa/tailmaw.svg"
  19140. }
  19141. },
  19142. tentacles: {
  19143. height: math.unit(2.1, "feet"),
  19144. name: "Tentacles",
  19145. image: {
  19146. source: "./media/characters/lycoa/tentacles.svg"
  19147. }
  19148. },
  19149. dick: {
  19150. height: math.unit(1.73, "feet"),
  19151. name: "Dick",
  19152. image: {
  19153. source: "./media/characters/lycoa/dick.svg"
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(8, "feet"),
  19161. default: true
  19162. },
  19163. {
  19164. name: "Macro",
  19165. height: math.unit(30, "feet")
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(4 + 2 / 12, "feet"),
  19174. weight: math.unit(70, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/naldara/front.svg",
  19178. extra: 841 / 720,
  19179. bottom: 0.04
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(4 + 2 / 12, "feet"),
  19187. default: true
  19188. },
  19189. ]
  19190. ))
  19191. characterMakers.push(() => makeCharacter(
  19192. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19193. {
  19194. front: {
  19195. height: math.unit(13 + 7 / 12, "feet"),
  19196. weight: math.unit(1500, "lb"),
  19197. name: "Front",
  19198. image: {
  19199. source: "./media/characters/briar/front.svg",
  19200. extra: 626 / 596,
  19201. bottom: 0.08
  19202. }
  19203. },
  19204. },
  19205. [
  19206. {
  19207. name: "Normal",
  19208. height: math.unit(13 + 7 / 12, "feet"),
  19209. default: true
  19210. },
  19211. ]
  19212. ))
  19213. characterMakers.push(() => makeCharacter(
  19214. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19215. {
  19216. side: {
  19217. height: math.unit(10, "feet"),
  19218. weight: math.unit(500, "lb"),
  19219. name: "Side",
  19220. image: {
  19221. source: "./media/characters/vanguard/side.svg",
  19222. extra: 502 / 425,
  19223. bottom: 0.087
  19224. }
  19225. },
  19226. },
  19227. [
  19228. {
  19229. name: "Normal",
  19230. height: math.unit(10, "feet"),
  19231. default: true
  19232. },
  19233. ]
  19234. ))
  19235. characterMakers.push(() => makeCharacter(
  19236. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19237. {
  19238. front: {
  19239. height: math.unit(7.5, "feet"),
  19240. weight: math.unit(2, "lb"),
  19241. name: "Front",
  19242. image: {
  19243. source: "./media/characters/artemis/front.svg",
  19244. extra: 1192 / 1075,
  19245. bottom: 0.07
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(7.5, "feet"),
  19253. default: true
  19254. },
  19255. {
  19256. name: "Enlarged",
  19257. height: math.unit(12, "feet")
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(5 + 3 / 12, "feet"),
  19266. weight: math.unit(160, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/kira/front.svg",
  19270. extra: 906 / 786,
  19271. bottom: 0.01
  19272. }
  19273. },
  19274. back: {
  19275. height: math.unit(5 + 3 / 12, "feet"),
  19276. weight: math.unit(160, "lb"),
  19277. name: "Back",
  19278. image: {
  19279. source: "./media/characters/kira/back.svg",
  19280. extra: 882 / 757,
  19281. bottom: 0.005
  19282. }
  19283. },
  19284. frontDressed: {
  19285. height: math.unit(5 + 3 / 12, "feet"),
  19286. weight: math.unit(160, "lb"),
  19287. name: "Front (Dressed)",
  19288. image: {
  19289. source: "./media/characters/kira/front-dressed.svg",
  19290. extra: 906 / 786,
  19291. bottom: 0.01
  19292. }
  19293. },
  19294. beans: {
  19295. height: math.unit(0.92, "feet"),
  19296. name: "Beans",
  19297. image: {
  19298. source: "./media/characters/kira/beans.svg"
  19299. }
  19300. },
  19301. },
  19302. [
  19303. {
  19304. name: "Normal",
  19305. height: math.unit(5 + 3 / 12, "feet"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19312. {
  19313. front: {
  19314. height: math.unit(5 + 4 / 12, "feet"),
  19315. weight: math.unit(145, "lb"),
  19316. name: "Front",
  19317. image: {
  19318. source: "./media/characters/scramble/front.svg",
  19319. extra: 763 / 727,
  19320. bottom: 0.05
  19321. }
  19322. },
  19323. back: {
  19324. height: math.unit(5 + 4 / 12, "feet"),
  19325. weight: math.unit(145, "lb"),
  19326. name: "Back",
  19327. image: {
  19328. source: "./media/characters/scramble/back.svg",
  19329. extra: 826 / 737,
  19330. bottom: 0.002
  19331. }
  19332. },
  19333. },
  19334. [
  19335. {
  19336. name: "Normal",
  19337. height: math.unit(5 + 4 / 12, "feet"),
  19338. default: true
  19339. },
  19340. ]
  19341. ))
  19342. characterMakers.push(() => makeCharacter(
  19343. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19344. {
  19345. side: {
  19346. height: math.unit(6 + 2 / 12, "feet"),
  19347. weight: math.unit(190, "lb"),
  19348. name: "Side",
  19349. image: {
  19350. source: "./media/characters/biscuit/side.svg",
  19351. extra: 858 / 791,
  19352. bottom: 0.044
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(6 + 2 / 12, "feet"),
  19360. default: true
  19361. },
  19362. ]
  19363. ))
  19364. characterMakers.push(() => makeCharacter(
  19365. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19366. {
  19367. front: {
  19368. height: math.unit(5 + 2 / 12, "feet"),
  19369. weight: math.unit(120, "lb"),
  19370. name: "Front",
  19371. image: {
  19372. source: "./media/characters/poffin/front.svg",
  19373. extra: 786 / 680,
  19374. bottom: 0.005
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(5 + 2 / 12, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19388. {
  19389. front: {
  19390. height: math.unit(6 + 3 / 12, "feet"),
  19391. weight: math.unit(519, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/dhari/front.svg",
  19395. extra: 1048 / 946,
  19396. bottom: 0.015
  19397. }
  19398. },
  19399. back: {
  19400. height: math.unit(6 + 3 / 12, "feet"),
  19401. weight: math.unit(519, "lb"),
  19402. name: "Back",
  19403. image: {
  19404. source: "./media/characters/dhari/back.svg",
  19405. extra: 1048 / 931,
  19406. bottom: 0.005
  19407. }
  19408. },
  19409. frontDressed: {
  19410. height: math.unit(6 + 3 / 12, "feet"),
  19411. weight: math.unit(519, "lb"),
  19412. name: "Front (Dressed)",
  19413. image: {
  19414. source: "./media/characters/dhari/front-dressed.svg",
  19415. extra: 1713 / 1546,
  19416. bottom: 0.02
  19417. }
  19418. },
  19419. backDressed: {
  19420. height: math.unit(6 + 3 / 12, "feet"),
  19421. weight: math.unit(519, "lb"),
  19422. name: "Back (Dressed)",
  19423. image: {
  19424. source: "./media/characters/dhari/back-dressed.svg",
  19425. extra: 1699 / 1537,
  19426. bottom: 0.01
  19427. }
  19428. },
  19429. maw: {
  19430. height: math.unit(0.95, "feet"),
  19431. name: "Maw",
  19432. image: {
  19433. source: "./media/characters/dhari/maw.svg"
  19434. }
  19435. },
  19436. wereFront: {
  19437. height: math.unit(12 + 8 / 12, "feet"),
  19438. weight: math.unit(4000, "lb"),
  19439. name: "Front (Were)",
  19440. image: {
  19441. source: "./media/characters/dhari/were-front.svg",
  19442. extra: 1065 / 969,
  19443. bottom: 0.015
  19444. }
  19445. },
  19446. wereBack: {
  19447. height: math.unit(12 + 8 / 12, "feet"),
  19448. weight: math.unit(4000, "lb"),
  19449. name: "Back (Were)",
  19450. image: {
  19451. source: "./media/characters/dhari/were-back.svg",
  19452. extra: 1065 / 969,
  19453. bottom: 0.012
  19454. }
  19455. },
  19456. wereMaw: {
  19457. height: math.unit(0.625, "meters"),
  19458. name: "Maw (Were)",
  19459. image: {
  19460. source: "./media/characters/dhari/were-maw.svg"
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(6 + 3 / 12, "feet"),
  19468. default: true
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19474. {
  19475. anthro: {
  19476. height: math.unit(5 + 7 / 12, "feet"),
  19477. weight: math.unit(175, "lb"),
  19478. name: "Anthro",
  19479. image: {
  19480. source: "./media/characters/rena-dyne/anthro.svg",
  19481. extra: 1849 / 1785,
  19482. bottom: 0.005
  19483. }
  19484. },
  19485. taur: {
  19486. height: math.unit(15 + 6 / 12, "feet"),
  19487. weight: math.unit(8000, "lb"),
  19488. name: "Taur",
  19489. image: {
  19490. source: "./media/characters/rena-dyne/taur.svg",
  19491. extra: 2315 / 2234,
  19492. bottom: 0.033
  19493. }
  19494. },
  19495. },
  19496. [
  19497. {
  19498. name: "Normal",
  19499. height: math.unit(5 + 7 / 12, "feet"),
  19500. default: true
  19501. },
  19502. ]
  19503. ))
  19504. characterMakers.push(() => makeCharacter(
  19505. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19506. {
  19507. front: {
  19508. height: math.unit(8, "feet"),
  19509. weight: math.unit(600, "lb"),
  19510. name: "Front",
  19511. image: {
  19512. source: "./media/characters/weremeep/front.svg",
  19513. extra: 967 / 862,
  19514. bottom: 0.01
  19515. }
  19516. },
  19517. },
  19518. [
  19519. {
  19520. name: "Normal",
  19521. height: math.unit(8, "feet"),
  19522. default: true
  19523. },
  19524. {
  19525. name: "Lorg",
  19526. height: math.unit(12, "feet")
  19527. },
  19528. {
  19529. name: "Oh Lawd She Comin'",
  19530. height: math.unit(20, "feet")
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19536. {
  19537. front: {
  19538. height: math.unit(4, "feet"),
  19539. weight: math.unit(90, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/reza/front.svg",
  19543. extra: 1183 / 1111,
  19544. bottom: 0.017
  19545. }
  19546. },
  19547. back: {
  19548. height: math.unit(4, "feet"),
  19549. weight: math.unit(90, "lb"),
  19550. name: "Back",
  19551. image: {
  19552. source: "./media/characters/reza/back.svg",
  19553. extra: 1183 / 1111,
  19554. bottom: 0.01
  19555. }
  19556. },
  19557. drake: {
  19558. height: math.unit(30, "feet"),
  19559. weight: math.unit(246960, "lb"),
  19560. name: "Drake",
  19561. image: {
  19562. source: "./media/characters/reza/drake.svg",
  19563. extra: 2350 / 2024,
  19564. bottom: 60.7 / 2403
  19565. }
  19566. },
  19567. },
  19568. [
  19569. {
  19570. name: "Normal",
  19571. height: math.unit(4, "feet"),
  19572. default: true
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19578. {
  19579. side: {
  19580. height: math.unit(15, "feet"),
  19581. weight: math.unit(14, "tons"),
  19582. name: "Side",
  19583. image: {
  19584. source: "./media/characters/athea/side.svg",
  19585. extra: 960 / 540,
  19586. bottom: 0.003
  19587. }
  19588. },
  19589. sitting: {
  19590. height: math.unit(6 * 2.85, "feet"),
  19591. weight: math.unit(14, "tons"),
  19592. name: "Sitting",
  19593. image: {
  19594. source: "./media/characters/athea/sitting.svg",
  19595. extra: 621 / 581,
  19596. bottom: 0.075
  19597. }
  19598. },
  19599. maw: {
  19600. height: math.unit(7.59498031496063, "feet"),
  19601. name: "Maw",
  19602. image: {
  19603. source: "./media/characters/athea/maw.svg"
  19604. }
  19605. },
  19606. },
  19607. [
  19608. {
  19609. name: "Lap Cat",
  19610. height: math.unit(2.5, "feet")
  19611. },
  19612. {
  19613. name: "Minimacro",
  19614. height: math.unit(15, "feet"),
  19615. default: true
  19616. },
  19617. {
  19618. name: "Macro",
  19619. height: math.unit(120, "feet")
  19620. },
  19621. {
  19622. name: "Macro+",
  19623. height: math.unit(640, "feet")
  19624. },
  19625. {
  19626. name: "Colossus",
  19627. height: math.unit(2.2, "miles")
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19633. {
  19634. front: {
  19635. height: math.unit(8 + 8 / 12, "feet"),
  19636. weight: math.unit(130, "kg"),
  19637. name: "Front",
  19638. image: {
  19639. source: "./media/characters/seroko/front.svg",
  19640. extra: 1385 / 1280,
  19641. bottom: 0.025
  19642. }
  19643. },
  19644. back: {
  19645. height: math.unit(8 + 8 / 12, "feet"),
  19646. weight: math.unit(130, "kg"),
  19647. name: "Back",
  19648. image: {
  19649. source: "./media/characters/seroko/back.svg",
  19650. extra: 1369 / 1238,
  19651. bottom: 0.018
  19652. }
  19653. },
  19654. frontDressed: {
  19655. height: math.unit(8 + 8 / 12, "feet"),
  19656. weight: math.unit(130, "kg"),
  19657. name: "Front (Dressed)",
  19658. image: {
  19659. source: "./media/characters/seroko/front-dressed.svg",
  19660. extra: 1366 / 1275,
  19661. bottom: 0.03
  19662. }
  19663. },
  19664. },
  19665. [
  19666. {
  19667. name: "Normal",
  19668. height: math.unit(8 + 8 / 12, "feet"),
  19669. default: true
  19670. },
  19671. ]
  19672. ))
  19673. characterMakers.push(() => makeCharacter(
  19674. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19675. {
  19676. front: {
  19677. height: math.unit(5.5, "feet"),
  19678. weight: math.unit(160, "lb"),
  19679. name: "Front",
  19680. image: {
  19681. source: "./media/characters/quatzi/front.svg",
  19682. extra: 2346 / 2242,
  19683. bottom: 0.015
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Normal",
  19690. height: math.unit(5.5, "feet"),
  19691. default: true
  19692. },
  19693. {
  19694. name: "Big",
  19695. height: math.unit(7.7, "feet")
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19701. {
  19702. front: {
  19703. height: math.unit(5 + 11 / 12, "feet"),
  19704. weight: math.unit(180, "lb"),
  19705. name: "Front",
  19706. image: {
  19707. source: "./media/characters/sen/front.svg",
  19708. extra: 1321 / 1254,
  19709. bottom: 0.015
  19710. }
  19711. },
  19712. side: {
  19713. height: math.unit(5 + 11 / 12, "feet"),
  19714. weight: math.unit(180, "lb"),
  19715. name: "Side",
  19716. image: {
  19717. source: "./media/characters/sen/side.svg",
  19718. extra: 1321 / 1254,
  19719. bottom: 0.007
  19720. }
  19721. },
  19722. back: {
  19723. height: math.unit(5 + 11 / 12, "feet"),
  19724. weight: math.unit(180, "lb"),
  19725. name: "Back",
  19726. image: {
  19727. source: "./media/characters/sen/back.svg",
  19728. extra: 1321 / 1254
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Normal",
  19735. height: math.unit(5 + 11 / 12, "feet"),
  19736. default: true
  19737. },
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19742. {
  19743. front: {
  19744. height: math.unit(166.6, "cm"),
  19745. weight: math.unit(66.6, "kg"),
  19746. name: "Front",
  19747. image: {
  19748. source: "./media/characters/fruity/front.svg",
  19749. extra: 1510 / 1386,
  19750. bottom: 0.04
  19751. }
  19752. },
  19753. back: {
  19754. height: math.unit(166.6, "cm"),
  19755. weight: math.unit(66.6, "lb"),
  19756. name: "Back",
  19757. image: {
  19758. source: "./media/characters/fruity/back.svg",
  19759. extra: 1563 / 1435,
  19760. bottom: 0.005
  19761. }
  19762. },
  19763. },
  19764. [
  19765. {
  19766. name: "Normal",
  19767. height: math.unit(166.6, "cm"),
  19768. default: true
  19769. },
  19770. {
  19771. name: "Demonic",
  19772. height: math.unit(166.6, "feet")
  19773. },
  19774. ]
  19775. ))
  19776. characterMakers.push(() => makeCharacter(
  19777. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19778. {
  19779. side: {
  19780. height: math.unit(10, "feet"),
  19781. weight: math.unit(500, "lb"),
  19782. name: "Side",
  19783. image: {
  19784. source: "./media/characters/zost/side.svg",
  19785. extra: 966 / 880,
  19786. bottom: 0.075
  19787. }
  19788. },
  19789. mawFront: {
  19790. height: math.unit(1.08, "meters"),
  19791. name: "Maw (Front)",
  19792. image: {
  19793. source: "./media/characters/zost/maw-front.svg"
  19794. }
  19795. },
  19796. mawSide: {
  19797. height: math.unit(2.66, "feet"),
  19798. name: "Maw (Side)",
  19799. image: {
  19800. source: "./media/characters/zost/maw-side.svg"
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(10, "feet"),
  19808. default: true
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19814. {
  19815. front: {
  19816. height: math.unit(5 + 4 / 12, "feet"),
  19817. weight: math.unit(120, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/luci/front.svg",
  19821. extra: 1985 / 1884,
  19822. bottom: 0.04
  19823. }
  19824. },
  19825. back: {
  19826. height: math.unit(5 + 4 / 12, "feet"),
  19827. weight: math.unit(120, "lb"),
  19828. name: "Back",
  19829. image: {
  19830. source: "./media/characters/luci/back.svg",
  19831. extra: 1892 / 1791,
  19832. bottom: 0.002
  19833. }
  19834. },
  19835. },
  19836. [
  19837. {
  19838. name: "Normal",
  19839. height: math.unit(5 + 4 / 12, "feet"),
  19840. default: true
  19841. },
  19842. ]
  19843. ))
  19844. characterMakers.push(() => makeCharacter(
  19845. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19846. {
  19847. front: {
  19848. height: math.unit(1500, "feet"),
  19849. weight: math.unit(3.8e6, "tons"),
  19850. name: "Front",
  19851. image: {
  19852. source: "./media/characters/2th/front.svg",
  19853. extra: 3489 / 3350,
  19854. bottom: 0.1
  19855. }
  19856. },
  19857. foot: {
  19858. height: math.unit(461, "feet"),
  19859. name: "Foot",
  19860. image: {
  19861. source: "./media/characters/2th/foot.svg"
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "\"Micro\"",
  19868. height: math.unit(15 + 7 / 12, "feet")
  19869. },
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(1500, "feet"),
  19873. default: true
  19874. },
  19875. {
  19876. name: "Macro",
  19877. height: math.unit(5000, "feet")
  19878. },
  19879. {
  19880. name: "Megamacro",
  19881. height: math.unit(15, "miles")
  19882. },
  19883. {
  19884. name: "Gigamacro",
  19885. height: math.unit(4000, "miles")
  19886. },
  19887. {
  19888. name: "Galactic",
  19889. height: math.unit(50, "AU")
  19890. },
  19891. ]
  19892. ))
  19893. characterMakers.push(() => makeCharacter(
  19894. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19895. {
  19896. front: {
  19897. height: math.unit(5 + 6 / 12, "feet"),
  19898. weight: math.unit(220, "lb"),
  19899. name: "Front",
  19900. image: {
  19901. source: "./media/characters/amethyst/front.svg",
  19902. extra: 2078 / 2040,
  19903. bottom: 0.045
  19904. }
  19905. },
  19906. back: {
  19907. height: math.unit(5 + 6 / 12, "feet"),
  19908. weight: math.unit(220, "lb"),
  19909. name: "Back",
  19910. image: {
  19911. source: "./media/characters/amethyst/back.svg",
  19912. extra: 2021 / 1989,
  19913. bottom: 0.02
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(5 + 6 / 12, "feet"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(4 + 11 / 12, "feet"),
  19930. weight: math.unit(120, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/yumi-akiyama/front.svg",
  19934. extra: 1327 / 1235,
  19935. bottom: 0.02
  19936. }
  19937. },
  19938. back: {
  19939. height: math.unit(4 + 11 / 12, "feet"),
  19940. weight: math.unit(120, "lb"),
  19941. name: "Back",
  19942. image: {
  19943. source: "./media/characters/yumi-akiyama/back.svg",
  19944. extra: 1287 / 1245,
  19945. bottom: 0.002
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Galactic",
  19952. height: math.unit(50, "galaxies"),
  19953. default: true
  19954. },
  19955. {
  19956. name: "Universal",
  19957. height: math.unit(100, "universes")
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(8, "feet"),
  19966. weight: math.unit(500, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/rifter-yrmori/front.svg",
  19970. extra: 1180 / 1125,
  19971. bottom: 0.02
  19972. }
  19973. },
  19974. back: {
  19975. height: math.unit(8, "feet"),
  19976. weight: math.unit(500, "lb"),
  19977. name: "Back",
  19978. image: {
  19979. source: "./media/characters/rifter-yrmori/back.svg",
  19980. extra: 1190 / 1145,
  19981. bottom: 0.001
  19982. }
  19983. },
  19984. wings: {
  19985. height: math.unit(7.75, "feet"),
  19986. weight: math.unit(500, "lb"),
  19987. name: "Wings",
  19988. image: {
  19989. source: "./media/characters/rifter-yrmori/wings.svg",
  19990. extra: 1357 / 1285
  19991. }
  19992. },
  19993. maw: {
  19994. height: math.unit(0.8, "feet"),
  19995. name: "Maw",
  19996. image: {
  19997. source: "./media/characters/rifter-yrmori/maw.svg"
  19998. }
  19999. },
  20000. },
  20001. [
  20002. {
  20003. name: "Normal",
  20004. height: math.unit(8, "feet"),
  20005. default: true
  20006. },
  20007. {
  20008. name: "Macro",
  20009. height: math.unit(42, "meters")
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20015. {
  20016. were: {
  20017. height: math.unit(25 + 6 / 12, "feet"),
  20018. weight: math.unit(10000, "lb"),
  20019. name: "Were",
  20020. image: {
  20021. source: "./media/characters/tahajin/were.svg",
  20022. extra: 801 / 770,
  20023. bottom: 0.042
  20024. }
  20025. },
  20026. aquatic: {
  20027. height: math.unit(6 + 4 / 12, "feet"),
  20028. weight: math.unit(160, "lb"),
  20029. name: "Aquatic",
  20030. image: {
  20031. source: "./media/characters/tahajin/aquatic.svg",
  20032. extra: 572 / 542,
  20033. bottom: 0.04
  20034. }
  20035. },
  20036. chow: {
  20037. height: math.unit(8 + 11 / 12, "feet"),
  20038. weight: math.unit(450, "lb"),
  20039. name: "Chow",
  20040. image: {
  20041. source: "./media/characters/tahajin/chow.svg",
  20042. extra: 660 / 640,
  20043. bottom: 0.015
  20044. }
  20045. },
  20046. demiNaga: {
  20047. height: math.unit(6 + 8 / 12, "feet"),
  20048. weight: math.unit(300, "lb"),
  20049. name: "Demi Naga",
  20050. image: {
  20051. source: "./media/characters/tahajin/demi-naga.svg",
  20052. extra: 643 / 615,
  20053. bottom: 0.1
  20054. }
  20055. },
  20056. data: {
  20057. height: math.unit(5, "inches"),
  20058. weight: math.unit(0.1, "lb"),
  20059. name: "Data",
  20060. image: {
  20061. source: "./media/characters/tahajin/data.svg"
  20062. }
  20063. },
  20064. fluu: {
  20065. height: math.unit(5 + 7 / 12, "feet"),
  20066. weight: math.unit(140, "lb"),
  20067. name: "Fluu",
  20068. image: {
  20069. source: "./media/characters/tahajin/fluu.svg",
  20070. extra: 628 / 592,
  20071. bottom: 0.02
  20072. }
  20073. },
  20074. starWarrior: {
  20075. height: math.unit(4 + 5 / 12, "feet"),
  20076. weight: math.unit(50, "lb"),
  20077. name: "Star Warrior",
  20078. image: {
  20079. source: "./media/characters/tahajin/star-warrior.svg"
  20080. }
  20081. },
  20082. },
  20083. [
  20084. {
  20085. name: "Normal",
  20086. height: math.unit(25 + 6 / 12, "feet"),
  20087. default: true
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20093. {
  20094. front: {
  20095. height: math.unit(8, "feet"),
  20096. weight: math.unit(350, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/gabira/front.svg",
  20100. extra: 608 / 580,
  20101. bottom: 0.03
  20102. }
  20103. },
  20104. back: {
  20105. height: math.unit(8, "feet"),
  20106. weight: math.unit(350, "lb"),
  20107. name: "Back",
  20108. image: {
  20109. source: "./media/characters/gabira/back.svg",
  20110. extra: 608 / 580,
  20111. bottom: 0.03
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(8, "feet"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20125. {
  20126. front: {
  20127. height: math.unit(5 + 3 / 12, "feet"),
  20128. weight: math.unit(137, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/sasha-katraine/front.svg",
  20132. bottom: 0.045
  20133. }
  20134. },
  20135. },
  20136. [
  20137. {
  20138. name: "Micro",
  20139. height: math.unit(5, "inches")
  20140. },
  20141. {
  20142. name: "Normal",
  20143. height: math.unit(5 + 3 / 12, "feet"),
  20144. default: true
  20145. },
  20146. ]
  20147. ))
  20148. characterMakers.push(() => makeCharacter(
  20149. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20150. {
  20151. side: {
  20152. height: math.unit(4, "inches"),
  20153. weight: math.unit(200, "grams"),
  20154. name: "Side",
  20155. image: {
  20156. source: "./media/characters/der/side.svg",
  20157. extra: 719 / 400,
  20158. bottom: 30.6 / 749.9187
  20159. }
  20160. },
  20161. },
  20162. [
  20163. {
  20164. name: "Micro",
  20165. height: math.unit(4, "inches"),
  20166. default: true
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20172. {
  20173. side: {
  20174. height: math.unit(30, "meters"),
  20175. weight: math.unit(700, "tonnes"),
  20176. name: "Side",
  20177. image: {
  20178. source: "./media/characters/fixerdragon/side.svg",
  20179. extra: (1293.0514 - 116.03) / 1106.86,
  20180. bottom: 116.03 / 1293.0514
  20181. }
  20182. },
  20183. },
  20184. [
  20185. {
  20186. name: "Planck",
  20187. height: math.unit(1.6e-35, "meters")
  20188. },
  20189. {
  20190. name: "Micro",
  20191. height: math.unit(0.4, "meters")
  20192. },
  20193. {
  20194. name: "Normal",
  20195. height: math.unit(30, "meters"),
  20196. default: true
  20197. },
  20198. {
  20199. name: "Megamacro",
  20200. height: math.unit(1.2, "megameters")
  20201. },
  20202. {
  20203. name: "Teramacro",
  20204. height: math.unit(130, "terameters")
  20205. },
  20206. {
  20207. name: "Yottamacro",
  20208. height: math.unit(6200, "yottameters")
  20209. },
  20210. ]
  20211. ));
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20214. {
  20215. front: {
  20216. height: math.unit(8, "feet"),
  20217. weight: math.unit(250, "lb"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/kite/front.svg",
  20221. extra: 2796 / 2659,
  20222. bottom: 0.002
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Normal",
  20229. height: math.unit(8, "feet"),
  20230. default: true
  20231. },
  20232. {
  20233. name: "Macro",
  20234. height: math.unit(360, "feet")
  20235. },
  20236. {
  20237. name: "Megamacro",
  20238. height: math.unit(1500, "feet")
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(5 + 10 / 12, "feet"),
  20247. weight: math.unit(150, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/poojawa-vynar/front.svg",
  20251. extra: (1506.1547 - 55) / 1356.6,
  20252. bottom: 55 / 1506.1547
  20253. }
  20254. },
  20255. frontTailless: {
  20256. height: math.unit(5 + 10 / 12, "feet"),
  20257. weight: math.unit(150, "lb"),
  20258. name: "Front (Tailless)",
  20259. image: {
  20260. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20261. extra: (1506.1547 - 55) / 1356.6,
  20262. bottom: 55 / 1506.1547
  20263. }
  20264. },
  20265. },
  20266. [
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(5 + 10 / 12, "feet"),
  20270. default: true
  20271. },
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20276. {
  20277. front: {
  20278. height: math.unit(293, "meters"),
  20279. weight: math.unit(70400, "tons"),
  20280. name: "Front",
  20281. image: {
  20282. source: "./media/characters/violette/front.svg",
  20283. extra: 1227 / 1180,
  20284. bottom: 0.005
  20285. }
  20286. },
  20287. back: {
  20288. height: math.unit(293, "meters"),
  20289. weight: math.unit(70400, "tons"),
  20290. name: "Back",
  20291. image: {
  20292. source: "./media/characters/violette/back.svg",
  20293. extra: 1227 / 1180,
  20294. bottom: 0.005
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Macro",
  20301. height: math.unit(293, "meters"),
  20302. default: true
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20308. {
  20309. front: {
  20310. height: math.unit(1050, "feet"),
  20311. weight: math.unit(200000, "tons"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/alessandra/front.svg",
  20315. extra: 960 / 912,
  20316. bottom: 0.06
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Macro",
  20323. height: math.unit(1050, "feet")
  20324. },
  20325. {
  20326. name: "Macro+",
  20327. height: math.unit(900, "meters"),
  20328. default: true
  20329. },
  20330. ]
  20331. ))
  20332. characterMakers.push(() => makeCharacter(
  20333. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20334. {
  20335. front: {
  20336. height: math.unit(5, "feet"),
  20337. weight: math.unit(187, "lb"),
  20338. name: "Front",
  20339. image: {
  20340. source: "./media/characters/person/front.svg",
  20341. extra: 3087 / 2945,
  20342. bottom: 91 / 3181
  20343. }
  20344. },
  20345. },
  20346. [
  20347. {
  20348. name: "Micro",
  20349. height: math.unit(3, "inches")
  20350. },
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(5, "feet"),
  20354. default: true
  20355. },
  20356. {
  20357. name: "Macro",
  20358. height: math.unit(90, "feet")
  20359. },
  20360. {
  20361. name: "Max Size",
  20362. height: math.unit(280, "feet")
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20368. {
  20369. front: {
  20370. height: math.unit(4.5, "meters"),
  20371. weight: math.unit(3200, "lb"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/ty/front.svg",
  20375. extra: 1038 / 960,
  20376. bottom: 31.156 / 1068
  20377. }
  20378. },
  20379. back: {
  20380. height: math.unit(4.5, "meters"),
  20381. weight: math.unit(3200, "lb"),
  20382. name: "Back",
  20383. image: {
  20384. source: "./media/characters/ty/back.svg",
  20385. extra: 1044 / 966,
  20386. bottom: 7.48 / 1049
  20387. }
  20388. },
  20389. },
  20390. [
  20391. {
  20392. name: "Normal",
  20393. height: math.unit(4.5, "meters"),
  20394. default: true
  20395. },
  20396. ]
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20400. {
  20401. front: {
  20402. height: math.unit(5 + 4 / 12, "feet"),
  20403. weight: math.unit(115, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/rocky/front.svg",
  20407. extra: 1012 / 975,
  20408. bottom: 54 / 1066
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Normal",
  20415. height: math.unit(5 + 4 / 12, "feet"),
  20416. default: true
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20422. {
  20423. upright: {
  20424. height: math.unit(6, "meters"),
  20425. weight: math.unit(4000, "kg"),
  20426. name: "Upright",
  20427. image: {
  20428. source: "./media/characters/ruin/upright.svg",
  20429. extra: 668 / 661,
  20430. bottom: 42 / 799.8396
  20431. }
  20432. },
  20433. },
  20434. [
  20435. {
  20436. name: "Normal",
  20437. height: math.unit(6, "meters"),
  20438. default: true
  20439. },
  20440. ]
  20441. ))
  20442. characterMakers.push(() => makeCharacter(
  20443. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20444. {
  20445. front: {
  20446. height: math.unit(5, "feet"),
  20447. weight: math.unit(106, "lb"),
  20448. name: "Front",
  20449. image: {
  20450. source: "./media/characters/robin/front.svg",
  20451. extra: 862 / 799,
  20452. bottom: 42.4 / 914.8856
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Normal",
  20459. height: math.unit(5, "feet"),
  20460. default: true
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20466. {
  20467. side: {
  20468. height: math.unit(3, "feet"),
  20469. weight: math.unit(225, "lb"),
  20470. name: "Side",
  20471. image: {
  20472. source: "./media/characters/saian/side.svg",
  20473. extra: 566 / 356,
  20474. bottom: 79.7 / 643
  20475. }
  20476. },
  20477. maw: {
  20478. height: math.unit(2.85, "feet"),
  20479. name: "Maw",
  20480. image: {
  20481. source: "./media/characters/saian/maw.svg"
  20482. }
  20483. },
  20484. },
  20485. [
  20486. {
  20487. name: "Normal",
  20488. height: math.unit(3, "feet"),
  20489. default: true
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20495. {
  20496. side: {
  20497. height: math.unit(8, "feet"),
  20498. weight: math.unit(300, "lb"),
  20499. name: "Side",
  20500. image: {
  20501. source: "./media/characters/equus-silvermane/side.svg",
  20502. extra: 2176 / 2050,
  20503. bottom: 65.7 / 2245
  20504. }
  20505. },
  20506. front: {
  20507. height: math.unit(8, "feet"),
  20508. weight: math.unit(300, "lb"),
  20509. name: "Front",
  20510. image: {
  20511. source: "./media/characters/equus-silvermane/front.svg",
  20512. extra: 4633 / 4400,
  20513. bottom: 71.3 / 4706.915
  20514. }
  20515. },
  20516. sideStepping: {
  20517. height: math.unit(8, "feet"),
  20518. weight: math.unit(300, "lb"),
  20519. name: "Side (Stepping)",
  20520. image: {
  20521. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20522. extra: 1968 / 1860,
  20523. bottom: 16.4 / 1989
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Normal",
  20530. height: math.unit(8, "feet")
  20531. },
  20532. {
  20533. name: "Minimacro",
  20534. height: math.unit(75, "feet"),
  20535. default: true
  20536. },
  20537. {
  20538. name: "Macro",
  20539. height: math.unit(150, "feet")
  20540. },
  20541. {
  20542. name: "Macro+",
  20543. height: math.unit(1000, "feet")
  20544. },
  20545. {
  20546. name: "Megamacro",
  20547. height: math.unit(1, "mile")
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20553. {
  20554. side: {
  20555. height: math.unit(20, "feet"),
  20556. weight: math.unit(30000, "kg"),
  20557. name: "Side",
  20558. image: {
  20559. source: "./media/characters/windar/side.svg",
  20560. extra: 1491 / 1248,
  20561. bottom: 82.56 / 1568
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(20, "feet"),
  20569. default: true
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20575. {
  20576. side: {
  20577. height: math.unit(15.66, "feet"),
  20578. weight: math.unit(150, "lb"),
  20579. name: "Side",
  20580. image: {
  20581. source: "./media/characters/melody/side.svg",
  20582. extra: 1097 / 944,
  20583. bottom: 11.8 / 1109
  20584. }
  20585. },
  20586. sideOutfit: {
  20587. height: math.unit(15.66, "feet"),
  20588. weight: math.unit(150, "lb"),
  20589. name: "Side (Outfit)",
  20590. image: {
  20591. source: "./media/characters/melody/side-outfit.svg",
  20592. extra: 1097 / 944,
  20593. bottom: 11.8 / 1109
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(15.66, "feet"),
  20601. default: true
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20607. {
  20608. front: {
  20609. height: math.unit(8, "feet"),
  20610. weight: math.unit(325, "lb"),
  20611. name: "Front",
  20612. image: {
  20613. source: "./media/characters/windera/front.svg",
  20614. extra: 3180 / 2845,
  20615. bottom: 178 / 3365
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(8, "feet"),
  20623. default: true
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20629. {
  20630. front: {
  20631. height: math.unit(28.75, "feet"),
  20632. weight: math.unit(2000, "kg"),
  20633. name: "Front",
  20634. image: {
  20635. source: "./media/characters/sonear/front.svg",
  20636. extra: 1041.1 / 964.9,
  20637. bottom: 53.7 / 1096.6
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(28.75, "feet"),
  20645. default: true
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20651. {
  20652. side: {
  20653. height: math.unit(25.5, "feet"),
  20654. weight: math.unit(23000, "kg"),
  20655. name: "Side",
  20656. image: {
  20657. source: "./media/characters/kanara/side.svg"
  20658. }
  20659. },
  20660. },
  20661. [
  20662. {
  20663. name: "Normal",
  20664. height: math.unit(25.5, "feet"),
  20665. default: true
  20666. },
  20667. ]
  20668. ))
  20669. characterMakers.push(() => makeCharacter(
  20670. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20671. {
  20672. side: {
  20673. height: math.unit(10, "feet"),
  20674. weight: math.unit(1000, "kg"),
  20675. name: "Side",
  20676. image: {
  20677. source: "./media/characters/ereus/side.svg",
  20678. extra: 1157 / 959,
  20679. bottom: 153 / 1312.5
  20680. }
  20681. },
  20682. },
  20683. [
  20684. {
  20685. name: "Normal",
  20686. height: math.unit(10, "feet"),
  20687. default: true
  20688. },
  20689. ]
  20690. ))
  20691. characterMakers.push(() => makeCharacter(
  20692. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20693. {
  20694. side: {
  20695. height: math.unit(4.5, "feet"),
  20696. weight: math.unit(500, "lb"),
  20697. name: "Side",
  20698. image: {
  20699. source: "./media/characters/e-ter/side.svg",
  20700. extra: 1550 / 1248,
  20701. bottom: 146 / 1694
  20702. }
  20703. },
  20704. },
  20705. [
  20706. {
  20707. name: "Normal",
  20708. height: math.unit(4.5, "feet"),
  20709. default: true
  20710. },
  20711. ]
  20712. ))
  20713. characterMakers.push(() => makeCharacter(
  20714. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20715. {
  20716. side: {
  20717. height: math.unit(9.7, "feet"),
  20718. weight: math.unit(4000, "kg"),
  20719. name: "Side",
  20720. image: {
  20721. source: "./media/characters/yamie/side.svg"
  20722. }
  20723. },
  20724. },
  20725. [
  20726. {
  20727. name: "Normal",
  20728. height: math.unit(9.7, "feet"),
  20729. default: true
  20730. },
  20731. ]
  20732. ))
  20733. characterMakers.push(() => makeCharacter(
  20734. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20735. {
  20736. front: {
  20737. height: math.unit(50, "feet"),
  20738. weight: math.unit(50000, "kg"),
  20739. name: "Front",
  20740. image: {
  20741. source: "./media/characters/anders/front.svg",
  20742. extra: 570 / 539,
  20743. bottom: 14.7 / 586.7
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Large",
  20750. height: math.unit(50, "feet")
  20751. },
  20752. {
  20753. name: "Macro",
  20754. height: math.unit(2000, "feet"),
  20755. default: true
  20756. },
  20757. {
  20758. name: "Megamacro",
  20759. height: math.unit(12, "miles")
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20765. {
  20766. front: {
  20767. height: math.unit(7 + 2 / 12, "feet"),
  20768. weight: math.unit(300, "lb"),
  20769. name: "Front",
  20770. image: {
  20771. source: "./media/characters/reban/front.svg",
  20772. extra: 516 / 487,
  20773. bottom: 42.82 / 558.356
  20774. }
  20775. },
  20776. dick: {
  20777. height: math.unit(7 / 5, "feet"),
  20778. name: "Dick",
  20779. image: {
  20780. source: "./media/characters/reban/dick.svg"
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Natural Height",
  20787. height: math.unit(7 + 2 / 12, "feet")
  20788. },
  20789. {
  20790. name: "Macro",
  20791. height: math.unit(500, "feet"),
  20792. default: true
  20793. },
  20794. {
  20795. name: "Canon Height",
  20796. height: math.unit(50, "AU")
  20797. },
  20798. ]
  20799. ))
  20800. characterMakers.push(() => makeCharacter(
  20801. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20802. {
  20803. front: {
  20804. height: math.unit(6, "feet"),
  20805. weight: math.unit(150, "lb"),
  20806. name: "Front",
  20807. image: {
  20808. source: "./media/characters/terrance-keayes/front.svg",
  20809. extra: 1.005,
  20810. bottom: 151 / 1615
  20811. }
  20812. },
  20813. side: {
  20814. height: math.unit(6, "feet"),
  20815. weight: math.unit(150, "lb"),
  20816. name: "Side",
  20817. image: {
  20818. source: "./media/characters/terrance-keayes/side.svg",
  20819. extra: 1.005,
  20820. bottom: 129.4 / 1544
  20821. }
  20822. },
  20823. back: {
  20824. height: math.unit(6, "feet"),
  20825. weight: math.unit(150, "lb"),
  20826. name: "Back",
  20827. image: {
  20828. source: "./media/characters/terrance-keayes/back.svg",
  20829. extra: 1.005,
  20830. bottom: 58.4 / 1557.3
  20831. }
  20832. },
  20833. dick: {
  20834. height: math.unit(6 * 0.208, "feet"),
  20835. name: "Dick",
  20836. image: {
  20837. source: "./media/characters/terrance-keayes/dick.svg"
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Canon Height",
  20844. height: math.unit(35, "miles"),
  20845. default: true
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(6, "feet"),
  20854. weight: math.unit(150, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/ofelia/front.svg",
  20858. extra: 546 / 541,
  20859. bottom: 39 / 583
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(6, "feet"),
  20864. weight: math.unit(150, "lb"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/ofelia/back.svg",
  20868. extra: 564 / 559.5,
  20869. bottom: 8.69 / 573.02
  20870. }
  20871. },
  20872. maw: {
  20873. height: math.unit(1, "feet"),
  20874. name: "Maw",
  20875. image: {
  20876. source: "./media/characters/ofelia/maw.svg"
  20877. }
  20878. },
  20879. foot: {
  20880. height: math.unit(1.949, "feet"),
  20881. name: "Foot",
  20882. image: {
  20883. source: "./media/characters/ofelia/foot.svg"
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Canon Height",
  20890. height: math.unit(2000, "miles"),
  20891. default: true
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20897. {
  20898. front: {
  20899. height: math.unit(6, "feet"),
  20900. weight: math.unit(150, "lb"),
  20901. name: "Front",
  20902. image: {
  20903. source: "./media/characters/samuel/front.svg",
  20904. extra: 265 / 258,
  20905. bottom: 2 / 266.1566
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Macro",
  20912. height: math.unit(100, "feet"),
  20913. default: true
  20914. },
  20915. {
  20916. name: "Full Size",
  20917. height: math.unit(1000, "miles")
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20923. {
  20924. front: {
  20925. height: math.unit(6, "feet"),
  20926. weight: math.unit(300, "lb"),
  20927. name: "Front",
  20928. image: {
  20929. source: "./media/characters/beishir-kiel/front.svg",
  20930. extra: 569 / 547,
  20931. bottom: 41.9 / 609
  20932. }
  20933. },
  20934. maw: {
  20935. height: math.unit(6 * 0.202, "feet"),
  20936. name: "Maw",
  20937. image: {
  20938. source: "./media/characters/beishir-kiel/maw.svg"
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Macro",
  20945. height: math.unit(300, "feet"),
  20946. default: true
  20947. },
  20948. ]
  20949. ))
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20952. {
  20953. front: {
  20954. height: math.unit(5 + 8 / 12, "feet"),
  20955. weight: math.unit(120, "lb"),
  20956. name: "Front",
  20957. image: {
  20958. source: "./media/characters/logan-grey/front.svg",
  20959. extra: 2539 / 2393,
  20960. bottom: 97.6 / 2636.37
  20961. }
  20962. },
  20963. frontAlt: {
  20964. height: math.unit(5 + 8 / 12, "feet"),
  20965. weight: math.unit(120, "lb"),
  20966. name: "Front (Alt)",
  20967. image: {
  20968. source: "./media/characters/logan-grey/front-alt.svg",
  20969. extra: 958 / 893,
  20970. bottom: 15 / 970.768
  20971. }
  20972. },
  20973. back: {
  20974. height: math.unit(5 + 8 / 12, "feet"),
  20975. weight: math.unit(120, "lb"),
  20976. name: "Back",
  20977. image: {
  20978. source: "./media/characters/logan-grey/back.svg",
  20979. extra: 958 / 893,
  20980. bottom: 2.1881 / 970.9788
  20981. }
  20982. },
  20983. dick: {
  20984. height: math.unit(1.437, "feet"),
  20985. name: "Dick",
  20986. image: {
  20987. source: "./media/characters/logan-grey/dick.svg"
  20988. }
  20989. },
  20990. },
  20991. [
  20992. {
  20993. name: "Normal",
  20994. height: math.unit(5 + 8 / 12, "feet")
  20995. },
  20996. {
  20997. name: "The 500 Foot Femboy",
  20998. height: math.unit(500, "feet"),
  20999. default: true
  21000. },
  21001. {
  21002. name: "Megmacro",
  21003. height: math.unit(20, "miles")
  21004. },
  21005. ]
  21006. ))
  21007. characterMakers.push(() => makeCharacter(
  21008. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21009. {
  21010. front: {
  21011. height: math.unit(8 + 2 / 12, "feet"),
  21012. weight: math.unit(275, "lb"),
  21013. name: "Front",
  21014. image: {
  21015. source: "./media/characters/draganta/front.svg",
  21016. extra: 1177 / 1135,
  21017. bottom: 33.46 / 1212.1
  21018. }
  21019. },
  21020. },
  21021. [
  21022. {
  21023. name: "Normal",
  21024. height: math.unit(8 + 6 / 12, "feet"),
  21025. default: true
  21026. },
  21027. {
  21028. name: "Macro",
  21029. height: math.unit(150, "feet")
  21030. },
  21031. {
  21032. name: "Megamacro",
  21033. height: math.unit(1000, "miles")
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21039. {
  21040. front: {
  21041. height: math.unit(1.72, "m"),
  21042. weight: math.unit(80, "lb"),
  21043. name: "Front",
  21044. image: {
  21045. source: "./media/characters/voski/front.svg",
  21046. extra: 2076.22 / 2022.4,
  21047. bottom: 102.7 / 2177.3866
  21048. }
  21049. },
  21050. frontNsfw: {
  21051. height: math.unit(1.72, "m"),
  21052. weight: math.unit(80, "lb"),
  21053. name: "Front (NSFW)",
  21054. image: {
  21055. source: "./media/characters/voski/front-nsfw.svg",
  21056. extra: 2076.22 / 2022.4,
  21057. bottom: 102.7 / 2177.3866
  21058. }
  21059. },
  21060. back: {
  21061. height: math.unit(1.72, "m"),
  21062. weight: math.unit(80, "lb"),
  21063. name: "Back",
  21064. image: {
  21065. source: "./media/characters/voski/back.svg",
  21066. extra: 2104 / 2051,
  21067. bottom: 10.45 / 2113.63
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Normal",
  21074. height: math.unit(1.72, "m")
  21075. },
  21076. {
  21077. name: "Macro",
  21078. height: math.unit(55, "m"),
  21079. default: true
  21080. },
  21081. {
  21082. name: "Macro+",
  21083. height: math.unit(300, "m")
  21084. },
  21085. {
  21086. name: "Macro++",
  21087. height: math.unit(700, "m")
  21088. },
  21089. {
  21090. name: "Macro+++",
  21091. height: math.unit(4500, "m")
  21092. },
  21093. {
  21094. name: "Macro++++",
  21095. height: math.unit(45, "km")
  21096. },
  21097. {
  21098. name: "Macro+++++",
  21099. height: math.unit(1220, "km")
  21100. },
  21101. ]
  21102. ))
  21103. characterMakers.push(() => makeCharacter(
  21104. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21105. {
  21106. front: {
  21107. height: math.unit(2.3, "m"),
  21108. weight: math.unit(304, "kg"),
  21109. name: "Front",
  21110. image: {
  21111. source: "./media/characters/icowom-lee/front.svg",
  21112. extra: 985 / 955,
  21113. bottom: 25.4 / 1012
  21114. }
  21115. },
  21116. fronttentacles: {
  21117. height: math.unit(2.3, "m"),
  21118. weight: math.unit(304, "kg"),
  21119. name: "Front-tentacles",
  21120. image: {
  21121. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21122. extra: 985 / 955,
  21123. bottom: 25.4 / 1012
  21124. }
  21125. },
  21126. back: {
  21127. height: math.unit(2.3, "m"),
  21128. weight: math.unit(304, "kg"),
  21129. name: "Back",
  21130. image: {
  21131. source: "./media/characters/icowom-lee/back.svg",
  21132. extra: 975 / 954,
  21133. bottom: 9.5 / 985
  21134. }
  21135. },
  21136. backtentacles: {
  21137. height: math.unit(2.3, "m"),
  21138. weight: math.unit(304, "kg"),
  21139. name: "Back-tentacles",
  21140. image: {
  21141. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21142. extra: 975 / 954,
  21143. bottom: 9.5 / 985
  21144. }
  21145. },
  21146. frontDressed: {
  21147. height: math.unit(2.3, "m"),
  21148. weight: math.unit(304, "kg"),
  21149. name: "Front (Dressed)",
  21150. image: {
  21151. source: "./media/characters/icowom-lee/front-dressed.svg",
  21152. extra: 3076 / 2933,
  21153. bottom: 51.4 / 3125.1889
  21154. }
  21155. },
  21156. rump: {
  21157. height: math.unit(0.776, "meters"),
  21158. name: "Rump",
  21159. image: {
  21160. source: "./media/characters/icowom-lee/rump.svg"
  21161. }
  21162. },
  21163. genitals: {
  21164. height: math.unit(0.78, "meters"),
  21165. name: "Genitals",
  21166. image: {
  21167. source: "./media/characters/icowom-lee/genitals.svg"
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Normal",
  21174. height: math.unit(2.3, "meters"),
  21175. default: true
  21176. },
  21177. {
  21178. name: "Macro",
  21179. height: math.unit(94, "meters"),
  21180. default: true
  21181. },
  21182. ]
  21183. ))
  21184. characterMakers.push(() => makeCharacter(
  21185. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21186. {
  21187. front: {
  21188. height: math.unit(22, "meters"),
  21189. weight: math.unit(21000, "kg"),
  21190. name: "Front",
  21191. image: {
  21192. source: "./media/characters/shock-diamond/front.svg",
  21193. extra: 2204 / 2053,
  21194. bottom: 65 / 2239.47
  21195. }
  21196. },
  21197. frontNude: {
  21198. height: math.unit(22, "meters"),
  21199. weight: math.unit(21000, "kg"),
  21200. name: "Front (Nude)",
  21201. image: {
  21202. source: "./media/characters/shock-diamond/front-nude.svg",
  21203. extra: 2514 / 2285,
  21204. bottom: 13 / 2527.56
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(3, "meters")
  21212. },
  21213. {
  21214. name: "Macro",
  21215. height: math.unit(22, "meters"),
  21216. default: true
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(5 + 4 / 12, "feet"),
  21225. weight: math.unit(120, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/rory/front.svg",
  21229. extra: 589 / 556,
  21230. bottom: 45.7 / 635.76
  21231. }
  21232. },
  21233. frontNude: {
  21234. height: math.unit(5 + 4 / 12, "feet"),
  21235. weight: math.unit(120, "lb"),
  21236. name: "Front (Nude)",
  21237. image: {
  21238. source: "./media/characters/rory/front-nude.svg",
  21239. extra: 589 / 556,
  21240. bottom: 45.7 / 635.76
  21241. }
  21242. },
  21243. side: {
  21244. height: math.unit(5 + 4 / 12, "feet"),
  21245. weight: math.unit(120, "lb"),
  21246. name: "Side",
  21247. image: {
  21248. source: "./media/characters/rory/side.svg",
  21249. extra: 597 / 564,
  21250. bottom: 55 / 653
  21251. }
  21252. },
  21253. back: {
  21254. height: math.unit(5 + 4 / 12, "feet"),
  21255. weight: math.unit(120, "lb"),
  21256. name: "Back",
  21257. image: {
  21258. source: "./media/characters/rory/back.svg",
  21259. extra: 620 / 585,
  21260. bottom: 8.86 / 630.43
  21261. }
  21262. },
  21263. dick: {
  21264. height: math.unit(0.86, "feet"),
  21265. name: "Dick",
  21266. image: {
  21267. source: "./media/characters/rory/dick.svg"
  21268. }
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Normal",
  21274. height: math.unit(5 + 4 / 12, "feet"),
  21275. default: true
  21276. },
  21277. {
  21278. name: "Macro",
  21279. height: math.unit(100, "feet")
  21280. },
  21281. {
  21282. name: "Macro+",
  21283. height: math.unit(140, "feet")
  21284. },
  21285. {
  21286. name: "Macro++",
  21287. height: math.unit(300, "feet")
  21288. },
  21289. ]
  21290. ))
  21291. characterMakers.push(() => makeCharacter(
  21292. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21293. {
  21294. front: {
  21295. height: math.unit(5 + 9 / 12, "feet"),
  21296. weight: math.unit(190, "lb"),
  21297. name: "Front",
  21298. image: {
  21299. source: "./media/characters/sprisk/front.svg",
  21300. extra: 1225 / 1180,
  21301. bottom: 42.7 / 1266.4
  21302. }
  21303. },
  21304. frontNsfw: {
  21305. height: math.unit(5 + 9 / 12, "feet"),
  21306. weight: math.unit(190, "lb"),
  21307. name: "Front (NSFW)",
  21308. image: {
  21309. source: "./media/characters/sprisk/front-nsfw.svg",
  21310. extra: 1225 / 1180,
  21311. bottom: 42.7 / 1266.4
  21312. }
  21313. },
  21314. back: {
  21315. height: math.unit(5 + 9 / 12, "feet"),
  21316. weight: math.unit(190, "lb"),
  21317. name: "Back",
  21318. image: {
  21319. source: "./media/characters/sprisk/back.svg",
  21320. extra: 1247 / 1200,
  21321. bottom: 5.6 / 1253.04
  21322. }
  21323. },
  21324. },
  21325. [
  21326. {
  21327. name: "Tiny",
  21328. height: math.unit(2, "inches")
  21329. },
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(5 + 9 / 12, "feet"),
  21333. default: true
  21334. },
  21335. {
  21336. name: "Mini Macro",
  21337. height: math.unit(18, "feet")
  21338. },
  21339. {
  21340. name: "Macro",
  21341. height: math.unit(100, "feet")
  21342. },
  21343. {
  21344. name: "MACRO",
  21345. height: math.unit(50, "miles")
  21346. },
  21347. {
  21348. name: "M A C R O",
  21349. height: math.unit(300, "miles")
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21355. {
  21356. side: {
  21357. height: math.unit(15.6, "meters"),
  21358. weight: math.unit(700000, "kg"),
  21359. name: "Side",
  21360. image: {
  21361. source: "./media/characters/bunsen/side.svg",
  21362. extra: 1644 / 358
  21363. }
  21364. },
  21365. foot: {
  21366. height: math.unit(1.611 * 1644 / 358, "meter"),
  21367. name: "Foot",
  21368. image: {
  21369. source: "./media/characters/bunsen/foot.svg"
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Small",
  21376. height: math.unit(10, "feet")
  21377. },
  21378. {
  21379. name: "Normal",
  21380. height: math.unit(15.6, "meters"),
  21381. default: true
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21387. {
  21388. front: {
  21389. height: math.unit(4 + 11 / 12, "feet"),
  21390. weight: math.unit(140, "lb"),
  21391. name: "Front",
  21392. image: {
  21393. source: "./media/characters/sesh/front.svg",
  21394. extra: 3420 / 3231,
  21395. bottom: 72 / 3949.5
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(4 + 11 / 12, "feet")
  21403. },
  21404. {
  21405. name: "Grown",
  21406. height: math.unit(15, "feet"),
  21407. default: true
  21408. },
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(1500, "feet")
  21412. },
  21413. {
  21414. name: "Megamacro",
  21415. height: math.unit(30, "miles")
  21416. },
  21417. {
  21418. name: "Continental",
  21419. height: math.unit(3000, "miles")
  21420. },
  21421. {
  21422. name: "Gravity Mass",
  21423. height: math.unit(300000, "miles")
  21424. },
  21425. {
  21426. name: "Planet Buster",
  21427. height: math.unit(30000000, "miles")
  21428. },
  21429. {
  21430. name: "Big",
  21431. height: math.unit(3000000000, "miles")
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(9, "feet"),
  21440. weight: math.unit(350, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/pepper/front.svg",
  21444. extra: 1448 / 1312,
  21445. bottom: 9.4 / 1457.88
  21446. }
  21447. },
  21448. back: {
  21449. height: math.unit(9, "feet"),
  21450. weight: math.unit(350, "lb"),
  21451. name: "Back",
  21452. image: {
  21453. source: "./media/characters/pepper/back.svg",
  21454. extra: 1423 / 1300,
  21455. bottom: 4.6 / 1429
  21456. }
  21457. },
  21458. maw: {
  21459. height: math.unit(0.932, "feet"),
  21460. name: "Maw",
  21461. image: {
  21462. source: "./media/characters/pepper/maw.svg"
  21463. }
  21464. },
  21465. },
  21466. [
  21467. {
  21468. name: "Normal",
  21469. height: math.unit(9, "feet"),
  21470. default: true
  21471. },
  21472. ]
  21473. ))
  21474. characterMakers.push(() => makeCharacter(
  21475. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21476. {
  21477. front: {
  21478. height: math.unit(6, "feet"),
  21479. weight: math.unit(150, "lb"),
  21480. name: "Front",
  21481. image: {
  21482. source: "./media/characters/maelstrom/front.svg",
  21483. extra: 2100 / 1883,
  21484. bottom: 94 / 2196.7
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Less Kaiju",
  21491. height: math.unit(200, "feet")
  21492. },
  21493. {
  21494. name: "Kaiju",
  21495. height: math.unit(400, "feet"),
  21496. default: true
  21497. },
  21498. {
  21499. name: "Kaiju-er",
  21500. height: math.unit(600, "feet")
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21506. {
  21507. front: {
  21508. height: math.unit(6 + 5 / 12, "feet"),
  21509. weight: math.unit(180, "lb"),
  21510. name: "Front",
  21511. image: {
  21512. source: "./media/characters/lexir/front.svg",
  21513. extra: 180 / 172,
  21514. bottom: 12 / 192
  21515. }
  21516. },
  21517. back: {
  21518. height: math.unit(6 + 5 / 12, "feet"),
  21519. weight: math.unit(180, "lb"),
  21520. name: "Back",
  21521. image: {
  21522. source: "./media/characters/lexir/back.svg",
  21523. extra: 183.84 / 175.5,
  21524. bottom: 3.1 / 187
  21525. }
  21526. },
  21527. },
  21528. [
  21529. {
  21530. name: "Very Smal",
  21531. height: math.unit(1, "nm")
  21532. },
  21533. {
  21534. name: "Normal",
  21535. height: math.unit(6 + 5 / 12, "feet"),
  21536. default: true
  21537. },
  21538. {
  21539. name: "Macro",
  21540. height: math.unit(1, "mile")
  21541. },
  21542. {
  21543. name: "Megamacro",
  21544. height: math.unit(50, "miles")
  21545. },
  21546. ]
  21547. ))
  21548. characterMakers.push(() => makeCharacter(
  21549. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21550. {
  21551. front: {
  21552. height: math.unit(1.5, "meters"),
  21553. weight: math.unit(100, "lb"),
  21554. name: "Front",
  21555. image: {
  21556. source: "./media/characters/maksio/front.svg",
  21557. extra: 1549 / 1531,
  21558. bottom: 123.7 / 1674.5429
  21559. }
  21560. },
  21561. back: {
  21562. height: math.unit(1.5, "meters"),
  21563. weight: math.unit(100, "lb"),
  21564. name: "Back",
  21565. image: {
  21566. source: "./media/characters/maksio/back.svg",
  21567. extra: 1541 / 1509,
  21568. bottom: 97 / 1639
  21569. }
  21570. },
  21571. hand: {
  21572. height: math.unit(0.621, "feet"),
  21573. name: "Hand",
  21574. image: {
  21575. source: "./media/characters/maksio/hand.svg"
  21576. }
  21577. },
  21578. foot: {
  21579. height: math.unit(1.611, "feet"),
  21580. name: "Foot",
  21581. image: {
  21582. source: "./media/characters/maksio/foot.svg"
  21583. }
  21584. },
  21585. },
  21586. [
  21587. {
  21588. name: "Shrunken",
  21589. height: math.unit(10, "cm")
  21590. },
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(150, "cm"),
  21594. default: true
  21595. },
  21596. ]
  21597. ))
  21598. characterMakers.push(() => makeCharacter(
  21599. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21600. {
  21601. front: {
  21602. height: math.unit(100, "feet"),
  21603. name: "Front",
  21604. image: {
  21605. source: "./media/characters/erza-bear/front.svg",
  21606. extra: 2449 / 2390,
  21607. bottom: 46 / 2494
  21608. }
  21609. },
  21610. back: {
  21611. height: math.unit(100, "feet"),
  21612. name: "Back",
  21613. image: {
  21614. source: "./media/characters/erza-bear/back.svg",
  21615. extra: 2489 / 2430,
  21616. bottom: 85.4 / 2480
  21617. }
  21618. },
  21619. tail: {
  21620. height: math.unit(42, "feet"),
  21621. name: "Tail",
  21622. image: {
  21623. source: "./media/characters/erza-bear/tail.svg"
  21624. }
  21625. },
  21626. tongue: {
  21627. height: math.unit(8, "feet"),
  21628. name: "Tongue",
  21629. image: {
  21630. source: "./media/characters/erza-bear/tongue.svg"
  21631. }
  21632. },
  21633. dick: {
  21634. height: math.unit(10.5, "feet"),
  21635. name: "Dick",
  21636. image: {
  21637. source: "./media/characters/erza-bear/dick.svg"
  21638. }
  21639. },
  21640. dickVertical: {
  21641. height: math.unit(16.9, "feet"),
  21642. name: "Dick (Vertical)",
  21643. image: {
  21644. source: "./media/characters/erza-bear/dick-vertical.svg"
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Macro",
  21651. height: math.unit(100, "feet"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(172, "cm"),
  21661. weight: math.unit(73, "kg"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/violet-flor/front.svg",
  21665. extra: 1530 / 1442,
  21666. bottom: 61.9 / 1588.8
  21667. }
  21668. },
  21669. back: {
  21670. height: math.unit(180, "cm"),
  21671. weight: math.unit(73, "kg"),
  21672. name: "Back",
  21673. image: {
  21674. source: "./media/characters/violet-flor/back.svg",
  21675. extra: 1692 / 1630,
  21676. bottom: 20 / 1712
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Normal",
  21683. height: math.unit(172, "cm"),
  21684. default: true
  21685. },
  21686. ]
  21687. ))
  21688. characterMakers.push(() => makeCharacter(
  21689. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21690. {
  21691. front: {
  21692. height: math.unit(6, "feet"),
  21693. weight: math.unit(220, "lb"),
  21694. name: "Front",
  21695. image: {
  21696. source: "./media/characters/lynn-rhea/front.svg",
  21697. extra: 310 / 273
  21698. }
  21699. },
  21700. back: {
  21701. height: math.unit(6, "feet"),
  21702. weight: math.unit(220, "lb"),
  21703. name: "Back",
  21704. image: {
  21705. source: "./media/characters/lynn-rhea/back.svg",
  21706. extra: 310 / 273
  21707. }
  21708. },
  21709. dicks: {
  21710. height: math.unit(0.9, "feet"),
  21711. name: "Dicks",
  21712. image: {
  21713. source: "./media/characters/lynn-rhea/dicks.svg"
  21714. }
  21715. },
  21716. slit: {
  21717. height: math.unit(0.4, "feet"),
  21718. name: "Slit",
  21719. image: {
  21720. source: "./media/characters/lynn-rhea/slit.svg"
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Micro",
  21727. height: math.unit(1, "inch")
  21728. },
  21729. {
  21730. name: "Macro",
  21731. height: math.unit(60, "feet"),
  21732. default: true
  21733. },
  21734. {
  21735. name: "Megamacro",
  21736. height: math.unit(2, "miles")
  21737. },
  21738. {
  21739. name: "Gigamacro",
  21740. height: math.unit(3, "earths")
  21741. },
  21742. {
  21743. name: "Galactic",
  21744. height: math.unit(0.8, "galaxies")
  21745. },
  21746. ]
  21747. ))
  21748. characterMakers.push(() => makeCharacter(
  21749. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21750. {
  21751. front: {
  21752. height: math.unit(1600, "feet"),
  21753. weight: math.unit(85758785169, "kg"),
  21754. name: "Front",
  21755. image: {
  21756. source: "./media/characters/valathos/front.svg",
  21757. extra: 1451 / 1339
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Macro",
  21764. height: math.unit(1600, "feet"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(7 + 5 / 12, "feet"),
  21774. weight: math.unit(300, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/azula/front.svg",
  21778. extra: 3208 / 2880,
  21779. bottom: 80.2 / 3277
  21780. }
  21781. },
  21782. back: {
  21783. height: math.unit(7 + 5 / 12, "feet"),
  21784. weight: math.unit(300, "lb"),
  21785. name: "Back",
  21786. image: {
  21787. source: "./media/characters/azula/back.svg",
  21788. extra: 3169 / 2822,
  21789. bottom: 150.6 / 3321
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(7 + 5 / 12, "feet"),
  21797. default: true
  21798. },
  21799. {
  21800. name: "Big",
  21801. height: math.unit(20, "feet")
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21807. {
  21808. front: {
  21809. height: math.unit(5 + 1 / 12, "feet"),
  21810. weight: math.unit(110, "lb"),
  21811. name: "Front",
  21812. image: {
  21813. source: "./media/characters/rupert/front.svg",
  21814. extra: 1549 / 1495,
  21815. bottom: 54.2 / 1604.4
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(5 + 1 / 12, "feet"),
  21823. default: true
  21824. },
  21825. ]
  21826. ))
  21827. characterMakers.push(() => makeCharacter(
  21828. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21829. {
  21830. front: {
  21831. height: math.unit(8 + 4 / 12, "feet"),
  21832. weight: math.unit(350, "lb"),
  21833. name: "Front",
  21834. image: {
  21835. source: "./media/characters/sheera-castellar/front.svg",
  21836. extra: 1957 / 1894,
  21837. bottom: 26.97 / 1975.017
  21838. }
  21839. },
  21840. side: {
  21841. height: math.unit(8 + 4 / 12, "feet"),
  21842. weight: math.unit(350, "lb"),
  21843. name: "Side",
  21844. image: {
  21845. source: "./media/characters/sheera-castellar/side.svg",
  21846. extra: 1957 / 1894
  21847. }
  21848. },
  21849. back: {
  21850. height: math.unit(8 + 4 / 12, "feet"),
  21851. weight: math.unit(350, "lb"),
  21852. name: "Back",
  21853. image: {
  21854. source: "./media/characters/sheera-castellar/back.svg",
  21855. extra: 1957 / 1894
  21856. }
  21857. },
  21858. angled: {
  21859. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  21860. weight: math.unit(350, "lb"),
  21861. name: "Angled",
  21862. image: {
  21863. source: "./media/characters/sheera-castellar/angled.svg",
  21864. extra: 1807 / 1707,
  21865. bottom: 68 / 1875
  21866. }
  21867. },
  21868. genitals: {
  21869. height: math.unit(2.2, "feet"),
  21870. name: "Genitals",
  21871. image: {
  21872. source: "./media/characters/sheera-castellar/genitals.svg"
  21873. }
  21874. },
  21875. },
  21876. [
  21877. {
  21878. name: "Normal",
  21879. height: math.unit(8 + 4 / 12, "feet")
  21880. },
  21881. {
  21882. name: "Macro",
  21883. height: math.unit(150, "feet"),
  21884. default: true
  21885. },
  21886. {
  21887. name: "Macro+",
  21888. height: math.unit(800, "feet")
  21889. },
  21890. ]
  21891. ))
  21892. characterMakers.push(() => makeCharacter(
  21893. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21894. {
  21895. front: {
  21896. height: math.unit(6, "feet"),
  21897. weight: math.unit(150, "lb"),
  21898. name: "Front",
  21899. image: {
  21900. source: "./media/characters/jaipur/front.svg",
  21901. extra: 3860 / 3731,
  21902. bottom: 287 / 4140
  21903. }
  21904. },
  21905. back: {
  21906. height: math.unit(6, "feet"),
  21907. weight: math.unit(150, "lb"),
  21908. name: "Back",
  21909. image: {
  21910. source: "./media/characters/jaipur/back.svg",
  21911. extra: 4060 / 3930,
  21912. bottom: 151 / 4200
  21913. }
  21914. },
  21915. },
  21916. [
  21917. {
  21918. name: "Normal",
  21919. height: math.unit(1.85, "meters"),
  21920. default: true
  21921. },
  21922. {
  21923. name: "Macro",
  21924. height: math.unit(150, "meters")
  21925. },
  21926. {
  21927. name: "Macro+",
  21928. height: math.unit(0.5, "miles")
  21929. },
  21930. {
  21931. name: "Macro++",
  21932. height: math.unit(2.5, "miles")
  21933. },
  21934. {
  21935. name: "Macro+++",
  21936. height: math.unit(12, "miles")
  21937. },
  21938. {
  21939. name: "Macro++++",
  21940. height: math.unit(120, "miles")
  21941. },
  21942. {
  21943. name: "Macro+++++",
  21944. height: math.unit(1200, "miles")
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21950. {
  21951. front: {
  21952. height: math.unit(6, "feet"),
  21953. weight: math.unit(150, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/sheila-wolf/front.svg",
  21957. extra: 1931 / 1808,
  21958. bottom: 29.5 / 1960
  21959. }
  21960. },
  21961. dick: {
  21962. height: math.unit(1.464, "feet"),
  21963. name: "Dick",
  21964. image: {
  21965. source: "./media/characters/sheila-wolf/dick.svg"
  21966. }
  21967. },
  21968. muzzle: {
  21969. height: math.unit(0.513, "feet"),
  21970. name: "Muzzle",
  21971. image: {
  21972. source: "./media/characters/sheila-wolf/muzzle.svg"
  21973. }
  21974. },
  21975. },
  21976. [
  21977. {
  21978. name: "Macro",
  21979. height: math.unit(70, "feet"),
  21980. default: true
  21981. },
  21982. ]
  21983. ))
  21984. characterMakers.push(() => makeCharacter(
  21985. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21986. {
  21987. front: {
  21988. height: math.unit(32, "meters"),
  21989. weight: math.unit(300000, "kg"),
  21990. name: "Front",
  21991. image: {
  21992. source: "./media/characters/almor/front.svg",
  21993. extra: 1408 / 1322,
  21994. bottom: 94.6 / 1506.5
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Macro",
  22001. height: math.unit(32, "meters"),
  22002. default: true
  22003. },
  22004. ]
  22005. ))
  22006. characterMakers.push(() => makeCharacter(
  22007. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22008. {
  22009. front: {
  22010. height: math.unit(7, "feet"),
  22011. weight: math.unit(200, "lb"),
  22012. name: "Front",
  22013. image: {
  22014. source: "./media/characters/silver/front.svg",
  22015. extra: 472.1 / 450.5,
  22016. bottom: 26.5 / 499.424
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Normal",
  22023. height: math.unit(7, "feet"),
  22024. default: true
  22025. },
  22026. {
  22027. name: "Macro",
  22028. height: math.unit(800, "feet")
  22029. },
  22030. {
  22031. name: "Megamacro",
  22032. height: math.unit(250, "miles")
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(6, "feet"),
  22041. weight: math.unit(150, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/pliskin/front.svg",
  22045. extra: 1469 / 1359,
  22046. bottom: 70 / 1540
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Micro",
  22053. height: math.unit(3, "inches")
  22054. },
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(5 + 11 / 12, "feet"),
  22058. default: true
  22059. },
  22060. {
  22061. name: "Macro",
  22062. height: math.unit(120, "feet")
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22068. {
  22069. front: {
  22070. height: math.unit(6, "feet"),
  22071. weight: math.unit(150, "lb"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/sammy/front.svg",
  22075. extra: 1193 / 1089,
  22076. bottom: 30.5 / 1226
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Macro",
  22083. height: math.unit(1700, "feet"),
  22084. default: true
  22085. },
  22086. {
  22087. name: "Examacro",
  22088. height: math.unit(2.5e9, "lightyears")
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22094. {
  22095. front: {
  22096. height: math.unit(21, "meters"),
  22097. weight: math.unit(12, "tonnes"),
  22098. name: "Front",
  22099. image: {
  22100. source: "./media/characters/kuru/front.svg",
  22101. extra: 4301 / 3785,
  22102. bottom: 371.3 / 4691
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Macro",
  22109. height: math.unit(21, "meters"),
  22110. default: true
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22116. {
  22117. front: {
  22118. height: math.unit(23, "meters"),
  22119. weight: math.unit(12.2, "tonnes"),
  22120. name: "Front",
  22121. image: {
  22122. source: "./media/characters/rakka/front.svg",
  22123. extra: 4670 / 4169,
  22124. bottom: 301 / 4968.7
  22125. }
  22126. },
  22127. },
  22128. [
  22129. {
  22130. name: "Macro",
  22131. height: math.unit(23, "meters"),
  22132. default: true
  22133. },
  22134. ]
  22135. ))
  22136. characterMakers.push(() => makeCharacter(
  22137. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22138. {
  22139. front: {
  22140. height: math.unit(6, "feet"),
  22141. weight: math.unit(150, "lb"),
  22142. name: "Front",
  22143. image: {
  22144. source: "./media/characters/rhys-feline/front.svg",
  22145. extra: 2488 / 2308,
  22146. bottom: 35.67 / 2519.19
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Really Small",
  22153. height: math.unit(1, "nm")
  22154. },
  22155. {
  22156. name: "Micro",
  22157. height: math.unit(4, "inches")
  22158. },
  22159. {
  22160. name: "Normal",
  22161. height: math.unit(4 + 10 / 12, "feet"),
  22162. default: true
  22163. },
  22164. {
  22165. name: "Macro",
  22166. height: math.unit(100, "feet")
  22167. },
  22168. {
  22169. name: "Megamacto",
  22170. height: math.unit(50, "miles")
  22171. },
  22172. ]
  22173. ))
  22174. characterMakers.push(() => makeCharacter(
  22175. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22176. {
  22177. side: {
  22178. height: math.unit(30, "feet"),
  22179. weight: math.unit(35000, "kg"),
  22180. name: "Side",
  22181. image: {
  22182. source: "./media/characters/alydar/side.svg",
  22183. extra: 234 / 222,
  22184. bottom: 6.5 / 241
  22185. }
  22186. },
  22187. front: {
  22188. height: math.unit(30, "feet"),
  22189. weight: math.unit(35000, "kg"),
  22190. name: "Front",
  22191. image: {
  22192. source: "./media/characters/alydar/front.svg",
  22193. extra: 223.37 / 210.2,
  22194. bottom: 22.3 / 246.76
  22195. }
  22196. },
  22197. top: {
  22198. height: math.unit(64.54, "feet"),
  22199. weight: math.unit(35000, "kg"),
  22200. name: "Top",
  22201. image: {
  22202. source: "./media/characters/alydar/top.svg"
  22203. }
  22204. },
  22205. anthro: {
  22206. height: math.unit(30, "feet"),
  22207. weight: math.unit(9000, "kg"),
  22208. name: "Anthro",
  22209. image: {
  22210. source: "./media/characters/alydar/anthro.svg",
  22211. extra: 432 / 421,
  22212. bottom: 7.18 / 440
  22213. }
  22214. },
  22215. maw: {
  22216. height: math.unit(11.693, "feet"),
  22217. name: "Maw",
  22218. image: {
  22219. source: "./media/characters/alydar/maw.svg"
  22220. }
  22221. },
  22222. head: {
  22223. height: math.unit(11.693, "feet"),
  22224. name: "Head",
  22225. image: {
  22226. source: "./media/characters/alydar/head.svg"
  22227. }
  22228. },
  22229. headAlt: {
  22230. height: math.unit(12.861, "feet"),
  22231. name: "Head (Alt)",
  22232. image: {
  22233. source: "./media/characters/alydar/head-alt.svg"
  22234. }
  22235. },
  22236. wing: {
  22237. height: math.unit(20.712, "feet"),
  22238. name: "Wing",
  22239. image: {
  22240. source: "./media/characters/alydar/wing.svg"
  22241. }
  22242. },
  22243. wingFeather: {
  22244. height: math.unit(9.662, "feet"),
  22245. name: "Wing Feather",
  22246. image: {
  22247. source: "./media/characters/alydar/wing-feather.svg"
  22248. }
  22249. },
  22250. countourFeather: {
  22251. height: math.unit(4.154, "feet"),
  22252. name: "Contour Feather",
  22253. image: {
  22254. source: "./media/characters/alydar/contour-feather.svg"
  22255. }
  22256. },
  22257. },
  22258. [
  22259. {
  22260. name: "Diplomatic",
  22261. height: math.unit(13, "feet"),
  22262. default: true
  22263. },
  22264. {
  22265. name: "Small",
  22266. height: math.unit(30, "feet")
  22267. },
  22268. {
  22269. name: "Normal",
  22270. height: math.unit(95, "feet"),
  22271. default: true
  22272. },
  22273. {
  22274. name: "Large",
  22275. height: math.unit(285, "feet")
  22276. },
  22277. {
  22278. name: "Incomprehensible",
  22279. height: math.unit(450, "megameters")
  22280. },
  22281. ]
  22282. ))
  22283. characterMakers.push(() => makeCharacter(
  22284. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22285. {
  22286. side: {
  22287. height: math.unit(11, "feet"),
  22288. weight: math.unit(1750, "kg"),
  22289. name: "Side",
  22290. image: {
  22291. source: "./media/characters/selicia/side.svg",
  22292. extra: 440 / 396,
  22293. bottom: 24.8 / 465.979
  22294. }
  22295. },
  22296. maw: {
  22297. height: math.unit(4.665, "feet"),
  22298. name: "Maw",
  22299. image: {
  22300. source: "./media/characters/selicia/maw.svg"
  22301. }
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(11, "feet"),
  22308. default: true
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22314. {
  22315. side: {
  22316. height: math.unit(2 + 6 / 12, "feet"),
  22317. weight: math.unit(30, "lb"),
  22318. name: "Side",
  22319. image: {
  22320. source: "./media/characters/layla/side.svg",
  22321. extra: 244 / 188,
  22322. bottom: 18.2 / 262.1
  22323. }
  22324. },
  22325. back: {
  22326. height: math.unit(2 + 6 / 12, "feet"),
  22327. weight: math.unit(30, "lb"),
  22328. name: "Back",
  22329. image: {
  22330. source: "./media/characters/layla/back.svg",
  22331. extra: 308 / 241.5,
  22332. bottom: 8.9 / 316.8
  22333. }
  22334. },
  22335. cumming: {
  22336. height: math.unit(2 + 6 / 12, "feet"),
  22337. weight: math.unit(30, "lb"),
  22338. name: "Cumming",
  22339. image: {
  22340. source: "./media/characters/layla/cumming.svg",
  22341. extra: 342 / 279,
  22342. bottom: 595 / 938
  22343. }
  22344. },
  22345. dickFlaccid: {
  22346. height: math.unit(2.595, "feet"),
  22347. name: "Flaccid Genitals",
  22348. image: {
  22349. source: "./media/characters/layla/dick-flaccid.svg"
  22350. }
  22351. },
  22352. dickErect: {
  22353. height: math.unit(2.359, "feet"),
  22354. name: "Erect Genitals",
  22355. image: {
  22356. source: "./media/characters/layla/dick-erect.svg"
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Micro",
  22363. height: math.unit(1, "inch")
  22364. },
  22365. {
  22366. name: "Small",
  22367. height: math.unit(1, "foot")
  22368. },
  22369. {
  22370. name: "Normal",
  22371. height: math.unit(2 + 6 / 12, "feet"),
  22372. default: true
  22373. },
  22374. {
  22375. name: "Macro",
  22376. height: math.unit(200, "feet")
  22377. },
  22378. {
  22379. name: "Megamacro",
  22380. height: math.unit(1000, "miles")
  22381. },
  22382. {
  22383. name: "Planetary",
  22384. height: math.unit(8000, "miles")
  22385. },
  22386. {
  22387. name: "True Layla",
  22388. height: math.unit(200000 * 7, "multiverses")
  22389. },
  22390. ]
  22391. ))
  22392. characterMakers.push(() => makeCharacter(
  22393. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22394. {
  22395. back: {
  22396. height: math.unit(10.5, "feet"),
  22397. weight: math.unit(800, "lb"),
  22398. name: "Back",
  22399. image: {
  22400. source: "./media/characters/knox/back.svg",
  22401. extra: 1486 / 1089,
  22402. bottom: 107 / 1601.4
  22403. }
  22404. },
  22405. side: {
  22406. height: math.unit(10.5, "feet"),
  22407. weight: math.unit(800, "lb"),
  22408. name: "Side",
  22409. image: {
  22410. source: "./media/characters/knox/side.svg",
  22411. extra: 244 / 218,
  22412. bottom: 14 / 260
  22413. }
  22414. },
  22415. },
  22416. [
  22417. {
  22418. name: "Compact",
  22419. height: math.unit(10.5, "feet"),
  22420. default: true
  22421. },
  22422. {
  22423. name: "Dynamax",
  22424. height: math.unit(210, "feet")
  22425. },
  22426. {
  22427. name: "Full Macro",
  22428. height: math.unit(850, "feet")
  22429. },
  22430. ]
  22431. ))
  22432. characterMakers.push(() => makeCharacter(
  22433. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22434. {
  22435. front: {
  22436. height: math.unit(6, "feet"),
  22437. weight: math.unit(152, "lb"),
  22438. name: "Front",
  22439. image: {
  22440. source: "./media/characters/shin-pikachu/front.svg",
  22441. extra: 1574 / 1480,
  22442. bottom: 53.3 / 1626
  22443. }
  22444. },
  22445. hand: {
  22446. height: math.unit(1.055, "feet"),
  22447. name: "Hand",
  22448. image: {
  22449. source: "./media/characters/shin-pikachu/hand.svg"
  22450. }
  22451. },
  22452. foot: {
  22453. height: math.unit(1.1, "feet"),
  22454. name: "Foot",
  22455. image: {
  22456. source: "./media/characters/shin-pikachu/foot.svg"
  22457. }
  22458. },
  22459. collar: {
  22460. height: math.unit(0.386, "feet"),
  22461. name: "Collar",
  22462. image: {
  22463. source: "./media/characters/shin-pikachu/collar.svg"
  22464. }
  22465. },
  22466. },
  22467. [
  22468. {
  22469. name: "Smallest",
  22470. height: math.unit(0.5, "inches")
  22471. },
  22472. {
  22473. name: "Micro",
  22474. height: math.unit(6, "inches")
  22475. },
  22476. {
  22477. name: "Normal",
  22478. height: math.unit(6, "feet"),
  22479. default: true
  22480. },
  22481. {
  22482. name: "Macro",
  22483. height: math.unit(150, "feet")
  22484. },
  22485. ]
  22486. ))
  22487. characterMakers.push(() => makeCharacter(
  22488. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22489. {
  22490. front: {
  22491. height: math.unit(28, "feet"),
  22492. weight: math.unit(10500, "lb"),
  22493. name: "Front",
  22494. image: {
  22495. source: "./media/characters/kayda/front.svg",
  22496. extra: 1536 / 1428,
  22497. bottom: 68.7 / 1603
  22498. }
  22499. },
  22500. back: {
  22501. height: math.unit(28, "feet"),
  22502. weight: math.unit(10500, "lb"),
  22503. name: "Back",
  22504. image: {
  22505. source: "./media/characters/kayda/back.svg",
  22506. extra: 1557 / 1464,
  22507. bottom: 39.5 / 1597.49
  22508. }
  22509. },
  22510. dick: {
  22511. height: math.unit(3.858, "feet"),
  22512. name: "Dick",
  22513. image: {
  22514. source: "./media/characters/kayda/dick.svg"
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Macro",
  22521. height: math.unit(28, "feet"),
  22522. default: true
  22523. },
  22524. ]
  22525. ))
  22526. characterMakers.push(() => makeCharacter(
  22527. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22528. {
  22529. front: {
  22530. height: math.unit(10 + 11 / 12, "feet"),
  22531. weight: math.unit(1400, "lb"),
  22532. name: "Front",
  22533. image: {
  22534. source: "./media/characters/brian/front.svg",
  22535. extra: 737 / 692,
  22536. bottom: 55.4 / 785
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Normal",
  22543. height: math.unit(10 + 11 / 12, "feet"),
  22544. default: true
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(5 + 8 / 12, "feet"),
  22553. weight: math.unit(140, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/khemri/front.svg",
  22557. extra: 4780 / 4059,
  22558. bottom: 80.1 / 4859.25
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Micro",
  22565. height: math.unit(6, "inches")
  22566. },
  22567. {
  22568. name: "Normal",
  22569. height: math.unit(5 + 8 / 12, "feet"),
  22570. default: true
  22571. },
  22572. ]
  22573. ))
  22574. characterMakers.push(() => makeCharacter(
  22575. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22576. {
  22577. front: {
  22578. height: math.unit(13, "feet"),
  22579. weight: math.unit(1700, "lb"),
  22580. name: "Front",
  22581. image: {
  22582. source: "./media/characters/felix-braveheart/front.svg",
  22583. extra: 1222 / 1157,
  22584. bottom: 53.2 / 1280
  22585. }
  22586. },
  22587. back: {
  22588. height: math.unit(13, "feet"),
  22589. weight: math.unit(1700, "lb"),
  22590. name: "Back",
  22591. image: {
  22592. source: "./media/characters/felix-braveheart/back.svg",
  22593. extra: 1277 / 1203,
  22594. bottom: 50.2 / 1327
  22595. }
  22596. },
  22597. feral: {
  22598. height: math.unit(6, "feet"),
  22599. weight: math.unit(400, "lb"),
  22600. name: "Feral",
  22601. image: {
  22602. source: "./media/characters/felix-braveheart/feral.svg",
  22603. extra: 682 / 625,
  22604. bottom: 6.9 / 688
  22605. }
  22606. },
  22607. },
  22608. [
  22609. {
  22610. name: "Normal",
  22611. height: math.unit(13, "feet"),
  22612. default: true
  22613. },
  22614. ]
  22615. ))
  22616. characterMakers.push(() => makeCharacter(
  22617. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22618. {
  22619. side: {
  22620. height: math.unit(5 + 11 / 12, "feet"),
  22621. weight: math.unit(1400, "lb"),
  22622. name: "Side",
  22623. image: {
  22624. source: "./media/characters/shadow-blade/side.svg",
  22625. extra: 1726 / 1267,
  22626. bottom: 58.4 / 1785
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "Normal",
  22633. height: math.unit(5 + 11 / 12, "feet"),
  22634. default: true
  22635. },
  22636. ]
  22637. ))
  22638. characterMakers.push(() => makeCharacter(
  22639. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22640. {
  22641. front: {
  22642. height: math.unit(1 + 6 / 12, "feet"),
  22643. weight: math.unit(25, "lb"),
  22644. name: "Front",
  22645. image: {
  22646. source: "./media/characters/karla-halldor/front.svg",
  22647. extra: 1459 / 1383,
  22648. bottom: 12 / 1472
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Normal",
  22655. height: math.unit(1 + 6 / 12, "feet"),
  22656. default: true
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22662. {
  22663. front: {
  22664. height: math.unit(6 + 2 / 12, "feet"),
  22665. weight: math.unit(160, "lb"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/ariam/front.svg",
  22669. extra: 714 / 617,
  22670. bottom: 23.4 / 737,
  22671. }
  22672. },
  22673. squatting: {
  22674. height: math.unit(4.1, "feet"),
  22675. weight: math.unit(160, "lb"),
  22676. name: "Squatting",
  22677. image: {
  22678. source: "./media/characters/ariam/squatting.svg",
  22679. extra: 2617 / 2112,
  22680. bottom: 61.2 / 2681,
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(6 + 2 / 12, "feet"),
  22688. default: true
  22689. },
  22690. {
  22691. name: "Normal+",
  22692. height: math.unit(4, "meters")
  22693. },
  22694. {
  22695. name: "Macro",
  22696. height: math.unit(50, "meters")
  22697. },
  22698. {
  22699. name: "Macro+",
  22700. height: math.unit(100, "meters")
  22701. },
  22702. {
  22703. name: "Megamacro",
  22704. height: math.unit(20, "km")
  22705. },
  22706. ]
  22707. ))
  22708. characterMakers.push(() => makeCharacter(
  22709. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22710. {
  22711. front: {
  22712. height: math.unit(1.67, "meters"),
  22713. weight: math.unit(140, "lb"),
  22714. name: "Front",
  22715. image: {
  22716. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22717. extra: 438 / 410,
  22718. bottom: 0.75 / 439
  22719. }
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Shrunken",
  22725. height: math.unit(7.6, "cm")
  22726. },
  22727. {
  22728. name: "Human Scale",
  22729. height: math.unit(1.67, "meters")
  22730. },
  22731. {
  22732. name: "Wolxi Scale",
  22733. height: math.unit(36.7, "meters"),
  22734. default: true
  22735. },
  22736. ]
  22737. ))
  22738. characterMakers.push(() => makeCharacter(
  22739. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22740. {
  22741. front: {
  22742. height: math.unit(1.73, "meters"),
  22743. weight: math.unit(240, "lb"),
  22744. name: "Front",
  22745. image: {
  22746. source: "./media/characters/izue-two-mothers/front.svg",
  22747. extra: 469 / 437,
  22748. bottom: 1.24 / 470.6
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Shrunken",
  22755. height: math.unit(7.86, "cm")
  22756. },
  22757. {
  22758. name: "Human Scale",
  22759. height: math.unit(1.73, "meters")
  22760. },
  22761. {
  22762. name: "Wolxi Scale",
  22763. height: math.unit(38, "meters"),
  22764. default: true
  22765. },
  22766. ]
  22767. ))
  22768. characterMakers.push(() => makeCharacter(
  22769. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22770. {
  22771. front: {
  22772. height: math.unit(1.55, "meters"),
  22773. weight: math.unit(120, "lb"),
  22774. name: "Front",
  22775. image: {
  22776. source: "./media/characters/teeku-love-shack/front.svg",
  22777. extra: 387 / 362,
  22778. bottom: 1.51 / 388
  22779. }
  22780. },
  22781. },
  22782. [
  22783. {
  22784. name: "Shrunken",
  22785. height: math.unit(7, "cm")
  22786. },
  22787. {
  22788. name: "Human Scale",
  22789. height: math.unit(1.55, "meters")
  22790. },
  22791. {
  22792. name: "Wolxi Scale",
  22793. height: math.unit(34.1, "meters"),
  22794. default: true
  22795. },
  22796. ]
  22797. ))
  22798. characterMakers.push(() => makeCharacter(
  22799. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22800. {
  22801. front: {
  22802. height: math.unit(1.83, "meters"),
  22803. weight: math.unit(135, "lb"),
  22804. name: "Front",
  22805. image: {
  22806. source: "./media/characters/dejma-the-red/front.svg",
  22807. extra: 480 / 458,
  22808. bottom: 1.8 / 482
  22809. }
  22810. },
  22811. },
  22812. [
  22813. {
  22814. name: "Shrunken",
  22815. height: math.unit(8.3, "cm")
  22816. },
  22817. {
  22818. name: "Human Scale",
  22819. height: math.unit(1.83, "meters")
  22820. },
  22821. {
  22822. name: "Wolxi Scale",
  22823. height: math.unit(40, "meters"),
  22824. default: true
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22830. {
  22831. front: {
  22832. height: math.unit(1.78, "meters"),
  22833. weight: math.unit(65, "kg"),
  22834. name: "Front",
  22835. image: {
  22836. source: "./media/characters/aki/front.svg",
  22837. extra: 452 / 415
  22838. }
  22839. },
  22840. frontNsfw: {
  22841. height: math.unit(1.78, "meters"),
  22842. weight: math.unit(65, "kg"),
  22843. name: "Front (NSFW)",
  22844. image: {
  22845. source: "./media/characters/aki/front-nsfw.svg",
  22846. extra: 452 / 415
  22847. }
  22848. },
  22849. back: {
  22850. height: math.unit(1.78, "meters"),
  22851. weight: math.unit(65, "kg"),
  22852. name: "Back",
  22853. image: {
  22854. source: "./media/characters/aki/back.svg",
  22855. extra: 452 / 415
  22856. }
  22857. },
  22858. rump: {
  22859. height: math.unit(2.05, "feet"),
  22860. name: "Rump",
  22861. image: {
  22862. source: "./media/characters/aki/rump.svg"
  22863. }
  22864. },
  22865. dick: {
  22866. height: math.unit(0.95, "feet"),
  22867. name: "Dick",
  22868. image: {
  22869. source: "./media/characters/aki/dick.svg"
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Micro",
  22876. height: math.unit(15, "cm")
  22877. },
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(178, "cm"),
  22881. default: true
  22882. },
  22883. {
  22884. name: "Macro",
  22885. height: math.unit(214, "m")
  22886. },
  22887. {
  22888. name: "Macro+",
  22889. height: math.unit(534, "m")
  22890. },
  22891. ]
  22892. ))
  22893. characterMakers.push(() => makeCharacter(
  22894. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22895. {
  22896. front: {
  22897. height: math.unit(5 + 5 / 12, "feet"),
  22898. weight: math.unit(120, "lb"),
  22899. name: "Front",
  22900. image: {
  22901. source: "./media/characters/ari/front.svg",
  22902. extra: 714.5 / 682,
  22903. bottom: 8 / 722.5
  22904. }
  22905. },
  22906. },
  22907. [
  22908. {
  22909. name: "Normal",
  22910. height: math.unit(5 + 5 / 12, "feet")
  22911. },
  22912. {
  22913. name: "Macro",
  22914. height: math.unit(100, "feet"),
  22915. default: true
  22916. },
  22917. {
  22918. name: "Megamacro",
  22919. height: math.unit(100, "miles")
  22920. },
  22921. {
  22922. name: "Gigamacro",
  22923. height: math.unit(80000, "miles")
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22929. {
  22930. side: {
  22931. height: math.unit(9, "feet"),
  22932. weight: math.unit(400, "kg"),
  22933. name: "Side",
  22934. image: {
  22935. source: "./media/characters/bolt/side.svg",
  22936. extra: 1126 / 896,
  22937. bottom: 60 / 1187.3,
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Micro",
  22944. height: math.unit(5, "inches")
  22945. },
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(9, "feet"),
  22949. default: true
  22950. },
  22951. {
  22952. name: "Macro",
  22953. height: math.unit(700, "feet")
  22954. },
  22955. {
  22956. name: "Max Size",
  22957. height: math.unit(1.52e22, "yottameters")
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22963. {
  22964. front: {
  22965. height: math.unit(4.53, "meters"),
  22966. weight: math.unit(3, "tons"),
  22967. name: "Front",
  22968. image: {
  22969. source: "./media/characters/draekon-sylviar/front.svg",
  22970. extra: 1228 / 1068,
  22971. bottom: 41 / 1270
  22972. }
  22973. },
  22974. tail: {
  22975. height: math.unit(1.772, "meter"),
  22976. name: "Tail",
  22977. image: {
  22978. source: "./media/characters/draekon-sylviar/tail.svg"
  22979. }
  22980. },
  22981. head: {
  22982. height: math.unit(1.331, "meter"),
  22983. name: "Head",
  22984. image: {
  22985. source: "./media/characters/draekon-sylviar/head.svg"
  22986. }
  22987. },
  22988. hand: {
  22989. height: math.unit(0.564, "meter"),
  22990. name: "Hand",
  22991. image: {
  22992. source: "./media/characters/draekon-sylviar/hand.svg"
  22993. }
  22994. },
  22995. foot: {
  22996. height: math.unit(0.621, "meter"),
  22997. name: "Foot",
  22998. image: {
  22999. source: "./media/characters/draekon-sylviar/foot.svg",
  23000. bottom: 32 / 324
  23001. }
  23002. },
  23003. dick: {
  23004. height: math.unit(61, "cm"),
  23005. name: "Dick",
  23006. image: {
  23007. source: "./media/characters/draekon-sylviar/dick.svg"
  23008. }
  23009. },
  23010. dickseparated: {
  23011. height: math.unit(61, "cm"),
  23012. name: "Dick-separated",
  23013. image: {
  23014. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Small",
  23021. height: math.unit(4.53 / 2, "meters"),
  23022. default: true
  23023. },
  23024. {
  23025. name: "Normal",
  23026. height: math.unit(4.53, "meters"),
  23027. default: true
  23028. },
  23029. {
  23030. name: "Large",
  23031. height: math.unit(4.53 * 2, "meters"),
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23037. {
  23038. front: {
  23039. height: math.unit(6 + 2 / 12, "feet"),
  23040. weight: math.unit(180, "lb"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/brawler/front.svg",
  23044. extra: 3301 / 3027,
  23045. bottom: 138 / 3439
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Normal",
  23052. height: math.unit(6 + 2 / 12, "feet"),
  23053. default: true
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23059. {
  23060. front: {
  23061. height: math.unit(11, "feet"),
  23062. weight: math.unit(1000, "lb"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/alex/front.svg",
  23066. bottom: 44.5 / 620
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Micro",
  23073. height: math.unit(5, "inches")
  23074. },
  23075. {
  23076. name: "Normal",
  23077. height: math.unit(11, "feet"),
  23078. default: true
  23079. },
  23080. {
  23081. name: "Macro",
  23082. height: math.unit(9.5e9, "feet")
  23083. },
  23084. {
  23085. name: "Max Size",
  23086. height: math.unit(1.4e283, "yottameters")
  23087. },
  23088. ]
  23089. ))
  23090. characterMakers.push(() => makeCharacter(
  23091. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23092. {
  23093. female: {
  23094. height: math.unit(29.9, "m"),
  23095. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23096. name: "Female",
  23097. image: {
  23098. source: "./media/characters/zenari/female.svg",
  23099. extra: 3281.6 / 3217,
  23100. bottom: 72.2 / 3353
  23101. }
  23102. },
  23103. male: {
  23104. height: math.unit(27.7, "m"),
  23105. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23106. name: "Male",
  23107. image: {
  23108. source: "./media/characters/zenari/male.svg",
  23109. extra: 3008 / 2991,
  23110. bottom: 54.6 / 3069
  23111. }
  23112. },
  23113. },
  23114. [
  23115. {
  23116. name: "Macro",
  23117. height: math.unit(29.7, "meters"),
  23118. default: true
  23119. },
  23120. ]
  23121. ))
  23122. characterMakers.push(() => makeCharacter(
  23123. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23124. {
  23125. female: {
  23126. height: math.unit(23.8, "m"),
  23127. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23128. name: "Female",
  23129. image: {
  23130. source: "./media/characters/mactarian/female.svg",
  23131. extra: 2662 / 2569,
  23132. bottom: 73 / 2736
  23133. }
  23134. },
  23135. male: {
  23136. height: math.unit(23.8, "m"),
  23137. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23138. name: "Male",
  23139. image: {
  23140. source: "./media/characters/mactarian/male.svg",
  23141. extra: 2673 / 2600,
  23142. bottom: 76 / 2750
  23143. }
  23144. },
  23145. },
  23146. [
  23147. {
  23148. name: "Macro",
  23149. height: math.unit(23.8, "meters"),
  23150. default: true
  23151. },
  23152. ]
  23153. ))
  23154. characterMakers.push(() => makeCharacter(
  23155. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23156. {
  23157. female: {
  23158. height: math.unit(19.3, "m"),
  23159. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23160. name: "Female",
  23161. image: {
  23162. source: "./media/characters/umok/female.svg",
  23163. extra: 2186 / 2078,
  23164. bottom: 87 / 2277
  23165. }
  23166. },
  23167. male: {
  23168. height: math.unit(19.5, "m"),
  23169. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23170. name: "Male",
  23171. image: {
  23172. source: "./media/characters/umok/male.svg",
  23173. extra: 2233 / 2140,
  23174. bottom: 24.4 / 2258
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Macro",
  23181. height: math.unit(19.3, "meters"),
  23182. default: true
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23188. {
  23189. female: {
  23190. height: math.unit(26.15, "m"),
  23191. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23192. name: "Female",
  23193. image: {
  23194. source: "./media/characters/joraxian/female.svg",
  23195. extra: 2943 / 2831,
  23196. bottom: 27 / 2972
  23197. }
  23198. },
  23199. male: {
  23200. height: math.unit(25.4, "m"),
  23201. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23202. name: "Male",
  23203. image: {
  23204. source: "./media/characters/joraxian/male.svg",
  23205. extra: 2835 / 2741,
  23206. bottom: 27 / 2862
  23207. }
  23208. },
  23209. },
  23210. [
  23211. {
  23212. name: "Macro",
  23213. height: math.unit(26.15, "meters"),
  23214. default: true
  23215. },
  23216. ]
  23217. ))
  23218. characterMakers.push(() => makeCharacter(
  23219. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23220. {
  23221. female: {
  23222. height: math.unit(21.6, "m"),
  23223. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23224. name: "Female",
  23225. image: {
  23226. source: "./media/characters/sthara/female.svg",
  23227. extra: 2516 / 2347,
  23228. bottom: 21.5 / 2537
  23229. }
  23230. },
  23231. male: {
  23232. height: math.unit(24, "m"),
  23233. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23234. name: "Male",
  23235. image: {
  23236. source: "./media/characters/sthara/male.svg",
  23237. extra: 2732 / 2607,
  23238. bottom: 23 / 2732
  23239. }
  23240. },
  23241. },
  23242. [
  23243. {
  23244. name: "Macro",
  23245. height: math.unit(21.6, "meters"),
  23246. default: true
  23247. },
  23248. ]
  23249. ))
  23250. characterMakers.push(() => makeCharacter(
  23251. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23252. {
  23253. front: {
  23254. height: math.unit(6 + 4 / 12, "feet"),
  23255. weight: math.unit(175, "lb"),
  23256. name: "Front",
  23257. image: {
  23258. source: "./media/characters/luka-bryzant/front.svg",
  23259. extra: 311 / 289,
  23260. bottom: 4 / 315
  23261. }
  23262. },
  23263. back: {
  23264. height: math.unit(6 + 4 / 12, "feet"),
  23265. weight: math.unit(175, "lb"),
  23266. name: "Back",
  23267. image: {
  23268. source: "./media/characters/luka-bryzant/back.svg",
  23269. extra: 311 / 289,
  23270. bottom: 3.8 / 313.7
  23271. }
  23272. },
  23273. },
  23274. [
  23275. {
  23276. name: "Micro",
  23277. height: math.unit(10, "inches")
  23278. },
  23279. {
  23280. name: "Normal",
  23281. height: math.unit(6 + 4 / 12, "feet"),
  23282. default: true
  23283. },
  23284. {
  23285. name: "Large",
  23286. height: math.unit(12, "feet")
  23287. },
  23288. ]
  23289. ))
  23290. characterMakers.push(() => makeCharacter(
  23291. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23292. {
  23293. front: {
  23294. height: math.unit(5 + 7 / 12, "feet"),
  23295. weight: math.unit(185, "lb"),
  23296. name: "Front",
  23297. image: {
  23298. source: "./media/characters/aman-aquila/front.svg",
  23299. extra: 1013 / 976,
  23300. bottom: 45.6 / 1057
  23301. }
  23302. },
  23303. side: {
  23304. height: math.unit(5 + 7 / 12, "feet"),
  23305. weight: math.unit(185, "lb"),
  23306. name: "Side",
  23307. image: {
  23308. source: "./media/characters/aman-aquila/side.svg",
  23309. extra: 1054 / 1011,
  23310. bottom: 15 / 1070
  23311. }
  23312. },
  23313. back: {
  23314. height: math.unit(5 + 7 / 12, "feet"),
  23315. weight: math.unit(185, "lb"),
  23316. name: "Back",
  23317. image: {
  23318. source: "./media/characters/aman-aquila/back.svg",
  23319. extra: 1026 / 970,
  23320. bottom: 12 / 1039
  23321. }
  23322. },
  23323. head: {
  23324. height: math.unit(1.211, "feet"),
  23325. name: "Head",
  23326. image: {
  23327. source: "./media/characters/aman-aquila/head.svg",
  23328. }
  23329. },
  23330. },
  23331. [
  23332. {
  23333. name: "Minimicro",
  23334. height: math.unit(0.057, "inches")
  23335. },
  23336. {
  23337. name: "Micro",
  23338. height: math.unit(7, "inches")
  23339. },
  23340. {
  23341. name: "Mini",
  23342. height: math.unit(3 + 7 / 12, "feet")
  23343. },
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(5 + 7 / 12, "feet"),
  23347. default: true
  23348. },
  23349. {
  23350. name: "Macro",
  23351. height: math.unit(157 + 7 / 12, "feet")
  23352. },
  23353. {
  23354. name: "Megamacro",
  23355. height: math.unit(1557 + 7 / 12, "feet")
  23356. },
  23357. {
  23358. name: "Gigamacro",
  23359. height: math.unit(15557 + 7 / 12, "feet")
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(3 + 2 / 12, "inches"),
  23368. weight: math.unit(0.3, "ounces"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/hiphae/front.svg",
  23372. extra: 1931 / 1683,
  23373. bottom: 24 / 1955
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(3 + 1 / 2, "inches"),
  23381. default: true
  23382. },
  23383. ]
  23384. ))
  23385. characterMakers.push(() => makeCharacter(
  23386. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23387. {
  23388. front: {
  23389. height: math.unit(5 + 10 / 12, "feet"),
  23390. weight: math.unit(165, "lb"),
  23391. name: "Front",
  23392. image: {
  23393. source: "./media/characters/nicky/front.svg",
  23394. extra: 3144 / 2886,
  23395. bottom: 45.6 / 3192
  23396. }
  23397. },
  23398. back: {
  23399. height: math.unit(5 + 10 / 12, "feet"),
  23400. weight: math.unit(165, "lb"),
  23401. name: "Back",
  23402. image: {
  23403. source: "./media/characters/nicky/back.svg",
  23404. extra: 3055 / 2804,
  23405. bottom: 28.4 / 3087
  23406. }
  23407. },
  23408. frontclothed: {
  23409. height: math.unit(5 + 10 / 12, "feet"),
  23410. weight: math.unit(165, "lb"),
  23411. name: "Front-clothed",
  23412. image: {
  23413. source: "./media/characters/nicky/front-clothed.svg",
  23414. extra: 3184.9 / 2926.9,
  23415. bottom: 86.5 / 3239.9
  23416. }
  23417. },
  23418. foot: {
  23419. height: math.unit(1.16, "feet"),
  23420. name: "Foot",
  23421. image: {
  23422. source: "./media/characters/nicky/foot.svg"
  23423. }
  23424. },
  23425. feet: {
  23426. height: math.unit(1.34, "feet"),
  23427. name: "Feet",
  23428. image: {
  23429. source: "./media/characters/nicky/feet.svg"
  23430. }
  23431. },
  23432. maw: {
  23433. height: math.unit(0.9, "feet"),
  23434. name: "Maw",
  23435. image: {
  23436. source: "./media/characters/nicky/maw.svg"
  23437. }
  23438. },
  23439. },
  23440. [
  23441. {
  23442. name: "Normal",
  23443. height: math.unit(5 + 10 / 12, "feet"),
  23444. default: true
  23445. },
  23446. {
  23447. name: "Macro",
  23448. height: math.unit(60, "feet")
  23449. },
  23450. {
  23451. name: "Megamacro",
  23452. height: math.unit(1, "mile")
  23453. },
  23454. ]
  23455. ))
  23456. characterMakers.push(() => makeCharacter(
  23457. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23458. {
  23459. side: {
  23460. height: math.unit(10, "feet"),
  23461. weight: math.unit(600, "lb"),
  23462. name: "Side",
  23463. image: {
  23464. source: "./media/characters/blair/side.svg",
  23465. bottom: 16.6 / 475,
  23466. extra: 458 / 431
  23467. }
  23468. },
  23469. },
  23470. [
  23471. {
  23472. name: "Micro",
  23473. height: math.unit(8, "inches")
  23474. },
  23475. {
  23476. name: "Normal",
  23477. height: math.unit(10, "feet"),
  23478. default: true
  23479. },
  23480. {
  23481. name: "Macro",
  23482. height: math.unit(180, "feet")
  23483. },
  23484. ]
  23485. ))
  23486. characterMakers.push(() => makeCharacter(
  23487. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23488. {
  23489. front: {
  23490. height: math.unit(5 + 4 / 12, "feet"),
  23491. weight: math.unit(125, "lb"),
  23492. name: "Front",
  23493. image: {
  23494. source: "./media/characters/fisher/front.svg",
  23495. extra: 444 / 390,
  23496. bottom: 2 / 444.8
  23497. }
  23498. },
  23499. },
  23500. [
  23501. {
  23502. name: "Micro",
  23503. height: math.unit(4, "inches")
  23504. },
  23505. {
  23506. name: "Normal",
  23507. height: math.unit(5 + 4 / 12, "feet"),
  23508. default: true
  23509. },
  23510. {
  23511. name: "Macro",
  23512. height: math.unit(100, "feet")
  23513. },
  23514. ]
  23515. ))
  23516. characterMakers.push(() => makeCharacter(
  23517. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23518. {
  23519. front: {
  23520. height: math.unit(6.71, "feet"),
  23521. weight: math.unit(200, "lb"),
  23522. capacity: math.unit(1000000, "people"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/gliss/front.svg",
  23526. extra: 2347 / 2231,
  23527. bottom: 113 / 2462
  23528. }
  23529. },
  23530. hammerspaceSize: {
  23531. height: math.unit(6.71 * 717, "feet"),
  23532. weight: math.unit(200, "lb"),
  23533. capacity: math.unit(1000000, "people"),
  23534. name: "Hammerspace Size",
  23535. image: {
  23536. source: "./media/characters/gliss/front.svg",
  23537. extra: 2347 / 2231,
  23538. bottom: 113 / 2462
  23539. }
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Normal",
  23545. height: math.unit(6.71, "feet"),
  23546. default: true
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23552. {
  23553. side: {
  23554. height: math.unit(1.44, "m"),
  23555. weight: math.unit(80, "kg"),
  23556. name: "Side",
  23557. image: {
  23558. source: "./media/characters/dune-anderson/side.svg",
  23559. bottom: 49 / 1426
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Wolf-sized",
  23566. height: math.unit(1.44, "meters")
  23567. },
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(5.05, "meters"),
  23571. default: true
  23572. },
  23573. {
  23574. name: "Big",
  23575. height: math.unit(14.4, "meters")
  23576. },
  23577. {
  23578. name: "Huge",
  23579. height: math.unit(144, "meters")
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(7, "feet"),
  23588. weight: math.unit(425, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/hind/front.svg",
  23592. extra: 2091 / 1860,
  23593. bottom: 129 / 2220
  23594. }
  23595. },
  23596. back: {
  23597. height: math.unit(7, "feet"),
  23598. weight: math.unit(425, "lb"),
  23599. name: "Back",
  23600. image: {
  23601. source: "./media/characters/hind/back.svg",
  23602. extra: 2091 / 1860,
  23603. bottom: 24.6 / 2309
  23604. }
  23605. },
  23606. tail: {
  23607. height: math.unit(2.8, "feet"),
  23608. name: "Tail",
  23609. image: {
  23610. source: "./media/characters/hind/tail.svg"
  23611. }
  23612. },
  23613. head: {
  23614. height: math.unit(2.55, "feet"),
  23615. name: "Head",
  23616. image: {
  23617. source: "./media/characters/hind/head.svg"
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "XS",
  23624. height: math.unit(0.7, "feet")
  23625. },
  23626. {
  23627. name: "Normal",
  23628. height: math.unit(7, "feet"),
  23629. default: true
  23630. },
  23631. {
  23632. name: "XL",
  23633. height: math.unit(70, "feet")
  23634. },
  23635. ]
  23636. ))
  23637. characterMakers.push(() => makeCharacter(
  23638. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23639. {
  23640. front: {
  23641. height: math.unit(6, "feet"),
  23642. weight: math.unit(150, "lb"),
  23643. name: "Front",
  23644. image: {
  23645. source: "./media/characters/dylan-skaven/front.svg",
  23646. extra: 2318 / 2063,
  23647. bottom: 93.4 / 2410
  23648. }
  23649. },
  23650. },
  23651. [
  23652. {
  23653. name: "Nano",
  23654. height: math.unit(1, "mm")
  23655. },
  23656. {
  23657. name: "Micro",
  23658. height: math.unit(1, "cm")
  23659. },
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(2.1, "meters"),
  23663. default: true
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(7 + 5 / 12, "feet"),
  23672. weight: math.unit(357, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/solex-draconov/front.svg",
  23676. extra: 1993 / 1865,
  23677. bottom: 117 / 2111
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Natural Height",
  23684. height: math.unit(7 + 5 / 12, "feet"),
  23685. default: true
  23686. },
  23687. {
  23688. name: "Macro",
  23689. height: math.unit(350, "feet")
  23690. },
  23691. {
  23692. name: "Macro+",
  23693. height: math.unit(1000, "feet")
  23694. },
  23695. {
  23696. name: "Megamacro",
  23697. height: math.unit(20, "km")
  23698. },
  23699. {
  23700. name: "Megamacro+",
  23701. height: math.unit(1000, "km")
  23702. },
  23703. {
  23704. name: "Gigamacro",
  23705. height: math.unit(2.5, "Gm")
  23706. },
  23707. {
  23708. name: "Teramacro",
  23709. height: math.unit(15, "Tm")
  23710. },
  23711. {
  23712. name: "Galactic",
  23713. height: math.unit(30, "Zm")
  23714. },
  23715. {
  23716. name: "Universal",
  23717. height: math.unit(21000, "Ym")
  23718. },
  23719. {
  23720. name: "Omniversal",
  23721. height: math.unit(9.861e50, "Ym")
  23722. },
  23723. {
  23724. name: "Existential",
  23725. height: math.unit(1e300, "meters")
  23726. },
  23727. ]
  23728. ))
  23729. characterMakers.push(() => makeCharacter(
  23730. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23731. {
  23732. side: {
  23733. height: math.unit(25, "feet"),
  23734. weight: math.unit(90000, "lb"),
  23735. name: "Side",
  23736. image: {
  23737. source: "./media/characters/mandarax/side.svg",
  23738. extra: 614 / 332,
  23739. bottom: 55 / 630
  23740. }
  23741. },
  23742. head: {
  23743. height: math.unit(11.4, "feet"),
  23744. name: "Head",
  23745. image: {
  23746. source: "./media/characters/mandarax/head.svg"
  23747. }
  23748. },
  23749. belly: {
  23750. height: math.unit(33, "feet"),
  23751. name: "Belly",
  23752. capacity: math.unit(500, "people"),
  23753. image: {
  23754. source: "./media/characters/mandarax/belly.svg"
  23755. }
  23756. },
  23757. dick: {
  23758. height: math.unit(8.46, "feet"),
  23759. name: "Dick",
  23760. image: {
  23761. source: "./media/characters/mandarax/dick.svg"
  23762. }
  23763. },
  23764. top: {
  23765. height: math.unit(28, "meters"),
  23766. name: "Top",
  23767. image: {
  23768. source: "./media/characters/mandarax/top.svg"
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Normal",
  23775. height: math.unit(25, "feet"),
  23776. default: true
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23782. {
  23783. front: {
  23784. height: math.unit(5, "feet"),
  23785. weight: math.unit(90, "lb"),
  23786. name: "Front",
  23787. image: {
  23788. source: "./media/characters/pixil/front.svg",
  23789. extra: 2000 / 1618,
  23790. bottom: 12.3 / 2011
  23791. }
  23792. },
  23793. },
  23794. [
  23795. {
  23796. name: "Normal",
  23797. height: math.unit(5, "feet"),
  23798. default: true
  23799. },
  23800. {
  23801. name: "Megamacro",
  23802. height: math.unit(10, "miles"),
  23803. },
  23804. ]
  23805. ))
  23806. characterMakers.push(() => makeCharacter(
  23807. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23808. {
  23809. front: {
  23810. height: math.unit(7 + 2 / 12, "feet"),
  23811. weight: math.unit(200, "lb"),
  23812. name: "Front",
  23813. image: {
  23814. source: "./media/characters/angel/front.svg",
  23815. extra: 1830 / 1737,
  23816. bottom: 22.6 / 1854,
  23817. }
  23818. },
  23819. },
  23820. [
  23821. {
  23822. name: "Normal",
  23823. height: math.unit(7 + 2 / 12, "feet"),
  23824. default: true
  23825. },
  23826. {
  23827. name: "Macro",
  23828. height: math.unit(1000, "feet")
  23829. },
  23830. {
  23831. name: "Megamacro",
  23832. height: math.unit(2, "miles")
  23833. },
  23834. {
  23835. name: "Gigamacro",
  23836. height: math.unit(20, "earths")
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23842. {
  23843. front: {
  23844. height: math.unit(5, "feet"),
  23845. weight: math.unit(180, "lb"),
  23846. name: "Front",
  23847. image: {
  23848. source: "./media/characters/mekana/front.svg",
  23849. extra: 1671 / 1605,
  23850. bottom: 3.5 / 1691
  23851. }
  23852. },
  23853. side: {
  23854. height: math.unit(5, "feet"),
  23855. weight: math.unit(180, "lb"),
  23856. name: "Side",
  23857. image: {
  23858. source: "./media/characters/mekana/side.svg",
  23859. extra: 1671 / 1605,
  23860. bottom: 3.5 / 1691
  23861. }
  23862. },
  23863. back: {
  23864. height: math.unit(5, "feet"),
  23865. weight: math.unit(180, "lb"),
  23866. name: "Back",
  23867. image: {
  23868. source: "./media/characters/mekana/back.svg",
  23869. extra: 1671 / 1605,
  23870. bottom: 3.5 / 1691
  23871. }
  23872. },
  23873. },
  23874. [
  23875. {
  23876. name: "Normal",
  23877. height: math.unit(5, "feet"),
  23878. default: true
  23879. },
  23880. ]
  23881. ))
  23882. characterMakers.push(() => makeCharacter(
  23883. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23884. {
  23885. front: {
  23886. height: math.unit(4 + 6 / 12, "feet"),
  23887. weight: math.unit(80, "lb"),
  23888. name: "Front",
  23889. image: {
  23890. source: "./media/characters/pixie/front.svg",
  23891. extra: 1924 / 1825,
  23892. bottom: 22.4 / 1946
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Normal",
  23899. height: math.unit(4 + 6 / 12, "feet"),
  23900. default: true
  23901. },
  23902. {
  23903. name: "Macro",
  23904. height: math.unit(40, "feet")
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  23910. {
  23911. front: {
  23912. height: math.unit(2.1, "meters"),
  23913. weight: math.unit(200, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/the-lascivious/front.svg",
  23917. extra: 1 / 0.893,
  23918. bottom: 3.5 / 573.7
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Human Scale",
  23925. height: math.unit(2.1, "meters")
  23926. },
  23927. {
  23928. name: "Wolxi Scale",
  23929. height: math.unit(46.2, "m"),
  23930. default: true
  23931. },
  23932. {
  23933. name: "Boinker of Buildings",
  23934. height: math.unit(10, "km")
  23935. },
  23936. {
  23937. name: "Shagger of Skyscrapers",
  23938. height: math.unit(40, "km")
  23939. },
  23940. {
  23941. name: "Banger of Boroughs",
  23942. height: math.unit(4000, "km")
  23943. },
  23944. {
  23945. name: "Screwer of States",
  23946. height: math.unit(100000, "km")
  23947. },
  23948. {
  23949. name: "Pounder of Planets",
  23950. height: math.unit(2000000, "km")
  23951. },
  23952. ]
  23953. ))
  23954. characterMakers.push(() => makeCharacter(
  23955. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  23956. {
  23957. front: {
  23958. height: math.unit(6, "feet"),
  23959. weight: math.unit(150, "lb"),
  23960. name: "Front",
  23961. image: {
  23962. source: "./media/characters/aj/front.svg",
  23963. extra: 2039 / 1562,
  23964. bottom: 40 / 2079
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Normal",
  23971. height: math.unit(11 + 6 / 12, "feet"),
  23972. default: true
  23973. },
  23974. {
  23975. name: "Megamacro",
  23976. height: math.unit(60, "megameters")
  23977. },
  23978. ]
  23979. ))
  23980. characterMakers.push(() => makeCharacter(
  23981. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  23982. {
  23983. side: {
  23984. height: math.unit(31 + 8/12, "feet"),
  23985. weight: math.unit(75000, "kg"),
  23986. name: "Side",
  23987. image: {
  23988. source: "./media/characters/koros/side.svg",
  23989. extra: 1442/1297,
  23990. bottom: 122.7/1562
  23991. }
  23992. },
  23993. dicksKingsCrown: {
  23994. height: math.unit(6, "feet"),
  23995. name: "Dicks (King's Crown)",
  23996. image: {
  23997. source: "./media/characters/koros/dicks-kings-crown.svg"
  23998. }
  23999. },
  24000. dicksTailSet: {
  24001. height: math.unit(3, "feet"),
  24002. name: "Dicks (Tail Set)",
  24003. image: {
  24004. source: "./media/characters/koros/dicks-tail-set.svg"
  24005. }
  24006. },
  24007. dickCumming: {
  24008. height: math.unit(7.98, "feet"),
  24009. name: "Dick (Cumming)",
  24010. image: {
  24011. source: "./media/characters/koros/dick-cumming.svg"
  24012. }
  24013. },
  24014. dicksBack: {
  24015. height: math.unit(5.9, "feet"),
  24016. name: "Dicks (Back)",
  24017. image: {
  24018. source: "./media/characters/koros/dicks-back.svg"
  24019. }
  24020. },
  24021. dicksFront: {
  24022. height: math.unit(3.72, "feet"),
  24023. name: "Dicks (Front)",
  24024. image: {
  24025. source: "./media/characters/koros/dicks-front.svg"
  24026. }
  24027. },
  24028. dicksPeeking: {
  24029. height: math.unit(3.0, "feet"),
  24030. name: "Dicks (Peeking)",
  24031. image: {
  24032. source: "./media/characters/koros/dicks-peeking.svg"
  24033. }
  24034. },
  24035. eye: {
  24036. height: math.unit(1.7, "feet"),
  24037. name: "Eye",
  24038. image: {
  24039. source: "./media/characters/koros/eye.svg"
  24040. }
  24041. },
  24042. headFront: {
  24043. height: math.unit(11.69, "feet"),
  24044. name: "Head (Front)",
  24045. image: {
  24046. source: "./media/characters/koros/head-front.svg"
  24047. }
  24048. },
  24049. headSide: {
  24050. height: math.unit(14, "feet"),
  24051. name: "Head (Side)",
  24052. image: {
  24053. source: "./media/characters/koros/head-side.svg"
  24054. }
  24055. },
  24056. leg: {
  24057. height: math.unit(17, "feet"),
  24058. name: "Leg",
  24059. image: {
  24060. source: "./media/characters/koros/leg.svg"
  24061. }
  24062. },
  24063. mawSide: {
  24064. height: math.unit(12.8, "feet"),
  24065. name: "Maw (Side)",
  24066. image: {
  24067. source: "./media/characters/koros/maw-side.svg"
  24068. }
  24069. },
  24070. mawSpitting: {
  24071. height: math.unit(17, "feet"),
  24072. name: "Maw (Spitting)",
  24073. image: {
  24074. source: "./media/characters/koros/maw-spitting.svg"
  24075. }
  24076. },
  24077. slit: {
  24078. height: math.unit(2.8, "feet"),
  24079. name: "Slit",
  24080. image: {
  24081. source: "./media/characters/koros/slit.svg"
  24082. }
  24083. },
  24084. stomach: {
  24085. height: math.unit(6.8, "feet"),
  24086. capacity: math.unit(20, "people"),
  24087. name: "Stomach",
  24088. image: {
  24089. source: "./media/characters/koros/stomach.svg"
  24090. }
  24091. },
  24092. wingspanBottom: {
  24093. height: math.unit(114, "feet"),
  24094. name: "Wingspan (Bottom)",
  24095. image: {
  24096. source: "./media/characters/koros/wingspan-bottom.svg"
  24097. }
  24098. },
  24099. wingspanTop: {
  24100. height: math.unit(104, "feet"),
  24101. name: "Wingspan (Top)",
  24102. image: {
  24103. source: "./media/characters/koros/wingspan-top.svg"
  24104. }
  24105. },
  24106. },
  24107. [
  24108. {
  24109. name: "Normal",
  24110. height: math.unit(31 + 8/12, "feet"),
  24111. default: true
  24112. },
  24113. ]
  24114. ))
  24115. characterMakers.push(() => makeCharacter(
  24116. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24117. {
  24118. front: {
  24119. height: math.unit(18 + 5/12, "feet"),
  24120. weight: math.unit(3750, "kg"),
  24121. name: "Front",
  24122. image: {
  24123. source: "./media/characters/vexx/front.svg",
  24124. extra: 426/396,
  24125. bottom: 31.5/458
  24126. }
  24127. },
  24128. maw: {
  24129. height: math.unit(6, "feet"),
  24130. name: "Maw",
  24131. image: {
  24132. source: "./media/characters/vexx/maw.svg"
  24133. }
  24134. },
  24135. },
  24136. [
  24137. {
  24138. name: "Normal",
  24139. height: math.unit(18 + 5/12, "feet"),
  24140. default: true
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(17 + 6/12, "feet"),
  24149. weight: math.unit(150, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/baadra/front.svg",
  24153. extra: 3137/2890,
  24154. bottom: 168.4/3305
  24155. }
  24156. },
  24157. back: {
  24158. height: math.unit(17 + 6/12, "feet"),
  24159. weight: math.unit(150, "lb"),
  24160. name: "Back",
  24161. image: {
  24162. source: "./media/characters/baadra/back.svg",
  24163. extra: 3142/2890,
  24164. bottom: 220/3371
  24165. }
  24166. },
  24167. head: {
  24168. height: math.unit(5.45, "feet"),
  24169. name: "Head",
  24170. image: {
  24171. source: "./media/characters/baadra/head.svg"
  24172. }
  24173. },
  24174. headAngry: {
  24175. height: math.unit(4.95, "feet"),
  24176. name: "Head (Angry)",
  24177. image: {
  24178. source: "./media/characters/baadra/head-angry.svg"
  24179. }
  24180. },
  24181. headOpen: {
  24182. height: math.unit(6, "feet"),
  24183. name: "Head (Open)",
  24184. image: {
  24185. source: "./media/characters/baadra/head-open.svg"
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Normal",
  24192. height: math.unit(17 + 6/12, "feet"),
  24193. default: true
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24199. {
  24200. front: {
  24201. height: math.unit(7 + 3/12, "feet"),
  24202. weight: math.unit(180, "lb"),
  24203. name: "Front",
  24204. image: {
  24205. source: "./media/characters/juri/front.svg",
  24206. extra: 1401/1237,
  24207. bottom: 18.5/1418
  24208. }
  24209. },
  24210. side: {
  24211. height: math.unit(7 + 3/12, "feet"),
  24212. weight: math.unit(180, "lb"),
  24213. name: "Side",
  24214. image: {
  24215. source: "./media/characters/juri/side.svg",
  24216. extra: 1424/1242,
  24217. bottom: 18.5/1447
  24218. }
  24219. },
  24220. sitting: {
  24221. height: math.unit(6, "feet"),
  24222. weight: math.unit(180, "lb"),
  24223. name: "Sitting",
  24224. image: {
  24225. source: "./media/characters/juri/sitting.svg",
  24226. extra: 1270/1143,
  24227. bottom: 100/1343
  24228. }
  24229. },
  24230. back: {
  24231. height: math.unit(7 + 3/12, "feet"),
  24232. weight: math.unit(180, "lb"),
  24233. name: "Back",
  24234. image: {
  24235. source: "./media/characters/juri/back.svg",
  24236. extra: 1377/1240,
  24237. bottom: 23.7/1405
  24238. }
  24239. },
  24240. maw: {
  24241. height: math.unit(2.8, "feet"),
  24242. name: "Maw",
  24243. image: {
  24244. source: "./media/characters/juri/maw.svg"
  24245. }
  24246. },
  24247. stomach: {
  24248. height: math.unit(0.89, "feet"),
  24249. capacity: math.unit(4, "liters"),
  24250. name: "Stomach",
  24251. image: {
  24252. source: "./media/characters/juri/stomach.svg"
  24253. }
  24254. },
  24255. },
  24256. [
  24257. {
  24258. name: "Normal",
  24259. height: math.unit(7 + 3/12, "feet"),
  24260. default: true
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24266. {
  24267. fox: {
  24268. height: math.unit(5 + 6/12, "feet"),
  24269. weight: math.unit(140, "lb"),
  24270. name: "Fox",
  24271. image: {
  24272. source: "./media/characters/maxene-sita/fox.svg",
  24273. extra: 146/138,
  24274. bottom: 2.1/148.19
  24275. }
  24276. },
  24277. kitsune: {
  24278. height: math.unit(10, "feet"),
  24279. weight: math.unit(800, "lb"),
  24280. name: "Kitsune",
  24281. image: {
  24282. source: "./media/characters/maxene-sita/kitsune.svg",
  24283. extra: 185/176,
  24284. bottom: 4.7/189.9
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(5 + 6/12, "feet"),
  24292. default: true
  24293. },
  24294. ]
  24295. ))
  24296. characterMakers.push(() => makeCharacter(
  24297. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24298. {
  24299. front: {
  24300. height: math.unit(3 + 4/12, "feet"),
  24301. weight: math.unit(70, "lb"),
  24302. name: "Front",
  24303. image: {
  24304. source: "./media/characters/maia/front.svg",
  24305. extra: 227/219.5,
  24306. bottom: 40 / 267
  24307. }
  24308. },
  24309. back: {
  24310. height: math.unit(3 + 4/12, "feet"),
  24311. weight: math.unit(70, "lb"),
  24312. name: "Back",
  24313. image: {
  24314. source: "./media/characters/maia/back.svg",
  24315. extra: 237/225
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Normal",
  24322. height: math.unit(3 + 4/12, "feet"),
  24323. default: true
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24329. {
  24330. front: {
  24331. height: math.unit(5 + 10/12, "feet"),
  24332. weight: math.unit(197, "lb"),
  24333. name: "Front",
  24334. image: {
  24335. source: "./media/characters/jabaro/front.svg",
  24336. extra: 225/216,
  24337. bottom: 5.06/230
  24338. }
  24339. },
  24340. back: {
  24341. height: math.unit(5 + 10/12, "feet"),
  24342. weight: math.unit(197, "lb"),
  24343. name: "Back",
  24344. image: {
  24345. source: "./media/characters/jabaro/back.svg",
  24346. extra: 225/219,
  24347. bottom: 1.9/227
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(5 + 10/12, "feet"),
  24355. default: true
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24361. {
  24362. front: {
  24363. height: math.unit(5 + 8/12, "feet"),
  24364. weight: math.unit(139, "lb"),
  24365. name: "Front",
  24366. image: {
  24367. source: "./media/characters/risa/front.svg",
  24368. extra: 270/260,
  24369. bottom: 11.2/282
  24370. }
  24371. },
  24372. back: {
  24373. height: math.unit(5 + 8/12, "feet"),
  24374. weight: math.unit(139, "lb"),
  24375. name: "Back",
  24376. image: {
  24377. source: "./media/characters/risa/back.svg",
  24378. extra: 264/255,
  24379. bottom: 4/268
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(5 + 8/12, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(2 + 11/12, "feet"),
  24396. weight: math.unit(30, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/weatley/front.svg",
  24400. bottom: 10.7/414,
  24401. extra: 403.5/362
  24402. }
  24403. },
  24404. back: {
  24405. height: math.unit(2 + 11/12, "feet"),
  24406. weight: math.unit(30, "lb"),
  24407. name: "Back",
  24408. image: {
  24409. source: "./media/characters/weatley/back.svg",
  24410. bottom: 10.7/414,
  24411. extra: 403.5/362
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Normal",
  24418. height: math.unit(2 + 11/12, "feet"),
  24419. default: true
  24420. },
  24421. ]
  24422. ))
  24423. characterMakers.push(() => makeCharacter(
  24424. { name: "Mercury Crescent", species: ["dragon"], tags: ["anthro"] },
  24425. {
  24426. front: {
  24427. height: math.unit(5 + 2/12, "feet"),
  24428. weight: math.unit(50, "kg"),
  24429. name: "Front",
  24430. image: {
  24431. source: "./media/characters/mercury-crescent/front.svg",
  24432. extra: 1088/1033,
  24433. bottom: 18.9/1109
  24434. }
  24435. },
  24436. },
  24437. [
  24438. {
  24439. name: "Normal",
  24440. height: math.unit(5 + 2/12, "feet"),
  24441. default: true
  24442. },
  24443. ]
  24444. ))
  24445. characterMakers.push(() => makeCharacter(
  24446. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24447. {
  24448. front: {
  24449. height: math.unit(2, "feet"),
  24450. weight: math.unit(15, "kg"),
  24451. name: "Front",
  24452. image: {
  24453. source: "./media/characters/diamond-jones/front.svg",
  24454. bottom: 16/568
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Normal",
  24461. height: math.unit(2, "feet"),
  24462. default: true
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Sweet Bit", species: ["gestalt"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(3, "feet"),
  24471. weight: math.unit(30, "kg"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/sweet-bit/front.svg",
  24475. extra: 675/567,
  24476. bottom: 27.7/703
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Normal",
  24483. height: math.unit(3, "feet"),
  24484. default: true
  24485. },
  24486. ]
  24487. ))
  24488. characterMakers.push(() => makeCharacter(
  24489. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24490. {
  24491. side: {
  24492. height: math.unit(9.178, "feet"),
  24493. weight: math.unit(500, "lb"),
  24494. name: "Side",
  24495. image: {
  24496. source: "./media/characters/umbrazen/side.svg",
  24497. extra: 1730/1473,
  24498. bottom: 34.6/1765
  24499. }
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Normal",
  24505. height: math.unit(9.178, "feet"),
  24506. default: true
  24507. },
  24508. ]
  24509. ))
  24510. characterMakers.push(() => makeCharacter(
  24511. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24512. {
  24513. front: {
  24514. height: math.unit(10, "feet"),
  24515. weight: math.unit(750, "lb"),
  24516. name: "Front",
  24517. image: {
  24518. source: "./media/characters/arlist/front.svg",
  24519. extra: 961/778,
  24520. bottom: 6.2/986
  24521. }
  24522. },
  24523. },
  24524. [
  24525. {
  24526. name: "Normal",
  24527. height: math.unit(10, "feet"),
  24528. default: true
  24529. },
  24530. ]
  24531. ))
  24532. characterMakers.push(() => makeCharacter(
  24533. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24534. {
  24535. front: {
  24536. height: math.unit(5 + 1/12, "feet"),
  24537. weight: math.unit(110, "lb"),
  24538. name: "Front",
  24539. image: {
  24540. source: "./media/characters/aradel/front.svg",
  24541. extra: 324/303,
  24542. bottom: 3.6/329.4
  24543. }
  24544. },
  24545. },
  24546. [
  24547. {
  24548. name: "Normal",
  24549. height: math.unit(5 + 1/12, "feet"),
  24550. default: true
  24551. },
  24552. ]
  24553. ))
  24554. //characters
  24555. function makeCharacters() {
  24556. const results = [];
  24557. characterMakers.forEach(character => {
  24558. results.push(character());
  24559. });
  24560. return results;
  24561. }