less copy protection, more size visualization
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

24559 linhas
606 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: ["machine"]
  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. }
  1236. //species
  1237. function getSpeciesInfo(speciesList) {
  1238. let result = new Set();
  1239. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1240. result.add(entry)
  1241. });
  1242. return Array.from(result);
  1243. };
  1244. function getSpeciesInfoHelper(species) {
  1245. if (!speciesData[species]) {
  1246. console.warn(species + " doesn't exist");
  1247. return [];
  1248. }
  1249. if (speciesData[species].parents) {
  1250. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1251. } else {
  1252. return [species];
  1253. }
  1254. }
  1255. characterMakers.push(() => makeCharacter(
  1256. {
  1257. name: "Fen",
  1258. species: ["crux"],
  1259. description: {
  1260. title: "Bio",
  1261. text: "Very furry. Sheds on everything."
  1262. },
  1263. tags: [
  1264. "anthro",
  1265. "goo"
  1266. ]
  1267. },
  1268. {
  1269. back: {
  1270. height: math.unit(2.2428, "meter"),
  1271. weight: math.unit(124.738, "kg"),
  1272. name: "Back",
  1273. image: {
  1274. source: "./media/characters/fen/back.svg",
  1275. extra: 1025 / 935,
  1276. bottom: 0.01
  1277. },
  1278. info: {
  1279. description: {
  1280. mode: "append",
  1281. text: "\n\nHe is not currently looking at you."
  1282. }
  1283. }
  1284. },
  1285. full: {
  1286. height: math.unit(1.34, "meter"),
  1287. weight: math.unit(225, "kg"),
  1288. name: "Full",
  1289. image: {
  1290. source: "./media/characters/fen/full.svg"
  1291. },
  1292. info: {
  1293. description: {
  1294. mode: "append",
  1295. text: "\n\nMunch."
  1296. }
  1297. }
  1298. },
  1299. kneeling: {
  1300. height: math.unit(5.4, "feet"),
  1301. weight: math.unit(124.738, "kg"),
  1302. name: "Kneeling",
  1303. image: {
  1304. source: "./media/characters/fen/kneeling.svg",
  1305. extra: 563 / 507
  1306. }
  1307. },
  1308. goo: {
  1309. height: math.unit(2.8, "feet"),
  1310. weight: math.unit(125, "kg"),
  1311. capacity: math.unit(1, "people"),
  1312. name: "Goo",
  1313. image: {
  1314. source: "./media/characters/fen/goo.svg",
  1315. bottom: 116/613
  1316. }
  1317. },
  1318. lounging: {
  1319. height: math.unit(6.5, "feet"),
  1320. weight: math.unit(125, "kg"),
  1321. name: "Lounging",
  1322. image: {
  1323. source: "./media/characters/fen/lounging.svg"
  1324. }
  1325. },
  1326. },
  1327. [
  1328. {
  1329. name: "Normal",
  1330. height: math.unit(2.2428, "meter")
  1331. },
  1332. {
  1333. name: "Big",
  1334. height: math.unit(12, "feet")
  1335. },
  1336. {
  1337. name: "Minimacro",
  1338. height: math.unit(40, "feet"),
  1339. default: true,
  1340. info: {
  1341. description: {
  1342. mode: "append",
  1343. text: "\n\nTOO DAMN BIG"
  1344. }
  1345. }
  1346. },
  1347. {
  1348. name: "Macro",
  1349. height: math.unit(100, "feet"),
  1350. info: {
  1351. description: {
  1352. mode: "append",
  1353. text: "\n\nTOO DAMN BIG"
  1354. }
  1355. }
  1356. },
  1357. {
  1358. name: "Macro+",
  1359. height: math.unit(300, "feet")
  1360. },
  1361. {
  1362. name: "Megamacro",
  1363. height: math.unit(2, "miles")
  1364. }
  1365. ]
  1366. ))
  1367. characterMakers.push(() => makeCharacter(
  1368. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1369. {
  1370. front: {
  1371. height: math.unit(183, "cm"),
  1372. weight: math.unit(80, "kg"),
  1373. name: "Front",
  1374. image: {
  1375. source: "./media/characters/sofia-fluttertail/front.svg",
  1376. bottom: 0.01,
  1377. extra: 2154 / 2081
  1378. }
  1379. },
  1380. frontAlt: {
  1381. height: math.unit(183, "cm"),
  1382. weight: math.unit(80, "kg"),
  1383. name: "Front (alt)",
  1384. image: {
  1385. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1386. }
  1387. },
  1388. back: {
  1389. height: math.unit(183, "cm"),
  1390. weight: math.unit(80, "kg"),
  1391. name: "Back",
  1392. image: {
  1393. source: "./media/characters/sofia-fluttertail/back.svg"
  1394. }
  1395. },
  1396. kneeling: {
  1397. height: math.unit(125, "cm"),
  1398. weight: math.unit(80, "kg"),
  1399. name: "Kneeling",
  1400. image: {
  1401. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1402. extra: 1033/977,
  1403. bottom: 23.7/1057
  1404. }
  1405. },
  1406. maw: {
  1407. height: math.unit(183 / 5, "cm"),
  1408. name: "Maw",
  1409. image: {
  1410. source: "./media/characters/sofia-fluttertail/maw.svg"
  1411. }
  1412. },
  1413. mawcloseup: {
  1414. height: math.unit(183 / 5 * 0.41, "cm"),
  1415. name: "Maw (Closeup)",
  1416. image: {
  1417. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1418. }
  1419. },
  1420. },
  1421. [
  1422. {
  1423. name: "Normal",
  1424. height: math.unit(1.83, "meter")
  1425. },
  1426. {
  1427. name: "Size Thief",
  1428. height: math.unit(18, "feet")
  1429. },
  1430. {
  1431. name: "50 Foot Collie",
  1432. height: math.unit(50, "feet")
  1433. },
  1434. {
  1435. name: "Macro",
  1436. height: math.unit(96, "feet"),
  1437. default: true
  1438. },
  1439. {
  1440. name: "Megamerger",
  1441. height: math.unit(650, "feet")
  1442. },
  1443. ]
  1444. ))
  1445. characterMakers.push(() => makeCharacter(
  1446. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1447. {
  1448. front: {
  1449. height: math.unit(7, "feet"),
  1450. weight: math.unit(100, "kg"),
  1451. name: "Front",
  1452. image: {
  1453. source: "./media/characters/march/front.svg",
  1454. extra: 1,
  1455. bottom: 0.015
  1456. }
  1457. },
  1458. foot: {
  1459. height: math.unit(0.9, "feet"),
  1460. name: "Foot",
  1461. image: {
  1462. source: "./media/characters/march/foot.svg"
  1463. }
  1464. },
  1465. },
  1466. [
  1467. {
  1468. name: "Normal",
  1469. height: math.unit(7.9, "feet")
  1470. },
  1471. {
  1472. name: "Macro",
  1473. height: math.unit(220, "meters")
  1474. },
  1475. {
  1476. name: "Megamacro",
  1477. height: math.unit(2.98, "km"),
  1478. default: true
  1479. },
  1480. {
  1481. name: "Gigamacro",
  1482. height: math.unit(15963, "km")
  1483. },
  1484. {
  1485. name: "Teramacro",
  1486. height: math.unit(2980000000, "km")
  1487. },
  1488. {
  1489. name: "Examacro",
  1490. height: math.unit(250, "parsecs")
  1491. },
  1492. ]
  1493. ))
  1494. characterMakers.push(() => makeCharacter(
  1495. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1496. {
  1497. front: {
  1498. height: math.unit(6, "feet"),
  1499. weight: math.unit(60, "kg"),
  1500. name: "Front",
  1501. image: {
  1502. source: "./media/characters/noir/front.svg",
  1503. extra: 1,
  1504. bottom: 0.032
  1505. }
  1506. },
  1507. },
  1508. [
  1509. {
  1510. name: "Normal",
  1511. height: math.unit(6.6, "feet")
  1512. },
  1513. {
  1514. name: "Macro",
  1515. height: math.unit(500, "feet")
  1516. },
  1517. {
  1518. name: "Megamacro",
  1519. height: math.unit(2.5, "km"),
  1520. default: true
  1521. },
  1522. {
  1523. name: "Gigamacro",
  1524. height: math.unit(22500, "km")
  1525. },
  1526. {
  1527. name: "Teramacro",
  1528. height: math.unit(2500000000, "km")
  1529. },
  1530. {
  1531. name: "Examacro",
  1532. height: math.unit(200, "parsecs")
  1533. },
  1534. ]
  1535. ))
  1536. characterMakers.push(() => makeCharacter(
  1537. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1538. {
  1539. front: {
  1540. height: math.unit(7, "feet"),
  1541. weight: math.unit(100, "kg"),
  1542. name: "Front",
  1543. image: {
  1544. source: "./media/characters/okuri/front.svg",
  1545. extra: 1,
  1546. bottom: 0.037
  1547. }
  1548. },
  1549. back: {
  1550. height: math.unit(7, "feet"),
  1551. weight: math.unit(100, "kg"),
  1552. name: "Back",
  1553. image: {
  1554. source: "./media/characters/okuri/back.svg",
  1555. extra: 1,
  1556. bottom: 0.007
  1557. }
  1558. },
  1559. },
  1560. [
  1561. {
  1562. name: "Megamacro",
  1563. height: math.unit(100, "miles"),
  1564. default: true
  1565. },
  1566. ]
  1567. ))
  1568. characterMakers.push(() => makeCharacter(
  1569. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1570. {
  1571. front: {
  1572. height: math.unit(7, "feet"),
  1573. weight: math.unit(100, "kg"),
  1574. name: "Front",
  1575. image: {
  1576. source: "./media/characters/manny/front.svg",
  1577. extra: 1,
  1578. bottom: 0.06
  1579. }
  1580. },
  1581. back: {
  1582. height: math.unit(7, "feet"),
  1583. weight: math.unit(100, "kg"),
  1584. name: "Back",
  1585. image: {
  1586. source: "./media/characters/manny/back.svg",
  1587. extra: 1,
  1588. bottom: 0.014
  1589. }
  1590. },
  1591. },
  1592. [
  1593. {
  1594. name: "Normal",
  1595. height: math.unit(7, "feet"),
  1596. },
  1597. {
  1598. name: "Macro",
  1599. height: math.unit(78, "feet"),
  1600. default: true
  1601. },
  1602. {
  1603. name: "Macro+",
  1604. height: math.unit(300, "meters")
  1605. },
  1606. {
  1607. name: "Macro++",
  1608. height: math.unit(2400, "meters")
  1609. },
  1610. {
  1611. name: "Megamacro",
  1612. height: math.unit(5167, "meters")
  1613. },
  1614. {
  1615. name: "Gigamacro",
  1616. height: math.unit(41769, "miles")
  1617. },
  1618. ]
  1619. ))
  1620. characterMakers.push(() => makeCharacter(
  1621. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1622. {
  1623. front: {
  1624. height: math.unit(7, "feet"),
  1625. weight: math.unit(100, "kg"),
  1626. name: "Front",
  1627. image: {
  1628. source: "./media/characters/adake/front-1.svg"
  1629. }
  1630. },
  1631. frontAlt: {
  1632. height: math.unit(7, "feet"),
  1633. weight: math.unit(100, "kg"),
  1634. name: "Front (Alt)",
  1635. image: {
  1636. source: "./media/characters/adake/front-2.svg",
  1637. extra: 1,
  1638. bottom: 0.01
  1639. }
  1640. },
  1641. back: {
  1642. height: math.unit(7, "feet"),
  1643. weight: math.unit(100, "kg"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/adake/back.svg",
  1647. }
  1648. },
  1649. kneel: {
  1650. height: math.unit(5.385, "feet"),
  1651. weight: math.unit(100, "kg"),
  1652. name: "Kneeling",
  1653. image: {
  1654. source: "./media/characters/adake/kneel.svg",
  1655. bottom: 0.052
  1656. }
  1657. },
  1658. },
  1659. [
  1660. {
  1661. name: "Normal",
  1662. height: math.unit(7, "feet"),
  1663. },
  1664. {
  1665. name: "Macro",
  1666. height: math.unit(78, "feet"),
  1667. default: true
  1668. },
  1669. {
  1670. name: "Macro+",
  1671. height: math.unit(300, "meters")
  1672. },
  1673. {
  1674. name: "Macro++",
  1675. height: math.unit(2400, "meters")
  1676. },
  1677. {
  1678. name: "Megamacro",
  1679. height: math.unit(5167, "meters")
  1680. },
  1681. {
  1682. name: "Gigamacro",
  1683. height: math.unit(41769, "miles")
  1684. },
  1685. ]
  1686. ))
  1687. characterMakers.push(() => makeCharacter(
  1688. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1689. {
  1690. front: {
  1691. height: math.unit(1.65, "meters"),
  1692. weight: math.unit(50, "kg"),
  1693. name: "Front",
  1694. image: {
  1695. source: "./media/characters/elijah/front.svg",
  1696. extra: 858/830,
  1697. bottom: 95.5/953.8559
  1698. }
  1699. },
  1700. back: {
  1701. height: math.unit(1.65, "meters"),
  1702. weight: math.unit(50, "kg"),
  1703. name: "Back",
  1704. image: {
  1705. source: "./media/characters/elijah/back.svg",
  1706. extra: 895/850,
  1707. bottom: 5.3/897.956
  1708. }
  1709. },
  1710. frontNsfw: {
  1711. height: math.unit(1.65, "meters"),
  1712. weight: math.unit(50, "kg"),
  1713. name: "Front (NSFW)",
  1714. image: {
  1715. source: "./media/characters/elijah/front-nsfw.svg",
  1716. extra: 858/830,
  1717. bottom: 95.5/953.8559
  1718. }
  1719. },
  1720. backNsfw: {
  1721. height: math.unit(1.65, "meters"),
  1722. weight: math.unit(50, "kg"),
  1723. name: "Back (NSFW)",
  1724. image: {
  1725. source: "./media/characters/elijah/back-nsfw.svg",
  1726. extra: 895/850,
  1727. bottom: 5.3/897.956
  1728. }
  1729. },
  1730. dick: {
  1731. height: math.unit(1, "feet"),
  1732. name: "Dick",
  1733. image: {
  1734. source: "./media/characters/elijah/dick.svg"
  1735. }
  1736. },
  1737. beakOpen: {
  1738. height: math.unit(1.25, "feet"),
  1739. name: "Beak (Open)",
  1740. image: {
  1741. source: "./media/characters/elijah/beak-open.svg"
  1742. }
  1743. },
  1744. beakShut: {
  1745. height: math.unit(1.25, "feet"),
  1746. name: "Beak (Shut)",
  1747. image: {
  1748. source: "./media/characters/elijah/beak-shut.svg"
  1749. }
  1750. },
  1751. footFlexing: {
  1752. height: math.unit(1.61, "feet"),
  1753. name: "Foot (Flexing)",
  1754. image: {
  1755. source: "./media/characters/elijah/foot-flexing.svg"
  1756. }
  1757. },
  1758. footStepping: {
  1759. height: math.unit(1.44, "feet"),
  1760. name: "Foot (Stepping)",
  1761. image: {
  1762. source: "./media/characters/elijah/foot-stepping.svg"
  1763. }
  1764. },
  1765. plantigradeLeg: {
  1766. height: math.unit(2.34, "feet"),
  1767. name: "Plantigrade Leg",
  1768. image: {
  1769. source: "./media/characters/elijah/plantigrade-leg.svg"
  1770. }
  1771. },
  1772. plantigradeFootLeft: {
  1773. height: math.unit(0.9, "feet"),
  1774. name: "Plantigrade Foot (Left)",
  1775. image: {
  1776. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1777. }
  1778. },
  1779. plantigradeFootRight: {
  1780. height: math.unit(0.9, "feet"),
  1781. name: "Plantigrade Foot (Right)",
  1782. image: {
  1783. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1784. }
  1785. },
  1786. },
  1787. [
  1788. {
  1789. name: "Normal",
  1790. height: math.unit(1.65, "meters")
  1791. },
  1792. {
  1793. name: "Macro",
  1794. height: math.unit(55, "meters"),
  1795. default: true
  1796. },
  1797. {
  1798. name: "Macro+",
  1799. height: math.unit(105, "meters")
  1800. },
  1801. ]
  1802. ))
  1803. characterMakers.push(() => makeCharacter(
  1804. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1805. {
  1806. front: {
  1807. height: math.unit(11, "feet"),
  1808. weight: math.unit(80, "kg"),
  1809. name: "Front",
  1810. image: {
  1811. source: "./media/characters/rai/front.svg",
  1812. extra: 1,
  1813. bottom: 0.03
  1814. }
  1815. },
  1816. side: {
  1817. height: math.unit(11, "feet"),
  1818. weight: math.unit(80, "kg"),
  1819. name: "Side",
  1820. image: {
  1821. source: "./media/characters/rai/side.svg"
  1822. }
  1823. },
  1824. back: {
  1825. height: math.unit(11, "feet"),
  1826. weight: math.unit(80, "lb"),
  1827. name: "Back",
  1828. image: {
  1829. source: "./media/characters/rai/back.svg",
  1830. extra: 1,
  1831. bottom: 0.01
  1832. }
  1833. },
  1834. feral: {
  1835. height: math.unit(11, "feet"),
  1836. weight: math.unit(800, "lb"),
  1837. name: "Feral",
  1838. image: {
  1839. source: "./media/characters/rai/feral.svg",
  1840. extra: 1050 / 659,
  1841. bottom: 0.07
  1842. }
  1843. },
  1844. dragon: {
  1845. height: math.unit(23, "feet"),
  1846. weight: math.unit(50000, "lb"),
  1847. name: "Dragon",
  1848. image: {
  1849. source: "./media/characters/rai/dragon.svg",
  1850. extra: 2498/2030,
  1851. bottom: 85.2/2584
  1852. }
  1853. },
  1854. maw: {
  1855. height: math.unit(6 / 3.81416, "feet"),
  1856. name: "Maw",
  1857. image: {
  1858. source: "./media/characters/rai/maw.svg"
  1859. }
  1860. },
  1861. },
  1862. [
  1863. {
  1864. name: "Normal",
  1865. height: math.unit(11, "feet")
  1866. },
  1867. {
  1868. name: "Macro",
  1869. height: math.unit(302, "feet"),
  1870. default: true
  1871. },
  1872. ]
  1873. ))
  1874. characterMakers.push(() => makeCharacter(
  1875. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1876. {
  1877. frontDressed: {
  1878. height: math.unit(216, "feet"),
  1879. weight: math.unit(7000000, "lb"),
  1880. name: "Front (Dressed)",
  1881. image: {
  1882. source: "./media/characters/jazzy/front-dressed.svg",
  1883. extra: 2738/2651,
  1884. bottom: 41.8/2786
  1885. }
  1886. },
  1887. backDressed: {
  1888. height: math.unit(216, "feet"),
  1889. weight: math.unit(7000000, "lb"),
  1890. name: "Back (Dressed)",
  1891. image: {
  1892. source: "./media/characters/jazzy/back-dressed.svg",
  1893. extra: 2775/2673,
  1894. bottom: 36.8/2817
  1895. }
  1896. },
  1897. front: {
  1898. height: math.unit(216, "feet"),
  1899. weight: math.unit(7000000, "lb"),
  1900. name: "Front",
  1901. image: {
  1902. source: "./media/characters/jazzy/front.svg",
  1903. extra: 2738/2651,
  1904. bottom: 41.8/2786
  1905. }
  1906. },
  1907. back: {
  1908. height: math.unit(216, "feet"),
  1909. weight: math.unit(7000000, "lb"),
  1910. name: "Back",
  1911. image: {
  1912. source: "./media/characters/jazzy/back.svg",
  1913. extra: 2775/2673,
  1914. bottom: 36.8/2817
  1915. }
  1916. },
  1917. maw: {
  1918. height: math.unit(20, "feet"),
  1919. name: "Maw",
  1920. image: {
  1921. source: "./media/characters/jazzy/maw.svg"
  1922. }
  1923. },
  1924. paws: {
  1925. height: math.unit(27.5, "feet"),
  1926. name: "Paws",
  1927. image: {
  1928. source: "./media/characters/jazzy/paws.svg"
  1929. }
  1930. },
  1931. eye: {
  1932. height: math.unit(4.4, "feet"),
  1933. name: "Eye",
  1934. image: {
  1935. source: "./media/characters/jazzy/eye.svg"
  1936. }
  1937. },
  1938. droneOffense: {
  1939. height: math.unit(9.5, "inches"),
  1940. name: "Drone (Offense)",
  1941. image: {
  1942. source: "./media/characters/jazzy/drone-offense.svg"
  1943. }
  1944. },
  1945. droneRecon: {
  1946. height: math.unit(9.5, "inches"),
  1947. name: "Drone (Recon)",
  1948. image: {
  1949. source: "./media/characters/jazzy/drone-recon.svg"
  1950. }
  1951. },
  1952. droneDefense: {
  1953. height: math.unit(9.5, "inches"),
  1954. name: "Drone (Defense)",
  1955. image: {
  1956. source: "./media/characters/jazzy/drone-defense.svg"
  1957. }
  1958. },
  1959. },
  1960. [
  1961. {
  1962. name: "Macro",
  1963. height: math.unit(216, "feet"),
  1964. default: true
  1965. },
  1966. ]
  1967. ))
  1968. characterMakers.push(() => makeCharacter(
  1969. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1970. {
  1971. front: {
  1972. height: math.unit(7, "feet"),
  1973. weight: math.unit(80, "kg"),
  1974. name: "Front",
  1975. image: {
  1976. source: "./media/characters/flamm/front.svg",
  1977. extra: 1794 / 1677,
  1978. bottom: 31.7 / 1828.5
  1979. }
  1980. },
  1981. },
  1982. [
  1983. {
  1984. name: "Normal",
  1985. height: math.unit(9.5, "feet")
  1986. },
  1987. {
  1988. name: "Macro",
  1989. height: math.unit(200, "feet"),
  1990. default: true
  1991. },
  1992. ]
  1993. ))
  1994. characterMakers.push(() => makeCharacter(
  1995. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1996. {
  1997. front: {
  1998. height: math.unit(7, "feet"),
  1999. weight: math.unit(80, "kg"),
  2000. name: "Front",
  2001. image: {
  2002. source: "./media/characters/zephiro/front.svg",
  2003. extra: 2309 / 2162,
  2004. bottom: 0.069
  2005. }
  2006. },
  2007. side: {
  2008. height: math.unit(7, "feet"),
  2009. weight: math.unit(80, "kg"),
  2010. name: "Side",
  2011. image: {
  2012. source: "./media/characters/zephiro/side.svg",
  2013. extra: 2403 / 2279,
  2014. bottom: 0.015
  2015. }
  2016. },
  2017. back: {
  2018. height: math.unit(7, "feet"),
  2019. weight: math.unit(80, "kg"),
  2020. name: "Back",
  2021. image: {
  2022. source: "./media/characters/zephiro/back.svg",
  2023. extra: 2373 / 2244,
  2024. bottom: 0.013
  2025. }
  2026. },
  2027. },
  2028. [
  2029. {
  2030. name: "Micro",
  2031. height: math.unit(3, "inches")
  2032. },
  2033. {
  2034. name: "Normal",
  2035. height: math.unit(5 + 3 / 12, "feet"),
  2036. default: true
  2037. },
  2038. {
  2039. name: "Macro",
  2040. height: math.unit(118, "feet")
  2041. },
  2042. ]
  2043. ))
  2044. characterMakers.push(() => makeCharacter(
  2045. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2046. {
  2047. front: {
  2048. height: math.unit(5, "feet"),
  2049. weight: math.unit(90, "kg"),
  2050. name: "Front",
  2051. image: {
  2052. source: "./media/characters/fory/front.svg",
  2053. extra: 2862 / 2674,
  2054. bottom: 180 / 3043.8
  2055. }
  2056. },
  2057. back: {
  2058. height: math.unit(5, "feet"),
  2059. weight: math.unit(90, "kg"),
  2060. name: "Back",
  2061. image: {
  2062. source: "./media/characters/fory/back.svg",
  2063. extra: 2962 / 2791,
  2064. bottom: 106 / 3071.8
  2065. }
  2066. },
  2067. foot: {
  2068. height: math.unit(2.14, "feet"),
  2069. name: "Foot",
  2070. image: {
  2071. source: "./media/characters/fory/foot.svg"
  2072. }
  2073. },
  2074. },
  2075. [
  2076. {
  2077. name: "Normal",
  2078. height: math.unit(5, "feet")
  2079. },
  2080. {
  2081. name: "Macro",
  2082. height: math.unit(50, "feet"),
  2083. default: true
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(10, "miles")
  2088. },
  2089. {
  2090. name: "Gigamacro",
  2091. height: math.unit(5, "earths")
  2092. },
  2093. ]
  2094. ))
  2095. characterMakers.push(() => makeCharacter(
  2096. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2097. {
  2098. front: {
  2099. height: math.unit(7, "feet"),
  2100. weight: math.unit(90, "kg"),
  2101. name: "Front",
  2102. image: {
  2103. source: "./media/characters/kurrikage/front.svg",
  2104. extra: 1,
  2105. bottom: 0.035
  2106. }
  2107. },
  2108. back: {
  2109. height: math.unit(7, "feet"),
  2110. weight: math.unit(90, "lb"),
  2111. name: "Back",
  2112. image: {
  2113. source: "./media/characters/kurrikage/back.svg"
  2114. }
  2115. },
  2116. paw: {
  2117. height: math.unit(1.5, "feet"),
  2118. name: "Paw",
  2119. image: {
  2120. source: "./media/characters/kurrikage/paw.svg"
  2121. }
  2122. },
  2123. staff: {
  2124. height: math.unit(6.7, "feet"),
  2125. name: "Staff",
  2126. image: {
  2127. source: "./media/characters/kurrikage/staff.svg"
  2128. }
  2129. },
  2130. peek: {
  2131. height: math.unit(1.05, "feet"),
  2132. name: "Peeking",
  2133. image: {
  2134. source: "./media/characters/kurrikage/peek.svg",
  2135. bottom: 0.08
  2136. }
  2137. },
  2138. },
  2139. [
  2140. {
  2141. name: "Normal",
  2142. height: math.unit(12, "feet"),
  2143. default: true
  2144. },
  2145. {
  2146. name: "Big",
  2147. height: math.unit(20, "feet")
  2148. },
  2149. {
  2150. name: "Macro",
  2151. height: math.unit(500, "feet")
  2152. },
  2153. {
  2154. name: "Megamacro",
  2155. height: math.unit(20, "miles")
  2156. },
  2157. ]
  2158. ))
  2159. characterMakers.push(() => makeCharacter(
  2160. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2161. {
  2162. front: {
  2163. height: math.unit(6, "feet"),
  2164. weight: math.unit(75, "kg"),
  2165. name: "Front",
  2166. image: {
  2167. source: "./media/characters/shingo/front.svg",
  2168. extra: 3511 / 3338,
  2169. bottom: 0.005
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Micro",
  2176. height: math.unit(4, "inches")
  2177. },
  2178. {
  2179. name: "Normal",
  2180. height: math.unit(6, "feet"),
  2181. default: true
  2182. },
  2183. {
  2184. name: "Macro",
  2185. height: math.unit(108, "feet")
  2186. }
  2187. ]
  2188. ))
  2189. characterMakers.push(() => makeCharacter(
  2190. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2191. {
  2192. side: {
  2193. height: math.unit(6, "feet"),
  2194. weight: math.unit(75, "kg"),
  2195. name: "Side",
  2196. image: {
  2197. source: "./media/characters/aigey/side.svg"
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Macro",
  2204. height: math.unit(200, "feet"),
  2205. default: true
  2206. },
  2207. {
  2208. name: "Megamacro",
  2209. height: math.unit(100, "miles")
  2210. },
  2211. ]
  2212. )
  2213. )
  2214. characterMakers.push(() => makeCharacter(
  2215. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2216. {
  2217. front: {
  2218. height: math.unit(5 + 5 / 12, "feet"),
  2219. weight: math.unit(75, "kg"),
  2220. name: "Front",
  2221. image: {
  2222. source: "./media/characters/natasha/front.svg",
  2223. extra: 859/824,
  2224. bottom: 23/879.6
  2225. }
  2226. },
  2227. frontNsfw: {
  2228. height: math.unit(5 + 5 / 12, "feet"),
  2229. weight: math.unit(75, "kg"),
  2230. name: "Front (NSFW)",
  2231. image: {
  2232. source: "./media/characters/natasha/front-nsfw.svg",
  2233. extra: 859/824,
  2234. bottom: 23/879.6
  2235. }
  2236. },
  2237. frontErect: {
  2238. height: math.unit(5 + 5 / 12, "feet"),
  2239. weight: math.unit(75, "kg"),
  2240. name: "Front (Erect)",
  2241. image: {
  2242. source: "./media/characters/natasha/front-erect.svg",
  2243. extra: 859/824,
  2244. bottom: 23/879.6
  2245. }
  2246. },
  2247. back: {
  2248. height: math.unit(5 + 5 / 12, "feet"),
  2249. weight: math.unit(75, "kg"),
  2250. name: "Back",
  2251. image: {
  2252. source: "./media/characters/natasha/back.svg",
  2253. extra: 887.9/852.6,
  2254. bottom: 9.7/896.4
  2255. }
  2256. },
  2257. backAlt: {
  2258. height: math.unit(5 + 5 / 12, "feet"),
  2259. weight: math.unit(75, "kg"),
  2260. name: "Back (Alt)",
  2261. image: {
  2262. source: "./media/characters/natasha/back-alt.svg",
  2263. extra: 1236.7/1192,
  2264. bottom: 22.3/1258.2
  2265. }
  2266. },
  2267. dick: {
  2268. height: math.unit(1.772, "feet"),
  2269. name: "Dick",
  2270. image: {
  2271. source: "./media/characters/natasha/dick.svg"
  2272. }
  2273. },
  2274. },
  2275. [
  2276. {
  2277. name: "Normal",
  2278. height: math.unit(5 + 5 / 12, "feet")
  2279. },
  2280. {
  2281. name: "Large",
  2282. height: math.unit(12, "feet")
  2283. },
  2284. {
  2285. name: "Macro",
  2286. height: math.unit(100, "feet"),
  2287. default: true
  2288. },
  2289. {
  2290. name: "Macro+",
  2291. height: math.unit(260, "feet")
  2292. },
  2293. {
  2294. name: "Macro++",
  2295. height: math.unit(1, "mile")
  2296. },
  2297. ]
  2298. ))
  2299. characterMakers.push(() => makeCharacter(
  2300. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2301. {
  2302. front: {
  2303. height: math.unit(6, "feet"),
  2304. weight: math.unit(75, "kg"),
  2305. name: "Front",
  2306. image: {
  2307. source: "./media/characters/malik/front.svg"
  2308. }
  2309. },
  2310. side: {
  2311. height: math.unit(6, "feet"),
  2312. weight: math.unit(75, "kg"),
  2313. name: "Side",
  2314. image: {
  2315. source: "./media/characters/malik/side.svg",
  2316. extra: 1.1539
  2317. }
  2318. },
  2319. back: {
  2320. height: math.unit(6, "feet"),
  2321. weight: math.unit(75, "kg"),
  2322. name: "Back",
  2323. image: {
  2324. source: "./media/characters/malik/back.svg"
  2325. }
  2326. },
  2327. },
  2328. [
  2329. {
  2330. name: "Macro",
  2331. height: math.unit(156, "feet"),
  2332. default: true
  2333. },
  2334. {
  2335. name: "Macro+",
  2336. height: math.unit(1188, "feet")
  2337. },
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2342. {
  2343. front: {
  2344. height: math.unit(6, "feet"),
  2345. weight: math.unit(75, "kg"),
  2346. name: "Front",
  2347. image: {
  2348. source: "./media/characters/sefer/front.svg"
  2349. }
  2350. },
  2351. back: {
  2352. height: math.unit(6, "feet"),
  2353. weight: math.unit(75, "kg"),
  2354. name: "Back",
  2355. image: {
  2356. source: "./media/characters/sefer/back.svg"
  2357. }
  2358. },
  2359. },
  2360. [
  2361. {
  2362. name: "Normal",
  2363. height: math.unit(6, "feet"),
  2364. default: true
  2365. },
  2366. ]
  2367. ))
  2368. characterMakers.push(() => makeCharacter(
  2369. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2370. {
  2371. body: {
  2372. height: math.unit(2.2428, "meter"),
  2373. weight: math.unit(124.738, "kg"),
  2374. name: "Body",
  2375. image: {
  2376. extra: 1225 / 1050,
  2377. source: "./media/characters/north/front.svg"
  2378. }
  2379. }
  2380. },
  2381. [
  2382. {
  2383. name: "Micro",
  2384. height: math.unit(4, "inches")
  2385. },
  2386. {
  2387. name: "Macro",
  2388. height: math.unit(63, "meters")
  2389. },
  2390. {
  2391. name: "Megamacro",
  2392. height: math.unit(101, "miles"),
  2393. default: true
  2394. }
  2395. ]
  2396. ))
  2397. characterMakers.push(() => makeCharacter(
  2398. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2399. {
  2400. angled: {
  2401. height: math.unit(4, "meter"),
  2402. weight: math.unit(150, "kg"),
  2403. name: "Angled",
  2404. image: {
  2405. source: "./media/characters/talan/angled-sfw.svg",
  2406. bottom: 29 / 3734
  2407. }
  2408. },
  2409. angledNsfw: {
  2410. height: math.unit(4, "meter"),
  2411. weight: math.unit(150, "kg"),
  2412. name: "Angled (NSFW)",
  2413. image: {
  2414. source: "./media/characters/talan/angled-nsfw.svg",
  2415. bottom: 29 / 3734
  2416. }
  2417. },
  2418. frontNsfw: {
  2419. height: math.unit(4, "meter"),
  2420. weight: math.unit(150, "kg"),
  2421. name: "Front (NSFW)",
  2422. image: {
  2423. source: "./media/characters/talan/front-nsfw.svg",
  2424. bottom: 29 / 3734
  2425. }
  2426. },
  2427. sideNsfw: {
  2428. height: math.unit(4, "meter"),
  2429. weight: math.unit(150, "kg"),
  2430. name: "Side (NSFW)",
  2431. image: {
  2432. source: "./media/characters/talan/side-nsfw.svg",
  2433. bottom: 29 / 3734
  2434. }
  2435. },
  2436. back: {
  2437. height: math.unit(4, "meter"),
  2438. weight: math.unit(150, "kg"),
  2439. name: "Back",
  2440. image: {
  2441. source: "./media/characters/talan/back.svg"
  2442. }
  2443. },
  2444. dickBottom: {
  2445. height: math.unit(0.621, "meter"),
  2446. name: "Dick (Bottom)",
  2447. image: {
  2448. source: "./media/characters/talan/dick-bottom.svg"
  2449. }
  2450. },
  2451. dickTop: {
  2452. height: math.unit(0.621, "meter"),
  2453. name: "Dick (Top)",
  2454. image: {
  2455. source: "./media/characters/talan/dick-top.svg"
  2456. }
  2457. },
  2458. dickSide: {
  2459. height: math.unit(0.305, "meter"),
  2460. name: "Dick (Side)",
  2461. image: {
  2462. source: "./media/characters/talan/dick-side.svg"
  2463. }
  2464. },
  2465. dickFront: {
  2466. height: math.unit(0.305, "meter"),
  2467. name: "Dick (Front)",
  2468. image: {
  2469. source: "./media/characters/talan/dick-front.svg"
  2470. }
  2471. },
  2472. },
  2473. [
  2474. {
  2475. name: "Normal",
  2476. height: math.unit(4, "meters")
  2477. },
  2478. {
  2479. name: "Macro",
  2480. height: math.unit(100, "meters")
  2481. },
  2482. {
  2483. name: "Megamacro",
  2484. height: math.unit(2, "miles"),
  2485. default: true
  2486. },
  2487. {
  2488. name: "Gigamacro",
  2489. height: math.unit(5000, "miles")
  2490. },
  2491. {
  2492. name: "Teramacro",
  2493. height: math.unit(100, "parsecs")
  2494. }
  2495. ]
  2496. ))
  2497. characterMakers.push(() => makeCharacter(
  2498. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2499. {
  2500. front: {
  2501. height: math.unit(2, "meter"),
  2502. weight: math.unit(90, "kg"),
  2503. name: "Front",
  2504. image: {
  2505. source: "./media/characters/gael'rathus/front.svg"
  2506. }
  2507. },
  2508. frontAlt: {
  2509. height: math.unit(2, "meter"),
  2510. weight: math.unit(90, "kg"),
  2511. name: "Front (alt)",
  2512. image: {
  2513. source: "./media/characters/gael'rathus/front-alt.svg"
  2514. }
  2515. },
  2516. frontAlt2: {
  2517. height: math.unit(2, "meter"),
  2518. weight: math.unit(90, "kg"),
  2519. name: "Front (alt 2)",
  2520. image: {
  2521. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2522. }
  2523. }
  2524. },
  2525. [
  2526. {
  2527. name: "Normal",
  2528. height: math.unit(9, "feet"),
  2529. default: true
  2530. },
  2531. {
  2532. name: "Large",
  2533. height: math.unit(25, "feet")
  2534. },
  2535. {
  2536. name: "Macro",
  2537. height: math.unit(0.25, "miles")
  2538. },
  2539. {
  2540. name: "Megamacro",
  2541. height: math.unit(10, "miles")
  2542. }
  2543. ]
  2544. ))
  2545. characterMakers.push(() => makeCharacter(
  2546. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2547. {
  2548. side: {
  2549. height: math.unit(2, "meter"),
  2550. weight: math.unit(140, "kg"),
  2551. name: "Side",
  2552. image: {
  2553. source: "./media/characters/sosha/side.svg",
  2554. bottom: 0.042
  2555. }
  2556. },
  2557. },
  2558. [
  2559. {
  2560. name: "Normal",
  2561. height: math.unit(12, "feet"),
  2562. default: true
  2563. }
  2564. ]
  2565. ))
  2566. characterMakers.push(() => makeCharacter(
  2567. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2568. {
  2569. side: {
  2570. height: math.unit(5 + 5 / 12, "feet"),
  2571. weight: math.unit(170, "kg"),
  2572. name: "Side",
  2573. image: {
  2574. source: "./media/characters/runnola/side.svg",
  2575. extra: 741 / 448,
  2576. bottom: 0.05
  2577. }
  2578. },
  2579. },
  2580. [
  2581. {
  2582. name: "Small",
  2583. height: math.unit(3, "feet")
  2584. },
  2585. {
  2586. name: "Normal",
  2587. height: math.unit(5 + 5 / 12, "feet"),
  2588. default: true
  2589. },
  2590. {
  2591. name: "Big",
  2592. height: math.unit(10, "feet")
  2593. },
  2594. ]
  2595. ))
  2596. characterMakers.push(() => makeCharacter(
  2597. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2598. {
  2599. front: {
  2600. height: math.unit(2, "meter"),
  2601. weight: math.unit(50, "kg"),
  2602. name: "Front",
  2603. image: {
  2604. source: "./media/characters/kurribird/front.svg",
  2605. bottom: 0.015
  2606. }
  2607. },
  2608. frontAlt: {
  2609. height: math.unit(1.5, "meter"),
  2610. weight: math.unit(50, "kg"),
  2611. name: "Front (Alt)",
  2612. image: {
  2613. source: "./media/characters/kurribird/front-alt.svg",
  2614. extra: 1.45
  2615. }
  2616. },
  2617. },
  2618. [
  2619. {
  2620. name: "Normal",
  2621. height: math.unit(7, "feet")
  2622. },
  2623. {
  2624. name: "Big",
  2625. height: math.unit(12, "feet"),
  2626. default: true
  2627. },
  2628. {
  2629. name: "Macro",
  2630. height: math.unit(1500, "feet")
  2631. },
  2632. {
  2633. name: "Megamacro",
  2634. height: math.unit(2, "miles")
  2635. }
  2636. ]
  2637. ))
  2638. characterMakers.push(() => makeCharacter(
  2639. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2640. {
  2641. front: {
  2642. height: math.unit(2, "meter"),
  2643. weight: math.unit(80, "kg"),
  2644. name: "Front",
  2645. image: {
  2646. source: "./media/characters/elbial/front.svg",
  2647. extra: 1643 / 1556,
  2648. bottom: 60.2 / 1696
  2649. }
  2650. },
  2651. side: {
  2652. height: math.unit(2, "meter"),
  2653. weight: math.unit(80, "kg"),
  2654. name: "Side",
  2655. image: {
  2656. source: "./media/characters/elbial/side.svg",
  2657. extra: 1630 / 1565,
  2658. bottom: 71.5 / 1697
  2659. }
  2660. },
  2661. back: {
  2662. height: math.unit(2, "meter"),
  2663. weight: math.unit(80, "kg"),
  2664. name: "Back",
  2665. image: {
  2666. source: "./media/characters/elbial/back.svg",
  2667. extra: 1668 / 1595,
  2668. bottom: 5.6 / 1672
  2669. }
  2670. },
  2671. frontDressed: {
  2672. height: math.unit(2, "meter"),
  2673. weight: math.unit(80, "kg"),
  2674. name: "Front (Dressed)",
  2675. image: {
  2676. source: "./media/characters/elbial/front-dressed.svg",
  2677. extra: 1653 / 1584,
  2678. bottom: 57 / 1708
  2679. }
  2680. },
  2681. genitals: {
  2682. height: math.unit(2 / 3.367, "meter"),
  2683. name: "Genitals",
  2684. image: {
  2685. source: "./media/characters/elbial/genitals.svg"
  2686. }
  2687. },
  2688. },
  2689. [
  2690. {
  2691. name: "Large",
  2692. height: math.unit(100, "feet")
  2693. },
  2694. {
  2695. name: "Macro",
  2696. height: math.unit(500, "feet"),
  2697. default: true
  2698. },
  2699. {
  2700. name: "Megamacro",
  2701. height: math.unit(10, "miles")
  2702. },
  2703. {
  2704. name: "Gigamacro",
  2705. height: math.unit(25000, "miles")
  2706. },
  2707. {
  2708. name: "Full-Size",
  2709. height: math.unit(8000000, "gigaparsecs")
  2710. }
  2711. ]
  2712. ))
  2713. characterMakers.push(() => makeCharacter(
  2714. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2715. {
  2716. front: {
  2717. height: math.unit(2, "meter"),
  2718. weight: math.unit(60, "kg"),
  2719. name: "Front",
  2720. image: {
  2721. source: "./media/characters/noah/front.svg"
  2722. }
  2723. },
  2724. talons: {
  2725. height: math.unit(0.315, "meter"),
  2726. name: "Talons",
  2727. image: {
  2728. source: "./media/characters/noah/talons.svg"
  2729. }
  2730. }
  2731. },
  2732. [
  2733. {
  2734. name: "Large",
  2735. height: math.unit(50, "feet")
  2736. },
  2737. {
  2738. name: "Macro",
  2739. height: math.unit(750, "feet"),
  2740. default: true
  2741. },
  2742. {
  2743. name: "Megamacro",
  2744. height: math.unit(50, "miles")
  2745. },
  2746. {
  2747. name: "Gigamacro",
  2748. height: math.unit(100000, "miles")
  2749. },
  2750. {
  2751. name: "Full-Size",
  2752. height: math.unit(3000000000, "miles")
  2753. }
  2754. ]
  2755. ))
  2756. characterMakers.push(() => makeCharacter(
  2757. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2758. {
  2759. front: {
  2760. height: math.unit(2, "meter"),
  2761. weight: math.unit(80, "kg"),
  2762. name: "Front",
  2763. image: {
  2764. source: "./media/characters/natalya/front.svg"
  2765. }
  2766. },
  2767. back: {
  2768. height: math.unit(2, "meter"),
  2769. weight: math.unit(80, "kg"),
  2770. name: "Back",
  2771. image: {
  2772. source: "./media/characters/natalya/back.svg"
  2773. }
  2774. }
  2775. },
  2776. [
  2777. {
  2778. name: "Normal",
  2779. height: math.unit(150, "feet"),
  2780. default: true
  2781. },
  2782. {
  2783. name: "Megamacro",
  2784. height: math.unit(5, "miles")
  2785. },
  2786. {
  2787. name: "Full-Size",
  2788. height: math.unit(600, "kiloparsecs")
  2789. }
  2790. ]
  2791. ))
  2792. characterMakers.push(() => makeCharacter(
  2793. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2794. {
  2795. front: {
  2796. height: math.unit(2, "meter"),
  2797. weight: math.unit(50, "kg"),
  2798. name: "Front",
  2799. image: {
  2800. source: "./media/characters/erestrebah/front.svg",
  2801. extra: 208 / 193,
  2802. bottom: 0.055
  2803. }
  2804. },
  2805. back: {
  2806. height: math.unit(2, "meter"),
  2807. weight: math.unit(50, "kg"),
  2808. name: "Back",
  2809. image: {
  2810. source: "./media/characters/erestrebah/back.svg",
  2811. extra: 1.3
  2812. }
  2813. }
  2814. },
  2815. [
  2816. {
  2817. name: "Normal",
  2818. height: math.unit(10, "feet")
  2819. },
  2820. {
  2821. name: "Large",
  2822. height: math.unit(50, "feet"),
  2823. default: true
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(300, "feet")
  2828. },
  2829. {
  2830. name: "Macro+",
  2831. height: math.unit(750, "feet")
  2832. },
  2833. {
  2834. name: "Megamacro",
  2835. height: math.unit(3, "miles")
  2836. }
  2837. ]
  2838. ))
  2839. characterMakers.push(() => makeCharacter(
  2840. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2841. {
  2842. front: {
  2843. height: math.unit(2, "meter"),
  2844. weight: math.unit(80, "kg"),
  2845. name: "Front",
  2846. image: {
  2847. source: "./media/characters/jennifer/front.svg",
  2848. bottom: 0.11,
  2849. extra: 1.16
  2850. }
  2851. },
  2852. frontAlt: {
  2853. height: math.unit(2, "meter"),
  2854. weight: math.unit(80, "kg"),
  2855. name: "Front (Alt)",
  2856. image: {
  2857. source: "./media/characters/jennifer/front-alt.svg"
  2858. }
  2859. }
  2860. },
  2861. [
  2862. {
  2863. name: "Canon Height",
  2864. height: math.unit(120, "feet"),
  2865. default: true
  2866. },
  2867. {
  2868. name: "Macro+",
  2869. height: math.unit(300, "feet")
  2870. },
  2871. {
  2872. name: "Megamacro",
  2873. height: math.unit(20000, "feet")
  2874. }
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2879. {
  2880. front: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(50, "kg"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/kalista/front.svg",
  2886. extra: 1947 / 1700,
  2887. bottom: 76.6/1412.98
  2888. }
  2889. },
  2890. back: {
  2891. height: math.unit(2, "meter"),
  2892. weight: math.unit(50, "kg"),
  2893. name: "Back",
  2894. image: {
  2895. source: "./media/characters/kalista/back.svg",
  2896. extra: 1366 / 1156,
  2897. bottom: 33.9/1362.78
  2898. }
  2899. }
  2900. },
  2901. [
  2902. {
  2903. name: "Uncomfortably Small",
  2904. height: math.unit(10, "feet")
  2905. },
  2906. {
  2907. name: "Small",
  2908. height: math.unit(30, "feet")
  2909. },
  2910. {
  2911. name: "Macro",
  2912. height: math.unit(100, "feet"),
  2913. default: true
  2914. },
  2915. {
  2916. name: "Macro+",
  2917. height: math.unit(2000, "feet")
  2918. },
  2919. {
  2920. name: "True Form",
  2921. height: math.unit(8924, "miles")
  2922. }
  2923. ]
  2924. ))
  2925. characterMakers.push(() => makeCharacter(
  2926. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2927. {
  2928. front: {
  2929. height: math.unit(2, "meter"),
  2930. weight: math.unit(120, "kg"),
  2931. name: "Front",
  2932. image: {
  2933. source: "./media/characters/ggv/front.svg"
  2934. }
  2935. },
  2936. side: {
  2937. height: math.unit(2, "meter"),
  2938. weight: math.unit(120, "kg"),
  2939. name: "Side",
  2940. image: {
  2941. source: "./media/characters/ggv/side.svg"
  2942. }
  2943. }
  2944. },
  2945. [
  2946. {
  2947. name: "Extremely Puny",
  2948. height: math.unit(9 + 5 / 12, "feet")
  2949. },
  2950. {
  2951. name: "Horribly Small",
  2952. height: math.unit(47.7, "miles"),
  2953. default: true
  2954. },
  2955. {
  2956. name: "Reasonably Sized",
  2957. height: math.unit(25000, "parsecs")
  2958. },
  2959. {
  2960. name: "Slightly Uncompressed",
  2961. height: math.unit(7.77e31, "parsecs")
  2962. },
  2963. {
  2964. name: "Omniversal",
  2965. height: math.unit(1e300, "meters")
  2966. },
  2967. ]
  2968. ))
  2969. characterMakers.push(() => makeCharacter(
  2970. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2971. {
  2972. front: {
  2973. height: math.unit(2, "meter"),
  2974. weight: math.unit(75, "lb"),
  2975. name: "Front",
  2976. image: {
  2977. source: "./media/characters/napalm/front.svg"
  2978. }
  2979. },
  2980. back: {
  2981. height: math.unit(2, "meter"),
  2982. weight: math.unit(75, "lb"),
  2983. name: "Back",
  2984. image: {
  2985. source: "./media/characters/napalm/back.svg"
  2986. }
  2987. }
  2988. },
  2989. [
  2990. {
  2991. name: "Standard",
  2992. height: math.unit(55, "feet"),
  2993. default: true
  2994. }
  2995. ]
  2996. ))
  2997. characterMakers.push(() => makeCharacter(
  2998. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2999. {
  3000. front: {
  3001. height: math.unit(7 + 5 / 6, "feet"),
  3002. weight: math.unit(325, "lb"),
  3003. name: "Front",
  3004. image: {
  3005. source: "./media/characters/asana/front.svg",
  3006. extra: 1128 / 1068
  3007. }
  3008. },
  3009. back: {
  3010. height: math.unit(7 + 5 / 6, "feet"),
  3011. weight: math.unit(325, "lb"),
  3012. name: "Back",
  3013. image: {
  3014. source: "./media/characters/asana/back.svg",
  3015. extra: 1128 / 1068
  3016. }
  3017. },
  3018. },
  3019. [
  3020. {
  3021. name: "Standard",
  3022. height: math.unit(7 + 5 / 6, "feet"),
  3023. default: true
  3024. },
  3025. {
  3026. name: "Large",
  3027. height: math.unit(10, "meters")
  3028. },
  3029. {
  3030. name: "Macro",
  3031. height: math.unit(2500, "meters")
  3032. },
  3033. {
  3034. name: "Megamacro",
  3035. height: math.unit(5e6, "meters")
  3036. },
  3037. {
  3038. name: "Examacro",
  3039. height: math.unit(5e12, "lightyears")
  3040. },
  3041. {
  3042. name: "Max Size",
  3043. height: math.unit(1e31, "lightyears")
  3044. }
  3045. ]
  3046. ))
  3047. characterMakers.push(() => makeCharacter(
  3048. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3049. {
  3050. front: {
  3051. height: math.unit(2, "meter"),
  3052. weight: math.unit(60, "kg"),
  3053. name: "Front",
  3054. image: {
  3055. source: "./media/characters/ebony/front.svg",
  3056. bottom: 0.03,
  3057. extra: 1045 / 810 + 0.03
  3058. }
  3059. },
  3060. side: {
  3061. height: math.unit(2, "meter"),
  3062. weight: math.unit(60, "kg"),
  3063. name: "Side",
  3064. image: {
  3065. source: "./media/characters/ebony/side.svg",
  3066. bottom: 0.03,
  3067. extra: 1045 / 810 + 0.03
  3068. }
  3069. },
  3070. back: {
  3071. height: math.unit(2, "meter"),
  3072. weight: math.unit(60, "kg"),
  3073. name: "Back",
  3074. image: {
  3075. source: "./media/characters/ebony/back.svg",
  3076. bottom: 0.01,
  3077. extra: 1045 / 810 + 0.01
  3078. }
  3079. },
  3080. },
  3081. [
  3082. // TODO check why I did this lol
  3083. {
  3084. name: "Standard",
  3085. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3086. default: true
  3087. },
  3088. {
  3089. name: "Macro",
  3090. height: math.unit(200, "feet")
  3091. },
  3092. {
  3093. name: "Gigamacro",
  3094. height: math.unit(13000, "km")
  3095. }
  3096. ]
  3097. ))
  3098. characterMakers.push(() => makeCharacter(
  3099. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3100. {
  3101. front: {
  3102. height: math.unit(6, "feet"),
  3103. weight: math.unit(175, "lb"),
  3104. name: "Front",
  3105. image: {
  3106. source: "./media/characters/mountain/front.svg"
  3107. }
  3108. },
  3109. back: {
  3110. height: math.unit(6, "feet"),
  3111. weight: math.unit(175, "lb"),
  3112. name: "Back",
  3113. image: {
  3114. source: "./media/characters/mountain/back.svg"
  3115. }
  3116. },
  3117. },
  3118. [
  3119. {
  3120. name: "Large",
  3121. height: math.unit(20, "meters")
  3122. },
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(300, "meters")
  3126. },
  3127. {
  3128. name: "Gigamacro",
  3129. height: math.unit(10000, "km"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Examacro",
  3134. height: math.unit(10e9, "lightyears")
  3135. }
  3136. ]
  3137. ))
  3138. characterMakers.push(() => makeCharacter(
  3139. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3140. {
  3141. front: {
  3142. height: math.unit(8, "feet"),
  3143. weight: math.unit(500, "lb"),
  3144. name: "Front",
  3145. image: {
  3146. source: "./media/characters/rick/front.svg"
  3147. }
  3148. }
  3149. },
  3150. [
  3151. {
  3152. name: "Normal",
  3153. height: math.unit(8, "feet"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Macro",
  3158. height: math.unit(5, "km")
  3159. }
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(8, "feet"),
  3167. weight: math.unit(120, "lb"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/ona/front.svg"
  3171. }
  3172. },
  3173. frontAlt: {
  3174. height: math.unit(8, "feet"),
  3175. weight: math.unit(120, "lb"),
  3176. name: "Front (Alt)",
  3177. image: {
  3178. source: "./media/characters/ona/front-alt.svg"
  3179. }
  3180. },
  3181. back: {
  3182. height: math.unit(8, "feet"),
  3183. weight: math.unit(120, "lb"),
  3184. name: "Back",
  3185. image: {
  3186. source: "./media/characters/ona/back.svg"
  3187. }
  3188. },
  3189. foot: {
  3190. height: math.unit(1.1, "feet"),
  3191. name: "Foot",
  3192. image: {
  3193. source: "./media/characters/ona/foot.svg"
  3194. }
  3195. }
  3196. },
  3197. [
  3198. {
  3199. name: "Megamacro",
  3200. height: math.unit(70, "km"),
  3201. default: true
  3202. },
  3203. {
  3204. name: "Gigamacro",
  3205. height: math.unit(681818, "miles")
  3206. },
  3207. {
  3208. name: "Examacro",
  3209. height: math.unit(3800000, "lightyears")
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(12, "feet"),
  3218. weight: math.unit(3000, "lb"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/mech/front.svg",
  3222. bottom: 0.025,
  3223. }
  3224. },
  3225. back: {
  3226. height: math.unit(12, "feet"),
  3227. weight: math.unit(3000, "lb"),
  3228. name: "Back",
  3229. image: {
  3230. source: "./media/characters/mech/back.svg",
  3231. bottom: 0.03,
  3232. }
  3233. }
  3234. },
  3235. [
  3236. {
  3237. name: "Normal",
  3238. height: math.unit(12, "feet")
  3239. },
  3240. {
  3241. name: "Macro",
  3242. height: math.unit(300, "feet"),
  3243. default: true
  3244. },
  3245. {
  3246. name: "Macro+",
  3247. height: math.unit(1500, "feet")
  3248. },
  3249. ]
  3250. ))
  3251. characterMakers.push(() => makeCharacter(
  3252. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3253. {
  3254. front: {
  3255. height: math.unit(1.3, "meter"),
  3256. weight: math.unit(30, "kg"),
  3257. name: "Front",
  3258. image: {
  3259. source: "./media/characters/gregory/front.svg",
  3260. }
  3261. }
  3262. },
  3263. [
  3264. {
  3265. name: "Normal",
  3266. height: math.unit(1.3, "meter"),
  3267. default: true
  3268. },
  3269. {
  3270. name: "Macro",
  3271. height: math.unit(20, "meter")
  3272. }
  3273. ]
  3274. ))
  3275. characterMakers.push(() => makeCharacter(
  3276. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3277. {
  3278. front: {
  3279. height: math.unit(2.8, "meter"),
  3280. weight: math.unit(200, "kg"),
  3281. name: "Front",
  3282. image: {
  3283. source: "./media/characters/elory/front.svg",
  3284. }
  3285. }
  3286. },
  3287. [
  3288. {
  3289. name: "Normal",
  3290. height: math.unit(2.8, "meter"),
  3291. default: true
  3292. },
  3293. {
  3294. name: "Macro",
  3295. height: math.unit(38, "meter")
  3296. }
  3297. ]
  3298. ))
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(470, "feet"),
  3304. weight: math.unit(924, "tons"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/angelpatamon/front.svg",
  3308. }
  3309. }
  3310. },
  3311. [
  3312. {
  3313. name: "Normal",
  3314. height: math.unit(470, "feet"),
  3315. default: true
  3316. },
  3317. {
  3318. name: "Deity Size I",
  3319. height: math.unit(28651.2, "km")
  3320. },
  3321. {
  3322. name: "Deity Size II",
  3323. height: math.unit(171907.2, "km")
  3324. }
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3329. {
  3330. side: {
  3331. height: math.unit(7.2, "meter"),
  3332. weight: math.unit(8.2, "tons"),
  3333. name: "Side",
  3334. image: {
  3335. source: "./media/characters/cryae/side.svg",
  3336. extra: 3500 / 1500
  3337. }
  3338. }
  3339. },
  3340. [
  3341. {
  3342. name: "Normal",
  3343. height: math.unit(7.2, "meter"),
  3344. default: true
  3345. }
  3346. ]
  3347. ))
  3348. characterMakers.push(() => makeCharacter(
  3349. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3350. {
  3351. front: {
  3352. height: math.unit(6, "feet"),
  3353. weight: math.unit(175, "lb"),
  3354. name: "Front",
  3355. image: {
  3356. source: "./media/characters/xera/front.svg",
  3357. extra: 2300 / 2061
  3358. }
  3359. },
  3360. side: {
  3361. height: math.unit(6, "feet"),
  3362. weight: math.unit(175, "lb"),
  3363. name: "Side",
  3364. image: {
  3365. source: "./media/characters/xera/side.svg",
  3366. extra: 2300 / 2061
  3367. }
  3368. },
  3369. back: {
  3370. height: math.unit(6, "feet"),
  3371. weight: math.unit(175, "lb"),
  3372. name: "Back",
  3373. image: {
  3374. source: "./media/characters/xera/back.svg"
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Small",
  3381. height: math.unit(10, "feet")
  3382. },
  3383. {
  3384. name: "Macro",
  3385. height: math.unit(500, "meters"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Macro+",
  3390. height: math.unit(10, "km")
  3391. },
  3392. {
  3393. name: "Gigamacro",
  3394. height: math.unit(25000, "km")
  3395. },
  3396. {
  3397. name: "Teramacro",
  3398. height: math.unit(3e6, "km")
  3399. }
  3400. ]
  3401. ))
  3402. characterMakers.push(() => makeCharacter(
  3403. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3404. {
  3405. front: {
  3406. height: math.unit(6, "feet"),
  3407. weight: math.unit(175, "lb"),
  3408. name: "Front",
  3409. image: {
  3410. source: "./media/characters/nebula/front.svg",
  3411. extra: 2600 / 2450
  3412. }
  3413. }
  3414. },
  3415. [
  3416. {
  3417. name: "Small",
  3418. height: math.unit(4.5, "meters")
  3419. },
  3420. {
  3421. name: "Macro",
  3422. height: math.unit(1500, "meters"),
  3423. default: true
  3424. },
  3425. {
  3426. name: "Megamacro",
  3427. height: math.unit(150, "km")
  3428. },
  3429. {
  3430. name: "Gigamacro",
  3431. height: math.unit(27000, "km")
  3432. }
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(6, "feet"),
  3440. weight: math.unit(225, "lb"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/abysgar/front.svg"
  3444. }
  3445. }
  3446. },
  3447. [
  3448. {
  3449. name: "Small",
  3450. height: math.unit(4.5, "meters")
  3451. },
  3452. {
  3453. name: "Macro",
  3454. height: math.unit(1250, "meters"),
  3455. default: true
  3456. },
  3457. {
  3458. name: "Megamacro",
  3459. height: math.unit(125, "km")
  3460. },
  3461. {
  3462. name: "Gigamacro",
  3463. height: math.unit(26000, "km")
  3464. }
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(6, "feet"),
  3472. weight: math.unit(180, "lb"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/yakuz/front.svg"
  3476. }
  3477. }
  3478. },
  3479. [
  3480. {
  3481. name: "Small",
  3482. height: math.unit(5, "meters")
  3483. },
  3484. {
  3485. name: "Macro",
  3486. height: math.unit(1500, "meters"),
  3487. default: true
  3488. },
  3489. {
  3490. name: "Megamacro",
  3491. height: math.unit(200, "km")
  3492. },
  3493. {
  3494. name: "Gigamacro",
  3495. height: math.unit(100000, "km")
  3496. }
  3497. ]
  3498. ))
  3499. characterMakers.push(() => makeCharacter(
  3500. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3501. {
  3502. front: {
  3503. height: math.unit(6, "feet"),
  3504. weight: math.unit(175, "lb"),
  3505. name: "Front",
  3506. image: {
  3507. source: "./media/characters/mirova/front.svg"
  3508. }
  3509. }
  3510. },
  3511. [
  3512. {
  3513. name: "Small",
  3514. height: math.unit(5, "meters")
  3515. },
  3516. {
  3517. name: "Macro",
  3518. height: math.unit(900, "meters"),
  3519. default: true
  3520. },
  3521. {
  3522. name: "Megamacro",
  3523. height: math.unit(135, "km")
  3524. },
  3525. {
  3526. name: "Gigamacro",
  3527. height: math.unit(20000, "km")
  3528. }
  3529. ]
  3530. ))
  3531. characterMakers.push(() => makeCharacter(
  3532. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3533. {
  3534. side: {
  3535. height: math.unit(28.35, "feet"),
  3536. weight: math.unit(99.75, "tons"),
  3537. name: "Side",
  3538. image: {
  3539. source: "./media/characters/asana-mech/side.svg"
  3540. }
  3541. }
  3542. },
  3543. [
  3544. {
  3545. name: "Normal",
  3546. height: math.unit(28.35, "feet"),
  3547. default: true
  3548. },
  3549. {
  3550. name: "Macro",
  3551. height: math.unit(2500, "feet")
  3552. },
  3553. {
  3554. name: "Megamacro",
  3555. height: math.unit(25, "miles")
  3556. },
  3557. {
  3558. name: "Examacro",
  3559. height: math.unit(6e8, "lightyears")
  3560. },
  3561. ]
  3562. ))
  3563. characterMakers.push(() => makeCharacter(
  3564. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3565. {
  3566. front: {
  3567. height: math.unit(2, "meters"),
  3568. weight: math.unit(70, "kg"),
  3569. name: "Front",
  3570. image: {
  3571. source: "./media/characters/ashtrek/front.svg",
  3572. extra: 560 / 524,
  3573. bottom: 0.01
  3574. }
  3575. },
  3576. frontArmor: {
  3577. height: math.unit(2, "meters"),
  3578. weight: math.unit(76, "kg"),
  3579. name: "Front (Armor)",
  3580. image: {
  3581. source: "./media/characters/ashtrek/front-armor.svg",
  3582. extra: 561 / 527,
  3583. bottom: 0.01
  3584. }
  3585. },
  3586. side: {
  3587. height: math.unit(2, "meters"),
  3588. weight: math.unit(70, "kg"),
  3589. name: "Side",
  3590. image: {
  3591. source: "./media/characters/ashtrek/side.svg",
  3592. extra: 1717 / 1609,
  3593. bottom: 0.005
  3594. }
  3595. },
  3596. back: {
  3597. height: math.unit(2, "meters"),
  3598. weight: math.unit(70, "kg"),
  3599. name: "Back",
  3600. image: {
  3601. source: "./media/characters/ashtrek/back.svg",
  3602. extra: 1570 / 1501
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "DEFCON 5",
  3609. height: math.unit(5, "meters")
  3610. },
  3611. {
  3612. name: "DEFCON 4",
  3613. height: math.unit(500, "meters"),
  3614. default: true
  3615. },
  3616. {
  3617. name: "DEFCON 3",
  3618. height: math.unit(5, "km")
  3619. },
  3620. {
  3621. name: "DEFCON 2",
  3622. height: math.unit(500, "km")
  3623. },
  3624. {
  3625. name: "DEFCON 1",
  3626. height: math.unit(500000, "km")
  3627. },
  3628. {
  3629. name: "DEFCON 0",
  3630. height: math.unit(3, "gigaparsecs")
  3631. },
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  3636. {
  3637. front: {
  3638. height: math.unit(2, "meters"),
  3639. weight: math.unit(76, "kg"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/gale/front.svg"
  3643. }
  3644. },
  3645. frontAlt1: {
  3646. height: math.unit(2, "meters"),
  3647. weight: math.unit(76, "kg"),
  3648. name: "Front (Alt 1)",
  3649. image: {
  3650. source: "./media/characters/gale/front-alt-1.svg"
  3651. }
  3652. },
  3653. frontAlt2: {
  3654. height: math.unit(2, "meters"),
  3655. weight: math.unit(76, "kg"),
  3656. name: "Front (Alt 2)",
  3657. image: {
  3658. source: "./media/characters/gale/front-alt-2.svg"
  3659. }
  3660. },
  3661. },
  3662. [
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(7, "feet")
  3666. },
  3667. {
  3668. name: "Macro",
  3669. height: math.unit(150, "feet"),
  3670. default: true
  3671. },
  3672. {
  3673. name: "Macro+",
  3674. height: math.unit(300, "feet")
  3675. },
  3676. ]
  3677. ))
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3680. {
  3681. front: {
  3682. height: math.unit(2, "meters"),
  3683. weight: math.unit(76, "kg"),
  3684. name: "Front",
  3685. image: {
  3686. source: "./media/characters/draylen/front.svg"
  3687. }
  3688. }
  3689. },
  3690. [
  3691. {
  3692. name: "Macro",
  3693. height: math.unit(150, "feet"),
  3694. default: true
  3695. }
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(7 + 9 / 12, "feet"),
  3703. weight: math.unit(379, "lbs"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/chez/front.svg"
  3707. }
  3708. },
  3709. side: {
  3710. height: math.unit(7 + 9 / 12, "feet"),
  3711. weight: math.unit(379, "lbs"),
  3712. name: "Side",
  3713. image: {
  3714. source: "./media/characters/chez/side.svg"
  3715. }
  3716. }
  3717. },
  3718. [
  3719. {
  3720. name: "Normal",
  3721. height: math.unit(7 + 9 / 12, "feet"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "God King",
  3726. height: math.unit(9750000, "meters")
  3727. }
  3728. ]
  3729. ))
  3730. characterMakers.push(() => makeCharacter(
  3731. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3732. {
  3733. front: {
  3734. height: math.unit(6, "feet"),
  3735. weight: math.unit(275, "lbs"),
  3736. name: "Front",
  3737. image: {
  3738. source: "./media/characters/kaylum/front.svg",
  3739. bottom: 0.01,
  3740. extra: 1166 / 1031
  3741. }
  3742. },
  3743. frontWingless: {
  3744. height: math.unit(6, "feet"),
  3745. weight: math.unit(275, "lbs"),
  3746. name: "Front (Wingless)",
  3747. image: {
  3748. source: "./media/characters/kaylum/front-wingless.svg",
  3749. bottom: 0.01,
  3750. extra: 1117 / 1031
  3751. }
  3752. }
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(3.05, "meters")
  3758. },
  3759. {
  3760. name: "Master",
  3761. height: math.unit(5.5, "meters")
  3762. },
  3763. {
  3764. name: "Rampage",
  3765. height: math.unit(19, "meters")
  3766. },
  3767. {
  3768. name: "Macro Lite",
  3769. height: math.unit(37, "meters")
  3770. },
  3771. {
  3772. name: "Hyper Predator",
  3773. height: math.unit(61, "meters")
  3774. },
  3775. {
  3776. name: "Macro",
  3777. height: math.unit(138, "meters"),
  3778. default: true
  3779. }
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3784. {
  3785. front: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(150, "lbs"),
  3788. name: "Front",
  3789. image: {
  3790. source: "./media/characters/geta/front.svg"
  3791. }
  3792. }
  3793. },
  3794. [
  3795. {
  3796. name: "Micro",
  3797. height: math.unit(3, "inches"),
  3798. default: true
  3799. },
  3800. {
  3801. name: "Normal",
  3802. height: math.unit(5 + 5 / 12, "feet")
  3803. }
  3804. ]
  3805. ))
  3806. characterMakers.push(() => makeCharacter(
  3807. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3808. {
  3809. front: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(300, "lbs"),
  3812. name: "Front",
  3813. image: {
  3814. source: "./media/characters/tyrnn/front.svg"
  3815. }
  3816. }
  3817. },
  3818. [
  3819. {
  3820. name: "Main Height",
  3821. height: math.unit(355, "feet"),
  3822. default: true
  3823. },
  3824. {
  3825. name: "Fave. Height",
  3826. height: math.unit(2400, "feet")
  3827. }
  3828. ]
  3829. ))
  3830. characterMakers.push(() => makeCharacter(
  3831. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3832. {
  3833. front: {
  3834. height: math.unit(6, "feet"),
  3835. weight: math.unit(300, "lbs"),
  3836. name: "Front",
  3837. image: {
  3838. source: "./media/characters/appledectomy/front.svg"
  3839. }
  3840. }
  3841. },
  3842. [
  3843. {
  3844. name: "Macro",
  3845. height: math.unit(2500, "feet")
  3846. },
  3847. {
  3848. name: "Megamacro",
  3849. height: math.unit(50, "miles"),
  3850. default: true
  3851. },
  3852. {
  3853. name: "Gigamacro",
  3854. height: math.unit(5000, "miles")
  3855. },
  3856. {
  3857. name: "Teramacro",
  3858. height: math.unit(250000, "miles")
  3859. },
  3860. ]
  3861. ))
  3862. characterMakers.push(() => makeCharacter(
  3863. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3864. {
  3865. front: {
  3866. height: math.unit(6, "feet"),
  3867. weight: math.unit(200, "lbs"),
  3868. name: "Front",
  3869. image: {
  3870. source: "./media/characters/vulpes/front.svg",
  3871. extra: 573 / 543,
  3872. bottom: 0.033
  3873. }
  3874. },
  3875. side: {
  3876. height: math.unit(6, "feet"),
  3877. weight: math.unit(200, "lbs"),
  3878. name: "Side",
  3879. image: {
  3880. source: "./media/characters/vulpes/side.svg",
  3881. extra: 573 / 543,
  3882. bottom: 0.01
  3883. }
  3884. },
  3885. back: {
  3886. height: math.unit(6, "feet"),
  3887. weight: math.unit(200, "lbs"),
  3888. name: "Back",
  3889. image: {
  3890. source: "./media/characters/vulpes/back.svg",
  3891. extra: 573 / 543,
  3892. }
  3893. },
  3894. feet: {
  3895. height: math.unit(1.276, "feet"),
  3896. name: "Feet",
  3897. image: {
  3898. source: "./media/characters/vulpes/feet.svg"
  3899. }
  3900. },
  3901. maw: {
  3902. height: math.unit(1.18, "feet"),
  3903. name: "Maw",
  3904. image: {
  3905. source: "./media/characters/vulpes/maw.svg"
  3906. }
  3907. },
  3908. },
  3909. [
  3910. {
  3911. name: "Micro",
  3912. height: math.unit(2, "inches")
  3913. },
  3914. {
  3915. name: "Normal",
  3916. height: math.unit(6.3, "feet")
  3917. },
  3918. {
  3919. name: "Macro",
  3920. height: math.unit(850, "feet")
  3921. },
  3922. {
  3923. name: "Megamacro",
  3924. height: math.unit(7500, "feet"),
  3925. default: true
  3926. },
  3927. {
  3928. name: "Gigamacro",
  3929. height: math.unit(570000, "miles")
  3930. }
  3931. ]
  3932. ))
  3933. characterMakers.push(() => makeCharacter(
  3934. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3935. {
  3936. front: {
  3937. height: math.unit(6, "feet"),
  3938. weight: math.unit(210, "lbs"),
  3939. name: "Front",
  3940. image: {
  3941. source: "./media/characters/rain-fallen/front.svg"
  3942. }
  3943. },
  3944. side: {
  3945. height: math.unit(6, "feet"),
  3946. weight: math.unit(210, "lbs"),
  3947. name: "Side",
  3948. image: {
  3949. source: "./media/characters/rain-fallen/side.svg"
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(6, "feet"),
  3954. weight: math.unit(210, "lbs"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/rain-fallen/back.svg"
  3958. }
  3959. },
  3960. feral: {
  3961. height: math.unit(9, "feet"),
  3962. weight: math.unit(700, "lbs"),
  3963. name: "Feral",
  3964. image: {
  3965. source: "./media/characters/rain-fallen/feral.svg"
  3966. }
  3967. },
  3968. },
  3969. [
  3970. {
  3971. name: "Normal",
  3972. height: math.unit(5, "meter")
  3973. },
  3974. {
  3975. name: "Macro",
  3976. height: math.unit(150, "meter"),
  3977. default: true
  3978. },
  3979. {
  3980. name: "Megamacro",
  3981. height: math.unit(278e6, "meter")
  3982. },
  3983. {
  3984. name: "Gigamacro",
  3985. height: math.unit(2e9, "meter")
  3986. },
  3987. {
  3988. name: "Teramacro",
  3989. height: math.unit(8e12, "meter")
  3990. },
  3991. {
  3992. name: "Devourer",
  3993. height: math.unit(14, "zettameters")
  3994. },
  3995. {
  3996. name: "Scarlet King",
  3997. height: math.unit(18, "yottameters")
  3998. },
  3999. {
  4000. name: "Void",
  4001. height: math.unit(6.66e66, "yottameters")
  4002. }
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4007. {
  4008. standing: {
  4009. height: math.unit(6, "feet"),
  4010. weight: math.unit(180, "lbs"),
  4011. name: "Standing",
  4012. image: {
  4013. source: "./media/characters/zaakira/standing.svg"
  4014. }
  4015. },
  4016. laying: {
  4017. height: math.unit(3, "feet"),
  4018. weight: math.unit(180, "lbs"),
  4019. name: "Laying",
  4020. image: {
  4021. source: "./media/characters/zaakira/laying.svg"
  4022. }
  4023. },
  4024. },
  4025. [
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(12, "feet")
  4029. },
  4030. {
  4031. name: "Macro",
  4032. height: math.unit(279, "feet"),
  4033. default: true
  4034. }
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4039. {
  4040. front: {
  4041. height: math.unit(6, "feet"),
  4042. weight: math.unit(250, "lbs"),
  4043. name: "Front",
  4044. image: {
  4045. source: "./media/characters/sigvald/front.svg",
  4046. extra: 1000 / 850
  4047. }
  4048. },
  4049. back: {
  4050. height: math.unit(6, "feet"),
  4051. weight: math.unit(250, "lbs"),
  4052. name: "Back",
  4053. image: {
  4054. source: "./media/characters/sigvald/back.svg"
  4055. }
  4056. },
  4057. },
  4058. [
  4059. {
  4060. name: "Normal",
  4061. height: math.unit(8, "feet")
  4062. },
  4063. {
  4064. name: "Large",
  4065. height: math.unit(12, "feet")
  4066. },
  4067. {
  4068. name: "Larger",
  4069. height: math.unit(20, "feet")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(150, "feet")
  4074. },
  4075. {
  4076. name: "Macro+",
  4077. height: math.unit(200, "feet"),
  4078. default: true
  4079. },
  4080. ]
  4081. ))
  4082. characterMakers.push(() => makeCharacter(
  4083. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4084. {
  4085. side: {
  4086. height: math.unit(12, "feet"),
  4087. weight: math.unit(2000, "kg"),
  4088. name: "Side",
  4089. image: {
  4090. source: "./media/characters/scott/side.svg",
  4091. extra: 754/724,
  4092. bottom: 0.069
  4093. }
  4094. },
  4095. upright: {
  4096. height: math.unit(12, "feet"),
  4097. weight: math.unit(2000, "kg"),
  4098. name: "Upright",
  4099. image: {
  4100. source: "./media/characters/scott/upright.svg",
  4101. extra: 3881/3722,
  4102. bottom: 0.05
  4103. }
  4104. },
  4105. },
  4106. [
  4107. {
  4108. name: "Normal",
  4109. height: math.unit(12, "feet"),
  4110. default: true
  4111. },
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4116. {
  4117. side: {
  4118. height: math.unit(8, "meters"),
  4119. weight: math.unit(84755, "lbs"),
  4120. name: "Side",
  4121. image: {
  4122. source: "./media/characters/tobias/side.svg",
  4123. extra: 1474 / 1096,
  4124. bottom: 38.9 / 1513.1235
  4125. }
  4126. },
  4127. },
  4128. [
  4129. {
  4130. name: "Normal",
  4131. height: math.unit(8, "meters"),
  4132. default: true
  4133. },
  4134. ]
  4135. ))
  4136. characterMakers.push(() => makeCharacter(
  4137. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4138. {
  4139. front: {
  4140. height: math.unit(5.5, "feet"),
  4141. weight: math.unit(400, "lbs"),
  4142. name: "Front",
  4143. image: {
  4144. source: "./media/characters/kieran/front.svg",
  4145. extra: 2694/2364,
  4146. bottom: 217/2908
  4147. }
  4148. },
  4149. side: {
  4150. height: math.unit(5.5, "feet"),
  4151. weight: math.unit(400, "lbs"),
  4152. name: "Side",
  4153. image: {
  4154. source: "./media/characters/kieran/side.svg",
  4155. extra: 875/777,
  4156. bottom: 84.6/959
  4157. }
  4158. },
  4159. },
  4160. [
  4161. {
  4162. name: "Normal",
  4163. height: math.unit(5.5, "feet"),
  4164. default: true
  4165. },
  4166. ]
  4167. ))
  4168. characterMakers.push(() => makeCharacter(
  4169. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4170. {
  4171. side: {
  4172. height: math.unit(2, "meters"),
  4173. weight: math.unit(70, "kg"),
  4174. name: "Side",
  4175. image: {
  4176. source: "./media/characters/sanya/side.svg",
  4177. bottom: 0.02,
  4178. extra: 1.02
  4179. }
  4180. },
  4181. },
  4182. [
  4183. {
  4184. name: "Small",
  4185. height: math.unit(2, "meters")
  4186. },
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(3, "meters")
  4190. },
  4191. {
  4192. name: "Macro",
  4193. height: math.unit(16, "meters"),
  4194. default: true
  4195. },
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4200. {
  4201. side: {
  4202. height: math.unit(2, "meters"),
  4203. weight: math.unit(120, "kg"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/miranda/front.svg",
  4207. extra: 10.6 / 10
  4208. }
  4209. },
  4210. },
  4211. [
  4212. {
  4213. name: "Normal",
  4214. height: math.unit(10, "feet"),
  4215. default: true
  4216. }
  4217. ]
  4218. ))
  4219. characterMakers.push(() => makeCharacter(
  4220. { name: "James", species: ["deer"], tags: ["anthro"] },
  4221. {
  4222. side: {
  4223. height: math.unit(2, "meters"),
  4224. weight: math.unit(100, "kg"),
  4225. name: "Front",
  4226. image: {
  4227. source: "./media/characters/james/front.svg",
  4228. extra: 10 / 8.5
  4229. }
  4230. },
  4231. },
  4232. [
  4233. {
  4234. name: "Normal",
  4235. height: math.unit(8.5, "feet"),
  4236. default: true
  4237. }
  4238. ]
  4239. ))
  4240. characterMakers.push(() => makeCharacter(
  4241. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4242. {
  4243. side: {
  4244. height: math.unit(9.5, "feet"),
  4245. weight: math.unit(2500, "lbs"),
  4246. name: "Side",
  4247. image: {
  4248. source: "./media/characters/heather/side.svg"
  4249. }
  4250. },
  4251. },
  4252. [
  4253. {
  4254. name: "Normal",
  4255. height: math.unit(9.5, "feet"),
  4256. default: true
  4257. }
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4262. {
  4263. side: {
  4264. height: math.unit(6.5, "feet"),
  4265. weight: math.unit(400, "lbs"),
  4266. name: "Side",
  4267. image: {
  4268. source: "./media/characters/lukas/side.svg",
  4269. extra: 7.25 / 6.5
  4270. }
  4271. },
  4272. },
  4273. [
  4274. {
  4275. name: "Normal",
  4276. height: math.unit(6.5, "feet"),
  4277. default: true
  4278. }
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4283. {
  4284. side: {
  4285. height: math.unit(5, "feet"),
  4286. weight: math.unit(3000, "lbs"),
  4287. name: "Side",
  4288. image: {
  4289. source: "./media/characters/louise/side.svg"
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(5, "feet"),
  4297. default: true
  4298. }
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4303. {
  4304. side: {
  4305. height: math.unit(6, "feet"),
  4306. weight: math.unit(150, "lbs"),
  4307. name: "Side",
  4308. image: {
  4309. source: "./media/characters/ramona/side.svg"
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Normal",
  4316. height: math.unit(5.3, "meters"),
  4317. default: true
  4318. },
  4319. {
  4320. name: "Macro",
  4321. height: math.unit(20, "stories")
  4322. },
  4323. {
  4324. name: "Macro+",
  4325. height: math.unit(50, "stories")
  4326. },
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4331. {
  4332. standing: {
  4333. height: math.unit(5.75, "feet"),
  4334. weight: math.unit(160, "lbs"),
  4335. name: "Standing",
  4336. image: {
  4337. source: "./media/characters/deerpuff/standing.svg",
  4338. extra: 682 / 624
  4339. }
  4340. },
  4341. sitting: {
  4342. height: math.unit(5.75 / 1.79, "feet"),
  4343. weight: math.unit(160, "lbs"),
  4344. name: "Sitting",
  4345. image: {
  4346. source: "./media/characters/deerpuff/sitting.svg",
  4347. bottom: 44 / 400,
  4348. extra: 1
  4349. }
  4350. },
  4351. taurLaying: {
  4352. height: math.unit(6, "feet"),
  4353. weight: math.unit(400, "lbs"),
  4354. name: "Taur (Laying)",
  4355. image: {
  4356. source: "./media/characters/deerpuff/taur-laying.svg"
  4357. }
  4358. },
  4359. },
  4360. [
  4361. {
  4362. name: "Puffball",
  4363. height: math.unit(6, "inches")
  4364. },
  4365. {
  4366. name: "Normalpuff",
  4367. height: math.unit(5.75, "feet")
  4368. },
  4369. {
  4370. name: "Macropuff",
  4371. height: math.unit(1500, "feet"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Megapuff",
  4376. height: math.unit(500, "miles")
  4377. },
  4378. {
  4379. name: "Gigapuff",
  4380. height: math.unit(250000, "miles")
  4381. },
  4382. {
  4383. name: "Omegapuff",
  4384. height: math.unit(1000, "lightyears")
  4385. },
  4386. ]
  4387. ))
  4388. characterMakers.push(() => makeCharacter(
  4389. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4390. {
  4391. stomping: {
  4392. height: math.unit(6, "feet"),
  4393. weight: math.unit(170, "lbs"),
  4394. name: "Stomping",
  4395. image: {
  4396. source: "./media/characters/vivian/stomping.svg"
  4397. }
  4398. },
  4399. sitting: {
  4400. height: math.unit(6 / 1.75, "feet"),
  4401. weight: math.unit(170, "lbs"),
  4402. name: "Sitting",
  4403. image: {
  4404. source: "./media/characters/vivian/sitting.svg",
  4405. bottom: 1 / 6.4,
  4406. extra: 1,
  4407. }
  4408. },
  4409. },
  4410. [
  4411. {
  4412. name: "Normal",
  4413. height: math.unit(7, "feet"),
  4414. default: true
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(10, "stories")
  4419. },
  4420. {
  4421. name: "Macro+",
  4422. height: math.unit(30, "stories")
  4423. },
  4424. {
  4425. name: "Megamacro",
  4426. height: math.unit(10, "miles")
  4427. },
  4428. {
  4429. name: "Megamacro+",
  4430. height: math.unit(2750000, "meters")
  4431. },
  4432. ]
  4433. ))
  4434. characterMakers.push(() => makeCharacter(
  4435. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4436. {
  4437. front: {
  4438. height: math.unit(6, "feet"),
  4439. weight: math.unit(160, "lbs"),
  4440. name: "Front",
  4441. image: {
  4442. source: "./media/characters/prince/front.svg",
  4443. extra: 3400 / 3000
  4444. }
  4445. },
  4446. jumping: {
  4447. height: math.unit(6, "feet"),
  4448. weight: math.unit(160, "lbs"),
  4449. name: "Jumping",
  4450. image: {
  4451. source: "./media/characters/prince/jump.svg",
  4452. extra: 2555 / 2134
  4453. }
  4454. },
  4455. },
  4456. [
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(7.75, "feet"),
  4460. default: true
  4461. },
  4462. {
  4463. name: "Not cute",
  4464. height: math.unit(17, "feet")
  4465. },
  4466. {
  4467. name: "I said NOT",
  4468. height: math.unit(91, "feet")
  4469. },
  4470. {
  4471. name: "Please stop",
  4472. height: math.unit(560, "feet")
  4473. },
  4474. {
  4475. name: "What have you done",
  4476. height: math.unit(2200, "feet")
  4477. },
  4478. {
  4479. name: "Deer God",
  4480. height: math.unit(3.6, "miles")
  4481. },
  4482. ]
  4483. ))
  4484. characterMakers.push(() => makeCharacter(
  4485. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4486. {
  4487. standing: {
  4488. height: math.unit(6, "feet"),
  4489. weight: math.unit(300, "lbs"),
  4490. name: "Standing",
  4491. image: {
  4492. source: "./media/characters/psymon/standing.svg",
  4493. extra: 1888 / 1810,
  4494. bottom: 0.05
  4495. }
  4496. },
  4497. slithering: {
  4498. height: math.unit(6, "feet"),
  4499. weight: math.unit(300, "lbs"),
  4500. name: "Slithering",
  4501. image: {
  4502. source: "./media/characters/psymon/slithering.svg",
  4503. extra: 1330 / 1224
  4504. }
  4505. },
  4506. slitheringAlt: {
  4507. height: math.unit(6, "feet"),
  4508. weight: math.unit(300, "lbs"),
  4509. name: "Slithering (Alt)",
  4510. image: {
  4511. source: "./media/characters/psymon/slithering-alt.svg",
  4512. extra: 1330 / 1224
  4513. }
  4514. },
  4515. },
  4516. [
  4517. {
  4518. name: "Normal",
  4519. height: math.unit(11.25, "feet"),
  4520. default: true
  4521. },
  4522. {
  4523. name: "Large",
  4524. height: math.unit(27, "feet")
  4525. },
  4526. {
  4527. name: "Giant",
  4528. height: math.unit(87, "feet")
  4529. },
  4530. {
  4531. name: "Macro",
  4532. height: math.unit(365, "feet")
  4533. },
  4534. {
  4535. name: "Megamacro",
  4536. height: math.unit(3, "miles")
  4537. },
  4538. {
  4539. name: "World Serpent",
  4540. height: math.unit(8000, "miles")
  4541. },
  4542. ]
  4543. ))
  4544. characterMakers.push(() => makeCharacter(
  4545. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4546. {
  4547. front: {
  4548. height: math.unit(6, "feet"),
  4549. weight: math.unit(180, "lbs"),
  4550. name: "Front",
  4551. image: {
  4552. source: "./media/characters/daimos/front.svg",
  4553. extra: 4160 / 3897,
  4554. bottom: 0.021
  4555. }
  4556. }
  4557. },
  4558. [
  4559. {
  4560. name: "Normal",
  4561. height: math.unit(8, "feet"),
  4562. default: true
  4563. },
  4564. {
  4565. name: "Big Dog",
  4566. height: math.unit(22, "feet")
  4567. },
  4568. {
  4569. name: "Macro",
  4570. height: math.unit(127, "feet")
  4571. },
  4572. {
  4573. name: "Megamacro",
  4574. height: math.unit(3600, "feet")
  4575. },
  4576. ]
  4577. ))
  4578. characterMakers.push(() => makeCharacter(
  4579. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4580. {
  4581. side: {
  4582. height: math.unit(6, "feet"),
  4583. weight: math.unit(180, "lbs"),
  4584. name: "Side",
  4585. image: {
  4586. source: "./media/characters/blake/side.svg",
  4587. extra: 1212 / 1120,
  4588. bottom: 0.05
  4589. }
  4590. },
  4591. crouched: {
  4592. height: math.unit(6 * 0.57, "feet"),
  4593. weight: math.unit(180, "lbs"),
  4594. name: "Crouched",
  4595. image: {
  4596. source: "./media/characters/blake/crouched.svg",
  4597. extra: 840 / 587,
  4598. bottom: 0.04
  4599. }
  4600. },
  4601. bent: {
  4602. height: math.unit(6 * 0.75, "feet"),
  4603. weight: math.unit(180, "lbs"),
  4604. name: "Bent",
  4605. image: {
  4606. source: "./media/characters/blake/bent.svg",
  4607. extra: 592 / 544,
  4608. bottom: 0.035
  4609. }
  4610. },
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(8 + 1 / 6, "feet"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "Big Backside",
  4620. height: math.unit(37, "feet")
  4621. },
  4622. {
  4623. name: "Subway Shredder",
  4624. height: math.unit(72, "feet")
  4625. },
  4626. {
  4627. name: "City Carver",
  4628. height: math.unit(1675, "feet")
  4629. },
  4630. {
  4631. name: "Tectonic Tweaker",
  4632. height: math.unit(2300, "miles")
  4633. },
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4638. {
  4639. front: {
  4640. height: math.unit(6, "feet"),
  4641. weight: math.unit(180, "lbs"),
  4642. name: "Front",
  4643. image: {
  4644. source: "./media/characters/guisetto/front.svg",
  4645. extra: 856 / 817,
  4646. bottom: 0.06
  4647. }
  4648. },
  4649. airborne: {
  4650. height: math.unit(6, "feet"),
  4651. weight: math.unit(180, "lbs"),
  4652. name: "Airborne",
  4653. image: {
  4654. source: "./media/characters/guisetto/airborne.svg",
  4655. extra: 584 / 525
  4656. }
  4657. },
  4658. },
  4659. [
  4660. {
  4661. name: "Normal",
  4662. height: math.unit(10 + 11 / 12, "feet"),
  4663. default: true
  4664. },
  4665. {
  4666. name: "Large",
  4667. height: math.unit(35, "feet")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(475, "feet")
  4672. },
  4673. ]
  4674. ))
  4675. characterMakers.push(() => makeCharacter(
  4676. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4677. {
  4678. front: {
  4679. height: math.unit(6, "feet"),
  4680. weight: math.unit(180, "lbs"),
  4681. name: "Front",
  4682. image: {
  4683. source: "./media/characters/luxor/front.svg",
  4684. extra: 2940 / 2152
  4685. }
  4686. },
  4687. back: {
  4688. height: math.unit(6, "feet"),
  4689. weight: math.unit(180, "lbs"),
  4690. name: "Back",
  4691. image: {
  4692. source: "./media/characters/luxor/back.svg",
  4693. extra: 1083 / 960
  4694. }
  4695. },
  4696. },
  4697. [
  4698. {
  4699. name: "Normal",
  4700. height: math.unit(5 + 5 / 6, "feet"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Lamp",
  4705. height: math.unit(50, "feet")
  4706. },
  4707. {
  4708. name: "Lämp",
  4709. height: math.unit(300, "feet")
  4710. },
  4711. {
  4712. name: "The sun is a lamp",
  4713. height: math.unit(250000, "miles")
  4714. },
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4719. {
  4720. front: {
  4721. height: math.unit(6, "feet"),
  4722. weight: math.unit(50, "lbs"),
  4723. name: "Front",
  4724. image: {
  4725. source: "./media/characters/huoyan/front.svg"
  4726. }
  4727. },
  4728. side: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(180, "lbs"),
  4731. name: "Side",
  4732. image: {
  4733. source: "./media/characters/huoyan/side.svg"
  4734. }
  4735. },
  4736. },
  4737. [
  4738. {
  4739. name: "Chef",
  4740. height: math.unit(9, "feet")
  4741. },
  4742. {
  4743. name: "Normal",
  4744. height: math.unit(65, "feet"),
  4745. default: true
  4746. },
  4747. {
  4748. name: "Macro",
  4749. height: math.unit(780, "feet")
  4750. },
  4751. {
  4752. name: "Flaming Mountain",
  4753. height: math.unit(4.8, "miles")
  4754. },
  4755. {
  4756. name: "Celestial",
  4757. height: math.unit(765000, "miles")
  4758. },
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4763. {
  4764. front: {
  4765. height: math.unit(5 + 3 / 4, "feet"),
  4766. weight: math.unit(120, "lbs"),
  4767. name: "Front",
  4768. image: {
  4769. source: "./media/characters/tails/front.svg"
  4770. }
  4771. }
  4772. },
  4773. [
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(5 + 3 / 4, "feet"),
  4777. default: true
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4783. {
  4784. front: {
  4785. height: math.unit(4, "feet"),
  4786. weight: math.unit(50, "lbs"),
  4787. name: "Front",
  4788. image: {
  4789. source: "./media/characters/rainy/front.svg"
  4790. }
  4791. }
  4792. },
  4793. [
  4794. {
  4795. name: "Macro",
  4796. height: math.unit(800, "feet"),
  4797. default: true
  4798. }
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4803. {
  4804. front: {
  4805. height: math.unit(6, "feet"),
  4806. weight: math.unit(150, "lbs"),
  4807. name: "Front",
  4808. image: {
  4809. source: "./media/characters/rainier/front.svg"
  4810. }
  4811. }
  4812. },
  4813. [
  4814. {
  4815. name: "Micro",
  4816. height: math.unit(2, "mm"),
  4817. default: true
  4818. }
  4819. ]
  4820. ))
  4821. characterMakers.push(() => makeCharacter(
  4822. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4823. {
  4824. front: {
  4825. height: math.unit(6, "feet"),
  4826. weight: math.unit(180, "lbs"),
  4827. name: "Front",
  4828. image: {
  4829. source: "./media/characters/andy/front.svg"
  4830. }
  4831. }
  4832. },
  4833. [
  4834. {
  4835. name: "Normal",
  4836. height: math.unit(8, "feet"),
  4837. default: true
  4838. },
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(1000, "feet")
  4842. },
  4843. {
  4844. name: "Megamacro",
  4845. height: math.unit(5, "miles")
  4846. },
  4847. {
  4848. name: "Gigamacro",
  4849. height: math.unit(5000, "miles")
  4850. },
  4851. ]
  4852. ))
  4853. characterMakers.push(() => makeCharacter(
  4854. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4855. {
  4856. front: {
  4857. height: math.unit(6, "feet"),
  4858. weight: math.unit(210, "lbs"),
  4859. name: "Front",
  4860. image: {
  4861. source: "./media/characters/cimmaron/front-sfw.svg",
  4862. extra: 701 / 676,
  4863. bottom: 0.046
  4864. }
  4865. },
  4866. back: {
  4867. height: math.unit(6, "feet"),
  4868. weight: math.unit(210, "lbs"),
  4869. name: "Back",
  4870. image: {
  4871. source: "./media/characters/cimmaron/back-sfw.svg",
  4872. extra: 701 / 676,
  4873. bottom: 0.046
  4874. }
  4875. },
  4876. frontNsfw: {
  4877. height: math.unit(6, "feet"),
  4878. weight: math.unit(210, "lbs"),
  4879. name: "Front (NSFW)",
  4880. image: {
  4881. source: "./media/characters/cimmaron/front-nsfw.svg",
  4882. extra: 701 / 676,
  4883. bottom: 0.046
  4884. }
  4885. },
  4886. backNsfw: {
  4887. height: math.unit(6, "feet"),
  4888. weight: math.unit(210, "lbs"),
  4889. name: "Back (NSFW)",
  4890. image: {
  4891. source: "./media/characters/cimmaron/back-nsfw.svg",
  4892. extra: 701 / 676,
  4893. bottom: 0.046
  4894. }
  4895. },
  4896. dick: {
  4897. height: math.unit(1.714, "feet"),
  4898. name: "Dick",
  4899. image: {
  4900. source: "./media/characters/cimmaron/dick.svg"
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(6, "feet"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Macro Mayor",
  4912. height: math.unit(350, "meters")
  4913. },
  4914. ]
  4915. ))
  4916. characterMakers.push(() => makeCharacter(
  4917. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4918. {
  4919. front: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(200, "lbs"),
  4922. name: "Front",
  4923. image: {
  4924. source: "./media/characters/akari/front.svg",
  4925. extra: 962 / 901,
  4926. bottom: 0.04
  4927. }
  4928. }
  4929. },
  4930. [
  4931. {
  4932. name: "Micro",
  4933. height: math.unit(5, "inches"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(7, "feet")
  4939. },
  4940. ]
  4941. ))
  4942. characterMakers.push(() => makeCharacter(
  4943. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4944. {
  4945. front: {
  4946. height: math.unit(6, "feet"),
  4947. weight: math.unit(140, "lbs"),
  4948. name: "Front",
  4949. image: {
  4950. source: "./media/characters/cynosura/front.svg",
  4951. extra: 896 / 847
  4952. }
  4953. },
  4954. back: {
  4955. height: math.unit(6, "feet"),
  4956. weight: math.unit(140, "lbs"),
  4957. name: "Back",
  4958. image: {
  4959. source: "./media/characters/cynosura/back.svg",
  4960. extra: 1365 / 1250
  4961. }
  4962. },
  4963. },
  4964. [
  4965. {
  4966. name: "Micro",
  4967. height: math.unit(4, "inches")
  4968. },
  4969. {
  4970. name: "Normal",
  4971. height: math.unit(5.75, "feet"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Tall",
  4976. height: math.unit(10, "feet")
  4977. },
  4978. {
  4979. name: "Big",
  4980. height: math.unit(20, "feet")
  4981. },
  4982. {
  4983. name: "Macro",
  4984. height: math.unit(50, "feet")
  4985. },
  4986. ]
  4987. ))
  4988. characterMakers.push(() => makeCharacter(
  4989. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4990. {
  4991. front: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(170, "lbs"),
  4994. name: "Front",
  4995. image: {
  4996. source: "./media/characters/gin/front.svg",
  4997. extra: 1.053,
  4998. bottom: 0.025
  4999. }
  5000. },
  5001. foot: {
  5002. height: math.unit(6 / 4.25, "feet"),
  5003. name: "Foot",
  5004. image: {
  5005. source: "./media/characters/gin/foot.svg"
  5006. }
  5007. },
  5008. sole: {
  5009. height: math.unit(6 / 4.40, "feet"),
  5010. name: "Sole",
  5011. image: {
  5012. source: "./media/characters/gin/sole.svg"
  5013. }
  5014. },
  5015. },
  5016. [
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(13 + 2/12, "feet")
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(1500, "feet")
  5024. },
  5025. {
  5026. name: "Megamacro",
  5027. height: math.unit(200, "miles"),
  5028. default: true
  5029. },
  5030. {
  5031. name: "Gigamacro",
  5032. height: math.unit(500, "megameters")
  5033. },
  5034. {
  5035. name: "Teramacro",
  5036. height: math.unit(15, "lightyears")
  5037. }
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(6 + 1 / 6, "feet"),
  5045. weight: math.unit(178, "lbs"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/guy/front.svg"
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(6 + 1 / 6, "feet"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Large",
  5060. height: math.unit(25 + 7 / 12, "feet")
  5061. },
  5062. {
  5063. name: "Macro",
  5064. height: math.unit(60 + 9 / 12, "feet")
  5065. },
  5066. {
  5067. name: "Macro+",
  5068. height: math.unit(246, "feet")
  5069. },
  5070. {
  5071. name: "Macro++",
  5072. height: math.unit(878, "feet")
  5073. }
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5078. {
  5079. front: {
  5080. height: math.unit(9, "feet"),
  5081. weight: math.unit(800, "lbs"),
  5082. name: "Front",
  5083. image: {
  5084. source: "./media/characters/tiberius/front.svg",
  5085. extra: 2295 / 2071
  5086. }
  5087. },
  5088. back: {
  5089. height: math.unit(9, "feet"),
  5090. weight: math.unit(800, "lbs"),
  5091. name: "Back",
  5092. image: {
  5093. source: "./media/characters/tiberius/back.svg",
  5094. extra: 2373 / 2160
  5095. }
  5096. },
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(9, "feet"),
  5102. default: true
  5103. }
  5104. ]
  5105. ))
  5106. characterMakers.push(() => makeCharacter(
  5107. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5108. {
  5109. front: {
  5110. height: math.unit(6, "feet"),
  5111. weight: math.unit(600, "lbs"),
  5112. name: "Front",
  5113. image: {
  5114. source: "./media/characters/surgo/front.svg",
  5115. extra: 3591 / 2227
  5116. }
  5117. },
  5118. back: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(600, "lbs"),
  5121. name: "Back",
  5122. image: {
  5123. source: "./media/characters/surgo/back.svg",
  5124. extra: 3557 / 2228
  5125. }
  5126. },
  5127. laying: {
  5128. height: math.unit(6 * 0.85, "feet"),
  5129. weight: math.unit(600, "lbs"),
  5130. name: "Laying",
  5131. image: {
  5132. source: "./media/characters/surgo/laying.svg"
  5133. }
  5134. },
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(6, "feet"),
  5140. default: true
  5141. }
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5146. {
  5147. side: {
  5148. height: math.unit(6, "feet"),
  5149. weight: math.unit(150, "lbs"),
  5150. name: "Side",
  5151. image: {
  5152. source: "./media/characters/cibus/side.svg",
  5153. extra: 800 / 400
  5154. }
  5155. },
  5156. },
  5157. [
  5158. {
  5159. name: "Normal",
  5160. height: math.unit(6, "feet"),
  5161. default: true
  5162. }
  5163. ]
  5164. ))
  5165. characterMakers.push(() => makeCharacter(
  5166. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5167. {
  5168. front: {
  5169. height: math.unit(6, "feet"),
  5170. weight: math.unit(240, "lbs"),
  5171. name: "Front",
  5172. image: {
  5173. source: "./media/characters/nibbles/front.svg"
  5174. }
  5175. },
  5176. side: {
  5177. height: math.unit(6, "feet"),
  5178. weight: math.unit(240, "lbs"),
  5179. name: "Side",
  5180. image: {
  5181. source: "./media/characters/nibbles/side.svg"
  5182. }
  5183. },
  5184. },
  5185. [
  5186. {
  5187. name: "Normal",
  5188. height: math.unit(9, "feet"),
  5189. default: true
  5190. }
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5195. {
  5196. side: {
  5197. height: math.unit(5 + 1 / 6, "feet"),
  5198. weight: math.unit(130, "lbs"),
  5199. name: "Side",
  5200. image: {
  5201. source: "./media/characters/rikky/side.svg"
  5202. }
  5203. },
  5204. },
  5205. [
  5206. {
  5207. name: "Normal",
  5208. height: math.unit(5 + 1 / 6, "feet")
  5209. },
  5210. {
  5211. name: "Macro",
  5212. height: math.unit(152, "feet"),
  5213. default: true
  5214. },
  5215. {
  5216. name: "Megamacro",
  5217. height: math.unit(7, "miles")
  5218. }
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5223. {
  5224. side: {
  5225. height: math.unit(370, "cm"),
  5226. weight: math.unit(350, "lbs"),
  5227. name: "Side",
  5228. image: {
  5229. source: "./media/characters/malfressa/side.svg"
  5230. }
  5231. },
  5232. walking: {
  5233. height: math.unit(370, "cm"),
  5234. weight: math.unit(350, "lbs"),
  5235. name: "Walking",
  5236. image: {
  5237. source: "./media/characters/malfressa/walking.svg"
  5238. }
  5239. },
  5240. feral: {
  5241. height: math.unit(2500, "cm"),
  5242. weight: math.unit(100000, "lbs"),
  5243. name: "Feral",
  5244. image: {
  5245. source: "./media/characters/malfressa/feral.svg",
  5246. extra: 2108 / 837,
  5247. bottom: 0.02
  5248. }
  5249. },
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(370, "cm")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(300, "meters"),
  5259. default: true
  5260. }
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5265. {
  5266. front: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(60, "kg"),
  5269. name: "Front",
  5270. image: {
  5271. source: "./media/characters/jaro/front.svg"
  5272. }
  5273. },
  5274. back: {
  5275. height: math.unit(6, "feet"),
  5276. weight: math.unit(60, "kg"),
  5277. name: "Back",
  5278. image: {
  5279. source: "./media/characters/jaro/back.svg"
  5280. }
  5281. },
  5282. },
  5283. [
  5284. {
  5285. name: "Micro",
  5286. height: math.unit(7, "inches")
  5287. },
  5288. {
  5289. name: "Normal",
  5290. height: math.unit(5.5, "feet"),
  5291. default: true
  5292. },
  5293. {
  5294. name: "Minimacro",
  5295. height: math.unit(20, "feet")
  5296. },
  5297. {
  5298. name: "Macro",
  5299. height: math.unit(200, "meters")
  5300. }
  5301. ]
  5302. ))
  5303. characterMakers.push(() => makeCharacter(
  5304. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5305. {
  5306. front: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(195, "lb"),
  5309. name: "Front",
  5310. image: {
  5311. source: "./media/characters/rogue/front.svg"
  5312. }
  5313. },
  5314. },
  5315. [
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(90, "feet"),
  5319. default: true
  5320. },
  5321. ]
  5322. ))
  5323. characterMakers.push(() => makeCharacter(
  5324. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5325. {
  5326. front: {
  5327. height: math.unit(5 + 8 / 12, "feet"),
  5328. weight: math.unit(140, "lb"),
  5329. name: "Front",
  5330. image: {
  5331. source: "./media/characters/piper/front.svg",
  5332. extra: 3928 / 3681
  5333. }
  5334. },
  5335. },
  5336. [
  5337. {
  5338. name: "Micro",
  5339. height: math.unit(2, "inches")
  5340. },
  5341. {
  5342. name: "Normal",
  5343. height: math.unit(5 + 8 / 12, "feet")
  5344. },
  5345. {
  5346. name: "Macro",
  5347. height: math.unit(250, "feet"),
  5348. default: true
  5349. },
  5350. {
  5351. name: "Megamacro",
  5352. height: math.unit(7, "miles")
  5353. },
  5354. ]
  5355. ))
  5356. characterMakers.push(() => makeCharacter(
  5357. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5358. {
  5359. front: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(220, "lb"),
  5362. name: "Front",
  5363. image: {
  5364. source: "./media/characters/gemini/front.svg"
  5365. }
  5366. },
  5367. back: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(220, "lb"),
  5370. name: "Back",
  5371. image: {
  5372. source: "./media/characters/gemini/back.svg"
  5373. }
  5374. },
  5375. kneeling: {
  5376. height: math.unit(6 / 1.5, "feet"),
  5377. weight: math.unit(220, "lb"),
  5378. name: "Kneeling",
  5379. image: {
  5380. source: "./media/characters/gemini/kneeling.svg",
  5381. bottom: 0.02
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(300, "meters"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Megamacro",
  5393. height: math.unit(6900, "meters")
  5394. },
  5395. ]
  5396. ))
  5397. characterMakers.push(() => makeCharacter(
  5398. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5399. {
  5400. anthro: {
  5401. height: math.unit(2.35, "meters"),
  5402. weight: math.unit(73, "kg"),
  5403. name: "Anthro",
  5404. image: {
  5405. source: "./media/characters/alicia/anthro.svg",
  5406. extra: 2571/2385,
  5407. bottom: 75/2648
  5408. }
  5409. },
  5410. paw: {
  5411. height: math.unit(1.32, "feet"),
  5412. name: "Paw",
  5413. image: {
  5414. source: "./media/characters/alicia/paw.svg"
  5415. }
  5416. },
  5417. feral: {
  5418. height: math.unit(1.69, "meters"),
  5419. weight: math.unit(73, "kg"),
  5420. name: "Feral",
  5421. image: {
  5422. source: "./media/characters/alicia/feral.svg",
  5423. extra: 2123/1715,
  5424. bottom: 222/2349
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(2.35, "meters")
  5432. },
  5433. {
  5434. name: "Macro",
  5435. height: math.unit(60, "meters"),
  5436. default: true
  5437. },
  5438. {
  5439. name: "Megamacro",
  5440. height: math.unit(10000, "kilometers")
  5441. },
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5446. {
  5447. front: {
  5448. height: math.unit(7, "feet"),
  5449. weight: math.unit(250, "lbs"),
  5450. name: "Front",
  5451. image: {
  5452. source: "./media/characters/archy/front.svg"
  5453. }
  5454. }
  5455. },
  5456. [
  5457. {
  5458. name: "Micro",
  5459. height: math.unit(1, "inch")
  5460. },
  5461. {
  5462. name: "Shorty",
  5463. height: math.unit(5, "feet")
  5464. },
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(7, "feet")
  5468. },
  5469. {
  5470. name: "Macro",
  5471. height: math.unit(600, "meters"),
  5472. default: true
  5473. },
  5474. {
  5475. name: "Megamacro",
  5476. height: math.unit(1, "mile")
  5477. },
  5478. ]
  5479. ))
  5480. characterMakers.push(() => makeCharacter(
  5481. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5482. {
  5483. front: {
  5484. height: math.unit(1.65, "meters"),
  5485. weight: math.unit(74, "kg"),
  5486. name: "Front",
  5487. image: {
  5488. source: "./media/characters/berri/front.svg",
  5489. extra: 857/837,
  5490. bottom: 18/877
  5491. }
  5492. },
  5493. bum: {
  5494. height: math.unit(1.46, "feet"),
  5495. name: "Bum",
  5496. image: {
  5497. source: "./media/characters/berri/bum.svg"
  5498. }
  5499. },
  5500. mouth: {
  5501. height: math.unit(0.44, "feet"),
  5502. name: "Mouth",
  5503. image: {
  5504. source: "./media/characters/berri/mouth.svg"
  5505. }
  5506. },
  5507. paw: {
  5508. height: math.unit(0.826, "feet"),
  5509. name: "Paw",
  5510. image: {
  5511. source: "./media/characters/berri/paw.svg"
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "Normal",
  5518. height: math.unit(1.65, "meters")
  5519. },
  5520. {
  5521. name: "Macro",
  5522. height: math.unit(60, "m"),
  5523. default: true
  5524. },
  5525. {
  5526. name: "Megamacro",
  5527. height: math.unit(9.213, "km")
  5528. },
  5529. {
  5530. name: "Planet Eater",
  5531. height: math.unit(489, "megameters")
  5532. },
  5533. {
  5534. name: "Teramacro",
  5535. height: math.unit(2471635000000, "meters")
  5536. },
  5537. {
  5538. name: "Examacro",
  5539. height: math.unit(8.0624e+26, "meters")
  5540. }
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(1.72, "meters"),
  5548. weight: math.unit(68, "kg"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/lexi/front.svg"
  5552. }
  5553. }
  5554. },
  5555. [
  5556. {
  5557. name: "Very Smol",
  5558. height: math.unit(10, "mm")
  5559. },
  5560. {
  5561. name: "Micro",
  5562. height: math.unit(6.8, "cm"),
  5563. default: true
  5564. },
  5565. {
  5566. name: "Normal",
  5567. height: math.unit(1.72, "m")
  5568. }
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(1.69, "meters"),
  5576. weight: math.unit(68, "kg"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/martin/front.svg",
  5580. extra: 596 / 581
  5581. }
  5582. }
  5583. },
  5584. [
  5585. {
  5586. name: "Micro",
  5587. height: math.unit(6.85, "cm"),
  5588. default: true
  5589. },
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(1.69, "m")
  5593. }
  5594. ]
  5595. ))
  5596. characterMakers.push(() => makeCharacter(
  5597. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5598. {
  5599. front: {
  5600. height: math.unit(1.69, "meters"),
  5601. weight: math.unit(68, "kg"),
  5602. name: "Front",
  5603. image: {
  5604. source: "./media/characters/juno/front.svg"
  5605. }
  5606. }
  5607. },
  5608. [
  5609. {
  5610. name: "Micro",
  5611. height: math.unit(7, "cm")
  5612. },
  5613. {
  5614. name: "Normal",
  5615. height: math.unit(1.89, "m")
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(353, "meters"),
  5620. default: true
  5621. }
  5622. ]
  5623. ))
  5624. characterMakers.push(() => makeCharacter(
  5625. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5626. {
  5627. front: {
  5628. height: math.unit(1.93, "meters"),
  5629. weight: math.unit(83, "kg"),
  5630. name: "Front",
  5631. image: {
  5632. source: "./media/characters/samantha/front.svg"
  5633. }
  5634. },
  5635. frontClothed: {
  5636. height: math.unit(1.93, "meters"),
  5637. weight: math.unit(83, "kg"),
  5638. name: "Front (Clothed)",
  5639. image: {
  5640. source: "./media/characters/samantha/front-clothed.svg"
  5641. }
  5642. },
  5643. back: {
  5644. height: math.unit(1.93, "meters"),
  5645. weight: math.unit(83, "kg"),
  5646. name: "Back",
  5647. image: {
  5648. source: "./media/characters/samantha/back.svg"
  5649. }
  5650. },
  5651. },
  5652. [
  5653. {
  5654. name: "Normal",
  5655. height: math.unit(1.93, "m")
  5656. },
  5657. {
  5658. name: "Macro",
  5659. height: math.unit(74, "meters"),
  5660. default: true
  5661. },
  5662. {
  5663. name: "Macro+",
  5664. height: math.unit(223, "meters"),
  5665. },
  5666. {
  5667. name: "Megamacro",
  5668. height: math.unit(8381, "meters"),
  5669. },
  5670. {
  5671. name: "Megamacro+",
  5672. height: math.unit(12000, "kilometers")
  5673. },
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(1.92, "meters"),
  5681. weight: math.unit(80, "kg"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/dr-clay/front.svg"
  5685. }
  5686. },
  5687. frontClothed: {
  5688. height: math.unit(1.92, "meters"),
  5689. weight: math.unit(80, "kg"),
  5690. name: "Front (Clothed)",
  5691. image: {
  5692. source: "./media/characters/dr-clay/front-clothed.svg"
  5693. }
  5694. }
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(1.92, "m")
  5700. },
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(214, "meters"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Macro+",
  5708. height: math.unit(12.237, "meters"),
  5709. },
  5710. {
  5711. name: "Megamacro",
  5712. height: math.unit(557, "megameters"),
  5713. },
  5714. {
  5715. name: "Unimaginable",
  5716. height: math.unit(120e9, "lightyears")
  5717. },
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5722. {
  5723. front: {
  5724. height: math.unit(2, "meters"),
  5725. weight: math.unit(80, "kg"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Teramacro",
  5735. height: math.unit(500000, "lightyears"),
  5736. default: true
  5737. },
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5742. {
  5743. front: {
  5744. height: math.unit(2, "meters"),
  5745. weight: math.unit(150, "kg"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/vemus/front.svg",
  5749. extra: 2384 / 2084,
  5750. bottom: 0.0123
  5751. }
  5752. }
  5753. },
  5754. [
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(3.75, "meters"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Big",
  5762. height: math.unit(8, "meters")
  5763. },
  5764. {
  5765. name: "Macro",
  5766. height: math.unit(100, "meters")
  5767. },
  5768. {
  5769. name: "Macro+",
  5770. height: math.unit(1500, "meters")
  5771. },
  5772. {
  5773. name: "Stellar",
  5774. height: math.unit(14e8, "meters")
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(2, "meters"),
  5783. weight: math.unit(70, "kg"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/beherit/front.svg",
  5787. extra: 1408 / 1242
  5788. }
  5789. }
  5790. },
  5791. [
  5792. {
  5793. name: "Normal",
  5794. height: math.unit(6, "feet")
  5795. },
  5796. {
  5797. name: "Lorg",
  5798. height: math.unit(25, "feet"),
  5799. default: true
  5800. },
  5801. {
  5802. name: "Lorger",
  5803. height: math.unit(75, "feet")
  5804. },
  5805. {
  5806. name: "Macro",
  5807. height: math.unit(200, "meters")
  5808. },
  5809. ]
  5810. ))
  5811. characterMakers.push(() => makeCharacter(
  5812. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5813. {
  5814. front: {
  5815. height: math.unit(2, "meters"),
  5816. weight: math.unit(150, "kg"),
  5817. name: "Front",
  5818. image: {
  5819. source: "./media/characters/everett/front.svg",
  5820. extra: 2038 / 1737,
  5821. bottom: 0.03
  5822. }
  5823. },
  5824. paw: {
  5825. height: math.unit(2 / 3.6, "meters"),
  5826. name: "Paw",
  5827. image: {
  5828. source: "./media/characters/everett/paw.svg"
  5829. }
  5830. },
  5831. },
  5832. [
  5833. {
  5834. name: "Normal",
  5835. height: math.unit(15, "feet"),
  5836. default: true
  5837. },
  5838. {
  5839. name: "Lorg",
  5840. height: math.unit(70, "feet"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Lorger",
  5845. height: math.unit(250, "feet")
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(500, "meters")
  5850. },
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(2, "meters"),
  5858. weight: math.unit(86, "kg"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/rose-lion/front.svg"
  5862. }
  5863. },
  5864. bent: {
  5865. height: math.unit(2 / 1.4288, "meters"),
  5866. weight: math.unit(86, "kg"),
  5867. name: "Bent",
  5868. image: {
  5869. source: "./media/characters/rose-lion/bent.svg"
  5870. }
  5871. }
  5872. },
  5873. [
  5874. {
  5875. name: "Mini-Micro",
  5876. height: math.unit(1, "cm")
  5877. },
  5878. {
  5879. name: "Micro",
  5880. height: math.unit(3.5, "inches"),
  5881. default: true
  5882. },
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(6 + 1 / 6, "feet")
  5886. },
  5887. {
  5888. name: "Mini-Macro",
  5889. height: math.unit(9 + 10 / 12, "feet")
  5890. },
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(2, "meters"),
  5898. weight: math.unit(350, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/regal/front.svg"
  5902. }
  5903. },
  5904. back: {
  5905. height: math.unit(2, "meters"),
  5906. weight: math.unit(350, "lbs"),
  5907. name: "Back",
  5908. image: {
  5909. source: "./media/characters/regal/back.svg"
  5910. }
  5911. },
  5912. },
  5913. [
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(350, "feet"),
  5917. default: true
  5918. }
  5919. ]
  5920. ))
  5921. characterMakers.push(() => makeCharacter(
  5922. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5923. {
  5924. front: {
  5925. height: math.unit(4 + 11 / 12, "feet"),
  5926. weight: math.unit(100, "lbs"),
  5927. name: "Front",
  5928. image: {
  5929. source: "./media/characters/opal/front.svg"
  5930. }
  5931. },
  5932. frontAlt: {
  5933. height: math.unit(4 + 11 / 12, "feet"),
  5934. weight: math.unit(100, "lbs"),
  5935. name: "Front (Alt)",
  5936. image: {
  5937. source: "./media/characters/opal/front-alt.svg"
  5938. }
  5939. },
  5940. },
  5941. [
  5942. {
  5943. name: "Small",
  5944. height: math.unit(4 + 11 / 12, "feet")
  5945. },
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(20, "feet"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Macro",
  5953. height: math.unit(120, "feet")
  5954. },
  5955. {
  5956. name: "Megamacro",
  5957. height: math.unit(80, "miles")
  5958. },
  5959. {
  5960. name: "True Size",
  5961. height: math.unit(100000, "lightyears")
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5967. {
  5968. front: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(200, "lbs"),
  5971. name: "Front",
  5972. image: {
  5973. source: "./media/characters/vector-wuff/front.svg"
  5974. }
  5975. }
  5976. },
  5977. [
  5978. {
  5979. name: "Normal",
  5980. height: math.unit(2.8, "meters")
  5981. },
  5982. {
  5983. name: "Macro",
  5984. height: math.unit(450, "meters"),
  5985. default: true
  5986. },
  5987. {
  5988. name: "Megamacro",
  5989. height: math.unit(15, "kilometers")
  5990. }
  5991. ]
  5992. ))
  5993. characterMakers.push(() => makeCharacter(
  5994. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  5995. {
  5996. front: {
  5997. height: math.unit(6, "feet"),
  5998. weight: math.unit(256, "lbs"),
  5999. name: "Front",
  6000. image: {
  6001. source: "./media/characters/dannik/front.svg"
  6002. }
  6003. }
  6004. },
  6005. [
  6006. {
  6007. name: "Macro",
  6008. height: math.unit(69.57, "meters"),
  6009. default: true
  6010. },
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6015. {
  6016. front: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(120, "lbs"),
  6019. name: "Front",
  6020. image: {
  6021. source: "./media/characters/azura-saharah/front.svg"
  6022. }
  6023. },
  6024. back: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(120, "lbs"),
  6027. name: "Back",
  6028. image: {
  6029. source: "./media/characters/azura-saharah/back.svg"
  6030. }
  6031. },
  6032. },
  6033. [
  6034. {
  6035. name: "Macro",
  6036. height: math.unit(100, "feet"),
  6037. default: true
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6043. {
  6044. side: {
  6045. height: math.unit(5 + 4 / 12, "feet"),
  6046. weight: math.unit(163, "lbs"),
  6047. name: "Side",
  6048. image: {
  6049. source: "./media/characters/kennedy/side.svg"
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Standard Doggo",
  6056. height: math.unit(5 + 4 / 12, "feet")
  6057. },
  6058. {
  6059. name: "Big Doggo",
  6060. height: math.unit(25 + 3 / 12, "feet"),
  6061. default: true
  6062. },
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6067. {
  6068. front: {
  6069. height: math.unit(6, "feet"),
  6070. weight: math.unit(90, "lbs"),
  6071. name: "Front",
  6072. image: {
  6073. source: "./media/characters/odi-lunar/front.svg"
  6074. }
  6075. }
  6076. },
  6077. [
  6078. {
  6079. name: "Micro",
  6080. height: math.unit(3, "inches"),
  6081. default: true
  6082. },
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(5.5, "feet")
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6091. {
  6092. back: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(220, "lbs"),
  6095. name: "Back",
  6096. image: {
  6097. source: "./media/characters/mandake/back.svg"
  6098. }
  6099. }
  6100. },
  6101. [
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(7, "feet"),
  6105. default: true
  6106. },
  6107. {
  6108. name: "Macro",
  6109. height: math.unit(78, "feet")
  6110. },
  6111. {
  6112. name: "Macro+",
  6113. height: math.unit(300, "meters")
  6114. },
  6115. {
  6116. name: "Macro++",
  6117. height: math.unit(2400, "feet")
  6118. },
  6119. {
  6120. name: "Megamacro",
  6121. height: math.unit(5167, "meters")
  6122. },
  6123. {
  6124. name: "Gigamacro",
  6125. height: math.unit(41769, "miles")
  6126. },
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(6, "feet"),
  6134. weight: math.unit(120, "lbs"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/yozey/front.svg"
  6138. }
  6139. },
  6140. frontAlt: {
  6141. height: math.unit(6, "feet"),
  6142. weight: math.unit(120, "lbs"),
  6143. name: "Front (Alt)",
  6144. image: {
  6145. source: "./media/characters/yozey/front-alt.svg"
  6146. }
  6147. },
  6148. side: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(120, "lbs"),
  6151. name: "Side",
  6152. image: {
  6153. source: "./media/characters/yozey/side.svg"
  6154. }
  6155. },
  6156. },
  6157. [
  6158. {
  6159. name: "Micro",
  6160. height: math.unit(3, "inches"),
  6161. default: true
  6162. },
  6163. {
  6164. name: "Normal",
  6165. height: math.unit(6, "feet")
  6166. }
  6167. ]
  6168. ))
  6169. characterMakers.push(() => makeCharacter(
  6170. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6171. {
  6172. front: {
  6173. height: math.unit(6, "feet"),
  6174. weight: math.unit(103, "lbs"),
  6175. name: "Front",
  6176. image: {
  6177. source: "./media/characters/valeska-voss/front.svg"
  6178. }
  6179. }
  6180. },
  6181. [
  6182. {
  6183. name: "Mini-Sized Sub",
  6184. height: math.unit(3.1, "inches")
  6185. },
  6186. {
  6187. name: "Mid-Sized Sub",
  6188. height: math.unit(6.2, "inches")
  6189. },
  6190. {
  6191. name: "Full-Sized Sub",
  6192. height: math.unit(9.3, "inches")
  6193. },
  6194. {
  6195. name: "Normal",
  6196. height: math.unit(5 + 2 / 12, "foot"),
  6197. default: true
  6198. },
  6199. ]
  6200. ))
  6201. characterMakers.push(() => makeCharacter(
  6202. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6203. {
  6204. front: {
  6205. height: math.unit(6, "feet"),
  6206. weight: math.unit(160, "lbs"),
  6207. name: "Front",
  6208. image: {
  6209. source: "./media/characters/gene-zeta/front.svg",
  6210. bottom: 0.03,
  6211. extra: 1
  6212. }
  6213. }
  6214. },
  6215. [
  6216. {
  6217. name: "Normal",
  6218. height: math.unit(6.25, "foot"),
  6219. default: true
  6220. },
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6225. {
  6226. front: {
  6227. height: math.unit(6, "feet"),
  6228. weight: math.unit(350, "lbs"),
  6229. name: "Front",
  6230. image: {
  6231. source: "./media/characters/razinox/front.svg",
  6232. extra: 1686 / 1548,
  6233. bottom: 28.2/1868
  6234. }
  6235. },
  6236. back: {
  6237. height: math.unit(6, "feet"),
  6238. weight: math.unit(350, "lbs"),
  6239. name: "Back",
  6240. image: {
  6241. source: "./media/characters/razinox/back.svg",
  6242. extra: 1660 / 1590,
  6243. bottom: 15/1665
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(10 + 8 / 12, "foot")
  6251. },
  6252. {
  6253. name: "Minimacro",
  6254. height: math.unit(15, "foot")
  6255. },
  6256. {
  6257. name: "Macro",
  6258. height: math.unit(60, "foot"),
  6259. default: true
  6260. },
  6261. {
  6262. name: "Megamacro",
  6263. height: math.unit(5, "miles")
  6264. },
  6265. {
  6266. name: "Gigamacro",
  6267. height: math.unit(6000, "miles")
  6268. },
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6273. {
  6274. front: {
  6275. height: math.unit(6, "feet"),
  6276. weight: math.unit(150, "lbs"),
  6277. name: "Front",
  6278. image: {
  6279. source: "./media/characters/cobalt/front.svg"
  6280. }
  6281. }
  6282. },
  6283. [
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(8 + 1 / 12, "foot")
  6287. },
  6288. {
  6289. name: "Macro",
  6290. height: math.unit(111, "foot"),
  6291. default: true
  6292. },
  6293. {
  6294. name: "Supracosmic",
  6295. height: math.unit(1e42, "feet")
  6296. },
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6301. {
  6302. front: {
  6303. height: math.unit(6, "feet"),
  6304. weight: math.unit(140, "lbs"),
  6305. name: "Front",
  6306. image: {
  6307. source: "./media/characters/amanda/front.svg"
  6308. }
  6309. }
  6310. },
  6311. [
  6312. {
  6313. name: "Micro",
  6314. height: math.unit(5, "inches"),
  6315. default: true
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6321. {
  6322. front: {
  6323. height: math.unit(5.59, "feet"),
  6324. weight: math.unit(250, "lbs"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/teal/front.svg"
  6328. }
  6329. },
  6330. frontAlt: {
  6331. height: math.unit(6, "feet"),
  6332. weight: math.unit(250, "lbs"),
  6333. name: "Front (Alt)",
  6334. image: {
  6335. source: "./media/characters/teal/front-alt.svg",
  6336. bottom: 0.04,
  6337. extra: 1
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(12, "feet"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Macro",
  6349. height: math.unit(300, "feet")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6355. {
  6356. frontCat: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(180, "lbs"),
  6359. name: "Front (Cat)",
  6360. image: {
  6361. source: "./media/characters/ravin-amulet/front-cat.svg"
  6362. }
  6363. },
  6364. frontCatAlt: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(180, "lbs"),
  6367. name: "Front (Alt, Cat)",
  6368. image: {
  6369. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6370. }
  6371. },
  6372. frontWerewolf: {
  6373. height: math.unit(6 * 1.2, "feet"),
  6374. weight: math.unit(225, "lbs"),
  6375. name: "Front (Werewolf)",
  6376. image: {
  6377. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6378. }
  6379. },
  6380. backWerewolf: {
  6381. height: math.unit(6 * 1.2, "feet"),
  6382. weight: math.unit(225, "lbs"),
  6383. name: "Back (Werewolf)",
  6384. image: {
  6385. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Nano",
  6392. height: math.unit(1, "micrometer")
  6393. },
  6394. {
  6395. name: "Micro",
  6396. height: math.unit(1, "inch")
  6397. },
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(6, "feet"),
  6401. default: true
  6402. },
  6403. {
  6404. name: "Macro",
  6405. height: math.unit(60, "feet")
  6406. }
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(165, "lbs"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/fluoresce/front.svg"
  6418. }
  6419. }
  6420. },
  6421. [
  6422. {
  6423. name: "Micro",
  6424. height: math.unit(6, "cm")
  6425. },
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(5 + 7 / 12, "feet"),
  6429. default: true
  6430. },
  6431. {
  6432. name: "Macro",
  6433. height: math.unit(56, "feet")
  6434. },
  6435. {
  6436. name: "Megamacro",
  6437. height: math.unit(1.9, "miles")
  6438. },
  6439. ]
  6440. ))
  6441. characterMakers.push(() => makeCharacter(
  6442. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6443. {
  6444. front: {
  6445. height: math.unit(9 + 6 / 12, "feet"),
  6446. weight: math.unit(523, "lbs"),
  6447. name: "Side",
  6448. image: {
  6449. source: "./media/characters/aurora/side.svg"
  6450. }
  6451. }
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(9 + 6 / 12, "feet")
  6457. },
  6458. {
  6459. name: "Macro",
  6460. height: math.unit(96, "feet"),
  6461. default: true
  6462. },
  6463. {
  6464. name: "Macro+",
  6465. height: math.unit(243, "feet")
  6466. },
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(194, "cm"),
  6474. weight: math.unit(90, "kg"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/ranek/front.svg"
  6478. }
  6479. },
  6480. side: {
  6481. height: math.unit(194, "cm"),
  6482. weight: math.unit(90, "kg"),
  6483. name: "Side",
  6484. image: {
  6485. source: "./media/characters/ranek/side.svg"
  6486. }
  6487. },
  6488. back: {
  6489. height: math.unit(194, "cm"),
  6490. weight: math.unit(90, "kg"),
  6491. name: "Back",
  6492. image: {
  6493. source: "./media/characters/ranek/back.svg"
  6494. }
  6495. },
  6496. feral: {
  6497. height: math.unit(30, "cm"),
  6498. weight: math.unit(1.6, "lbs"),
  6499. name: "Feral",
  6500. image: {
  6501. source: "./media/characters/ranek/feral.svg"
  6502. }
  6503. },
  6504. },
  6505. [
  6506. {
  6507. name: "Normal",
  6508. height: math.unit(194, "cm"),
  6509. default: true
  6510. },
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(100, "meters")
  6514. },
  6515. ]
  6516. ))
  6517. characterMakers.push(() => makeCharacter(
  6518. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6519. {
  6520. front: {
  6521. height: math.unit(5 + 6 / 12, "feet"),
  6522. weight: math.unit(153, "lbs"),
  6523. name: "Front",
  6524. image: {
  6525. source: "./media/characters/andrew-cooper/front.svg"
  6526. }
  6527. },
  6528. },
  6529. [
  6530. {
  6531. name: "Nano",
  6532. height: math.unit(1, "mm")
  6533. },
  6534. {
  6535. name: "Micro",
  6536. height: math.unit(2, "inches")
  6537. },
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(5 + 6 / 12, "feet"),
  6541. default: true
  6542. }
  6543. ]
  6544. ))
  6545. characterMakers.push(() => makeCharacter(
  6546. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6547. {
  6548. front: {
  6549. height: math.unit(6, "feet"),
  6550. weight: math.unit(180, "lbs"),
  6551. name: "Front",
  6552. image: {
  6553. source: "./media/characters/akane-sato/front.svg",
  6554. extra: 1219 / 1140
  6555. }
  6556. },
  6557. back: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(180, "lbs"),
  6560. name: "Back",
  6561. image: {
  6562. source: "./media/characters/akane-sato/back.svg",
  6563. extra: 1219 / 1170
  6564. }
  6565. },
  6566. },
  6567. [
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(2.5, "meters")
  6571. },
  6572. {
  6573. name: "Macro",
  6574. height: math.unit(250, "meters"),
  6575. default: true
  6576. },
  6577. {
  6578. name: "Megamacro",
  6579. height: math.unit(25, "km")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6585. {
  6586. front: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(65, "kg"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/rook/front.svg",
  6592. extra: 960/950
  6593. }
  6594. }
  6595. },
  6596. [
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(8.8, "feet")
  6600. },
  6601. {
  6602. name: "Macro",
  6603. height: math.unit(88, "feet"),
  6604. default: true
  6605. },
  6606. {
  6607. name: "Megamacro",
  6608. height: math.unit(8, "miles")
  6609. },
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6614. {
  6615. front: {
  6616. height: math.unit(12 + 2 / 12, "feet"),
  6617. weight: math.unit(808, "lbs"),
  6618. name: "Front",
  6619. image: {
  6620. source: "./media/characters/prodigy/front.svg"
  6621. }
  6622. }
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(12 + 2 / 12, "feet"),
  6628. default: true
  6629. },
  6630. {
  6631. name: "Macro",
  6632. height: math.unit(143, "feet")
  6633. },
  6634. {
  6635. name: "Macro+",
  6636. height: math.unit(400, "feet")
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(225, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/daniel/front.svg"
  6649. }
  6650. },
  6651. leaning: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(225, "lbs"),
  6654. name: "Leaning",
  6655. image: {
  6656. source: "./media/characters/daniel/leaning.svg"
  6657. }
  6658. },
  6659. },
  6660. [
  6661. {
  6662. name: "Macro",
  6663. height: math.unit(1000, "feet"),
  6664. default: true
  6665. },
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6670. {
  6671. front: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(88, "lbs"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/chiros/front.svg",
  6677. extra: 306 / 226
  6678. }
  6679. },
  6680. side: {
  6681. height: math.unit(6, "feet"),
  6682. weight: math.unit(88, "lbs"),
  6683. name: "Side",
  6684. image: {
  6685. source: "./media/characters/chiros/side.svg",
  6686. extra: 306 / 226
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(6, "cm"),
  6694. default: true
  6695. },
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6700. {
  6701. front: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(100, "lbs"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/selka/front.svg",
  6707. extra: 947 / 887
  6708. }
  6709. }
  6710. },
  6711. [
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(5, "cm"),
  6715. default: true
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(8 + 3 / 12, "feet"),
  6724. weight: math.unit(424, "lbs"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/verin/front.svg",
  6728. extra: 1845 / 1550
  6729. }
  6730. },
  6731. frontArmored: {
  6732. height: math.unit(8 + 3 / 12, "feet"),
  6733. weight: math.unit(424, "lbs"),
  6734. name: "Front (Armored)",
  6735. image: {
  6736. source: "./media/characters/verin/front-armor.svg",
  6737. extra: 1845 / 1550,
  6738. bottom: 0.01
  6739. }
  6740. },
  6741. back: {
  6742. height: math.unit(8 + 3 / 12, "feet"),
  6743. weight: math.unit(424, "lbs"),
  6744. name: "Back",
  6745. image: {
  6746. source: "./media/characters/verin/back.svg",
  6747. bottom: 0.1,
  6748. extra: 1
  6749. }
  6750. },
  6751. foot: {
  6752. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6753. name: "Foot",
  6754. image: {
  6755. source: "./media/characters/verin/foot.svg"
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(8 + 3 / 12, "feet")
  6763. },
  6764. {
  6765. name: "Minimacro",
  6766. height: math.unit(21, "feet"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Macro",
  6771. height: math.unit(626, "feet")
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(2.718, "meters"),
  6780. weight: math.unit(150, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/sovrim-terraquian/front.svg"
  6784. }
  6785. },
  6786. back: {
  6787. height: math.unit(2.718, "meters"),
  6788. weight: math.unit(150, "lbs"),
  6789. name: "Back",
  6790. image: {
  6791. source: "./media/characters/sovrim-terraquian/back.svg"
  6792. }
  6793. }
  6794. },
  6795. [
  6796. {
  6797. name: "Micro",
  6798. height: math.unit(2, "inches")
  6799. },
  6800. {
  6801. name: "Small",
  6802. height: math.unit(1, "meter")
  6803. },
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(Math.E, "meters"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Macro",
  6811. height: math.unit(20, "meters")
  6812. },
  6813. {
  6814. name: "Macro+",
  6815. height: math.unit(400, "meters")
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(7, "feet"),
  6824. weight: math.unit(489, "lbs"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/reece-silvermane/front.svg",
  6828. bottom: 0.02,
  6829. extra: 1
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(1.5, "miles"),
  6837. default: true
  6838. },
  6839. ]
  6840. ))
  6841. characterMakers.push(() => makeCharacter(
  6842. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6843. {
  6844. front: {
  6845. height: math.unit(6, "feet"),
  6846. weight: math.unit(78, "kg"),
  6847. name: "Front",
  6848. image: {
  6849. source: "./media/characters/kane/front.svg",
  6850. extra: 978 / 899
  6851. }
  6852. },
  6853. },
  6854. [
  6855. {
  6856. name: "Normal",
  6857. height: math.unit(2.1, "m"),
  6858. },
  6859. {
  6860. name: "Macro",
  6861. height: math.unit(1, "km"),
  6862. default: true
  6863. },
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(6, "feet"),
  6871. weight: math.unit(200, "kg"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/tegon/front.svg",
  6875. bottom: 0.01,
  6876. extra: 1
  6877. }
  6878. },
  6879. },
  6880. [
  6881. {
  6882. name: "Micro",
  6883. height: math.unit(1, "inch")
  6884. },
  6885. {
  6886. name: "Normal",
  6887. height: math.unit(6 + 3 / 12, "feet"),
  6888. default: true
  6889. },
  6890. {
  6891. name: "Macro",
  6892. height: math.unit(300, "feet")
  6893. },
  6894. {
  6895. name: "Megamacro",
  6896. height: math.unit(69, "miles")
  6897. },
  6898. ]
  6899. ))
  6900. characterMakers.push(() => makeCharacter(
  6901. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6902. {
  6903. side: {
  6904. height: math.unit(6, "feet"),
  6905. weight: math.unit(2304, "lbs"),
  6906. name: "Side",
  6907. image: {
  6908. source: "./media/characters/arcturax/side.svg",
  6909. extra: 790 / 376,
  6910. bottom: 0.01
  6911. }
  6912. },
  6913. },
  6914. [
  6915. {
  6916. name: "Micro",
  6917. height: math.unit(2, "inch")
  6918. },
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(6, "feet")
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(39, "feet"),
  6926. default: true
  6927. },
  6928. {
  6929. name: "Megamacro",
  6930. height: math.unit(7, "miles")
  6931. },
  6932. ]
  6933. ))
  6934. characterMakers.push(() => makeCharacter(
  6935. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6936. {
  6937. front: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(50, "lbs"),
  6940. name: "Front",
  6941. image: {
  6942. source: "./media/characters/sentri/front.svg",
  6943. extra: 1750 / 1570,
  6944. bottom: 0.025
  6945. }
  6946. },
  6947. frontAlt: {
  6948. height: math.unit(6, "feet"),
  6949. weight: math.unit(50, "lbs"),
  6950. name: "Front (Alt)",
  6951. image: {
  6952. source: "./media/characters/sentri/front-alt.svg",
  6953. extra: 1750 / 1570,
  6954. bottom: 0.025
  6955. }
  6956. },
  6957. },
  6958. [
  6959. {
  6960. name: "Normal",
  6961. height: math.unit(15, "feet"),
  6962. default: true
  6963. },
  6964. {
  6965. name: "Macro",
  6966. height: math.unit(2500, "feet")
  6967. }
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  6972. {
  6973. front: {
  6974. height: math.unit(5 + 8 / 12, "feet"),
  6975. weight: math.unit(130, "lbs"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/corvin/front.svg",
  6979. extra: 1803 / 1629
  6980. }
  6981. },
  6982. frontShirt: {
  6983. height: math.unit(5 + 8 / 12, "feet"),
  6984. weight: math.unit(130, "lbs"),
  6985. name: "Front (Shirt)",
  6986. image: {
  6987. source: "./media/characters/corvin/front-shirt.svg",
  6988. extra: 1803 / 1629
  6989. }
  6990. },
  6991. frontPoncho: {
  6992. height: math.unit(5 + 8 / 12, "feet"),
  6993. weight: math.unit(130, "lbs"),
  6994. name: "Front (Poncho)",
  6995. image: {
  6996. source: "./media/characters/corvin/front-poncho.svg",
  6997. extra: 1803 / 1629
  6998. }
  6999. },
  7000. side: {
  7001. height: math.unit(5 + 8 / 12, "feet"),
  7002. weight: math.unit(130, "lbs"),
  7003. name: "Side",
  7004. image: {
  7005. source: "./media/characters/corvin/side.svg",
  7006. extra: 1012 / 945
  7007. }
  7008. },
  7009. back: {
  7010. height: math.unit(5 + 8 / 12, "feet"),
  7011. weight: math.unit(130, "lbs"),
  7012. name: "Back",
  7013. image: {
  7014. source: "./media/characters/corvin/back.svg",
  7015. extra: 1803 / 1629
  7016. }
  7017. },
  7018. },
  7019. [
  7020. {
  7021. name: "Micro",
  7022. height: math.unit(3, "inches")
  7023. },
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(5 + 8 / 12, "feet")
  7027. },
  7028. {
  7029. name: "Macro",
  7030. height: math.unit(300, "feet"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Megamacro",
  7035. height: math.unit(500, "miles")
  7036. }
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(135, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/q/front.svg",
  7048. extra: 854 / 752,
  7049. bottom: 0.005
  7050. }
  7051. },
  7052. back: {
  7053. height: math.unit(6, "feet"),
  7054. weight: math.unit(130, "lbs"),
  7055. name: "Back",
  7056. image: {
  7057. source: "./media/characters/q/back.svg",
  7058. extra: 854 / 752
  7059. }
  7060. },
  7061. },
  7062. [
  7063. {
  7064. name: "Macro",
  7065. height: math.unit(90, "feet"),
  7066. default: true
  7067. },
  7068. {
  7069. name: "Extra Macro",
  7070. height: math.unit(300, "feet"),
  7071. },
  7072. {
  7073. name: "BIG WALF",
  7074. height: math.unit(750, "feet"),
  7075. },
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7080. {
  7081. front: {
  7082. height: math.unit(6, "feet"),
  7083. weight: math.unit(150, "lbs"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/carley/front.svg",
  7087. extra: 3927 / 3540,
  7088. bottom: 0.03
  7089. }
  7090. }
  7091. },
  7092. [
  7093. {
  7094. name: "Normal",
  7095. height: math.unit(6 + 3 / 12, "feet")
  7096. },
  7097. {
  7098. name: "Macro",
  7099. height: math.unit(185, "feet"),
  7100. default: true
  7101. },
  7102. {
  7103. name: "Megamacro",
  7104. height: math.unit(8, "miles"),
  7105. },
  7106. ]
  7107. ))
  7108. characterMakers.push(() => makeCharacter(
  7109. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7110. {
  7111. front: {
  7112. height: math.unit(3, "feet"),
  7113. weight: math.unit(28, "lbs"),
  7114. name: "Front",
  7115. image: {
  7116. source: "./media/characters/citrine/front.svg"
  7117. }
  7118. }
  7119. },
  7120. [
  7121. {
  7122. name: "Normal",
  7123. height: math.unit(3, "feet"),
  7124. default: true
  7125. }
  7126. ]
  7127. ))
  7128. characterMakers.push(() => makeCharacter(
  7129. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7130. {
  7131. front: {
  7132. height: math.unit(14, "feet"),
  7133. weight: math.unit(1450, "kg"),
  7134. capacity: math.unit(15, "people"),
  7135. name: "Front",
  7136. image: {
  7137. source: "./media/characters/aura-starwind/front.svg",
  7138. extra: 1455 / 1335
  7139. }
  7140. },
  7141. side: {
  7142. height: math.unit(14, "feet"),
  7143. weight: math.unit(1450, "kg"),
  7144. capacity: math.unit(15, "people"),
  7145. name: "Side",
  7146. image: {
  7147. source: "./media/characters/aura-starwind/side.svg",
  7148. extra: 1654 / 1497
  7149. }
  7150. },
  7151. taur: {
  7152. height: math.unit(18, "feet"),
  7153. weight: math.unit(5500, "kg"),
  7154. capacity: math.unit(50, "people"),
  7155. name: "Taur",
  7156. image: {
  7157. source: "./media/characters/aura-starwind/taur.svg",
  7158. extra: 1760 / 1650
  7159. }
  7160. },
  7161. feral: {
  7162. height: math.unit(46, "feet"),
  7163. weight: math.unit(25000, "kg"),
  7164. capacity: math.unit(120, "people"),
  7165. name: "Feral",
  7166. image: {
  7167. source: "./media/characters/aura-starwind/feral.svg"
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Normal",
  7174. height: math.unit(14, "feet"),
  7175. default: true
  7176. },
  7177. {
  7178. name: "Macro",
  7179. height: math.unit(50, "meters")
  7180. },
  7181. {
  7182. name: "Megamacro",
  7183. height: math.unit(5000, "meters")
  7184. },
  7185. {
  7186. name: "Gigamacro",
  7187. height: math.unit(100000, "kilometers")
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(2 + 7 / 12, "feet"),
  7196. weight: math.unit(32, "lbs"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/rivet/front.svg",
  7200. extra: 1716 / 1658,
  7201. bottom: 0.03
  7202. }
  7203. },
  7204. foot: {
  7205. height: math.unit(0.551, "feet"),
  7206. name: "Rivet's Foot",
  7207. image: {
  7208. source: "./media/characters/rivet/foot.svg"
  7209. },
  7210. rename: true
  7211. }
  7212. },
  7213. [
  7214. {
  7215. name: "Micro",
  7216. height: math.unit(1.5, "inches"),
  7217. },
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(2 + 7 / 12, "feet"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(85, "feet")
  7226. },
  7227. {
  7228. name: "Megamacro",
  7229. height: math.unit(2.2, "km")
  7230. }
  7231. ]
  7232. ))
  7233. characterMakers.push(() => makeCharacter(
  7234. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7235. {
  7236. front: {
  7237. height: math.unit(5 + 9 / 12, "feet"),
  7238. weight: math.unit(150, "lbs"),
  7239. name: "Front",
  7240. image: {
  7241. source: "./media/characters/coffee/front.svg",
  7242. extra: 3666 / 3032,
  7243. bottom: 0.04
  7244. }
  7245. },
  7246. foot: {
  7247. height: math.unit(1.29, "feet"),
  7248. name: "Foot",
  7249. image: {
  7250. source: "./media/characters/coffee/foot.svg"
  7251. }
  7252. },
  7253. },
  7254. [
  7255. {
  7256. name: "Micro",
  7257. height: math.unit(2, "inches"),
  7258. },
  7259. {
  7260. name: "Normal",
  7261. height: math.unit(5 + 9 / 12, "feet"),
  7262. default: true
  7263. },
  7264. {
  7265. name: "Macro",
  7266. height: math.unit(800, "feet")
  7267. },
  7268. {
  7269. name: "Megamacro",
  7270. height: math.unit(25, "miles")
  7271. }
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(6, "feet"),
  7279. weight: math.unit(200, "lbs"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/chari-gal/front.svg",
  7283. extra: 1568 / 1385,
  7284. bottom: 0.047
  7285. }
  7286. },
  7287. gigantamax: {
  7288. height: math.unit(6 * 16, "feet"),
  7289. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7290. name: "Gigantamax",
  7291. image: {
  7292. source: "./media/characters/chari-gal/gigantamax.svg",
  7293. extra: 1124 / 888,
  7294. bottom: 0.03
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(5 + 7 / 12, "feet")
  7302. },
  7303. {
  7304. name: "Macro",
  7305. height: math.unit(200, "feet"),
  7306. default: true
  7307. }
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(150, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/nova/front.svg",
  7319. extra: 5000 / 4722,
  7320. bottom: 0.02
  7321. }
  7322. }
  7323. },
  7324. [
  7325. {
  7326. name: "Micro-",
  7327. height: math.unit(0.8, "inches")
  7328. },
  7329. {
  7330. name: "Micro",
  7331. height: math.unit(2, "inches"),
  7332. default: true
  7333. },
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(3 + 1 / 12, "feet"),
  7341. weight: math.unit(21.7, "lbs"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/argent/front.svg",
  7345. extra: 1565 / 1416,
  7346. bottom: 0.01
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Micro",
  7353. height: math.unit(2, "inches")
  7354. },
  7355. {
  7356. name: "Normal",
  7357. height: math.unit(3 + 1 / 12, "feet"),
  7358. default: true
  7359. },
  7360. {
  7361. name: "Macro",
  7362. height: math.unit(120, "feet")
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7368. {
  7369. lamp: {
  7370. height: math.unit(7 * 1559 / 989, "feet"),
  7371. name: "Magic Lamp",
  7372. image: {
  7373. source: "./media/characters/mira-al-cul/lamp.svg",
  7374. extra: 1617 / 1559
  7375. }
  7376. },
  7377. front: {
  7378. height: math.unit(7, "feet"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/mira-al-cul/front.svg",
  7382. extra: 1044 / 990
  7383. }
  7384. },
  7385. },
  7386. [
  7387. {
  7388. name: "Heavily Restricted",
  7389. height: math.unit(7 * 1559 / 989, "feet")
  7390. },
  7391. {
  7392. name: "Freshly Freed",
  7393. height: math.unit(50 * 1559 / 989, "feet")
  7394. },
  7395. {
  7396. name: "World Encompassing",
  7397. height: math.unit(10000 * 1559 / 989, "miles")
  7398. },
  7399. {
  7400. name: "Galactic",
  7401. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7402. },
  7403. {
  7404. name: "Palmed Universe",
  7405. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Multiversal Matriarch",
  7410. height: math.unit(8.87e10, "yottameters")
  7411. },
  7412. {
  7413. name: "Void Mother",
  7414. height: math.unit(3.14e110, "yottaparsecs")
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7420. {
  7421. front: {
  7422. height: math.unit(17 + 1 / 12, "feet"),
  7423. weight: math.unit(476.2 * 5, "lbs"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/kuro-shi-uchū/front.svg",
  7427. extra: 2329 / 1835,
  7428. bottom: 0.02
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Micro",
  7435. height: math.unit(2, "inches")
  7436. },
  7437. {
  7438. name: "Normal",
  7439. height: math.unit(12, "meters")
  7440. },
  7441. {
  7442. name: "Planetary",
  7443. height: math.unit(0.00929, "AU"),
  7444. default: true
  7445. },
  7446. {
  7447. name: "Universal",
  7448. height: math.unit(20, "gigaparsecs")
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7454. {
  7455. front: {
  7456. height: math.unit(5 + 2 / 12, "feet"),
  7457. weight: math.unit(120, "lbs"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/katherine/front.svg",
  7461. extra: 2075 / 1969
  7462. }
  7463. },
  7464. dress: {
  7465. height: math.unit(5 + 2 / 12, "feet"),
  7466. weight: math.unit(120, "lbs"),
  7467. name: "Dress",
  7468. image: {
  7469. source: "./media/characters/katherine/dress.svg",
  7470. extra: 2258 / 2064
  7471. }
  7472. },
  7473. },
  7474. [
  7475. {
  7476. name: "Micro",
  7477. height: math.unit(1, "inches"),
  7478. default: true
  7479. },
  7480. {
  7481. name: "Normal",
  7482. height: math.unit(5 + 2 / 12, "feet")
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(100, "meters")
  7487. },
  7488. {
  7489. name: "Megamacro",
  7490. height: math.unit(80, "miles")
  7491. },
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7496. {
  7497. front: {
  7498. height: math.unit(7 + 8 / 12, "feet"),
  7499. weight: math.unit(250, "lbs"),
  7500. name: "Front",
  7501. image: {
  7502. source: "./media/characters/yevis/front.svg",
  7503. extra: 1938 / 1755
  7504. }
  7505. }
  7506. },
  7507. [
  7508. {
  7509. name: "Mortal",
  7510. height: math.unit(7 + 8 / 12, "feet")
  7511. },
  7512. {
  7513. name: "Battle",
  7514. height: math.unit(25 + 11 / 12, "feet")
  7515. },
  7516. {
  7517. name: "Wrath",
  7518. height: math.unit(1654 + 11 / 12, "feet")
  7519. },
  7520. {
  7521. name: "Planet Destroyer",
  7522. height: math.unit(12000, "miles")
  7523. },
  7524. {
  7525. name: "Galaxy Conqueror",
  7526. height: math.unit(1.45, "zettameters"),
  7527. default: true
  7528. },
  7529. {
  7530. name: "Universal War",
  7531. height: math.unit(184, "gigaparsecs")
  7532. },
  7533. {
  7534. name: "Eternity War",
  7535. height: math.unit(1.98e55, "yottaparsecs")
  7536. },
  7537. ]
  7538. ))
  7539. characterMakers.push(() => makeCharacter(
  7540. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7541. {
  7542. front: {
  7543. height: math.unit(5 + 8 / 12, "feet"),
  7544. weight: math.unit(63, "kg"),
  7545. name: "Front",
  7546. image: {
  7547. source: "./media/characters/xavier/front.svg",
  7548. extra: 944 / 883
  7549. }
  7550. },
  7551. frontStretch: {
  7552. height: math.unit(5 + 8 / 12, "feet"),
  7553. weight: math.unit(63, "kg"),
  7554. name: "Stretching",
  7555. image: {
  7556. source: "./media/characters/xavier/front-stretch.svg",
  7557. extra: 962 / 820
  7558. }
  7559. },
  7560. },
  7561. [
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(5 + 8 / 12, "feet")
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(100, "meters"),
  7569. default: true
  7570. },
  7571. {
  7572. name: "McLargeHuge",
  7573. height: math.unit(10, "miles")
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(5 + 5 / 12, "feet"),
  7582. weight: math.unit(150, "lb"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/joshii/front.svg"
  7586. }
  7587. },
  7588. foot: {
  7589. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7590. name: "Foot",
  7591. image: {
  7592. source: "./media/characters/joshii/foot.svg"
  7593. }
  7594. },
  7595. },
  7596. [
  7597. {
  7598. name: "Micro",
  7599. height: math.unit(2, "inches")
  7600. },
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(5 + 5 / 12, "feet"),
  7604. default: true
  7605. },
  7606. {
  7607. name: "Macro",
  7608. height: math.unit(785, "feet")
  7609. },
  7610. {
  7611. name: "Megamacro",
  7612. height: math.unit(24.5, "miles")
  7613. },
  7614. ]
  7615. ))
  7616. characterMakers.push(() => makeCharacter(
  7617. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7618. {
  7619. front: {
  7620. height: math.unit(6, "feet"),
  7621. weight: math.unit(150, "lb"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/goddess-elizabeth/front.svg",
  7625. extra: 1800 / 1525,
  7626. bottom: 0.005
  7627. }
  7628. },
  7629. foot: {
  7630. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7631. name: "Foot",
  7632. image: {
  7633. source: "./media/characters/goddess-elizabeth/foot.svg"
  7634. }
  7635. },
  7636. mouth: {
  7637. height: math.unit(6, "feet"),
  7638. name: "Mouth",
  7639. image: {
  7640. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7641. }
  7642. },
  7643. },
  7644. [
  7645. {
  7646. name: "Micro",
  7647. height: math.unit(12, "feet")
  7648. },
  7649. {
  7650. name: "Normal",
  7651. height: math.unit(80, "miles"),
  7652. default: true
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(15000, "parsecs")
  7657. },
  7658. ]
  7659. ))
  7660. characterMakers.push(() => makeCharacter(
  7661. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7662. {
  7663. front: {
  7664. height: math.unit(5 + 9 / 12, "feet"),
  7665. weight: math.unit(144, "lb"),
  7666. name: "Front",
  7667. image: {
  7668. source: "./media/characters/kara/front.svg"
  7669. }
  7670. },
  7671. feet: {
  7672. height: math.unit(6 / 6.765, "feet"),
  7673. name: "Kara's Feet",
  7674. rename: true,
  7675. image: {
  7676. source: "./media/characters/kara/feet.svg"
  7677. }
  7678. },
  7679. },
  7680. [
  7681. {
  7682. name: "Normal",
  7683. height: math.unit(5 + 9 / 12, "feet")
  7684. },
  7685. {
  7686. name: "Macro",
  7687. height: math.unit(174, "feet"),
  7688. default: true
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7694. {
  7695. front: {
  7696. height: math.unit(18, "feet"),
  7697. weight: math.unit(4050, "lb"),
  7698. name: "Front",
  7699. image: {
  7700. source: "./media/characters/tyrone/front.svg",
  7701. extra: 2520 / 2402,
  7702. bottom: 0.025
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Normal",
  7709. height: math.unit(18, "feet"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Macro",
  7714. height: math.unit(300, "feet")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(7 + 8 / 12, "feet"),
  7723. weight: math.unit(120, "lb"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/danny/front.svg",
  7727. extra: 1490 / 1350
  7728. }
  7729. },
  7730. back: {
  7731. height: math.unit(7 + 8 / 12, "feet"),
  7732. weight: math.unit(120, "lb"),
  7733. name: "Back",
  7734. image: {
  7735. source: "./media/characters/danny/back.svg",
  7736. extra: 1490 / 1350
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(7 + 8 / 12, "feet"),
  7744. default: true
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7750. {
  7751. front: {
  7752. height: math.unit(3.5, "inches"),
  7753. weight: math.unit(19, "grams"),
  7754. name: "Front",
  7755. image: {
  7756. source: "./media/characters/mallow/front.svg",
  7757. extra: 471 / 431
  7758. }
  7759. },
  7760. back: {
  7761. height: math.unit(3.5, "inches"),
  7762. weight: math.unit(19, "grams"),
  7763. name: "Back",
  7764. image: {
  7765. source: "./media/characters/mallow/back.svg",
  7766. extra: 471 / 431
  7767. }
  7768. },
  7769. },
  7770. [
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(3.5, "inches"),
  7774. default: true
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(9, "feet"),
  7783. weight: math.unit(230, "kg"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/starry-aqua/front.svg"
  7787. }
  7788. },
  7789. back: {
  7790. height: math.unit(9, "feet"),
  7791. weight: math.unit(230, "kg"),
  7792. name: "Back",
  7793. image: {
  7794. source: "./media/characters/starry-aqua/back.svg"
  7795. }
  7796. },
  7797. hand: {
  7798. height: math.unit(9 * 0.1168, "feet"),
  7799. name: "Hand",
  7800. image: {
  7801. source: "./media/characters/starry-aqua/hand.svg"
  7802. }
  7803. },
  7804. foot: {
  7805. height: math.unit(9 * 0.18, "feet"),
  7806. name: "Foot",
  7807. image: {
  7808. source: "./media/characters/starry-aqua/foot.svg"
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(3, "inches")
  7816. },
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(9, "feet")
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(300, "feet"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Megamacro",
  7828. height: math.unit(3200, "feet")
  7829. }
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(230, "lb"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/luka/front.svg",
  7841. extra: 1,
  7842. bottom: 0.025
  7843. }
  7844. },
  7845. },
  7846. [
  7847. {
  7848. name: "Normal",
  7849. height: math.unit(12 + 8 / 12, "feet"),
  7850. default: true
  7851. },
  7852. {
  7853. name: "Minimacro",
  7854. height: math.unit(20, "feet")
  7855. },
  7856. {
  7857. name: "Macro",
  7858. height: math.unit(250, "feet")
  7859. },
  7860. {
  7861. name: "Megamacro",
  7862. height: math.unit(5, "miles")
  7863. },
  7864. {
  7865. name: "Gigamacro",
  7866. height: math.unit(8000, "miles")
  7867. },
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(6, "feet"),
  7875. weight: math.unit(150, "lb"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/natalie-nightring/front.svg",
  7879. extra: 1,
  7880. bottom: 0.06
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Uh Oh",
  7887. height: math.unit(0.1, "mm")
  7888. },
  7889. {
  7890. name: "Small",
  7891. height: math.unit(3, "inches")
  7892. },
  7893. {
  7894. name: "Human Scale",
  7895. height: math.unit(6, "feet")
  7896. },
  7897. {
  7898. name: "Librarian",
  7899. height: math.unit(50, "feet"),
  7900. default: true
  7901. },
  7902. {
  7903. name: "Immense",
  7904. height: math.unit(200, "miles")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(6, "feet"),
  7913. weight: math.unit(180, "lbs"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/danni-rosie/front.svg",
  7917. extra: 1260 / 1128,
  7918. bottom: 0.022
  7919. }
  7920. },
  7921. },
  7922. [
  7923. {
  7924. name: "Micro",
  7925. height: math.unit(2, "inches"),
  7926. default: true
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(5 + 9 / 12, "feet"),
  7935. weight: math.unit(220, "lb"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/samantha-kruse/front.svg",
  7939. extra: (985 / 935),
  7940. bottom: 0.03
  7941. }
  7942. },
  7943. frontUndressed: {
  7944. height: math.unit(5 + 9 / 12, "feet"),
  7945. weight: math.unit(220, "lb"),
  7946. name: "Front (Undressed)",
  7947. image: {
  7948. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7949. extra: (973 / 923),
  7950. bottom: 0.025
  7951. }
  7952. },
  7953. fat: {
  7954. height: math.unit(5 + 9 / 12, "feet"),
  7955. weight: math.unit(900, "lb"),
  7956. name: "Front (Fat)",
  7957. image: {
  7958. source: "./media/characters/samantha-kruse/fat.svg",
  7959. extra: 2688 / 2561
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Normal",
  7966. height: math.unit(5 + 9 / 12, "feet"),
  7967. default: true
  7968. }
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  7973. {
  7974. back: {
  7975. height: math.unit(5 + 4 / 12, "feet"),
  7976. weight: math.unit(4963, "lb"),
  7977. name: "Back",
  7978. image: {
  7979. source: "./media/characters/amelia-rosie/back.svg",
  7980. extra: 1113 / 963,
  7981. bottom: 0.01
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Level 0",
  7988. height: math.unit(5 + 4 / 12, "feet")
  7989. },
  7990. {
  7991. name: "Level 1",
  7992. height: math.unit(164597, "feet"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Level 2",
  7997. height: math.unit(956243, "miles")
  7998. },
  7999. {
  8000. name: "Level 3",
  8001. height: math.unit(29421709423, "miles")
  8002. },
  8003. {
  8004. name: "Level 4",
  8005. height: math.unit(154, "lightyears")
  8006. },
  8007. {
  8008. name: "Level 5",
  8009. height: math.unit(4738272, "lightyears")
  8010. },
  8011. {
  8012. name: "Level 6",
  8013. height: math.unit(145787152896, "lightyears")
  8014. },
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8019. {
  8020. front: {
  8021. height: math.unit(5 + 11 / 12, "feet"),
  8022. weight: math.unit(65, "kg"),
  8023. name: "Front",
  8024. image: {
  8025. source: "./media/characters/rook-kitara/front.svg",
  8026. extra: 1347 / 1274,
  8027. bottom: 0.005
  8028. }
  8029. },
  8030. },
  8031. [
  8032. {
  8033. name: "Totally Unfair",
  8034. height: math.unit(1.8, "mm")
  8035. },
  8036. {
  8037. name: "Lap Rookie",
  8038. height: math.unit(1.4, "feet")
  8039. },
  8040. {
  8041. name: "Normal",
  8042. height: math.unit(5 + 11 / 12, "feet"),
  8043. default: true
  8044. },
  8045. {
  8046. name: "How Did This Happen",
  8047. height: math.unit(80, "miles")
  8048. }
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8053. {
  8054. front: {
  8055. height: math.unit(7, "feet"),
  8056. weight: math.unit(300, "lb"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/pisces/front.svg",
  8060. extra: 2255 / 2115,
  8061. bottom: 0.03
  8062. }
  8063. },
  8064. back: {
  8065. height: math.unit(7, "feet"),
  8066. weight: math.unit(300, "lb"),
  8067. name: "Back",
  8068. image: {
  8069. source: "./media/characters/pisces/back.svg",
  8070. extra: 2146 / 2055,
  8071. bottom: 0.04
  8072. }
  8073. },
  8074. },
  8075. [
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(7, "feet"),
  8079. default: true
  8080. },
  8081. {
  8082. name: "Swimming Pool",
  8083. height: math.unit(12.2, "meters")
  8084. },
  8085. {
  8086. name: "Olympic Swimming Pool",
  8087. height: math.unit(56.3, "meters")
  8088. },
  8089. {
  8090. name: "Lake Superior",
  8091. height: math.unit(93900, "meters")
  8092. },
  8093. {
  8094. name: "Mediterranean Sea",
  8095. height: math.unit(644457, "meters")
  8096. },
  8097. {
  8098. name: "World's Oceans",
  8099. height: math.unit(4567491, "meters")
  8100. },
  8101. ]
  8102. ))
  8103. characterMakers.push(() => makeCharacter(
  8104. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8105. {
  8106. front: {
  8107. height: math.unit(2.3, "meters"),
  8108. weight: math.unit(120, "kg"),
  8109. name: "Front",
  8110. image: {
  8111. source: "./media/characters/zelas/front.svg"
  8112. }
  8113. },
  8114. side: {
  8115. height: math.unit(2.3, "meters"),
  8116. weight: math.unit(120, "kg"),
  8117. name: "Side",
  8118. image: {
  8119. source: "./media/characters/zelas/side.svg"
  8120. }
  8121. },
  8122. back: {
  8123. height: math.unit(2.3, "meters"),
  8124. weight: math.unit(120, "kg"),
  8125. name: "Back",
  8126. image: {
  8127. source: "./media/characters/zelas/back.svg"
  8128. }
  8129. },
  8130. foot: {
  8131. height: math.unit(1.116, "feet"),
  8132. name: "Foot",
  8133. image: {
  8134. source: "./media/characters/zelas/foot.svg"
  8135. }
  8136. },
  8137. },
  8138. [
  8139. {
  8140. name: "Normal",
  8141. height: math.unit(2.3, "meters")
  8142. },
  8143. {
  8144. name: "Macro",
  8145. height: math.unit(30, "meters"),
  8146. default: true
  8147. },
  8148. ]
  8149. ))
  8150. characterMakers.push(() => makeCharacter(
  8151. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8152. {
  8153. front: {
  8154. height: math.unit(1, "inch"),
  8155. weight: math.unit(0.21, "grams"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/talbot/front.svg",
  8159. extra: 594 / 544
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(1, "inch"),
  8167. default: true
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8173. {
  8174. front: {
  8175. height: math.unit(3 + 3 / 12, "feet"),
  8176. weight: math.unit(51.8, "lb"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/fliss/front.svg",
  8180. extra: 840 / 640
  8181. }
  8182. },
  8183. },
  8184. [
  8185. {
  8186. name: "Teeny Tiny",
  8187. height: math.unit(1, "mm")
  8188. },
  8189. {
  8190. name: "Small",
  8191. height: math.unit(1, "inch"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Standard Sylveon",
  8196. height: math.unit(3 + 3 / 12, "feet")
  8197. },
  8198. {
  8199. name: "Large Nuisance",
  8200. height: math.unit(33, "feet")
  8201. },
  8202. {
  8203. name: "City Filler",
  8204. height: math.unit(3000, "feet")
  8205. },
  8206. {
  8207. name: "New Horizon",
  8208. height: math.unit(6000, "miles")
  8209. },
  8210. ]
  8211. ))
  8212. characterMakers.push(() => makeCharacter(
  8213. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8214. {
  8215. front: {
  8216. height: math.unit(5, "cm"),
  8217. weight: math.unit(1.94, "g"),
  8218. name: "Front",
  8219. image: {
  8220. source: "./media/characters/fleta/front.svg",
  8221. extra: 835 / 803
  8222. }
  8223. },
  8224. back: {
  8225. height: math.unit(5, "cm"),
  8226. weight: math.unit(1.94, "g"),
  8227. name: "Back",
  8228. image: {
  8229. source: "./media/characters/fleta/back.svg",
  8230. extra: 835 / 803
  8231. }
  8232. },
  8233. },
  8234. [
  8235. {
  8236. name: "Micro",
  8237. height: math.unit(5, "cm"),
  8238. default: true
  8239. },
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(6, "feet"),
  8247. weight: math.unit(225, "lb"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/dominic/front.svg",
  8251. extra: 1770 / 1620,
  8252. bottom: 0.025
  8253. }
  8254. },
  8255. back: {
  8256. height: math.unit(6, "feet"),
  8257. weight: math.unit(225, "lb"),
  8258. name: "Back",
  8259. image: {
  8260. source: "./media/characters/dominic/back.svg",
  8261. extra: 1745 / 1620,
  8262. bottom: 0.065
  8263. }
  8264. },
  8265. },
  8266. [
  8267. {
  8268. name: "Nano",
  8269. height: math.unit(0.1, "mm")
  8270. },
  8271. {
  8272. name: "Micro-",
  8273. height: math.unit(1, "mm")
  8274. },
  8275. {
  8276. name: "Micro",
  8277. height: math.unit(4, "inches")
  8278. },
  8279. {
  8280. name: "Normal",
  8281. height: math.unit(6 + 4 / 12, "feet"),
  8282. default: true
  8283. },
  8284. {
  8285. name: "Macro",
  8286. height: math.unit(115, "feet")
  8287. },
  8288. {
  8289. name: "Macro+",
  8290. height: math.unit(955, "feet")
  8291. },
  8292. {
  8293. name: "Megamacro",
  8294. height: math.unit(8990, "feet")
  8295. },
  8296. {
  8297. name: "Gigmacro",
  8298. height: math.unit(9310, "miles")
  8299. },
  8300. {
  8301. name: "Teramacro",
  8302. height: math.unit(1567005010, "miles")
  8303. },
  8304. {
  8305. name: "Examacro",
  8306. height: math.unit(1425, "parsecs")
  8307. },
  8308. ]
  8309. ))
  8310. characterMakers.push(() => makeCharacter(
  8311. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8312. {
  8313. front: {
  8314. height: math.unit(400, "feet"),
  8315. weight: math.unit(44444444, "lb"),
  8316. name: "Front",
  8317. image: {
  8318. source: "./media/characters/major-colonel/front.svg"
  8319. }
  8320. },
  8321. back: {
  8322. height: math.unit(400, "feet"),
  8323. weight: math.unit(44444444, "lb"),
  8324. name: "Back",
  8325. image: {
  8326. source: "./media/characters/major-colonel/back.svg"
  8327. }
  8328. },
  8329. },
  8330. [
  8331. {
  8332. name: "Macro",
  8333. height: math.unit(400, "feet"),
  8334. default: true
  8335. },
  8336. ]
  8337. ))
  8338. characterMakers.push(() => makeCharacter(
  8339. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8340. {
  8341. catFront: {
  8342. height: math.unit(6, "feet"),
  8343. weight: math.unit(120, "lb"),
  8344. name: "Front (Cat Side)",
  8345. image: {
  8346. source: "./media/characters/axel-lycan/cat-front.svg",
  8347. extra: 430/402,
  8348. bottom: 43/472.35
  8349. }
  8350. },
  8351. catBack: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(120, "lb"),
  8354. name: "Back (Cat Side)",
  8355. image: {
  8356. source: "./media/characters/axel-lycan/cat-back.svg",
  8357. extra: 447/419,
  8358. bottom: 23.3/469
  8359. }
  8360. },
  8361. wolfFront: {
  8362. height: math.unit(6, "feet"),
  8363. weight: math.unit(120, "lb"),
  8364. name: "Front (Wolf Side)",
  8365. image: {
  8366. source: "./media/characters/axel-lycan/wolf-front.svg",
  8367. extra: 485/456,
  8368. bottom: 19/504
  8369. }
  8370. },
  8371. wolfBack: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(120, "lb"),
  8374. name: "Back (Wolf Side)",
  8375. image: {
  8376. source: "./media/characters/axel-lycan/wolf-back.svg",
  8377. extra: 475/438,
  8378. bottom: 39.2/514
  8379. }
  8380. },
  8381. },
  8382. [
  8383. {
  8384. name: "Macro",
  8385. height: math.unit(1, "km"),
  8386. default: true
  8387. },
  8388. ]
  8389. ))
  8390. characterMakers.push(() => makeCharacter(
  8391. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8392. {
  8393. front: {
  8394. height: math.unit(5 + 9 / 12, "feet"),
  8395. weight: math.unit(175, "lb"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/vanrel-hyena/front.svg",
  8399. extra: 1086 / 1010,
  8400. bottom: 0.04
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Normal",
  8407. height: math.unit(5 + 9 / 12, "feet"),
  8408. default: true
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(6, "feet"),
  8417. weight: math.unit(103, "lb"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/abbott-absol/front.svg",
  8421. extra: 2010 / 1842
  8422. }
  8423. },
  8424. },
  8425. [
  8426. {
  8427. name: "Megamicro",
  8428. height: math.unit(0.1, "mm")
  8429. },
  8430. {
  8431. name: "Micro",
  8432. height: math.unit(1, "inch")
  8433. },
  8434. {
  8435. name: "Normal",
  8436. height: math.unit(6, "feet"),
  8437. default: true
  8438. },
  8439. ]
  8440. ))
  8441. characterMakers.push(() => makeCharacter(
  8442. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8443. {
  8444. front: {
  8445. height: math.unit(6, "feet"),
  8446. weight: math.unit(264, "lb"),
  8447. name: "Front",
  8448. image: {
  8449. source: "./media/characters/hector/front.svg",
  8450. extra: 2280 / 2130,
  8451. bottom: 0.07
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(12.25, "foot"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(160, "feet")
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(6, "feet"),
  8472. weight: math.unit(150, "lb"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/sal/front.svg",
  8476. extra: 1846 / 1699,
  8477. bottom: 0.04
  8478. }
  8479. },
  8480. },
  8481. [
  8482. {
  8483. name: "Megamacro",
  8484. height: math.unit(10, "miles"),
  8485. default: true
  8486. },
  8487. ]
  8488. ))
  8489. characterMakers.push(() => makeCharacter(
  8490. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8491. {
  8492. front: {
  8493. height: math.unit(3, "meters"),
  8494. weight: math.unit(450, "kg"),
  8495. name: "front",
  8496. image: {
  8497. source: "./media/characters/ranger/front.svg",
  8498. extra: 2401 / 2243,
  8499. bottom: 0.05
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(3, "meters"),
  8507. default: true
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(14, "feet"),
  8516. weight: math.unit(800, "kg"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/theresa/front.svg",
  8520. extra: 3575 / 3346,
  8521. bottom: 0.03
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(14, "feet"),
  8529. default: true
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8535. {
  8536. front: {
  8537. height: math.unit(6, "feet"),
  8538. weight: math.unit(3, "kg"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/ine/front.svg",
  8542. extra: 678 / 539,
  8543. bottom: 0.023
  8544. }
  8545. },
  8546. },
  8547. [
  8548. {
  8549. name: "Normal",
  8550. height: math.unit(2.265, "feet"),
  8551. default: true
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8557. {
  8558. front: {
  8559. height: math.unit(5, "feet"),
  8560. weight: math.unit(30, "kg"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/vial/front.svg",
  8564. extra: 1365 / 1277,
  8565. bottom: 0.04
  8566. }
  8567. },
  8568. },
  8569. [
  8570. {
  8571. name: "Normal",
  8572. height: math.unit(5, "feet"),
  8573. default: true
  8574. },
  8575. ]
  8576. ))
  8577. characterMakers.push(() => makeCharacter(
  8578. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8579. {
  8580. side: {
  8581. height: math.unit(3.4, "meters"),
  8582. weight: math.unit(1000, "lb"),
  8583. name: "Side",
  8584. image: {
  8585. source: "./media/characters/rovoska/side.svg",
  8586. extra: 4403 / 1515
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Normal",
  8593. height: math.unit(3.4, "meters"),
  8594. default: true
  8595. },
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8600. {
  8601. front: {
  8602. height: math.unit(8, "feet"),
  8603. weight: math.unit(315, "lb"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/gunner-rotthbauer/front.svg"
  8607. }
  8608. },
  8609. back: {
  8610. height: math.unit(8, "feet"),
  8611. weight: math.unit(315, "lb"),
  8612. name: "Back",
  8613. image: {
  8614. source: "./media/characters/gunner-rotthbauer/back.svg"
  8615. }
  8616. },
  8617. },
  8618. [
  8619. {
  8620. name: "Micro",
  8621. height: math.unit(3.5, "inches")
  8622. },
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(8, "feet"),
  8626. default: true
  8627. },
  8628. {
  8629. name: "Macro",
  8630. height: math.unit(250, "feet")
  8631. },
  8632. {
  8633. name: "Megamacro",
  8634. height: math.unit(1, "AU")
  8635. },
  8636. ]
  8637. ))
  8638. characterMakers.push(() => makeCharacter(
  8639. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8640. {
  8641. front: {
  8642. height: math.unit(5 + 5 / 12, "feet"),
  8643. weight: math.unit(140, "lb"),
  8644. name: "Front",
  8645. image: {
  8646. source: "./media/characters/allatia/front.svg",
  8647. extra: 1227 / 1180,
  8648. bottom: 0.027
  8649. }
  8650. },
  8651. },
  8652. [
  8653. {
  8654. name: "Normal",
  8655. height: math.unit(5 + 5 / 12, "feet")
  8656. },
  8657. {
  8658. name: "Macro",
  8659. height: math.unit(250, "feet"),
  8660. default: true
  8661. },
  8662. {
  8663. name: "Megamacro",
  8664. height: math.unit(8, "miles")
  8665. }
  8666. ]
  8667. ))
  8668. characterMakers.push(() => makeCharacter(
  8669. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8670. {
  8671. front: {
  8672. height: math.unit(6, "feet"),
  8673. weight: math.unit(120, "lb"),
  8674. name: "Front",
  8675. image: {
  8676. source: "./media/characters/tene/front.svg",
  8677. extra: 1728 / 1578,
  8678. bottom: 0.022
  8679. }
  8680. },
  8681. stomping: {
  8682. height: math.unit(2.025, "meters"),
  8683. weight: math.unit(120, "lb"),
  8684. name: "Stomping",
  8685. image: {
  8686. source: "./media/characters/tene/stomping.svg",
  8687. extra: 938 / 873,
  8688. bottom: 0.01
  8689. }
  8690. },
  8691. sitting: {
  8692. height: math.unit(1, "meter"),
  8693. weight: math.unit(120, "lb"),
  8694. name: "Sitting",
  8695. image: {
  8696. source: "./media/characters/tene/sitting.svg",
  8697. extra: 437 / 415,
  8698. bottom: 0.1
  8699. }
  8700. },
  8701. feral: {
  8702. height: math.unit(3.9, "feet"),
  8703. weight: math.unit(250, "lb"),
  8704. name: "Feral",
  8705. image: {
  8706. source: "./media/characters/tene/feral.svg",
  8707. extra: 717 / 458,
  8708. bottom: 0.179
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Normal",
  8715. height: math.unit(6, "feet")
  8716. },
  8717. {
  8718. name: "Macro",
  8719. height: math.unit(300, "feet"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Megamacro",
  8724. height: math.unit(5, "miles")
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8730. {
  8731. side: {
  8732. height: math.unit(6, "feet"),
  8733. name: "Side",
  8734. image: {
  8735. source: "./media/characters/evander/side.svg",
  8736. extra: 877 / 477
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(0.83, "meters"),
  8744. default: true
  8745. },
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8750. {
  8751. front: {
  8752. height: math.unit(12, "feet"),
  8753. weight: math.unit(1000, "lb"),
  8754. name: "Front",
  8755. image: {
  8756. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8757. extra: 1762 / 1611
  8758. }
  8759. },
  8760. back: {
  8761. height: math.unit(12, "feet"),
  8762. weight: math.unit(1000, "lb"),
  8763. name: "Back",
  8764. image: {
  8765. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8766. extra: 1762 / 1611
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Normal",
  8773. height: math.unit(12, "feet"),
  8774. default: true
  8775. },
  8776. {
  8777. name: "Kaiju",
  8778. height: math.unit(150, "feet")
  8779. },
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8784. {
  8785. front: {
  8786. height: math.unit(6, "feet"),
  8787. weight: math.unit(150, "lb"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/zero-alurus/front.svg"
  8791. }
  8792. },
  8793. back: {
  8794. height: math.unit(6, "feet"),
  8795. weight: math.unit(150, "lb"),
  8796. name: "Back",
  8797. image: {
  8798. source: "./media/characters/zero-alurus/back.svg"
  8799. }
  8800. },
  8801. },
  8802. [
  8803. {
  8804. name: "Normal",
  8805. height: math.unit(5 + 10 / 12, "feet")
  8806. },
  8807. {
  8808. name: "Macro",
  8809. height: math.unit(60, "feet"),
  8810. default: true
  8811. },
  8812. {
  8813. name: "Macro+",
  8814. height: math.unit(450, "feet")
  8815. },
  8816. ]
  8817. ))
  8818. characterMakers.push(() => makeCharacter(
  8819. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8820. {
  8821. front: {
  8822. height: math.unit(6, "feet"),
  8823. weight: math.unit(200, "lb"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/mega-shi/front.svg",
  8827. extra: 1279 / 1250,
  8828. bottom: 0.02
  8829. }
  8830. },
  8831. back: {
  8832. height: math.unit(6, "feet"),
  8833. weight: math.unit(200, "lb"),
  8834. name: "Back",
  8835. image: {
  8836. source: "./media/characters/mega-shi/back.svg",
  8837. extra: 1279 / 1250,
  8838. bottom: 0.02
  8839. }
  8840. },
  8841. },
  8842. [
  8843. {
  8844. name: "Micro",
  8845. height: math.unit(16 + 6 / 12, "feet")
  8846. },
  8847. {
  8848. name: "Third Dimension",
  8849. height: math.unit(40, "meters")
  8850. },
  8851. {
  8852. name: "Normal",
  8853. height: math.unit(660, "feet"),
  8854. default: true
  8855. },
  8856. {
  8857. name: "Megamacro",
  8858. height: math.unit(10, "miles")
  8859. },
  8860. {
  8861. name: "Planetary Launch",
  8862. height: math.unit(500, "miles")
  8863. },
  8864. {
  8865. name: "Interstellar",
  8866. height: math.unit(1e9, "miles")
  8867. },
  8868. {
  8869. name: "Leaving the Universe",
  8870. height: math.unit(1, "gigaparsec")
  8871. },
  8872. {
  8873. name: "Travelling Universes",
  8874. height: math.unit(30e15, "parsecs")
  8875. },
  8876. ]
  8877. ))
  8878. characterMakers.push(() => makeCharacter(
  8879. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8880. {
  8881. front: {
  8882. height: math.unit(6, "feet"),
  8883. weight: math.unit(150, "lb"),
  8884. name: "Front",
  8885. image: {
  8886. source: "./media/characters/odyssey/front.svg",
  8887. extra: 1782 / 1582,
  8888. bottom: 0.01
  8889. }
  8890. },
  8891. side: {
  8892. height: math.unit(5.7, "feet"),
  8893. weight: math.unit(140, "lb"),
  8894. name: "Side",
  8895. image: {
  8896. source: "./media/characters/odyssey/side.svg",
  8897. extra: 6462 / 5700
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(5 + 4 / 12, "feet")
  8905. },
  8906. {
  8907. name: "Macro",
  8908. height: math.unit(1, "km")
  8909. },
  8910. {
  8911. name: "Megamacro",
  8912. height: math.unit(3000, "km")
  8913. },
  8914. {
  8915. name: "Gigamacro",
  8916. height: math.unit(1, "AU"),
  8917. default: true
  8918. },
  8919. {
  8920. name: "Omniversal",
  8921. height: math.unit(100e14, "lightyears")
  8922. },
  8923. ]
  8924. ))
  8925. characterMakers.push(() => makeCharacter(
  8926. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8927. {
  8928. front: {
  8929. height: math.unit(6, "feet"),
  8930. weight: math.unit(300, "lb"),
  8931. name: "Front",
  8932. image: {
  8933. source: "./media/characters/mekuto/front.svg",
  8934. extra: 921 / 832,
  8935. bottom: 0.03
  8936. }
  8937. },
  8938. hand: {
  8939. height: math.unit(6 / 10.24, "feet"),
  8940. name: "Hand",
  8941. image: {
  8942. source: "./media/characters/mekuto/hand.svg"
  8943. }
  8944. },
  8945. foot: {
  8946. height: math.unit(6 / 5.05, "feet"),
  8947. name: "Foot",
  8948. image: {
  8949. source: "./media/characters/mekuto/foot.svg"
  8950. }
  8951. },
  8952. },
  8953. [
  8954. {
  8955. name: "Minimicro",
  8956. height: math.unit(0.2, "inches")
  8957. },
  8958. {
  8959. name: "Micro",
  8960. height: math.unit(1.5, "inches")
  8961. },
  8962. {
  8963. name: "Normal",
  8964. height: math.unit(5 + 11 / 12, "feet"),
  8965. default: true
  8966. },
  8967. {
  8968. name: "Minimacro",
  8969. height: math.unit(17 + 9 / 12, "feet")
  8970. },
  8971. {
  8972. name: "Macro",
  8973. height: math.unit(177.5, "feet")
  8974. },
  8975. {
  8976. name: "Megamacro",
  8977. height: math.unit(152, "miles")
  8978. },
  8979. ]
  8980. ))
  8981. characterMakers.push(() => makeCharacter(
  8982. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  8983. {
  8984. front: {
  8985. height: math.unit(6.5, "inches"),
  8986. weight: math.unit(13, "oz"),
  8987. name: "Front",
  8988. image: {
  8989. source: "./media/characters/dafydd-tomos/front.svg",
  8990. extra: 2990 / 2603,
  8991. bottom: 0.03
  8992. }
  8993. },
  8994. },
  8995. [
  8996. {
  8997. name: "Micro",
  8998. height: math.unit(6.5, "inches"),
  8999. default: true
  9000. },
  9001. ]
  9002. ))
  9003. characterMakers.push(() => makeCharacter(
  9004. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9005. {
  9006. front: {
  9007. height: math.unit(6, "feet"),
  9008. weight: math.unit(150, "lb"),
  9009. name: "Front",
  9010. image: {
  9011. source: "./media/characters/splinter/front.svg",
  9012. extra: 2990 / 2882,
  9013. bottom: 0.04
  9014. }
  9015. },
  9016. back: {
  9017. height: math.unit(6, "feet"),
  9018. weight: math.unit(150, "lb"),
  9019. name: "Back",
  9020. image: {
  9021. source: "./media/characters/splinter/back.svg",
  9022. extra: 2990 / 2882,
  9023. bottom: 0.04
  9024. }
  9025. },
  9026. },
  9027. [
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(6, "feet")
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(230, "meters"),
  9035. default: true
  9036. },
  9037. ]
  9038. ))
  9039. characterMakers.push(() => makeCharacter(
  9040. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9041. {
  9042. front: {
  9043. height: math.unit(4 + 10 / 12, "feet"),
  9044. weight: math.unit(480, "lb"),
  9045. name: "Front",
  9046. image: {
  9047. source: "./media/characters/snow-gabumon/front.svg",
  9048. extra: 1140 / 963,
  9049. bottom: 0.058
  9050. }
  9051. },
  9052. back: {
  9053. height: math.unit(4 + 10 / 12, "feet"),
  9054. weight: math.unit(480, "lb"),
  9055. name: "Back",
  9056. image: {
  9057. source: "./media/characters/snow-gabumon/back.svg",
  9058. extra: 1115 / 962,
  9059. bottom: 0.041
  9060. }
  9061. },
  9062. frontUndresed: {
  9063. height: math.unit(4 + 10 / 12, "feet"),
  9064. weight: math.unit(480, "lb"),
  9065. name: "Front (Undressed)",
  9066. image: {
  9067. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9068. extra: 1061 / 960,
  9069. bottom: 0.045
  9070. }
  9071. },
  9072. },
  9073. [
  9074. {
  9075. name: "Micro",
  9076. height: math.unit(1, "inch")
  9077. },
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(4 + 10 / 12, "feet"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Macro",
  9085. height: math.unit(200, "feet")
  9086. },
  9087. {
  9088. name: "Megamacro",
  9089. height: math.unit(120, "miles")
  9090. },
  9091. {
  9092. name: "Gigamacro",
  9093. height: math.unit(9800, "miles")
  9094. },
  9095. ]
  9096. ))
  9097. characterMakers.push(() => makeCharacter(
  9098. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9099. {
  9100. front: {
  9101. height: math.unit(1.7, "meters"),
  9102. weight: math.unit(140, "lb"),
  9103. name: "Front",
  9104. image: {
  9105. source: "./media/characters/moody/front.svg",
  9106. extra: 3226 / 3007,
  9107. bottom: 0.087
  9108. }
  9109. },
  9110. },
  9111. [
  9112. {
  9113. name: "Micro",
  9114. height: math.unit(1, "mm")
  9115. },
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(1.7, "meters"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(80, "meters")
  9124. },
  9125. {
  9126. name: "Macro+",
  9127. height: math.unit(500, "meters")
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(150, "lb"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/zyas/front.svg",
  9140. extra: 1180 / 1120,
  9141. bottom: 0.045
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Normal",
  9148. height: math.unit(10, "feet"),
  9149. default: true
  9150. },
  9151. {
  9152. name: "Macro",
  9153. height: math.unit(500, "feet")
  9154. },
  9155. {
  9156. name: "Megamacro",
  9157. height: math.unit(5, "miles")
  9158. },
  9159. {
  9160. name: "Teramacro",
  9161. height: math.unit(150000, "miles")
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9167. {
  9168. front: {
  9169. height: math.unit(6, "feet"),
  9170. weight: math.unit(150, "lb"),
  9171. name: "Front",
  9172. image: {
  9173. source: "./media/characters/cuon/front.svg",
  9174. extra: 1390 / 1320,
  9175. bottom: 0.008
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Micro",
  9182. height: math.unit(3, "inches")
  9183. },
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(18 + 9 / 12, "feet"),
  9187. default: true
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(360, "feet")
  9192. },
  9193. {
  9194. name: "Megamacro",
  9195. height: math.unit(360, "miles")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(2.4, "meters"),
  9204. weight: math.unit(70, "kg"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/nyanuxk/front.svg",
  9208. extra: 1172 / 1084,
  9209. bottom: 0.065
  9210. }
  9211. },
  9212. side: {
  9213. height: math.unit(2.4, "meters"),
  9214. weight: math.unit(70, "kg"),
  9215. name: "Side",
  9216. image: {
  9217. source: "./media/characters/nyanuxk/side.svg",
  9218. extra: 1190 / 1132,
  9219. bottom: 0.007
  9220. }
  9221. },
  9222. back: {
  9223. height: math.unit(2.4, "meters"),
  9224. weight: math.unit(70, "kg"),
  9225. name: "Back",
  9226. image: {
  9227. source: "./media/characters/nyanuxk/back.svg",
  9228. extra: 1200 / 1141,
  9229. bottom: 0.015
  9230. }
  9231. },
  9232. foot: {
  9233. height: math.unit(0.52, "meters"),
  9234. name: "Foot",
  9235. image: {
  9236. source: "./media/characters/nyanuxk/foot.svg"
  9237. }
  9238. },
  9239. },
  9240. [
  9241. {
  9242. name: "Micro",
  9243. height: math.unit(2, "cm")
  9244. },
  9245. {
  9246. name: "Normal",
  9247. height: math.unit(2.4, "meters"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Smaller Macro",
  9252. height: math.unit(120, "meters")
  9253. },
  9254. {
  9255. name: "Bigger Macro",
  9256. height: math.unit(1.2, "km")
  9257. },
  9258. {
  9259. name: "Megamacro",
  9260. height: math.unit(15, "kilometers")
  9261. },
  9262. {
  9263. name: "Gigamacro",
  9264. height: math.unit(2000, "km")
  9265. },
  9266. {
  9267. name: "Teramacro",
  9268. height: math.unit(500000, "km")
  9269. },
  9270. ]
  9271. ))
  9272. characterMakers.push(() => makeCharacter(
  9273. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9274. {
  9275. side: {
  9276. height: math.unit(6, "feet"),
  9277. name: "Side",
  9278. image: {
  9279. source: "./media/characters/ailbhe/side.svg",
  9280. extra: 757 / 464,
  9281. bottom: 0.041
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Normal",
  9288. height: math.unit(1.07, "meters"),
  9289. default: true
  9290. },
  9291. ]
  9292. ))
  9293. characterMakers.push(() => makeCharacter(
  9294. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9295. {
  9296. front: {
  9297. height: math.unit(6, "feet"),
  9298. weight: math.unit(120, "kg"),
  9299. name: "Front",
  9300. image: {
  9301. source: "./media/characters/zevulfius/front.svg",
  9302. extra: 965 / 903
  9303. }
  9304. },
  9305. side: {
  9306. height: math.unit(6, "feet"),
  9307. weight: math.unit(120, "kg"),
  9308. name: "Side",
  9309. image: {
  9310. source: "./media/characters/zevulfius/side.svg",
  9311. extra: 939 / 900
  9312. }
  9313. },
  9314. back: {
  9315. height: math.unit(6, "feet"),
  9316. weight: math.unit(120, "kg"),
  9317. name: "Back",
  9318. image: {
  9319. source: "./media/characters/zevulfius/back.svg",
  9320. extra: 918 / 854,
  9321. bottom: 0.005
  9322. }
  9323. },
  9324. foot: {
  9325. height: math.unit(6 / 3.72, "feet"),
  9326. name: "Foot",
  9327. image: {
  9328. source: "./media/characters/zevulfius/foot.svg"
  9329. }
  9330. },
  9331. },
  9332. [
  9333. {
  9334. name: "Macro",
  9335. height: math.unit(750, "meters")
  9336. },
  9337. {
  9338. name: "Megamacro",
  9339. height: math.unit(20, "km"),
  9340. default: true
  9341. },
  9342. {
  9343. name: "Gigamacro",
  9344. height: math.unit(2000, "km")
  9345. },
  9346. {
  9347. name: "Teramacro",
  9348. height: math.unit(250000, "km")
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(100, "feet"),
  9357. weight: math.unit(350, "kg"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/rikes/front.svg",
  9361. extra: 1565 / 1483,
  9362. bottom: 0.017
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(100, "feet"),
  9370. default: true
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9376. {
  9377. anthro: {
  9378. height: math.unit(8, "feet"),
  9379. weight: math.unit(120, "kg"),
  9380. name: "Anthro",
  9381. image: {
  9382. source: "./media/characters/adam-silver-mane/anthro.svg",
  9383. extra: 5743 / 5339,
  9384. bottom: 0.07
  9385. }
  9386. },
  9387. taur: {
  9388. height: math.unit(16, "feet"),
  9389. weight: math.unit(1500, "kg"),
  9390. name: "Taur",
  9391. image: {
  9392. source: "./media/characters/adam-silver-mane/taur.svg",
  9393. extra: 1713 / 1571,
  9394. bottom: 0.01
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(8, "feet")
  9402. },
  9403. {
  9404. name: "Minimacro",
  9405. height: math.unit(80, "feet")
  9406. },
  9407. {
  9408. name: "Macro",
  9409. height: math.unit(800, "feet"),
  9410. default: true
  9411. },
  9412. {
  9413. name: "Megamacro",
  9414. height: math.unit(8000, "feet")
  9415. },
  9416. {
  9417. name: "Gigamacro",
  9418. height: math.unit(800, "miles")
  9419. },
  9420. {
  9421. name: "Teramacro",
  9422. height: math.unit(80000, "miles")
  9423. },
  9424. {
  9425. name: "Celestial",
  9426. height: math.unit(8e6, "miles")
  9427. },
  9428. {
  9429. name: "Star Dragon",
  9430. height: math.unit(800000, "parsecs")
  9431. },
  9432. {
  9433. name: "Godly",
  9434. height: math.unit(800, "teraparsecs")
  9435. },
  9436. ]
  9437. ))
  9438. characterMakers.push(() => makeCharacter(
  9439. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9440. {
  9441. front: {
  9442. height: math.unit(6, "feet"),
  9443. weight: math.unit(150, "lb"),
  9444. name: "Front",
  9445. image: {
  9446. source: "./media/characters/ky'owin/front.svg",
  9447. extra: 3888 / 3068,
  9448. bottom: 0.015
  9449. }
  9450. },
  9451. },
  9452. [
  9453. {
  9454. name: "Normal",
  9455. height: math.unit(6 + 8 / 12, "feet")
  9456. },
  9457. {
  9458. name: "Large",
  9459. height: math.unit(68, "feet")
  9460. },
  9461. {
  9462. name: "Macro",
  9463. height: math.unit(132, "feet")
  9464. },
  9465. {
  9466. name: "Macro+",
  9467. height: math.unit(340, "feet")
  9468. },
  9469. {
  9470. name: "Macro++",
  9471. height: math.unit(680, "feet"),
  9472. default: true
  9473. },
  9474. {
  9475. name: "Megamacro",
  9476. height: math.unit(1, "mile")
  9477. },
  9478. {
  9479. name: "Megamacro+",
  9480. height: math.unit(10, "miles")
  9481. },
  9482. ]
  9483. ))
  9484. characterMakers.push(() => makeCharacter(
  9485. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9486. {
  9487. front: {
  9488. height: math.unit(4, "feet"),
  9489. weight: math.unit(50, "lb"),
  9490. name: "Front",
  9491. image: {
  9492. source: "./media/characters/mal/front.svg",
  9493. extra: 785 / 724,
  9494. bottom: 0.07
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Micro",
  9501. height: math.unit(4, "inches")
  9502. },
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(4, "feet"),
  9506. default: true
  9507. },
  9508. {
  9509. name: "Macro",
  9510. height: math.unit(200, "feet")
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9516. {
  9517. front: {
  9518. height: math.unit(6, "feet"),
  9519. weight: math.unit(150, "lb"),
  9520. name: "Front",
  9521. image: {
  9522. source: "./media/characters/jordan-deware/front.svg",
  9523. extra: 1191 / 1012
  9524. }
  9525. },
  9526. },
  9527. [
  9528. {
  9529. name: "Nano",
  9530. height: math.unit(0.01, "mm")
  9531. },
  9532. {
  9533. name: "Minimicro",
  9534. height: math.unit(1, "mm")
  9535. },
  9536. {
  9537. name: "Micro",
  9538. height: math.unit(0.5, "inches")
  9539. },
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(4, "feet"),
  9543. default: true
  9544. },
  9545. {
  9546. name: "Minimacro",
  9547. height: math.unit(40, "meters")
  9548. },
  9549. {
  9550. name: "Small Macro",
  9551. height: math.unit(400, "meters")
  9552. },
  9553. {
  9554. name: "Macro",
  9555. height: math.unit(4, "miles")
  9556. },
  9557. {
  9558. name: "Megamacro",
  9559. height: math.unit(40, "miles")
  9560. },
  9561. {
  9562. name: "Megamacro+",
  9563. height: math.unit(400, "miles")
  9564. },
  9565. {
  9566. name: "Gigamacro",
  9567. height: math.unit(400000, "miles")
  9568. },
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9573. {
  9574. side: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(150, "lb"),
  9577. name: "Side",
  9578. image: {
  9579. source: "./media/characters/kimiko/side.svg",
  9580. extra: 600 / 358
  9581. }
  9582. },
  9583. },
  9584. [
  9585. {
  9586. name: "Normal",
  9587. height: math.unit(15, "feet"),
  9588. default: true
  9589. },
  9590. {
  9591. name: "Macro",
  9592. height: math.unit(220, "feet")
  9593. },
  9594. {
  9595. name: "Macro+",
  9596. height: math.unit(1450, "feet")
  9597. },
  9598. {
  9599. name: "Megamacro",
  9600. height: math.unit(11500, "feet")
  9601. },
  9602. {
  9603. name: "Gigamacro",
  9604. height: math.unit(9500, "miles")
  9605. },
  9606. {
  9607. name: "Teramacro",
  9608. height: math.unit(2208005005, "miles")
  9609. },
  9610. {
  9611. name: "Examacro",
  9612. height: math.unit(2750, "parsecs")
  9613. },
  9614. {
  9615. name: "Zettamacro",
  9616. height: math.unit(101500, "parsecs")
  9617. },
  9618. ]
  9619. ))
  9620. characterMakers.push(() => makeCharacter(
  9621. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9622. {
  9623. front: {
  9624. height: math.unit(6, "feet"),
  9625. weight: math.unit(70, "kg"),
  9626. name: "Front",
  9627. image: {
  9628. source: "./media/characters/andrew-sleepy/front.svg"
  9629. }
  9630. },
  9631. side: {
  9632. height: math.unit(6, "feet"),
  9633. weight: math.unit(70, "kg"),
  9634. name: "Side",
  9635. image: {
  9636. source: "./media/characters/andrew-sleepy/side.svg"
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Micro",
  9643. height: math.unit(1, "mm"),
  9644. default: true
  9645. },
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9650. {
  9651. front: {
  9652. height: math.unit(6, "feet"),
  9653. weight: math.unit(150, "lb"),
  9654. name: "Front",
  9655. image: {
  9656. source: "./media/characters/judio/front.svg",
  9657. extra: 1258 / 1110
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(5 + 6 / 12, "feet")
  9665. },
  9666. {
  9667. name: "Macro",
  9668. height: math.unit(1000, "feet"),
  9669. default: true
  9670. },
  9671. {
  9672. name: "Megamacro",
  9673. height: math.unit(10, "miles")
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9679. {
  9680. front: {
  9681. height: math.unit(6, "feet"),
  9682. weight: math.unit(68, "kg"),
  9683. name: "Front",
  9684. image: {
  9685. source: "./media/characters/nomaxice/front.svg",
  9686. extra: 1498 / 1073,
  9687. bottom: 0.075
  9688. }
  9689. },
  9690. foot: {
  9691. height: math.unit(1.1, "feet"),
  9692. name: "Foot",
  9693. image: {
  9694. source: "./media/characters/nomaxice/foot.svg"
  9695. }
  9696. },
  9697. },
  9698. [
  9699. {
  9700. name: "Micro",
  9701. height: math.unit(8, "cm")
  9702. },
  9703. {
  9704. name: "Norm",
  9705. height: math.unit(1.82, "m")
  9706. },
  9707. {
  9708. name: "Norm+",
  9709. height: math.unit(8.8, "feet")
  9710. },
  9711. {
  9712. name: "Big",
  9713. height: math.unit(8, "meters"),
  9714. default: true
  9715. },
  9716. {
  9717. name: "Macro",
  9718. height: math.unit(18, "meters")
  9719. },
  9720. {
  9721. name: "Macro+",
  9722. height: math.unit(88, "meters")
  9723. },
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9728. {
  9729. front: {
  9730. height: math.unit(12, "feet"),
  9731. weight: math.unit(1.5, "tons"),
  9732. name: "Front",
  9733. image: {
  9734. source: "./media/characters/dydros/front.svg",
  9735. extra: 863 / 800,
  9736. bottom: 0.015
  9737. }
  9738. },
  9739. back: {
  9740. height: math.unit(12, "feet"),
  9741. weight: math.unit(1.5, "tons"),
  9742. name: "Back",
  9743. image: {
  9744. source: "./media/characters/dydros/back.svg",
  9745. extra: 900 / 843,
  9746. bottom: 0.005
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(12, "feet"),
  9754. default: true
  9755. },
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9760. {
  9761. front: {
  9762. height: math.unit(6, "feet"),
  9763. weight: math.unit(100, "kg"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/riggi/front.svg",
  9767. extra: 5787 / 5303
  9768. }
  9769. },
  9770. hyper: {
  9771. height: math.unit(6 * 5 / 3, "feet"),
  9772. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9773. name: "Hyper",
  9774. image: {
  9775. source: "./media/characters/riggi/hyper.svg",
  9776. extra: 3595 / 3485
  9777. }
  9778. },
  9779. },
  9780. [
  9781. {
  9782. name: "Small Macro",
  9783. height: math.unit(50, "feet")
  9784. },
  9785. {
  9786. name: "Default",
  9787. height: math.unit(200, "feet"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Loom",
  9792. height: math.unit(10000, "feet")
  9793. },
  9794. {
  9795. name: "Cruising Altitude",
  9796. height: math.unit(30000, "feet")
  9797. },
  9798. {
  9799. name: "Megamacro",
  9800. height: math.unit(100, "miles")
  9801. },
  9802. {
  9803. name: "Continent Sized",
  9804. height: math.unit(2800, "miles")
  9805. },
  9806. {
  9807. name: "Earth Sized",
  9808. height: math.unit(8000, "miles")
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9814. {
  9815. front: {
  9816. height: math.unit(6, "feet"),
  9817. weight: math.unit(250, "lb"),
  9818. name: "Front",
  9819. image: {
  9820. source: "./media/characters/alexi/front.svg",
  9821. extra: 3483 / 3291,
  9822. bottom: 0.04
  9823. }
  9824. },
  9825. back: {
  9826. height: math.unit(6, "feet"),
  9827. weight: math.unit(250, "lb"),
  9828. name: "Back",
  9829. image: {
  9830. source: "./media/characters/alexi/back.svg",
  9831. extra: 3533 / 3356,
  9832. bottom: 0.021
  9833. }
  9834. },
  9835. frontTransforming: {
  9836. height: math.unit(8.58, "feet"),
  9837. weight: math.unit(1300, "lb"),
  9838. name: "Transforming",
  9839. image: {
  9840. source: "./media/characters/alexi/front-transforming.svg",
  9841. extra: 437 / 409,
  9842. bottom: 19/458.66
  9843. }
  9844. },
  9845. frontTransformed: {
  9846. height: math.unit(12.5, "feet"),
  9847. weight: math.unit(4000, "lb"),
  9848. name: "Transformed",
  9849. image: {
  9850. source: "./media/characters/alexi/front-transformed.svg",
  9851. extra: 639 / 614,
  9852. bottom: 30.55/671
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Normal",
  9859. height: math.unit(3, "meters"),
  9860. default: true
  9861. },
  9862. {
  9863. name: "Minimacro",
  9864. height: math.unit(30, "meters")
  9865. },
  9866. {
  9867. name: "Macro",
  9868. height: math.unit(500, "meters")
  9869. },
  9870. {
  9871. name: "Megamacro",
  9872. height: math.unit(9000, "km")
  9873. },
  9874. {
  9875. name: "Teramacro",
  9876. height: math.unit(384000, "km")
  9877. },
  9878. ]
  9879. ))
  9880. characterMakers.push(() => makeCharacter(
  9881. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9882. {
  9883. front: {
  9884. height: math.unit(6, "feet"),
  9885. weight: math.unit(150, "lb"),
  9886. name: "Front",
  9887. image: {
  9888. source: "./media/characters/kayroo/front.svg",
  9889. extra: 1153 / 1038,
  9890. bottom: 0.06
  9891. }
  9892. },
  9893. foot: {
  9894. height: math.unit(6, "feet"),
  9895. weight: math.unit(150, "lb"),
  9896. name: "Foot",
  9897. image: {
  9898. source: "./media/characters/kayroo/foot.svg"
  9899. }
  9900. },
  9901. },
  9902. [
  9903. {
  9904. name: "Normal",
  9905. height: math.unit(8, "feet"),
  9906. default: true
  9907. },
  9908. {
  9909. name: "Minimacro",
  9910. height: math.unit(250, "feet")
  9911. },
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(2800, "feet")
  9915. },
  9916. {
  9917. name: "Megamacro",
  9918. height: math.unit(5200, "feet")
  9919. },
  9920. {
  9921. name: "Gigamacro",
  9922. height: math.unit(27000, "feet")
  9923. },
  9924. {
  9925. name: "Omega",
  9926. height: math.unit(45000, "feet")
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9932. {
  9933. front: {
  9934. height: math.unit(18, "feet"),
  9935. weight: math.unit(5800, "lb"),
  9936. name: "Front",
  9937. image: {
  9938. source: "./media/characters/rhys/front.svg",
  9939. extra: 3386 / 3090,
  9940. bottom: 0.07
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(18, "feet"),
  9948. default: true
  9949. },
  9950. {
  9951. name: "Working Size",
  9952. height: math.unit(200, "feet")
  9953. },
  9954. {
  9955. name: "Demolition Size",
  9956. height: math.unit(2000, "feet")
  9957. },
  9958. {
  9959. name: "Maximum Licensed Size",
  9960. height: math.unit(5, "miles")
  9961. },
  9962. {
  9963. name: "Maximum Observed Size",
  9964. height: math.unit(10, "yottameters")
  9965. },
  9966. ]
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  9970. {
  9971. front: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(250, "lb"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/toto/front.svg",
  9977. extra: 527 / 479,
  9978. bottom: 0.05
  9979. }
  9980. },
  9981. },
  9982. [
  9983. {
  9984. name: "Micro",
  9985. height: math.unit(3, "feet")
  9986. },
  9987. {
  9988. name: "Normal",
  9989. height: math.unit(10, "feet")
  9990. },
  9991. {
  9992. name: "Macro",
  9993. height: math.unit(150, "feet"),
  9994. default: true
  9995. },
  9996. {
  9997. name: "Megamacro",
  9998. height: math.unit(1200, "feet")
  9999. },
  10000. ]
  10001. ))
  10002. characterMakers.push(() => makeCharacter(
  10003. { name: "King", species: ["lion"], tags: ["anthro"] },
  10004. {
  10005. back: {
  10006. height: math.unit(6, "feet"),
  10007. weight: math.unit(150, "lb"),
  10008. name: "Back",
  10009. image: {
  10010. source: "./media/characters/king/back.svg"
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(2, "inches")
  10018. },
  10019. {
  10020. name: "Normal",
  10021. height: math.unit(8, "feet")
  10022. },
  10023. {
  10024. name: "Macro",
  10025. height: math.unit(200, "feet"),
  10026. default: true
  10027. },
  10028. {
  10029. name: "Megamacro",
  10030. height: math.unit(50, "miles")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10036. {
  10037. anthro: {
  10038. height: math.unit(6 + 5 / 12, "feet"),
  10039. weight: math.unit(280, "lb"),
  10040. name: "Anthro",
  10041. image: {
  10042. source: "./media/characters/cordite/anthro.svg",
  10043. extra: 1986 / 1905,
  10044. bottom: 0.025
  10045. }
  10046. },
  10047. feral: {
  10048. height: math.unit(2, "feet"),
  10049. weight: math.unit(90, "lb"),
  10050. name: "Feral",
  10051. image: {
  10052. source: "./media/characters/cordite/feral.svg",
  10053. extra: 1260 / 755,
  10054. bottom: 0.05
  10055. }
  10056. },
  10057. },
  10058. [
  10059. {
  10060. name: "Normal",
  10061. height: math.unit(6 + 5 / 12, "feet"),
  10062. default: true
  10063. },
  10064. ]
  10065. ))
  10066. characterMakers.push(() => makeCharacter(
  10067. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10068. {
  10069. front: {
  10070. height: math.unit(6, "feet"),
  10071. weight: math.unit(150, "lb"),
  10072. name: "Front",
  10073. image: {
  10074. source: "./media/characters/pianostrong/front.svg",
  10075. extra: 6577 / 6254,
  10076. bottom: 0.02
  10077. }
  10078. },
  10079. side: {
  10080. height: math.unit(6, "feet"),
  10081. weight: math.unit(150, "lb"),
  10082. name: "Side",
  10083. image: {
  10084. source: "./media/characters/pianostrong/side.svg",
  10085. extra: 6106 / 5730
  10086. }
  10087. },
  10088. back: {
  10089. height: math.unit(6, "feet"),
  10090. weight: math.unit(150, "lb"),
  10091. name: "Back",
  10092. image: {
  10093. source: "./media/characters/pianostrong/back.svg",
  10094. extra: 6085 / 5733,
  10095. bottom: 0.01
  10096. }
  10097. },
  10098. },
  10099. [
  10100. {
  10101. name: "Macro",
  10102. height: math.unit(100, "feet")
  10103. },
  10104. {
  10105. name: "Macro+",
  10106. height: math.unit(300, "feet"),
  10107. default: true
  10108. },
  10109. {
  10110. name: "Macro++",
  10111. height: math.unit(1000, "feet")
  10112. },
  10113. ]
  10114. ))
  10115. characterMakers.push(() => makeCharacter(
  10116. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10117. {
  10118. front: {
  10119. height: math.unit(6, "feet"),
  10120. weight: math.unit(150, "lb"),
  10121. name: "Front",
  10122. image: {
  10123. source: "./media/characters/kona/front.svg",
  10124. extra: 2960 / 2629,
  10125. bottom: 0.005
  10126. }
  10127. },
  10128. },
  10129. [
  10130. {
  10131. name: "Normal",
  10132. height: math.unit(11 + 8 / 12, "feet")
  10133. },
  10134. {
  10135. name: "Macro",
  10136. height: math.unit(850, "feet"),
  10137. default: true
  10138. },
  10139. {
  10140. name: "Macro+",
  10141. height: math.unit(1.5, "km"),
  10142. default: true
  10143. },
  10144. {
  10145. name: "Megamacro",
  10146. height: math.unit(80, "miles")
  10147. },
  10148. {
  10149. name: "Gigamacro",
  10150. height: math.unit(3500, "miles")
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10156. {
  10157. side: {
  10158. height: math.unit(1.9, "meters"),
  10159. weight: math.unit(326, "kg"),
  10160. name: "Side",
  10161. image: {
  10162. source: "./media/characters/levi/side.svg",
  10163. extra: 1704 / 1334,
  10164. bottom: 0.02
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Normal",
  10171. height: math.unit(1.9, "meters"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Macro",
  10176. height: math.unit(20, "meters")
  10177. },
  10178. {
  10179. name: "Macro+",
  10180. height: math.unit(200, "meters")
  10181. },
  10182. {
  10183. name: "Megamacro",
  10184. height: math.unit(2, "km")
  10185. },
  10186. {
  10187. name: "Megamacro+",
  10188. height: math.unit(20, "km")
  10189. },
  10190. {
  10191. name: "Gigamacro",
  10192. height: math.unit(2500, "km")
  10193. },
  10194. {
  10195. name: "Gigamacro+",
  10196. height: math.unit(120000, "km")
  10197. },
  10198. {
  10199. name: "Teramacro",
  10200. height: math.unit(7.77e6, "km")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(6 + 4 / 12, "feet"),
  10209. weight: math.unit(188, "lb"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/bmc/front.svg",
  10213. extra: 1067 / 1022,
  10214. bottom: 0.047
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Human-sized",
  10221. height: math.unit(6 + 4 / 12, "feet")
  10222. },
  10223. {
  10224. name: "Small",
  10225. height: math.unit(250, "feet")
  10226. },
  10227. {
  10228. name: "Normal",
  10229. height: math.unit(1250, "feet"),
  10230. default: true
  10231. },
  10232. {
  10233. name: "Good Day",
  10234. height: math.unit(88, "miles")
  10235. },
  10236. {
  10237. name: "Largest Measured Size",
  10238. height: math.unit(11.2e6, "lightyears")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(20, "feet"),
  10247. weight: math.unit(2016, "kg"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/sven-the-kaiju/front.svg",
  10251. extra: 1479 / 1449,
  10252. bottom: 0.05
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Fairy",
  10259. height: math.unit(6, "inches")
  10260. },
  10261. {
  10262. name: "Normal",
  10263. height: math.unit(20, "feet"),
  10264. default: true
  10265. },
  10266. {
  10267. name: "Rampage",
  10268. height: math.unit(200, "feet")
  10269. },
  10270. {
  10271. name: "Archfey Forest Guardian",
  10272. height: math.unit(1, "mile")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(4, "meters"),
  10281. weight: math.unit(2, "tons"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/marik/front.svg",
  10285. extra: 1057 / 1003,
  10286. bottom: 0.08
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(4, "meters"),
  10294. default: true
  10295. },
  10296. {
  10297. name: "Macro",
  10298. height: math.unit(20, "meters")
  10299. },
  10300. {
  10301. name: "Megamacro",
  10302. height: math.unit(50, "km")
  10303. },
  10304. {
  10305. name: "Gigamacro",
  10306. height: math.unit(100, "km")
  10307. },
  10308. {
  10309. name: "Alpha Macro",
  10310. height: math.unit(7.88e7, "yottameters")
  10311. },
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10316. {
  10317. front: {
  10318. height: math.unit(6, "feet"),
  10319. weight: math.unit(110, "lb"),
  10320. name: "Front",
  10321. image: {
  10322. source: "./media/characters/mel/front.svg",
  10323. extra: 736 / 617,
  10324. bottom: 0.017
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Pico",
  10331. height: math.unit(3, "pm")
  10332. },
  10333. {
  10334. name: "Nano",
  10335. height: math.unit(3, "nm")
  10336. },
  10337. {
  10338. name: "Micro",
  10339. height: math.unit(0.3, "mm"),
  10340. default: true
  10341. },
  10342. {
  10343. name: "Micro+",
  10344. height: math.unit(3, "mm")
  10345. },
  10346. {
  10347. name: "Normal",
  10348. height: math.unit(5 + 10.5 / 12, "feet")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10354. {
  10355. kaiju: {
  10356. height: math.unit(1.75, "meters"),
  10357. weight: math.unit(55, "kg"),
  10358. name: "Kaiju",
  10359. image: {
  10360. source: "./media/characters/lykonous/kaiju.svg",
  10361. extra: 1055 / 946,
  10362. bottom: 0.135
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Normal",
  10369. height: math.unit(2.5, "meters"),
  10370. default: true
  10371. },
  10372. {
  10373. name: "Kaiju Dragon",
  10374. height: math.unit(60, "meters")
  10375. },
  10376. {
  10377. name: "Mega Kaiju",
  10378. height: math.unit(120, "km")
  10379. },
  10380. {
  10381. name: "Giga Kaiju",
  10382. height: math.unit(200, "megameters")
  10383. },
  10384. {
  10385. name: "Terra Kaiju",
  10386. height: math.unit(400, "gigameters")
  10387. },
  10388. {
  10389. name: "Kaiju Dragon God",
  10390. height: math.unit(13000, "exaparsecs")
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(150, "lb"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/blü/front.svg",
  10403. extra: 1883 / 1564,
  10404. bottom: 0.031
  10405. }
  10406. },
  10407. },
  10408. [
  10409. {
  10410. name: "Normal",
  10411. height: math.unit(13, "feet"),
  10412. default: true
  10413. },
  10414. {
  10415. name: "Big Boi",
  10416. height: math.unit(150, "meters")
  10417. },
  10418. {
  10419. name: "Mini Stomper",
  10420. height: math.unit(300, "meters")
  10421. },
  10422. {
  10423. name: "Macro",
  10424. height: math.unit(1000, "meters")
  10425. },
  10426. {
  10427. name: "Megamacro",
  10428. height: math.unit(11000, "meters")
  10429. },
  10430. {
  10431. name: "Gigamacro",
  10432. height: math.unit(11000, "km")
  10433. },
  10434. {
  10435. name: "Teramacro",
  10436. height: math.unit(420000, "km")
  10437. },
  10438. {
  10439. name: "Examacro",
  10440. height: math.unit(120, "parsecs")
  10441. },
  10442. {
  10443. name: "God Tho",
  10444. height: math.unit(98000000000, "parsecs")
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10450. {
  10451. taurFront: {
  10452. height: math.unit(6, "feet"),
  10453. weight: math.unit(200, "lb"),
  10454. name: "Taur (Front)",
  10455. image: {
  10456. source: "./media/characters/scales/taur-front.svg",
  10457. extra: 1,
  10458. bottom: 0.05
  10459. }
  10460. },
  10461. taurBack: {
  10462. height: math.unit(6, "feet"),
  10463. weight: math.unit(200, "lb"),
  10464. name: "Taur (Back)",
  10465. image: {
  10466. source: "./media/characters/scales/taur-back.svg",
  10467. extra: 1,
  10468. bottom: 0.08
  10469. }
  10470. },
  10471. anthro: {
  10472. height: math.unit(6 * 7 / 12, "feet"),
  10473. weight: math.unit(100, "lb"),
  10474. name: "Anthro",
  10475. image: {
  10476. source: "./media/characters/scales/anthro.svg",
  10477. extra: 1,
  10478. bottom: 0.06
  10479. }
  10480. },
  10481. },
  10482. [
  10483. {
  10484. name: "Normal",
  10485. height: math.unit(12, "feet"),
  10486. default: true
  10487. },
  10488. ]
  10489. ))
  10490. characterMakers.push(() => makeCharacter(
  10491. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10492. {
  10493. front: {
  10494. height: math.unit(6, "feet"),
  10495. weight: math.unit(150, "lb"),
  10496. name: "Front",
  10497. image: {
  10498. source: "./media/characters/koragos/front.svg",
  10499. extra: 841 / 794,
  10500. bottom: 0.035
  10501. }
  10502. },
  10503. back: {
  10504. height: math.unit(6, "feet"),
  10505. weight: math.unit(150, "lb"),
  10506. name: "Back",
  10507. image: {
  10508. source: "./media/characters/koragos/back.svg",
  10509. extra: 841 / 810,
  10510. bottom: 0.022
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(6 + 11 / 12, "feet"),
  10518. default: true
  10519. },
  10520. {
  10521. name: "Macro",
  10522. height: math.unit(490, "feet")
  10523. },
  10524. {
  10525. name: "Megamacro",
  10526. height: math.unit(10, "miles")
  10527. },
  10528. {
  10529. name: "Gigamacro",
  10530. height: math.unit(50, "miles")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(250, "lb"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/xylrem/front.svg",
  10543. extra: 3323 / 3050,
  10544. bottom: 0.065
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Micro",
  10551. height: math.unit(4, "feet")
  10552. },
  10553. {
  10554. name: "Normal",
  10555. height: math.unit(16, "feet"),
  10556. default: true
  10557. },
  10558. {
  10559. name: "Macro",
  10560. height: math.unit(2720, "feet")
  10561. },
  10562. {
  10563. name: "Megamacro",
  10564. height: math.unit(25000, "miles")
  10565. },
  10566. ]
  10567. ))
  10568. characterMakers.push(() => makeCharacter(
  10569. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10570. {
  10571. front: {
  10572. height: math.unit(8, "feet"),
  10573. weight: math.unit(250, "kg"),
  10574. name: "Front",
  10575. image: {
  10576. source: "./media/characters/ikideru/front.svg",
  10577. extra: 930 / 870,
  10578. bottom: 0.087
  10579. }
  10580. },
  10581. back: {
  10582. height: math.unit(8, "feet"),
  10583. weight: math.unit(250, "kg"),
  10584. name: "Back",
  10585. image: {
  10586. source: "./media/characters/ikideru/back.svg",
  10587. extra: 919 / 852,
  10588. bottom: 0.055
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Rare",
  10595. height: math.unit(8, "feet"),
  10596. default: true
  10597. },
  10598. {
  10599. name: "Playful Loom",
  10600. height: math.unit(80, "feet")
  10601. },
  10602. {
  10603. name: "City Leaner",
  10604. height: math.unit(230, "feet")
  10605. },
  10606. {
  10607. name: "Megamacro",
  10608. height: math.unit(2500, "feet")
  10609. },
  10610. {
  10611. name: "Gigamacro",
  10612. height: math.unit(26400, "feet")
  10613. },
  10614. {
  10615. name: "Tectonic Shifter",
  10616. height: math.unit(1.7, "megameters")
  10617. },
  10618. {
  10619. name: "Planet Carer",
  10620. height: math.unit(21, "megameters")
  10621. },
  10622. {
  10623. name: "God",
  10624. height: math.unit(11157.22, "parsecs")
  10625. },
  10626. ]
  10627. ))
  10628. characterMakers.push(() => makeCharacter(
  10629. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10630. {
  10631. front: {
  10632. height: math.unit(6, "feet"),
  10633. weight: math.unit(120, "lb"),
  10634. name: "Front",
  10635. image: {
  10636. source: "./media/characters/neo/front.svg"
  10637. }
  10638. },
  10639. },
  10640. [
  10641. {
  10642. name: "Micro",
  10643. height: math.unit(2, "inches"),
  10644. default: true
  10645. },
  10646. {
  10647. name: "Human Size",
  10648. height: math.unit(5 + 8 / 12, "feet")
  10649. },
  10650. ]
  10651. ))
  10652. characterMakers.push(() => makeCharacter(
  10653. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10654. {
  10655. front: {
  10656. height: math.unit(13 + 10 / 12, "feet"),
  10657. weight: math.unit(5320, "lb"),
  10658. name: "Front",
  10659. image: {
  10660. source: "./media/characters/chauncey-chantz/front.svg",
  10661. extra: 1587 / 1435,
  10662. bottom: 0.02
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Normal",
  10669. height: math.unit(13 + 10 / 12, "feet"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Macro",
  10674. height: math.unit(45, "feet")
  10675. },
  10676. {
  10677. name: "Megamacro",
  10678. height: math.unit(250, "miles")
  10679. },
  10680. {
  10681. name: "Planetary",
  10682. height: math.unit(10000, "miles")
  10683. },
  10684. {
  10685. name: "Galactic",
  10686. height: math.unit(40000, "parsecs")
  10687. },
  10688. {
  10689. name: "Universal",
  10690. height: math.unit(1, "yottameter")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10696. {
  10697. front: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(150, "lb"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/epifox/front.svg",
  10703. extra: 1,
  10704. bottom: 0.075
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Micro",
  10711. height: math.unit(6, "inches")
  10712. },
  10713. {
  10714. name: "Normal",
  10715. height: math.unit(12, "feet"),
  10716. default: true
  10717. },
  10718. {
  10719. name: "Macro",
  10720. height: math.unit(3810, "feet")
  10721. },
  10722. {
  10723. name: "Megamacro",
  10724. height: math.unit(500, "miles")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10730. {
  10731. front: {
  10732. height: math.unit(1.8796, "m"),
  10733. weight: math.unit(230, "lb"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/colin-t/front.svg",
  10737. extra: 1272 / 1193,
  10738. bottom: 0.07
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Micro",
  10745. height: math.unit(0.571, "meters")
  10746. },
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(1.8796, "meters"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Tall",
  10754. height: math.unit(4, "meters")
  10755. },
  10756. {
  10757. name: "Macro",
  10758. height: math.unit(67.241, "meters")
  10759. },
  10760. {
  10761. name: "Megamacro",
  10762. height: math.unit(371.856, "meters")
  10763. },
  10764. {
  10765. name: "Planetary",
  10766. height: math.unit(12631.5689, "km")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Matvei", species: ["shark"], tags: ["anthro"]},
  10772. {
  10773. front: {
  10774. height: math.unit(1.85, "meters"),
  10775. weight: math.unit(80, "kg"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/matvei/front.svg",
  10779. extra: 614 / 594,
  10780. bottom: 0.01
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(1.85, "meters"),
  10788. default: true
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(5 + 9 / 12, "feet"),
  10797. weight: math.unit(70, "lb"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/quincy/front.svg",
  10801. extra: 3041 / 2751
  10802. }
  10803. },
  10804. back: {
  10805. height: math.unit(5 + 9 / 12, "feet"),
  10806. weight: math.unit(70, "lb"),
  10807. name: "Back",
  10808. image: {
  10809. source: "./media/characters/quincy/back.svg",
  10810. extra: 3041 / 2751
  10811. }
  10812. },
  10813. flying: {
  10814. height: math.unit(5 + 4 / 12, "feet"),
  10815. weight: math.unit(70, "lb"),
  10816. name: "Flying",
  10817. image: {
  10818. source: "./media/characters/quincy/flying.svg",
  10819. extra: 1044 / 930
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Micro",
  10826. height: math.unit(3, "cm")
  10827. },
  10828. {
  10829. name: "Normal",
  10830. height: math.unit(5 + 9 / 12, "feet")
  10831. },
  10832. {
  10833. name: "Macro",
  10834. height: math.unit(200, "meters"),
  10835. default: true
  10836. },
  10837. {
  10838. name: "Megamacro",
  10839. height: math.unit(1000, "meters")
  10840. },
  10841. ]
  10842. ))
  10843. characterMakers.push(() => makeCharacter(
  10844. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10845. {
  10846. front: {
  10847. height: math.unit(4 + 7 / 12, "feet"),
  10848. weight: math.unit(150, "lb"),
  10849. name: "Front",
  10850. image: {
  10851. source: "./media/characters/vanrel/front.svg",
  10852. extra: 1,
  10853. bottom: 0.02
  10854. }
  10855. },
  10856. elemental: {
  10857. height: math.unit(3, "feet"),
  10858. weight: math.unit(150, "lb"),
  10859. name: "Elemental",
  10860. image: {
  10861. source: "./media/characters/vanrel/elemental.svg",
  10862. extra: 192.3/162.8,
  10863. bottom: 1.79/194.17
  10864. }
  10865. },
  10866. side: {
  10867. height: math.unit(4 + 7 / 12, "feet"),
  10868. weight: math.unit(150, "lb"),
  10869. name: "Side",
  10870. image: {
  10871. source: "./media/characters/vanrel/side.svg",
  10872. extra: 1,
  10873. bottom: 0.025
  10874. }
  10875. },
  10876. tome: {
  10877. height: math.unit(1.35, "feet"),
  10878. weight: math.unit(10, "lb"),
  10879. name: "Vanrel's Tome",
  10880. rename: true,
  10881. image: {
  10882. source: "./media/characters/vanrel/tome.svg"
  10883. }
  10884. },
  10885. beans: {
  10886. height: math.unit(0.89, "feet"),
  10887. name: "Beans",
  10888. image: {
  10889. source: "./media/characters/vanrel/beans.svg"
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Normal",
  10896. height: math.unit(4 + 7 / 12, "feet"),
  10897. default: true
  10898. },
  10899. ]
  10900. ))
  10901. characterMakers.push(() => makeCharacter(
  10902. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10903. {
  10904. front: {
  10905. height: math.unit(7 + 5 / 12, "feet"),
  10906. weight: math.unit(150, "lb"),
  10907. name: "Front",
  10908. image: {
  10909. source: "./media/characters/kuiper-vanrel/front.svg",
  10910. extra: 1118 / 1068,
  10911. bottom: 0.09
  10912. }
  10913. },
  10914. foot: {
  10915. height: math.unit(0.55, "meters"),
  10916. name: "Foot",
  10917. image: {
  10918. source: "./media/characters/kuiper-vanrel/foot.svg",
  10919. }
  10920. },
  10921. battle: {
  10922. height: math.unit(6.824, "feet"),
  10923. weight: math.unit(150, "lb"),
  10924. name: "Battle",
  10925. image: {
  10926. source: "./media/characters/kuiper-vanrel/battle.svg",
  10927. extra: 1466/1327,
  10928. bottom: 29/1492.5
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Normal",
  10935. height: math.unit(7 + 5 / 12, "feet"),
  10936. default: true
  10937. },
  10938. ]
  10939. ))
  10940. characterMakers.push(() => makeCharacter(
  10941. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10942. {
  10943. front: {
  10944. height: math.unit(8 + 5 / 12, "feet"),
  10945. weight: math.unit(150, "lb"),
  10946. name: "Front",
  10947. image: {
  10948. source: "./media/characters/keset-vanrel/front.svg",
  10949. extra: 1150 / 1084,
  10950. bottom: 0.05
  10951. }
  10952. },
  10953. hand: {
  10954. height: math.unit(0.6, "meters"),
  10955. name: "Hand",
  10956. image: {
  10957. source: "./media/characters/keset-vanrel/hand.svg"
  10958. }
  10959. },
  10960. foot: {
  10961. height: math.unit(0.94978, "meters"),
  10962. name: "Foot",
  10963. image: {
  10964. source: "./media/characters/keset-vanrel/foot.svg"
  10965. }
  10966. },
  10967. battle: {
  10968. height: math.unit(7.408, "feet"),
  10969. weight: math.unit(150, "lb"),
  10970. name: "Battle",
  10971. image: {
  10972. source: "./media/characters/keset-vanrel/battle.svg",
  10973. extra: 1890/1386,
  10974. bottom: 73.28/1970
  10975. }
  10976. },
  10977. },
  10978. [
  10979. {
  10980. name: "Normal",
  10981. height: math.unit(8 + 5 / 12, "feet"),
  10982. default: true
  10983. },
  10984. ]
  10985. ))
  10986. characterMakers.push(() => makeCharacter(
  10987. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  10988. {
  10989. front: {
  10990. height: math.unit(6, "feet"),
  10991. weight: math.unit(150, "lb"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/neos/front.svg",
  10995. extra: 1696 / 992,
  10996. bottom: 0.14
  10997. }
  10998. },
  10999. },
  11000. [
  11001. {
  11002. name: "Normal",
  11003. height: math.unit(54, "cm"),
  11004. default: true
  11005. },
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(100, "m")
  11009. },
  11010. {
  11011. name: "Megamacro",
  11012. height: math.unit(10, "km")
  11013. },
  11014. {
  11015. name: "Megamacro+",
  11016. height: math.unit(100, "km")
  11017. },
  11018. {
  11019. name: "Gigamacro",
  11020. height: math.unit(100, "Mm")
  11021. },
  11022. {
  11023. name: "Teramacro",
  11024. height: math.unit(100, "Gm")
  11025. },
  11026. {
  11027. name: "Examacro",
  11028. height: math.unit(100, "Em")
  11029. },
  11030. {
  11031. name: "Godly",
  11032. height: math.unit(10000, "Ym")
  11033. },
  11034. {
  11035. name: "Beyond Godly",
  11036. height: math.unit(10000000, "Ym")
  11037. },
  11038. ]
  11039. ))
  11040. characterMakers.push(() => makeCharacter(
  11041. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11042. {
  11043. feminine: {
  11044. height: math.unit(5, "feet"),
  11045. weight: math.unit(100, "lb"),
  11046. name: "Feminine",
  11047. image: {
  11048. source: "./media/characters/sammy-mouse/feminine.svg",
  11049. extra: 2526 / 2425,
  11050. bottom: 0.123
  11051. }
  11052. },
  11053. masculine: {
  11054. height: math.unit(5, "feet"),
  11055. weight: math.unit(100, "lb"),
  11056. name: "Masculine",
  11057. image: {
  11058. source: "./media/characters/sammy-mouse/masculine.svg",
  11059. extra: 2526 / 2425,
  11060. bottom: 0.123
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Micro",
  11067. height: math.unit(5, "inches")
  11068. },
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(5, "feet"),
  11072. default: true
  11073. },
  11074. {
  11075. name: "Macro",
  11076. height: math.unit(60, "feet")
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(4, "feet"),
  11085. weight: math.unit(50, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/kole/front.svg",
  11089. extra: 1423 / 1303,
  11090. bottom: 0.025
  11091. }
  11092. },
  11093. back: {
  11094. height: math.unit(4, "feet"),
  11095. weight: math.unit(50, "lb"),
  11096. name: "Back",
  11097. image: {
  11098. source: "./media/characters/kole/back.svg",
  11099. extra: 1426 / 1280,
  11100. bottom: 0.02
  11101. }
  11102. },
  11103. },
  11104. [
  11105. {
  11106. name: "Normal",
  11107. height: math.unit(4, "feet"),
  11108. default: true
  11109. },
  11110. ]
  11111. ))
  11112. characterMakers.push(() => makeCharacter(
  11113. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11114. {
  11115. front: {
  11116. height: math.unit(2 + 6 / 12, "feet"),
  11117. weight: math.unit(20, "lb"),
  11118. name: "Front",
  11119. image: {
  11120. source: "./media/characters/rufran/front.svg",
  11121. extra: 2041 / 1839,
  11122. bottom: 0.055
  11123. }
  11124. },
  11125. back: {
  11126. height: math.unit(2 + 6 / 12, "feet"),
  11127. weight: math.unit(20, "lb"),
  11128. name: "Back",
  11129. image: {
  11130. source: "./media/characters/rufran/back.svg",
  11131. extra: 2054 / 1839,
  11132. bottom: 0.01
  11133. }
  11134. },
  11135. hand: {
  11136. height: math.unit(0.2166, "meters"),
  11137. name: "Hand",
  11138. image: {
  11139. source: "./media/characters/rufran/hand.svg"
  11140. }
  11141. },
  11142. foot: {
  11143. height: math.unit(0.185, "meters"),
  11144. name: "Foot",
  11145. image: {
  11146. source: "./media/characters/rufran/foot.svg"
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Micro",
  11153. height: math.unit(1, "inch")
  11154. },
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(2 + 6 / 12, "feet"),
  11158. default: true
  11159. },
  11160. {
  11161. name: "Big",
  11162. height: math.unit(60, "feet")
  11163. },
  11164. {
  11165. name: "Macro",
  11166. height: math.unit(325, "feet")
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11172. {
  11173. front: {
  11174. height: math.unit(0.3, "meters"),
  11175. weight: math.unit(3.5, "kg"),
  11176. name: "Front",
  11177. image: {
  11178. source: "./media/characters/chip/front.svg",
  11179. extra: 748 / 674
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Micro",
  11186. height: math.unit(1, "inch"),
  11187. default: true
  11188. },
  11189. ]
  11190. ))
  11191. characterMakers.push(() => makeCharacter(
  11192. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11193. {
  11194. side: {
  11195. height: math.unit(2.3, "meters"),
  11196. weight: math.unit(3500, "lb"),
  11197. name: "Side",
  11198. image: {
  11199. source: "./media/characters/torvid/side.svg",
  11200. extra: 1972 / 722,
  11201. bottom: 0.035
  11202. }
  11203. },
  11204. },
  11205. [
  11206. {
  11207. name: "Normal",
  11208. height: math.unit(2.3, "meters"),
  11209. default: true
  11210. },
  11211. ]
  11212. ))
  11213. characterMakers.push(() => makeCharacter(
  11214. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11215. {
  11216. front: {
  11217. height: math.unit(2, "meters"),
  11218. weight: math.unit(150.5, "kg"),
  11219. name: "Front",
  11220. image: {
  11221. source: "./media/characters/susan/front.svg",
  11222. extra: 693 / 635,
  11223. bottom: 0.05
  11224. }
  11225. },
  11226. },
  11227. [
  11228. {
  11229. name: "Megamacro",
  11230. height: math.unit(505, "miles"),
  11231. default: true
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11237. {
  11238. front: {
  11239. height: math.unit(6, "feet"),
  11240. weight: math.unit(150, "lb"),
  11241. name: "Front",
  11242. image: {
  11243. source: "./media/characters/raindrops/front.svg",
  11244. extra: 2655 / 2461,
  11245. bottom: 0.02
  11246. }
  11247. },
  11248. back: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Back",
  11252. image: {
  11253. source: "./media/characters/raindrops/back.svg",
  11254. extra: 2574 / 2400,
  11255. bottom: 0.03
  11256. }
  11257. },
  11258. },
  11259. [
  11260. {
  11261. name: "Micro",
  11262. height: math.unit(6, "inches")
  11263. },
  11264. {
  11265. name: "Normal",
  11266. height: math.unit(6 + 2 / 12, "feet")
  11267. },
  11268. {
  11269. name: "Macro",
  11270. height: math.unit(131, "feet"),
  11271. default: true
  11272. },
  11273. {
  11274. name: "Megamacro",
  11275. height: math.unit(15, "miles")
  11276. },
  11277. {
  11278. name: "Gigamacro",
  11279. height: math.unit(4000, "miles")
  11280. },
  11281. {
  11282. name: "Teramacro",
  11283. height: math.unit(315000, "miles")
  11284. },
  11285. ]
  11286. ))
  11287. characterMakers.push(() => makeCharacter(
  11288. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11289. {
  11290. front: {
  11291. height: math.unit(2.794, "meters"),
  11292. weight: math.unit(325, "kg"),
  11293. name: "Front",
  11294. image: {
  11295. source: "./media/characters/tezwa/front.svg",
  11296. extra: 2083 / 1906,
  11297. bottom: 0.031
  11298. }
  11299. },
  11300. foot: {
  11301. height: math.unit(0.687, "meters"),
  11302. name: "Foot",
  11303. image: {
  11304. source: "./media/characters/tezwa/foot.svg"
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(9 + 2 / 12, "feet"),
  11312. default: true
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11318. {
  11319. front: {
  11320. height: math.unit(58, "feet"),
  11321. weight: math.unit(89000, "lb"),
  11322. name: "Front",
  11323. image: {
  11324. source: "./media/characters/typhus/front.svg",
  11325. extra: 816 / 800,
  11326. bottom: 0.065
  11327. }
  11328. },
  11329. },
  11330. [
  11331. {
  11332. name: "Macro",
  11333. height: math.unit(58, "feet"),
  11334. default: true
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(12, "feet"),
  11343. weight: math.unit(6, "tonnes"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/lyra-von-wulf/front.svg",
  11347. extra: 1,
  11348. bottom: 0.10
  11349. }
  11350. },
  11351. frontMecha: {
  11352. height: math.unit(12, "feet"),
  11353. weight: math.unit(12, "tonnes"),
  11354. name: "Front (Mecha)",
  11355. image: {
  11356. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11357. extra: 1,
  11358. bottom: 0.042
  11359. }
  11360. },
  11361. maw: {
  11362. height: math.unit(2.2, "feet"),
  11363. name: "Maw",
  11364. image: {
  11365. source: "./media/characters/lyra-von-wulf/maw.svg"
  11366. }
  11367. },
  11368. },
  11369. [
  11370. {
  11371. name: "Normal",
  11372. height: math.unit(12, "feet"),
  11373. default: true
  11374. },
  11375. {
  11376. name: "Classic",
  11377. height: math.unit(50, "feet")
  11378. },
  11379. {
  11380. name: "Macro",
  11381. height: math.unit(500, "feet")
  11382. },
  11383. {
  11384. name: "Megamacro",
  11385. height: math.unit(1, "mile")
  11386. },
  11387. {
  11388. name: "Gigamacro",
  11389. height: math.unit(400, "miles")
  11390. },
  11391. {
  11392. name: "Teramacro",
  11393. height: math.unit(22000, "miles")
  11394. },
  11395. {
  11396. name: "Solarmacro",
  11397. height: math.unit(8600000, "miles")
  11398. },
  11399. {
  11400. name: "Galactic",
  11401. height: math.unit(1057000, "lightyears")
  11402. },
  11403. ]
  11404. ))
  11405. characterMakers.push(() => makeCharacter(
  11406. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11407. {
  11408. front: {
  11409. height: math.unit(6 + 10 / 12, "feet"),
  11410. weight: math.unit(150, "lb"),
  11411. name: "Front",
  11412. image: {
  11413. source: "./media/characters/dixon/front.svg",
  11414. extra: 3361 / 3209,
  11415. bottom: 0.01
  11416. }
  11417. },
  11418. },
  11419. [
  11420. {
  11421. name: "Normal",
  11422. height: math.unit(6 + 10 / 12, "feet"),
  11423. default: true
  11424. },
  11425. {
  11426. name: "Big",
  11427. height: math.unit(12, "meters")
  11428. },
  11429. {
  11430. name: "Macro",
  11431. height: math.unit(500, "meters")
  11432. },
  11433. {
  11434. name: "Megamacro",
  11435. height: math.unit(2, "km")
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11441. {
  11442. front: {
  11443. height: math.unit(185, "cm"),
  11444. weight: math.unit(68, "kg"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/kauko/front.svg",
  11448. extra: 1455 / 1421,
  11449. bottom: 0.03
  11450. }
  11451. },
  11452. back: {
  11453. height: math.unit(185, "cm"),
  11454. weight: math.unit(68, "kg"),
  11455. name: "Back",
  11456. image: {
  11457. source: "./media/characters/kauko/back.svg",
  11458. extra: 1455 / 1421,
  11459. bottom: 0.004
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Normal",
  11466. height: math.unit(185, "cm"),
  11467. default: true
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(150, "kg"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/varg/front.svg",
  11480. extra: 1108 / 1018,
  11481. bottom: 0.0375
  11482. }
  11483. },
  11484. },
  11485. [
  11486. {
  11487. name: "Normal",
  11488. height: math.unit(5, "meters")
  11489. },
  11490. {
  11491. name: "Macro",
  11492. height: math.unit(200, "meters")
  11493. },
  11494. {
  11495. name: "Megamacro",
  11496. height: math.unit(20, "kilometers")
  11497. },
  11498. {
  11499. name: "True Size",
  11500. height: math.unit(211, "km"),
  11501. default: true
  11502. },
  11503. {
  11504. name: "Gigamacro",
  11505. height: math.unit(1000, "km")
  11506. },
  11507. {
  11508. name: "Gigamacro+",
  11509. height: math.unit(8000, "km")
  11510. },
  11511. {
  11512. name: "Teramacro",
  11513. height: math.unit(1000000, "km")
  11514. },
  11515. ]
  11516. ))
  11517. characterMakers.push(() => makeCharacter(
  11518. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11519. {
  11520. front: {
  11521. height: math.unit(7 + 7 / 12, "feet"),
  11522. weight: math.unit(267, "lb"),
  11523. name: "Front",
  11524. image: {
  11525. source: "./media/characters/dayza/front.svg",
  11526. extra: 1262 / 1200,
  11527. bottom: 0.035
  11528. }
  11529. },
  11530. side: {
  11531. height: math.unit(7 + 7 / 12, "feet"),
  11532. weight: math.unit(267, "lb"),
  11533. name: "Side",
  11534. image: {
  11535. source: "./media/characters/dayza/side.svg",
  11536. extra: 1295 / 1245,
  11537. bottom: 0.05
  11538. }
  11539. },
  11540. back: {
  11541. height: math.unit(7 + 7 / 12, "feet"),
  11542. weight: math.unit(267, "lb"),
  11543. name: "Back",
  11544. image: {
  11545. source: "./media/characters/dayza/back.svg",
  11546. extra: 1241 / 1170
  11547. }
  11548. },
  11549. },
  11550. [
  11551. {
  11552. name: "Normal",
  11553. height: math.unit(7 + 7 / 12, "feet"),
  11554. default: true
  11555. },
  11556. {
  11557. name: "Macro",
  11558. height: math.unit(155, "feet")
  11559. },
  11560. ]
  11561. ))
  11562. characterMakers.push(() => makeCharacter(
  11563. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11564. {
  11565. front: {
  11566. height: math.unit(6 + 5 / 12, "feet"),
  11567. weight: math.unit(160, "lb"),
  11568. name: "Front",
  11569. image: {
  11570. source: "./media/characters/xanthos/front.svg",
  11571. extra: 1,
  11572. bottom: 0.04
  11573. }
  11574. },
  11575. back: {
  11576. height: math.unit(6 + 5 / 12, "feet"),
  11577. weight: math.unit(160, "lb"),
  11578. name: "Back",
  11579. image: {
  11580. source: "./media/characters/xanthos/back.svg",
  11581. extra: 1,
  11582. bottom: 0.03
  11583. }
  11584. },
  11585. hand: {
  11586. height: math.unit(0.928, "feet"),
  11587. name: "Hand",
  11588. image: {
  11589. source: "./media/characters/xanthos/hand.svg"
  11590. }
  11591. },
  11592. foot: {
  11593. height: math.unit(1.286, "feet"),
  11594. name: "Foot",
  11595. image: {
  11596. source: "./media/characters/xanthos/foot.svg"
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Normal",
  11603. height: math.unit(6 + 5 / 12, "feet"),
  11604. default: true
  11605. },
  11606. {
  11607. name: "Normal+",
  11608. height: math.unit(6, "meters")
  11609. },
  11610. {
  11611. name: "Macro",
  11612. height: math.unit(40, "feet")
  11613. },
  11614. {
  11615. name: "Macro+",
  11616. height: math.unit(200, "meters")
  11617. },
  11618. {
  11619. name: "Megamacro",
  11620. height: math.unit(20, "km")
  11621. },
  11622. {
  11623. name: "Megamacro+",
  11624. height: math.unit(100, "km")
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11630. {
  11631. front: {
  11632. height: math.unit(6 + 3 / 12, "feet"),
  11633. weight: math.unit(215, "lb"),
  11634. name: "Front",
  11635. image: {
  11636. source: "./media/characters/grynn/front.svg",
  11637. extra: 4627 / 4209,
  11638. bottom: 0.047
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Micro",
  11645. height: math.unit(6, "inches")
  11646. },
  11647. {
  11648. name: "Normal",
  11649. height: math.unit(6 + 3 / 12, "feet"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Big",
  11654. height: math.unit(104, "feet")
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(944, "feet")
  11659. },
  11660. {
  11661. name: "Macro+",
  11662. height: math.unit(9480, "feet")
  11663. },
  11664. {
  11665. name: "Megamacro",
  11666. height: math.unit(78752, "feet")
  11667. },
  11668. {
  11669. name: "Megamacro+",
  11670. height: math.unit(630128, "feet")
  11671. },
  11672. {
  11673. name: "Megamacro++",
  11674. height: math.unit(3150695, "feet")
  11675. },
  11676. ]
  11677. ))
  11678. characterMakers.push(() => makeCharacter(
  11679. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11680. {
  11681. front: {
  11682. height: math.unit(7 + 5 / 12, "feet"),
  11683. weight: math.unit(450, "lb"),
  11684. name: "Front",
  11685. image: {
  11686. source: "./media/characters/mocha-aura/front.svg",
  11687. extra: 1907 / 1817,
  11688. bottom: 0.04
  11689. }
  11690. },
  11691. back: {
  11692. height: math.unit(7 + 5 / 12, "feet"),
  11693. weight: math.unit(450, "lb"),
  11694. name: "Back",
  11695. image: {
  11696. source: "./media/characters/mocha-aura/back.svg",
  11697. extra: 1900 / 1825,
  11698. bottom: 0.045
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Nano",
  11705. height: math.unit(1, "nm")
  11706. },
  11707. {
  11708. name: "Megamicro",
  11709. height: math.unit(1, "mm")
  11710. },
  11711. {
  11712. name: "Micro",
  11713. height: math.unit(3, "inches")
  11714. },
  11715. {
  11716. name: "Normal",
  11717. height: math.unit(7 + 5 / 12, "feet"),
  11718. default: true
  11719. },
  11720. {
  11721. name: "Macro",
  11722. height: math.unit(30, "feet")
  11723. },
  11724. {
  11725. name: "Megamacro",
  11726. height: math.unit(3500, "feet")
  11727. },
  11728. {
  11729. name: "Teramacro",
  11730. height: math.unit(500000, "miles")
  11731. },
  11732. {
  11733. name: "Petamacro",
  11734. height: math.unit(50000000000000000, "parsecs")
  11735. },
  11736. ]
  11737. ))
  11738. characterMakers.push(() => makeCharacter(
  11739. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11740. {
  11741. front: {
  11742. height: math.unit(6, "feet"),
  11743. weight: math.unit(150, "lb"),
  11744. name: "Front",
  11745. image: {
  11746. source: "./media/characters/ilisha-devya/front.svg",
  11747. extra: 1,
  11748. bottom: 0.175
  11749. }
  11750. },
  11751. back: {
  11752. height: math.unit(6, "feet"),
  11753. weight: math.unit(150, "lb"),
  11754. name: "Back",
  11755. image: {
  11756. source: "./media/characters/ilisha-devya/back.svg",
  11757. extra: 1,
  11758. bottom: 0.015
  11759. }
  11760. },
  11761. },
  11762. [
  11763. {
  11764. name: "Macro",
  11765. height: math.unit(500, "feet"),
  11766. default: true
  11767. },
  11768. {
  11769. name: "Megamacro",
  11770. height: math.unit(10, "miles")
  11771. },
  11772. {
  11773. name: "Gigamacro",
  11774. height: math.unit(100000, "miles")
  11775. },
  11776. {
  11777. name: "Examacro",
  11778. height: math.unit(1e9, "lightyears")
  11779. },
  11780. {
  11781. name: "Omniversal",
  11782. height: math.unit(1e33, "lightyears")
  11783. },
  11784. {
  11785. name: "Beyond Infinite",
  11786. height: math.unit(1e100, "lightyears")
  11787. },
  11788. ]
  11789. ))
  11790. characterMakers.push(() => makeCharacter(
  11791. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11792. {
  11793. Side: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(150, "lb"),
  11796. name: "Side",
  11797. image: {
  11798. source: "./media/characters/mira/side.svg",
  11799. extra: 900 / 799,
  11800. bottom: 0.02
  11801. }
  11802. },
  11803. },
  11804. [
  11805. {
  11806. name: "Human Size",
  11807. height: math.unit(6, "feet")
  11808. },
  11809. {
  11810. name: "Macro",
  11811. height: math.unit(100, "feet"),
  11812. default: true
  11813. },
  11814. {
  11815. name: "Megamacro",
  11816. height: math.unit(10, "miles")
  11817. },
  11818. {
  11819. name: "Gigamacro",
  11820. height: math.unit(25000, "miles")
  11821. },
  11822. {
  11823. name: "Teramacro",
  11824. height: math.unit(300, "AU")
  11825. },
  11826. {
  11827. name: "Full Size",
  11828. height: math.unit(4.5e10, "lightyears")
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(6, "feet"),
  11837. weight: math.unit(150, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/holly/front.svg",
  11841. extra: 639 / 606
  11842. }
  11843. },
  11844. back: {
  11845. height: math.unit(6, "feet"),
  11846. weight: math.unit(150, "lb"),
  11847. name: "Back",
  11848. image: {
  11849. source: "./media/characters/holly/back.svg",
  11850. extra: 623 / 598
  11851. }
  11852. },
  11853. frontWorking: {
  11854. height: math.unit(6, "feet"),
  11855. weight: math.unit(150, "lb"),
  11856. name: "Front (Working)",
  11857. image: {
  11858. source: "./media/characters/holly/front-working.svg",
  11859. extra: 607 / 577,
  11860. bottom: 0.048
  11861. }
  11862. },
  11863. },
  11864. [
  11865. {
  11866. name: "Normal",
  11867. height: math.unit(12 + 3 / 12, "feet"),
  11868. default: true
  11869. },
  11870. ]
  11871. ))
  11872. characterMakers.push(() => makeCharacter(
  11873. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11874. {
  11875. front: {
  11876. height: math.unit(6, "feet"),
  11877. weight: math.unit(150, "lb"),
  11878. name: "Front",
  11879. image: {
  11880. source: "./media/characters/porter/front.svg",
  11881. extra: 1,
  11882. bottom: 0.01
  11883. }
  11884. },
  11885. frontRobes: {
  11886. height: math.unit(6, "feet"),
  11887. weight: math.unit(150, "lb"),
  11888. name: "Front (Robes)",
  11889. image: {
  11890. source: "./media/characters/porter/front-robes.svg",
  11891. extra: 1.01,
  11892. bottom: 0.01
  11893. }
  11894. },
  11895. },
  11896. [
  11897. {
  11898. name: "Normal",
  11899. height: math.unit(11 + 9 / 12, "feet"),
  11900. default: true
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11906. {
  11907. legendary: {
  11908. height: math.unit(6, "feet"),
  11909. weight: math.unit(150, "lb"),
  11910. name: "Legendary",
  11911. image: {
  11912. source: "./media/characters/lucy/legendary.svg",
  11913. extra: 1355 / 1100,
  11914. bottom: 0.045
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Legendary",
  11921. height: math.unit(86882 * 2, "miles"),
  11922. default: true
  11923. },
  11924. ]
  11925. ))
  11926. characterMakers.push(() => makeCharacter(
  11927. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11928. {
  11929. front: {
  11930. height: math.unit(6, "feet"),
  11931. weight: math.unit(150, "lb"),
  11932. name: "Front",
  11933. image: {
  11934. source: "./media/characters/drusilla/front.svg",
  11935. extra: 678 / 635,
  11936. bottom: 0.03
  11937. }
  11938. },
  11939. back: {
  11940. height: math.unit(6, "feet"),
  11941. weight: math.unit(150, "lb"),
  11942. name: "Back",
  11943. image: {
  11944. source: "./media/characters/drusilla/back.svg",
  11945. extra: 678 / 635,
  11946. bottom: 0.005
  11947. }
  11948. },
  11949. },
  11950. [
  11951. {
  11952. name: "Macro",
  11953. height: math.unit(100, "feet")
  11954. },
  11955. {
  11956. name: "Canon Height",
  11957. height: math.unit(2000, "feet"),
  11958. default: true
  11959. },
  11960. ]
  11961. ))
  11962. characterMakers.push(() => makeCharacter(
  11963. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  11964. {
  11965. front: {
  11966. height: math.unit(6, "feet"),
  11967. weight: math.unit(180, "lb"),
  11968. name: "Front",
  11969. image: {
  11970. source: "./media/characters/renard-thatch/front.svg",
  11971. extra: 2411 / 2275,
  11972. bottom: 0.01
  11973. }
  11974. },
  11975. frontPosing: {
  11976. height: math.unit(6, "feet"),
  11977. weight: math.unit(180, "lb"),
  11978. name: "Front (Posing)",
  11979. image: {
  11980. source: "./media/characters/renard-thatch/front-posing.svg",
  11981. extra: 2381 / 2261,
  11982. bottom: 0.01
  11983. }
  11984. },
  11985. back: {
  11986. height: math.unit(6, "feet"),
  11987. weight: math.unit(180, "lb"),
  11988. name: "Back",
  11989. image: {
  11990. source: "./media/characters/renard-thatch/back.svg",
  11991. extra: 2428 / 2288
  11992. }
  11993. },
  11994. },
  11995. [
  11996. {
  11997. name: "Micro",
  11998. height: math.unit(3, "inches")
  11999. },
  12000. {
  12001. name: "Default",
  12002. height: math.unit(6, "feet"),
  12003. default: true
  12004. },
  12005. {
  12006. name: "Macro",
  12007. height: math.unit(75, "feet")
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12013. {
  12014. front: {
  12015. height: math.unit(1450, "feet"),
  12016. weight: math.unit(1.21e6, "tons"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/sekvra/front.svg",
  12020. extra: 1,
  12021. bottom: 0.03
  12022. }
  12023. },
  12024. frontClothed: {
  12025. height: math.unit(1450, "feet"),
  12026. weight: math.unit(1.21e6, "tons"),
  12027. name: "Front (Clothed)",
  12028. image: {
  12029. source: "./media/characters/sekvra/front-clothed.svg",
  12030. extra: 1,
  12031. bottom: 0.03
  12032. }
  12033. },
  12034. side: {
  12035. height: math.unit(1450, "feet"),
  12036. weight: math.unit(1.21e6, "tons"),
  12037. name: "Side",
  12038. image: {
  12039. source: "./media/characters/sekvra/side.svg",
  12040. extra: 1,
  12041. bottom: 0.025
  12042. }
  12043. },
  12044. back: {
  12045. height: math.unit(1450, "feet"),
  12046. weight: math.unit(1.21e6, "tons"),
  12047. name: "Back",
  12048. image: {
  12049. source: "./media/characters/sekvra/back.svg",
  12050. extra: 1,
  12051. bottom: 0.005
  12052. }
  12053. },
  12054. },
  12055. [
  12056. {
  12057. name: "Macro",
  12058. height: math.unit(1450, "feet"),
  12059. default: true
  12060. },
  12061. {
  12062. name: "Megamacro",
  12063. height: math.unit(15000, "feet")
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(150, "lb"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/carmine/front.svg",
  12076. extra: 1,
  12077. bottom: 0.035
  12078. }
  12079. },
  12080. frontArmor: {
  12081. height: math.unit(6, "feet"),
  12082. weight: math.unit(150, "lb"),
  12083. name: "Front (Armor)",
  12084. image: {
  12085. source: "./media/characters/carmine/front-armor.svg",
  12086. extra: 1,
  12087. bottom: 0.035
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Large",
  12094. height: math.unit(1, "mile")
  12095. },
  12096. {
  12097. name: "Huge",
  12098. height: math.unit(40, "miles"),
  12099. default: true
  12100. },
  12101. {
  12102. name: "Colossal",
  12103. height: math.unit(2500, "miles")
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12109. {
  12110. front: {
  12111. height: math.unit(6, "feet"),
  12112. weight: math.unit(150, "lb"),
  12113. name: "Front",
  12114. image: {
  12115. source: "./media/characters/elyssia/front.svg",
  12116. extra: 2201 / 2035,
  12117. bottom: 0.05
  12118. }
  12119. },
  12120. frontClothed: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(150, "lb"),
  12123. name: "Front (Clothed)",
  12124. image: {
  12125. source: "./media/characters/elyssia/front-clothed.svg",
  12126. extra: 2201 / 2035,
  12127. bottom: 0.05
  12128. }
  12129. },
  12130. back: {
  12131. height: math.unit(6, "feet"),
  12132. weight: math.unit(150, "lb"),
  12133. name: "Back",
  12134. image: {
  12135. source: "./media/characters/elyssia/back.svg",
  12136. extra: 2201 / 2035,
  12137. bottom: 0.013
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Smaller",
  12144. height: math.unit(150, "feet")
  12145. },
  12146. {
  12147. name: "Standard",
  12148. height: math.unit(1400, "feet"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Distracted",
  12153. height: math.unit(15000, "feet")
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(7 + 4 / 12, "feet"),
  12162. weight: math.unit(500, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/geno-maxwell/front.svg",
  12166. extra: 2207 / 2040,
  12167. bottom: 0.015
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Micro",
  12174. height: math.unit(3, "inches")
  12175. },
  12176. {
  12177. name: "Normal",
  12178. height: math.unit(7 + 4 / 12, "feet"),
  12179. default: true
  12180. },
  12181. {
  12182. name: "Macro",
  12183. height: math.unit(220, "feet")
  12184. },
  12185. {
  12186. name: "Megamacro",
  12187. height: math.unit(11, "miles")
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(7 + 4 / 12, "feet"),
  12196. weight: math.unit(500, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/regena-maxwell/front.svg",
  12200. extra: 3115 / 2770,
  12201. bottom: 0.02
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(7 + 4 / 12, "feet"),
  12209. default: true
  12210. },
  12211. {
  12212. name: "Macro",
  12213. height: math.unit(220, "feet")
  12214. },
  12215. {
  12216. name: "Megamacro",
  12217. height: math.unit(11, "miles")
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12223. {
  12224. front: {
  12225. height: math.unit(6, "feet"),
  12226. weight: math.unit(150, "lb"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12230. extra: 860 / 690,
  12231. bottom: 0.03
  12232. }
  12233. },
  12234. },
  12235. [
  12236. {
  12237. name: "Normal",
  12238. height: math.unit(1.7, "meters"),
  12239. default: true
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12245. {
  12246. front: {
  12247. height: math.unit(6, "feet"),
  12248. weight: math.unit(150, "lb"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/quilly/front.svg",
  12252. extra: 890 / 776
  12253. }
  12254. },
  12255. },
  12256. [
  12257. {
  12258. name: "Gigamacro",
  12259. height: math.unit(404090, "miles"),
  12260. default: true
  12261. },
  12262. ]
  12263. ))
  12264. characterMakers.push(() => makeCharacter(
  12265. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12266. {
  12267. front: {
  12268. height: math.unit(7 + 8 / 12, "feet"),
  12269. weight: math.unit(350, "lb"),
  12270. name: "Front",
  12271. image: {
  12272. source: "./media/characters/tempest/front.svg",
  12273. extra: 1175 / 1086,
  12274. bottom: 0.02
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(7 + 8 / 12, "feet"),
  12282. default: true
  12283. },
  12284. ]
  12285. ))
  12286. characterMakers.push(() => makeCharacter(
  12287. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12288. {
  12289. side: {
  12290. height: math.unit(4 + 5 / 12, "feet"),
  12291. weight: math.unit(80, "lb"),
  12292. name: "Side",
  12293. image: {
  12294. source: "./media/characters/rodger/side.svg",
  12295. extra: 1235 / 1118
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Micro",
  12302. height: math.unit(1, "inch")
  12303. },
  12304. {
  12305. name: "Normal",
  12306. height: math.unit(4 + 5 / 12, "feet"),
  12307. default: true
  12308. },
  12309. {
  12310. name: "Macro",
  12311. height: math.unit(120, "feet")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(6, "feet"),
  12320. weight: math.unit(150, "lb"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/danyel/front.svg",
  12324. extra: 1185 / 1123,
  12325. bottom: 0.05
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Shrunken",
  12332. height: math.unit(0.5, "mm")
  12333. },
  12334. {
  12335. name: "Micro",
  12336. height: math.unit(1, "mm"),
  12337. default: true
  12338. },
  12339. {
  12340. name: "Upsized",
  12341. height: math.unit(5 + 5 / 12, "feet")
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(5 + 6 / 12, "feet"),
  12350. weight: math.unit(200, "lb"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/vivian-bijoux/front.svg",
  12354. extra: 1,
  12355. bottom: 0.072
  12356. }
  12357. },
  12358. },
  12359. [
  12360. {
  12361. name: "Normal",
  12362. height: math.unit(5 + 6 / 12, "feet"),
  12363. default: true
  12364. },
  12365. {
  12366. name: "Bad Dream",
  12367. height: math.unit(500, "feet")
  12368. },
  12369. {
  12370. name: "Nightmare",
  12371. height: math.unit(500, "miles")
  12372. },
  12373. ]
  12374. ))
  12375. characterMakers.push(() => makeCharacter(
  12376. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12377. {
  12378. front: {
  12379. height: math.unit(6 + 1 / 12, "feet"),
  12380. weight: math.unit(260, "lb"),
  12381. name: "Front",
  12382. image: {
  12383. source: "./media/characters/zeta/front.svg",
  12384. extra: 1968 / 1889,
  12385. bottom: 0.06
  12386. }
  12387. },
  12388. back: {
  12389. height: math.unit(6 + 1 / 12, "feet"),
  12390. weight: math.unit(260, "lb"),
  12391. name: "Back",
  12392. image: {
  12393. source: "./media/characters/zeta/back.svg",
  12394. extra: 1944 / 1858,
  12395. bottom: 0.03
  12396. }
  12397. },
  12398. hand: {
  12399. height: math.unit(1.112, "feet"),
  12400. name: "Hand",
  12401. image: {
  12402. source: "./media/characters/zeta/hand.svg"
  12403. }
  12404. },
  12405. foot: {
  12406. height: math.unit(1.48, "feet"),
  12407. name: "Foot",
  12408. image: {
  12409. source: "./media/characters/zeta/foot.svg"
  12410. }
  12411. },
  12412. },
  12413. [
  12414. {
  12415. name: "Micro",
  12416. height: math.unit(6, "inches")
  12417. },
  12418. {
  12419. name: "Normal",
  12420. height: math.unit(6 + 1 / 12, "feet"),
  12421. default: true
  12422. },
  12423. {
  12424. name: "Macro",
  12425. height: math.unit(20, "feet")
  12426. },
  12427. ]
  12428. ))
  12429. characterMakers.push(() => makeCharacter(
  12430. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12431. {
  12432. front: {
  12433. height: math.unit(6, "feet"),
  12434. weight: math.unit(150, "lb"),
  12435. name: "Front",
  12436. image: {
  12437. source: "./media/characters/jamie-larsen/front.svg",
  12438. extra: 962 / 933,
  12439. bottom: 0.02
  12440. }
  12441. },
  12442. back: {
  12443. height: math.unit(6, "feet"),
  12444. weight: math.unit(150, "lb"),
  12445. name: "Back",
  12446. image: {
  12447. source: "./media/characters/jamie-larsen/back.svg",
  12448. extra: 997 / 946
  12449. }
  12450. },
  12451. },
  12452. [
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(28 + 7 / 12, "feet"),
  12456. default: true
  12457. },
  12458. {
  12459. name: "Macro+",
  12460. height: math.unit(180, "feet")
  12461. },
  12462. {
  12463. name: "Megamacro",
  12464. height: math.unit(10, "miles")
  12465. },
  12466. {
  12467. name: "Gigamacro",
  12468. height: math.unit(200000, "miles")
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12474. {
  12475. front: {
  12476. height: math.unit(6, "feet"),
  12477. weight: math.unit(120, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/vance/front.svg",
  12481. extra: 1980 / 1890,
  12482. bottom: 0.09
  12483. }
  12484. },
  12485. back: {
  12486. height: math.unit(6, "feet"),
  12487. weight: math.unit(120, "lb"),
  12488. name: "Back",
  12489. image: {
  12490. source: "./media/characters/vance/back.svg",
  12491. extra: 2081 / 1994,
  12492. bottom: 0.014
  12493. }
  12494. },
  12495. hand: {
  12496. height: math.unit(0.88, "feet"),
  12497. name: "Hand",
  12498. image: {
  12499. source: "./media/characters/vance/hand.svg"
  12500. }
  12501. },
  12502. foot: {
  12503. height: math.unit(0.64, "feet"),
  12504. name: "Foot",
  12505. image: {
  12506. source: "./media/characters/vance/foot.svg"
  12507. }
  12508. },
  12509. },
  12510. [
  12511. {
  12512. name: "Small",
  12513. height: math.unit(90, "feet"),
  12514. default: true
  12515. },
  12516. {
  12517. name: "Macro",
  12518. height: math.unit(100, "meters")
  12519. },
  12520. {
  12521. name: "Megamacro",
  12522. height: math.unit(15, "miles")
  12523. },
  12524. ]
  12525. ))
  12526. characterMakers.push(() => makeCharacter(
  12527. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12528. {
  12529. front: {
  12530. height: math.unit(6, "feet"),
  12531. weight: math.unit(180, "lb"),
  12532. name: "Front",
  12533. image: {
  12534. source: "./media/characters/xochitl/front.svg",
  12535. extra: 2297 / 2261,
  12536. bottom: 0.065
  12537. }
  12538. },
  12539. back: {
  12540. height: math.unit(6, "feet"),
  12541. weight: math.unit(180, "lb"),
  12542. name: "Back",
  12543. image: {
  12544. source: "./media/characters/xochitl/back.svg",
  12545. extra: 2386 / 2354,
  12546. bottom: 0.01
  12547. }
  12548. },
  12549. foot: {
  12550. height: math.unit(6 / 5 * 1.15, "feet"),
  12551. weight: math.unit(150, "lb"),
  12552. name: "Foot",
  12553. image: {
  12554. source: "./media/characters/xochitl/foot.svg"
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Macro",
  12561. height: math.unit(80, "feet")
  12562. },
  12563. {
  12564. name: "Macro+",
  12565. height: math.unit(400, "feet"),
  12566. default: true
  12567. },
  12568. {
  12569. name: "Gigamacro",
  12570. height: math.unit(80000, "miles")
  12571. },
  12572. {
  12573. name: "Gigamacro+",
  12574. height: math.unit(400000, "miles")
  12575. },
  12576. {
  12577. name: "Teramacro",
  12578. height: math.unit(300, "AU")
  12579. },
  12580. ]
  12581. ))
  12582. characterMakers.push(() => makeCharacter(
  12583. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12584. {
  12585. front: {
  12586. height: math.unit(6, "feet"),
  12587. weight: math.unit(150, "lb"),
  12588. name: "Front",
  12589. image: {
  12590. source: "./media/characters/vincent/front.svg",
  12591. extra: 1130 / 1080,
  12592. bottom: 0.055
  12593. }
  12594. },
  12595. beak: {
  12596. height: math.unit(6 * 0.1, "feet"),
  12597. name: "Beak",
  12598. image: {
  12599. source: "./media/characters/vincent/beak.svg"
  12600. }
  12601. },
  12602. hand: {
  12603. height: math.unit(6 * 0.85, "feet"),
  12604. weight: math.unit(150, "lb"),
  12605. name: "Hand",
  12606. image: {
  12607. source: "./media/characters/vincent/hand.svg"
  12608. }
  12609. },
  12610. foot: {
  12611. height: math.unit(6 * 0.19, "feet"),
  12612. weight: math.unit(150, "lb"),
  12613. name: "Foot",
  12614. image: {
  12615. source: "./media/characters/vincent/foot.svg"
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Base",
  12622. height: math.unit(6 + 5 / 12, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Macro",
  12627. height: math.unit(300, "feet")
  12628. },
  12629. {
  12630. name: "Megamacro",
  12631. height: math.unit(2, "miles")
  12632. },
  12633. {
  12634. name: "Gigamacro",
  12635. height: math.unit(1000, "miles")
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(6 + 2 / 12, "feet"),
  12644. weight: math.unit(265, "lb"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/jay/front.svg",
  12648. extra: 1510 / 1430,
  12649. bottom: 0.042
  12650. }
  12651. },
  12652. back: {
  12653. height: math.unit(6 + 2 / 12, "feet"),
  12654. weight: math.unit(265, "lb"),
  12655. name: "Back",
  12656. image: {
  12657. source: "./media/characters/jay/back.svg",
  12658. extra: 1510 / 1430,
  12659. bottom: 0.025
  12660. }
  12661. },
  12662. clothed: {
  12663. height: math.unit(6 + 2 / 12, "feet"),
  12664. weight: math.unit(265, "lb"),
  12665. name: "Front (Clothed)",
  12666. image: {
  12667. source: "./media/characters/jay/clothed.svg",
  12668. extra: 744 / 699,
  12669. bottom: 0.043
  12670. }
  12671. },
  12672. head: {
  12673. height: math.unit(1.772, "feet"),
  12674. name: "Head",
  12675. image: {
  12676. source: "./media/characters/jay/head.svg"
  12677. }
  12678. },
  12679. sizeRay: {
  12680. height: math.unit(1.331, "feet"),
  12681. name: "Size Ray",
  12682. image: {
  12683. source: "./media/characters/jay/size-ray.svg"
  12684. }
  12685. },
  12686. },
  12687. [
  12688. {
  12689. name: "Micro",
  12690. height: math.unit(1, "inch")
  12691. },
  12692. {
  12693. name: "Normal",
  12694. height: math.unit(6 + 2 / 12, "feet"),
  12695. default: true
  12696. },
  12697. {
  12698. name: "Macro",
  12699. height: math.unit(1, "mile")
  12700. },
  12701. {
  12702. name: "Megamacro",
  12703. height: math.unit(100, "miles")
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12709. {
  12710. front: {
  12711. height: math.unit(2, "meters"),
  12712. weight: math.unit(500, "kg"),
  12713. name: "Front",
  12714. image: {
  12715. source: "./media/characters/coatl/front.svg",
  12716. extra: 3948 / 3500,
  12717. bottom: 0.082
  12718. }
  12719. },
  12720. },
  12721. [
  12722. {
  12723. name: "Normal",
  12724. height: math.unit(4, "meters")
  12725. },
  12726. {
  12727. name: "Macro",
  12728. height: math.unit(100, "meters"),
  12729. default: true
  12730. },
  12731. {
  12732. name: "Macro+",
  12733. height: math.unit(300, "meters")
  12734. },
  12735. {
  12736. name: "Megamacro",
  12737. height: math.unit(3, "gigameters")
  12738. },
  12739. {
  12740. name: "Megamacro+",
  12741. height: math.unit(300, "terameters")
  12742. },
  12743. {
  12744. name: "Megamacro++",
  12745. height: math.unit(3, "lightyears")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12751. {
  12752. front: {
  12753. height: math.unit(6, "feet"),
  12754. weight: math.unit(50, "kg"),
  12755. name: "front",
  12756. image: {
  12757. source: "./media/characters/shiroryu/front.svg",
  12758. extra: 1990 / 1935
  12759. }
  12760. },
  12761. },
  12762. [
  12763. {
  12764. name: "Mortal Mingling",
  12765. height: math.unit(3, "meters")
  12766. },
  12767. {
  12768. name: "Kaiju-ish",
  12769. height: math.unit(250, "meters")
  12770. },
  12771. {
  12772. name: "Somewhat Godly",
  12773. height: math.unit(400, "km"),
  12774. default: true
  12775. },
  12776. {
  12777. name: "Planetary",
  12778. height: math.unit(300, "megameters")
  12779. },
  12780. {
  12781. name: "Galaxy-dwarfing",
  12782. height: math.unit(450, "kiloparsecs")
  12783. },
  12784. {
  12785. name: "Universe Eater",
  12786. height: math.unit(150, "gigaparsecs")
  12787. },
  12788. {
  12789. name: "Almost Immeasurable",
  12790. height: math.unit(1.3e266, "yottaparsecs")
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(6, "feet"),
  12799. weight: math.unit(150, "lb"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/umeko/front.svg",
  12803. extra: 1,
  12804. bottom: 0.019
  12805. }
  12806. },
  12807. frontArmored: {
  12808. height: math.unit(6, "feet"),
  12809. weight: math.unit(150, "lb"),
  12810. name: "Front (Armored)",
  12811. image: {
  12812. source: "./media/characters/umeko/front-armored.svg",
  12813. extra: 1,
  12814. bottom: 0.021
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Macro",
  12821. height: math.unit(220, "feet"),
  12822. default: true
  12823. },
  12824. {
  12825. name: "Guardian Dragon",
  12826. height: math.unit(50, "miles")
  12827. },
  12828. {
  12829. name: "Cosmic",
  12830. height: math.unit(800000, "miles")
  12831. },
  12832. ]
  12833. ))
  12834. characterMakers.push(() => makeCharacter(
  12835. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12836. {
  12837. front: {
  12838. height: math.unit(6, "feet"),
  12839. weight: math.unit(150, "lb"),
  12840. name: "Front",
  12841. image: {
  12842. source: "./media/characters/cassidy/front.svg",
  12843. extra: 1,
  12844. bottom: 0.043
  12845. }
  12846. },
  12847. },
  12848. [
  12849. {
  12850. name: "Canon Height",
  12851. height: math.unit(120, "feet"),
  12852. default: true
  12853. },
  12854. {
  12855. name: "Macro+",
  12856. height: math.unit(400, "feet")
  12857. },
  12858. {
  12859. name: "Macro++",
  12860. height: math.unit(4000, "feet")
  12861. },
  12862. {
  12863. name: "Megamacro",
  12864. height: math.unit(3, "miles")
  12865. },
  12866. ]
  12867. ))
  12868. characterMakers.push(() => makeCharacter(
  12869. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12870. {
  12871. front: {
  12872. height: math.unit(6, "feet"),
  12873. weight: math.unit(150, "lb"),
  12874. name: "Front",
  12875. image: {
  12876. source: "./media/characters/isaac/front.svg",
  12877. extra: 896 / 815,
  12878. bottom: 0.11
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Human Size",
  12885. height: math.unit(8, "feet"),
  12886. default: true
  12887. },
  12888. {
  12889. name: "Macro",
  12890. height: math.unit(400, "feet")
  12891. },
  12892. {
  12893. name: "Megamacro",
  12894. height: math.unit(50, "miles")
  12895. },
  12896. {
  12897. name: "Canon Height",
  12898. height: math.unit(200, "AU")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(72, "kg"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/sleekit/front.svg",
  12911. extra: 4693 / 4487,
  12912. bottom: 0.012
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Minimum Height",
  12919. height: math.unit(10, "meters")
  12920. },
  12921. {
  12922. name: "Smaller",
  12923. height: math.unit(25, "meters")
  12924. },
  12925. {
  12926. name: "Larger",
  12927. height: math.unit(38, "meters"),
  12928. default: true
  12929. },
  12930. {
  12931. name: "Maximum height",
  12932. height: math.unit(100, "meters")
  12933. },
  12934. ]
  12935. ))
  12936. characterMakers.push(() => makeCharacter(
  12937. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12938. {
  12939. front: {
  12940. height: math.unit(6, "feet"),
  12941. weight: math.unit(150, "lb"),
  12942. name: "Front",
  12943. image: {
  12944. source: "./media/characters/nillia/front.svg",
  12945. extra: 2195 / 2037,
  12946. bottom: 0.005
  12947. }
  12948. },
  12949. back: {
  12950. height: math.unit(6, "feet"),
  12951. weight: math.unit(150, "lb"),
  12952. name: "Back",
  12953. image: {
  12954. source: "./media/characters/nillia/back.svg",
  12955. extra: 2195 / 2037,
  12956. bottom: 0.005
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Canon Height",
  12963. height: math.unit(489, "feet"),
  12964. default: true
  12965. }
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(6, "feet"),
  12973. weight: math.unit(150, "lb"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/mesmyriza/front.svg",
  12977. extra: 2067 / 1784,
  12978. bottom: 0.035
  12979. }
  12980. },
  12981. foot: {
  12982. height: math.unit(6 / (250 / 35), "feet"),
  12983. name: "Foot",
  12984. image: {
  12985. source: "./media/characters/mesmyriza/foot.svg"
  12986. }
  12987. },
  12988. },
  12989. [
  12990. {
  12991. name: "Macro",
  12992. height: math.unit(457, "meters"),
  12993. default: true
  12994. },
  12995. {
  12996. name: "Megamacro",
  12997. height: math.unit(8, "megameters")
  12998. },
  12999. ]
  13000. ))
  13001. characterMakers.push(() => makeCharacter(
  13002. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13003. {
  13004. front: {
  13005. height: math.unit(6, "feet"),
  13006. weight: math.unit(250, "lb"),
  13007. name: "Front",
  13008. image: {
  13009. source: "./media/characters/saudade/front.svg",
  13010. extra: 1172 / 1139,
  13011. bottom: 0.035
  13012. }
  13013. },
  13014. },
  13015. [
  13016. {
  13017. name: "Micro",
  13018. height: math.unit(3, "inches")
  13019. },
  13020. {
  13021. name: "Normal",
  13022. height: math.unit(6, "feet"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Macro",
  13027. height: math.unit(50, "feet")
  13028. },
  13029. {
  13030. name: "Megamacro",
  13031. height: math.unit(2800, "feet")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(5 + 4 / 12, "feet"),
  13040. weight: math.unit(100, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/keireer/front.svg",
  13044. extra: 716 / 666,
  13045. bottom: 0.05
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Normal",
  13052. height: math.unit(5 + 4 / 12, "feet"),
  13053. default: true
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(6, "feet"),
  13062. weight: math.unit(90, "kg"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/mirja/front.svg",
  13066. extra: 1789 / 1683,
  13067. bottom: 0.05
  13068. }
  13069. },
  13070. frontDressed: {
  13071. height: math.unit(6, "feet"),
  13072. weight: math.unit(90, "lb"),
  13073. name: "Front (Dressed)",
  13074. image: {
  13075. source: "./media/characters/mirja/front-dressed.svg",
  13076. extra: 1789 / 1683,
  13077. bottom: 0.05
  13078. }
  13079. },
  13080. back: {
  13081. height: math.unit(6, "feet"),
  13082. weight: math.unit(90, "lb"),
  13083. name: "Back",
  13084. image: {
  13085. source: "./media/characters/mirja/back.svg",
  13086. extra: 953 / 917,
  13087. bottom: 0.017
  13088. }
  13089. },
  13090. },
  13091. [
  13092. {
  13093. name: "\"Incognito\"",
  13094. height: math.unit(3, "meters")
  13095. },
  13096. {
  13097. name: "Strolling Size",
  13098. height: math.unit(15, "km")
  13099. },
  13100. {
  13101. name: "Larger Strolling Size",
  13102. height: math.unit(400, "km")
  13103. },
  13104. {
  13105. name: "Preferred Size",
  13106. height: math.unit(5000, "km")
  13107. },
  13108. {
  13109. name: "True Size",
  13110. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13111. default: true
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(15, "feet"),
  13120. weight: math.unit(880, "kg"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/nightraver/front.svg",
  13124. extra: 2444 / 2160,
  13125. bottom: 0.027
  13126. }
  13127. },
  13128. back: {
  13129. height: math.unit(15, "feet"),
  13130. weight: math.unit(880, "kg"),
  13131. name: "Back",
  13132. image: {
  13133. source: "./media/characters/nightraver/back.svg",
  13134. extra: 2309 / 2180,
  13135. bottom: 0.005
  13136. }
  13137. },
  13138. sole: {
  13139. height: math.unit(2.878, "feet"),
  13140. name: "Sole",
  13141. image: {
  13142. source: "./media/characters/nightraver/sole.svg"
  13143. }
  13144. },
  13145. foot: {
  13146. height: math.unit(2.285, "feet"),
  13147. name: "Foot",
  13148. image: {
  13149. source: "./media/characters/nightraver/foot.svg"
  13150. }
  13151. },
  13152. maw: {
  13153. height: math.unit(2.67, "feet"),
  13154. name: "Maw",
  13155. image: {
  13156. source: "./media/characters/nightraver/maw.svg"
  13157. }
  13158. },
  13159. },
  13160. [
  13161. {
  13162. name: "Micro",
  13163. height: math.unit(1, "cm")
  13164. },
  13165. {
  13166. name: "Normal",
  13167. height: math.unit(15, "feet"),
  13168. default: true
  13169. },
  13170. {
  13171. name: "Macro",
  13172. height: math.unit(300, "feet")
  13173. },
  13174. {
  13175. name: "Megamacro",
  13176. height: math.unit(300, "miles")
  13177. },
  13178. {
  13179. name: "Gigamacro",
  13180. height: math.unit(10000, "miles")
  13181. },
  13182. ]
  13183. ))
  13184. characterMakers.push(() => makeCharacter(
  13185. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13186. {
  13187. side: {
  13188. height: math.unit(2, "inches"),
  13189. weight: math.unit(5, "grams"),
  13190. name: "Side",
  13191. image: {
  13192. source: "./media/characters/arc/side.svg"
  13193. }
  13194. },
  13195. },
  13196. [
  13197. {
  13198. name: "Micro",
  13199. height: math.unit(2, "inches"),
  13200. default: true
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13206. {
  13207. front: {
  13208. height: math.unit(1.1938, "meters"),
  13209. weight: math.unit(54, "kg"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/nebula-shahar/front.svg",
  13213. extra: 1642 / 1436,
  13214. bottom: 0.06
  13215. }
  13216. },
  13217. },
  13218. [
  13219. {
  13220. name: "Megamicro",
  13221. height: math.unit(0.3, "mm")
  13222. },
  13223. {
  13224. name: "Micro",
  13225. height: math.unit(3, "cm")
  13226. },
  13227. {
  13228. name: "Normal",
  13229. height: math.unit(138, "cm"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Macro",
  13234. height: math.unit(30, "m")
  13235. },
  13236. ]
  13237. ))
  13238. characterMakers.push(() => makeCharacter(
  13239. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13240. {
  13241. front: {
  13242. height: math.unit(5.24, "feet"),
  13243. weight: math.unit(150, "lb"),
  13244. name: "Front",
  13245. image: {
  13246. source: "./media/characters/shayla/front.svg",
  13247. extra: 1512 / 1414,
  13248. bottom: 0.01
  13249. }
  13250. },
  13251. back: {
  13252. height: math.unit(5.24, "feet"),
  13253. weight: math.unit(150, "lb"),
  13254. name: "Back",
  13255. image: {
  13256. source: "./media/characters/shayla/back.svg",
  13257. extra: 1512 / 1414
  13258. }
  13259. },
  13260. hand: {
  13261. height: math.unit(0.7781496062992126, "feet"),
  13262. name: "Hand",
  13263. image: {
  13264. source: "./media/characters/shayla/hand.svg"
  13265. }
  13266. },
  13267. foot: {
  13268. height: math.unit(1.4206036745406823, "feet"),
  13269. name: "Foot",
  13270. image: {
  13271. source: "./media/characters/shayla/foot.svg"
  13272. }
  13273. },
  13274. },
  13275. [
  13276. {
  13277. name: "Micro",
  13278. height: math.unit(0.32, "feet")
  13279. },
  13280. {
  13281. name: "Normal",
  13282. height: math.unit(5.24, "feet"),
  13283. default: true
  13284. },
  13285. {
  13286. name: "Macro",
  13287. height: math.unit(492.12, "feet")
  13288. },
  13289. {
  13290. name: "Megamacro",
  13291. height: math.unit(186.41, "miles")
  13292. },
  13293. ]
  13294. ))
  13295. characterMakers.push(() => makeCharacter(
  13296. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13297. {
  13298. front: {
  13299. height: math.unit(2.2, "m"),
  13300. weight: math.unit(120, "kg"),
  13301. name: "Front",
  13302. image: {
  13303. source: "./media/characters/pia-jr/front.svg",
  13304. extra: 1000 / 970,
  13305. bottom: 0.035
  13306. }
  13307. },
  13308. hand: {
  13309. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13310. name: "Hand",
  13311. image: {
  13312. source: "./media/characters/pia-jr/hand.svg"
  13313. }
  13314. },
  13315. paw: {
  13316. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13317. name: "Paw",
  13318. image: {
  13319. source: "./media/characters/pia-jr/paw.svg"
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Micro",
  13326. height: math.unit(1.2, "cm")
  13327. },
  13328. {
  13329. name: "Normal",
  13330. height: math.unit(2.2, "m"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Macro",
  13335. height: math.unit(180, "m")
  13336. },
  13337. {
  13338. name: "Megamacro",
  13339. height: math.unit(420, "km")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13345. {
  13346. front: {
  13347. height: math.unit(2, "m"),
  13348. weight: math.unit(115, "kg"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/pia-sr/front.svg",
  13352. extra: 760 / 730,
  13353. bottom: 0.015
  13354. }
  13355. },
  13356. back: {
  13357. height: math.unit(2, "m"),
  13358. weight: math.unit(115, "kg"),
  13359. name: "Back",
  13360. image: {
  13361. source: "./media/characters/pia-sr/back.svg",
  13362. extra: 760 / 730,
  13363. bottom: 0.01
  13364. }
  13365. },
  13366. hand: {
  13367. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13368. name: "Hand",
  13369. image: {
  13370. source: "./media/characters/pia-sr/hand.svg"
  13371. }
  13372. },
  13373. foot: {
  13374. height: math.unit(1.83, "feet"),
  13375. name: "Foot",
  13376. image: {
  13377. source: "./media/characters/pia-sr/foot.svg"
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Micro",
  13384. height: math.unit(88, "mm")
  13385. },
  13386. {
  13387. name: "Normal",
  13388. height: math.unit(2, "m"),
  13389. default: true
  13390. },
  13391. {
  13392. name: "Macro",
  13393. height: math.unit(200, "m")
  13394. },
  13395. {
  13396. name: "Megamacro",
  13397. height: math.unit(420, "km")
  13398. },
  13399. ]
  13400. ))
  13401. characterMakers.push(() => makeCharacter(
  13402. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13403. {
  13404. front: {
  13405. height: math.unit(8 + 2 / 12, "feet"),
  13406. weight: math.unit(300, "lb"),
  13407. name: "Front",
  13408. image: {
  13409. source: "./media/characters/kibibyte/front.svg",
  13410. extra: 2221 / 2098,
  13411. bottom: 0.04
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(8 + 2 / 12, "feet"),
  13419. default: true
  13420. },
  13421. {
  13422. name: "Socialable Macro",
  13423. height: math.unit(50, "feet")
  13424. },
  13425. {
  13426. name: "Macro",
  13427. height: math.unit(300, "feet")
  13428. },
  13429. {
  13430. name: "Megamacro",
  13431. height: math.unit(500, "miles")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/felix/front.svg",
  13444. extra: 762 / 722,
  13445. bottom: 0.02
  13446. }
  13447. },
  13448. frontClothed: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(150, "lb"),
  13451. name: "Front (Clothed)",
  13452. image: {
  13453. source: "./media/characters/felix/front-clothed.svg",
  13454. extra: 762 / 722,
  13455. bottom: 0.02
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Normal",
  13462. height: math.unit(6 + 8 / 12, "feet"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Macro",
  13467. height: math.unit(2600, "feet")
  13468. },
  13469. {
  13470. name: "Megamacro",
  13471. height: math.unit(450, "miles")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(6 + 1 / 12, "feet"),
  13480. weight: math.unit(250, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/tobo/front.svg",
  13484. extra: 608 / 586,
  13485. bottom: 0.023
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(6 + 1 / 12, "feet"),
  13490. weight: math.unit(250, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/tobo/back.svg",
  13494. extra: 608 / 586
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Nano",
  13501. height: math.unit(2, "nm")
  13502. },
  13503. {
  13504. name: "Megamicro",
  13505. height: math.unit(0.1, "mm")
  13506. },
  13507. {
  13508. name: "Micro",
  13509. height: math.unit(1, "inch"),
  13510. default: true
  13511. },
  13512. {
  13513. name: "Human-sized",
  13514. height: math.unit(6 + 1 / 12, "feet")
  13515. },
  13516. {
  13517. name: "Macro",
  13518. height: math.unit(250, "feet")
  13519. },
  13520. {
  13521. name: "Megamacro",
  13522. height: math.unit(75, "miles")
  13523. },
  13524. {
  13525. name: "Texas-sized",
  13526. height: math.unit(750, "miles")
  13527. },
  13528. {
  13529. name: "Teramacro",
  13530. height: math.unit(50000, "miles")
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13536. {
  13537. front: {
  13538. height: math.unit(6, "feet"),
  13539. weight: math.unit(269, "lb"),
  13540. name: "Front",
  13541. image: {
  13542. source: "./media/characters/danny-kapowsky/front.svg",
  13543. extra: 766 / 736,
  13544. bottom: 0.044
  13545. }
  13546. },
  13547. back: {
  13548. height: math.unit(6, "feet"),
  13549. weight: math.unit(269, "lb"),
  13550. name: "Back",
  13551. image: {
  13552. source: "./media/characters/danny-kapowsky/back.svg",
  13553. extra: 797 / 760,
  13554. bottom: 0.025
  13555. }
  13556. },
  13557. },
  13558. [
  13559. {
  13560. name: "Macro",
  13561. height: math.unit(150, "feet"),
  13562. default: true
  13563. },
  13564. {
  13565. name: "Macro+",
  13566. height: math.unit(200, "feet")
  13567. },
  13568. {
  13569. name: "Macro++",
  13570. height: math.unit(300, "feet")
  13571. },
  13572. {
  13573. name: "Macro+++",
  13574. height: math.unit(400, "feet")
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13580. {
  13581. side: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(170, "lb"),
  13584. name: "Side",
  13585. image: {
  13586. source: "./media/characters/finn/side.svg",
  13587. extra: 1953 / 1807,
  13588. bottom: 0.057
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(14445, "feet"),
  13596. default: true
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(5 + 6 / 12, "feet"),
  13605. weight: math.unit(125, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/roy/front.svg",
  13609. extra: 1,
  13610. bottom: 0.11
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Micro",
  13617. height: math.unit(3, "inches"),
  13618. default: true
  13619. },
  13620. {
  13621. name: "Normal",
  13622. height: math.unit(5 + 6 / 12, "feet")
  13623. },
  13624. {
  13625. name: "Lesser Macro",
  13626. height: math.unit(60, "feet")
  13627. },
  13628. {
  13629. name: "Greater Macro",
  13630. height: math.unit(120, "feet")
  13631. },
  13632. ]
  13633. ))
  13634. characterMakers.push(() => makeCharacter(
  13635. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13636. {
  13637. front: {
  13638. height: math.unit(6, "feet"),
  13639. weight: math.unit(100, "lb"),
  13640. name: "Front",
  13641. image: {
  13642. source: "./media/characters/aevsivs/front.svg",
  13643. extra: 1,
  13644. bottom: 0.03
  13645. }
  13646. },
  13647. back: {
  13648. height: math.unit(6, "feet"),
  13649. weight: math.unit(100, "lb"),
  13650. name: "Back",
  13651. image: {
  13652. source: "./media/characters/aevsivs/back.svg"
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "Micro",
  13659. height: math.unit(2, "inches"),
  13660. default: true
  13661. },
  13662. {
  13663. name: "Normal",
  13664. height: math.unit(5, "feet")
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(5 + 7 / 12, "feet"),
  13673. weight: math.unit(159, "lb"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/hildegard/front.svg",
  13677. extra: 312 / 286,
  13678. bottom: 0.005
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Normal",
  13685. height: math.unit(5 + 7 / 12, "feet"),
  13686. default: true
  13687. },
  13688. ]
  13689. ))
  13690. characterMakers.push(() => makeCharacter(
  13691. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13692. {
  13693. bernard: {
  13694. height: math.unit(2 + 7 / 12, "feet"),
  13695. weight: math.unit(66, "lb"),
  13696. name: "Bernard",
  13697. rename: true,
  13698. image: {
  13699. source: "./media/characters/bernard-wilder/bernard.svg",
  13700. extra: 192 / 128,
  13701. bottom: 0.05
  13702. }
  13703. },
  13704. wilder: {
  13705. height: math.unit(5 + 8 / 12, "feet"),
  13706. weight: math.unit(143, "lb"),
  13707. name: "Wilder",
  13708. rename: true,
  13709. image: {
  13710. source: "./media/characters/bernard-wilder/wilder.svg",
  13711. extra: 361 / 312,
  13712. bottom: 0.02
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Normal",
  13719. height: math.unit(2 + 7 / 12, "feet"),
  13720. default: true
  13721. },
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13726. {
  13727. anthro: {
  13728. height: math.unit(6 + 1 / 12, "feet"),
  13729. weight: math.unit(155, "lb"),
  13730. name: "Anthro",
  13731. image: {
  13732. source: "./media/characters/hearth/anthro.svg",
  13733. extra: 260 / 250,
  13734. bottom: 0.02
  13735. }
  13736. },
  13737. feral: {
  13738. height: math.unit(3.78, "feet"),
  13739. weight: math.unit(35, "kg"),
  13740. name: "Feral",
  13741. image: {
  13742. source: "./media/characters/hearth/feral.svg",
  13743. extra: 153 / 135,
  13744. bottom: 0.03
  13745. }
  13746. },
  13747. },
  13748. [
  13749. {
  13750. name: "Normal",
  13751. height: math.unit(6 + 1 / 12, "feet"),
  13752. default: true
  13753. },
  13754. ]
  13755. ))
  13756. characterMakers.push(() => makeCharacter(
  13757. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13758. {
  13759. front: {
  13760. height: math.unit(6, "feet"),
  13761. weight: math.unit(182, "lb"),
  13762. name: "Front",
  13763. image: {
  13764. source: "./media/characters/ingrid/front.svg",
  13765. extra: 294 / 268,
  13766. bottom: 0.027
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(6, "feet"),
  13774. default: true
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13780. {
  13781. eevee: {
  13782. height: math.unit(2 + 10 / 12, "feet"),
  13783. weight: math.unit(86, "lb"),
  13784. name: "Malgam",
  13785. image: {
  13786. source: "./media/characters/malgam/eevee.svg",
  13787. extra: 218 / 180,
  13788. bottom: 0.2
  13789. }
  13790. },
  13791. sylveon: {
  13792. height: math.unit(4, "feet"),
  13793. weight: math.unit(101, "lb"),
  13794. name: "Future Malgam",
  13795. rename: true,
  13796. image: {
  13797. source: "./media/characters/malgam/sylveon.svg",
  13798. extra: 371 / 325,
  13799. bottom: 0.015
  13800. }
  13801. },
  13802. gigantamax: {
  13803. height: math.unit(50, "feet"),
  13804. name: "Gigantamax Malgam",
  13805. rename: true,
  13806. image: {
  13807. source: "./media/characters/malgam/gigantamax.svg"
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Normal",
  13814. height: math.unit(2 + 10 / 12, "feet"),
  13815. default: true
  13816. },
  13817. ]
  13818. ))
  13819. characterMakers.push(() => makeCharacter(
  13820. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13821. {
  13822. front: {
  13823. height: math.unit(5 + 11 / 12, "feet"),
  13824. weight: math.unit(188, "lb"),
  13825. name: "Front",
  13826. image: {
  13827. source: "./media/characters/fleur/front.svg",
  13828. extra: 309 / 283,
  13829. bottom: 0.007
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Normal",
  13836. height: math.unit(5 + 11 / 12, "feet"),
  13837. default: true
  13838. },
  13839. ]
  13840. ))
  13841. characterMakers.push(() => makeCharacter(
  13842. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13843. {
  13844. front: {
  13845. height: math.unit(5 + 4 / 12, "feet"),
  13846. weight: math.unit(122, "lb"),
  13847. name: "Front",
  13848. image: {
  13849. source: "./media/characters/jude/front.svg",
  13850. extra: 288 / 273,
  13851. bottom: 0.03
  13852. }
  13853. },
  13854. },
  13855. [
  13856. {
  13857. name: "Normal",
  13858. height: math.unit(5 + 4 / 12, "feet"),
  13859. default: true
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(5 + 11 / 12, "feet"),
  13868. weight: math.unit(190, "lb"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/seara/front.svg",
  13872. extra: 1,
  13873. bottom: 0.05
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Normal",
  13880. height: math.unit(5 + 11 / 12, "feet"),
  13881. default: true
  13882. },
  13883. ]
  13884. ))
  13885. characterMakers.push(() => makeCharacter(
  13886. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13887. {
  13888. front: {
  13889. height: math.unit(16 + 5 / 12, "feet"),
  13890. weight: math.unit(524, "lb"),
  13891. name: "Front",
  13892. image: {
  13893. source: "./media/characters/caspian/front.svg",
  13894. extra: 1,
  13895. bottom: 0.04
  13896. }
  13897. },
  13898. },
  13899. [
  13900. {
  13901. name: "Normal",
  13902. height: math.unit(16 + 5 / 12, "feet"),
  13903. default: true
  13904. },
  13905. ]
  13906. ))
  13907. characterMakers.push(() => makeCharacter(
  13908. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13909. {
  13910. front: {
  13911. height: math.unit(5 + 7 / 12, "feet"),
  13912. weight: math.unit(170, "lb"),
  13913. name: "Front",
  13914. image: {
  13915. source: "./media/characters/mika/front.svg",
  13916. extra: 1,
  13917. bottom: 0.016
  13918. }
  13919. },
  13920. },
  13921. [
  13922. {
  13923. name: "Normal",
  13924. height: math.unit(5 + 7 / 12, "feet"),
  13925. default: true
  13926. },
  13927. ]
  13928. ))
  13929. characterMakers.push(() => makeCharacter(
  13930. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13931. {
  13932. front: {
  13933. height: math.unit(6 + 2 / 12, "feet"),
  13934. weight: math.unit(268, "lb"),
  13935. name: "Front",
  13936. image: {
  13937. source: "./media/characters/sol/front.svg",
  13938. extra: 247 / 231,
  13939. bottom: 0.05
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Normal",
  13946. height: math.unit(6 + 2 / 12, "feet"),
  13947. default: true
  13948. },
  13949. ]
  13950. ))
  13951. characterMakers.push(() => makeCharacter(
  13952. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13953. {
  13954. buizel: {
  13955. height: math.unit(2 + 5 / 12, "feet"),
  13956. weight: math.unit(87, "lb"),
  13957. name: "Buizel",
  13958. image: {
  13959. source: "./media/characters/umiko/buizel.svg",
  13960. extra: 172 / 157,
  13961. bottom: 0.01
  13962. }
  13963. },
  13964. floatzel: {
  13965. height: math.unit(5 + 9 / 12, "feet"),
  13966. weight: math.unit(250, "lb"),
  13967. name: "Floatzel",
  13968. image: {
  13969. source: "./media/characters/umiko/floatzel.svg",
  13970. extra: 262 / 248
  13971. }
  13972. },
  13973. },
  13974. [
  13975. {
  13976. name: "Normal",
  13977. height: math.unit(2 + 5 / 12, "feet"),
  13978. default: true
  13979. },
  13980. ]
  13981. ))
  13982. characterMakers.push(() => makeCharacter(
  13983. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  13984. {
  13985. front: {
  13986. height: math.unit(6 + 2 / 12, "feet"),
  13987. weight: math.unit(146, "lb"),
  13988. name: "Front",
  13989. image: {
  13990. source: "./media/characters/iliac/front.svg",
  13991. extra: 389 / 365,
  13992. bottom: 0.035
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Normal",
  13999. height: math.unit(6 + 2 / 12, "feet"),
  14000. default: true
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(6, "feet"),
  14009. weight: math.unit(170, "lb"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/topaz/front.svg",
  14013. extra: 317 / 303,
  14014. bottom: 0.055
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Normal",
  14021. height: math.unit(6, "feet"),
  14022. default: true
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(5 + 11 / 12, "feet"),
  14031. weight: math.unit(144, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/gabriel/front.svg",
  14035. extra: 285 / 262,
  14036. bottom: 0.004
  14037. }
  14038. },
  14039. },
  14040. [
  14041. {
  14042. name: "Normal",
  14043. height: math.unit(5 + 11 / 12, "feet"),
  14044. default: true
  14045. },
  14046. ]
  14047. ))
  14048. characterMakers.push(() => makeCharacter(
  14049. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14050. {
  14051. side: {
  14052. height: math.unit(6 + 5 / 12, "feet"),
  14053. weight: math.unit(300, "lb"),
  14054. name: "Side",
  14055. image: {
  14056. source: "./media/characters/tempest-suicune/side.svg",
  14057. extra: 195 / 154,
  14058. bottom: 0.04
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Normal",
  14065. height: math.unit(6 + 5 / 12, "feet"),
  14066. default: true
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(7 + 2 / 12, "feet"),
  14075. weight: math.unit(322, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/vulcan/front.svg",
  14079. extra: 154 / 147,
  14080. bottom: 0.04
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Normal",
  14087. height: math.unit(7 + 2 / 12, "feet"),
  14088. default: true
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14094. {
  14095. front: {
  14096. height: math.unit(5 + 10 / 12, "feet"),
  14097. weight: math.unit(264, "lb"),
  14098. name: "Front",
  14099. image: {
  14100. source: "./media/characters/gault/front.svg",
  14101. extra: 161 / 140,
  14102. bottom: 0.028
  14103. }
  14104. },
  14105. },
  14106. [
  14107. {
  14108. name: "Normal",
  14109. height: math.unit(5 + 10 / 12, "feet"),
  14110. default: true
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14116. {
  14117. front: {
  14118. height: math.unit(6, "feet"),
  14119. weight: math.unit(150, "lb"),
  14120. name: "Front",
  14121. image: {
  14122. source: "./media/characters/shard/front.svg",
  14123. extra: 273 / 238,
  14124. bottom: 0.02
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(3 + 6 / 12, "feet"),
  14132. default: true
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14138. {
  14139. front: {
  14140. height: math.unit(5 + 11 / 12, "feet"),
  14141. weight: math.unit(146, "lb"),
  14142. name: "Front",
  14143. image: {
  14144. source: "./media/characters/ashe/front.svg",
  14145. extra: 400 / 373,
  14146. bottom: 0.01
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Normal",
  14153. height: math.unit(5 + 11 / 12, "feet"),
  14154. default: true
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(5 + 5 / 12, "feet"),
  14163. weight: math.unit(135, "lb"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/beatrix/front.svg",
  14167. extra: 392 / 379,
  14168. bottom: 0.01
  14169. }
  14170. },
  14171. },
  14172. [
  14173. {
  14174. name: "Normal",
  14175. height: math.unit(6, "feet"),
  14176. default: true
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14182. {
  14183. front: {
  14184. height: math.unit(6, "feet"),
  14185. weight: math.unit(150, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/ignatius/front.svg",
  14189. extra: 245 / 222,
  14190. bottom: 0.01
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Normal",
  14197. height: math.unit(5 + 5 / 12, "feet"),
  14198. default: true
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(6 + 2 / 12, "feet"),
  14207. weight: math.unit(138, "lb"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/mei-li/front.svg",
  14211. extra: 237 / 229,
  14212. bottom: 0.03
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Normal",
  14219. height: math.unit(6 + 2 / 12, "feet"),
  14220. default: true
  14221. },
  14222. ]
  14223. ))
  14224. characterMakers.push(() => makeCharacter(
  14225. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14226. {
  14227. front: {
  14228. height: math.unit(2 + 4 / 12, "feet"),
  14229. weight: math.unit(62, "lb"),
  14230. name: "Front",
  14231. image: {
  14232. source: "./media/characters/puru/front.svg",
  14233. extra: 206 / 149,
  14234. bottom: 0.06
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Normal",
  14241. height: math.unit(2 + 4 / 12, "feet"),
  14242. default: true
  14243. },
  14244. ]
  14245. ))
  14246. characterMakers.push(() => makeCharacter(
  14247. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14248. {
  14249. taur: {
  14250. height: math.unit(11, "feet"),
  14251. weight: math.unit(500, "lb"),
  14252. name: "Taur",
  14253. image: {
  14254. source: "./media/characters/kee/taur.svg",
  14255. extra: 1,
  14256. bottom: 0.04
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Normal",
  14263. height: math.unit(11, "feet"),
  14264. default: true
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14270. {
  14271. anthro: {
  14272. height: math.unit(7, "feet"),
  14273. weight: math.unit(190, "lb"),
  14274. name: "Anthro",
  14275. image: {
  14276. source: "./media/characters/cobalt-dracha/anthro.svg",
  14277. extra: 231 / 225,
  14278. bottom: 0.04
  14279. }
  14280. },
  14281. feral: {
  14282. height: math.unit(9 + 7 / 12, "feet"),
  14283. weight: math.unit(294, "lb"),
  14284. name: "Feral",
  14285. image: {
  14286. source: "./media/characters/cobalt-dracha/feral.svg",
  14287. extra: 692 / 633,
  14288. bottom: 0.05
  14289. }
  14290. },
  14291. },
  14292. [
  14293. {
  14294. name: "Normal",
  14295. height: math.unit(7, "feet"),
  14296. default: true
  14297. },
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14302. {
  14303. fallen: {
  14304. height: math.unit(11 + 8 / 12, "feet"),
  14305. weight: math.unit(485, "lb"),
  14306. name: "Java (Fallen)",
  14307. rename: true,
  14308. image: {
  14309. source: "./media/characters/java/fallen.svg",
  14310. extra: 226 / 208,
  14311. bottom: 0.005
  14312. }
  14313. },
  14314. godkin: {
  14315. height: math.unit(10 + 6 / 12, "feet"),
  14316. weight: math.unit(328, "lb"),
  14317. name: "Java (Godkin)",
  14318. rename: true,
  14319. image: {
  14320. source: "./media/characters/java/godkin.svg",
  14321. extra: 270 / 262,
  14322. bottom: 0.02
  14323. }
  14324. },
  14325. },
  14326. [
  14327. {
  14328. name: "Normal",
  14329. height: math.unit(11 + 8 / 12, "feet"),
  14330. default: true
  14331. },
  14332. ]
  14333. ))
  14334. characterMakers.push(() => makeCharacter(
  14335. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14336. {
  14337. front: {
  14338. height: math.unit(7 + 8 / 12, "feet"),
  14339. weight: math.unit(320, "lb"),
  14340. name: "Front",
  14341. image: {
  14342. source: "./media/characters/skoll/front.svg",
  14343. extra: 232 / 220,
  14344. bottom: 0.02
  14345. }
  14346. },
  14347. },
  14348. [
  14349. {
  14350. name: "Normal",
  14351. height: math.unit(7 + 8 / 12, "feet"),
  14352. default: true
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(5 + 9 / 12, "feet"),
  14361. weight: math.unit(170, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/purna/front.svg",
  14365. extra: 239 / 229,
  14366. bottom: 0.01
  14367. }
  14368. },
  14369. },
  14370. [
  14371. {
  14372. name: "Normal",
  14373. height: math.unit(5 + 9 / 12, "feet"),
  14374. default: true
  14375. },
  14376. ]
  14377. ))
  14378. characterMakers.push(() => makeCharacter(
  14379. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14380. {
  14381. front: {
  14382. height: math.unit(5 + 9 / 12, "feet"),
  14383. weight: math.unit(142, "lb"),
  14384. name: "Front",
  14385. image: {
  14386. source: "./media/characters/kuva/front.svg",
  14387. extra: 281 / 271,
  14388. bottom: 0.006
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Normal",
  14395. height: math.unit(5 + 9 / 12, "feet"),
  14396. default: true
  14397. },
  14398. ]
  14399. ))
  14400. characterMakers.push(() => makeCharacter(
  14401. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14402. {
  14403. anthro: {
  14404. height: math.unit(9 + 2 / 12, "feet"),
  14405. weight: math.unit(270, "lb"),
  14406. name: "Anthro",
  14407. image: {
  14408. source: "./media/characters/embra/anthro.svg",
  14409. extra: 200 / 187,
  14410. bottom: 0.02
  14411. }
  14412. },
  14413. feral: {
  14414. height: math.unit(18 + 8 / 12, "feet"),
  14415. weight: math.unit(576, "lb"),
  14416. name: "Feral",
  14417. image: {
  14418. source: "./media/characters/embra/feral.svg",
  14419. extra: 152 / 137,
  14420. bottom: 0.037
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Normal",
  14427. height: math.unit(9 + 2 / 12, "feet"),
  14428. default: true
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14434. {
  14435. anthro: {
  14436. height: math.unit(10 + 9 / 12, "feet"),
  14437. weight: math.unit(224, "lb"),
  14438. name: "Anthro",
  14439. image: {
  14440. source: "./media/characters/grottos/anthro.svg",
  14441. extra: 350 / 332,
  14442. bottom: 0.045
  14443. }
  14444. },
  14445. feral: {
  14446. height: math.unit(20 + 7 / 12, "feet"),
  14447. weight: math.unit(629, "lb"),
  14448. name: "Feral",
  14449. image: {
  14450. source: "./media/characters/grottos/feral.svg",
  14451. extra: 207 / 190,
  14452. bottom: 0.05
  14453. }
  14454. },
  14455. },
  14456. [
  14457. {
  14458. name: "Normal",
  14459. height: math.unit(10 + 9 / 12, "feet"),
  14460. default: true
  14461. },
  14462. ]
  14463. ))
  14464. characterMakers.push(() => makeCharacter(
  14465. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14466. {
  14467. anthro: {
  14468. height: math.unit(9 + 6 / 12, "feet"),
  14469. weight: math.unit(298, "lb"),
  14470. name: "Anthro",
  14471. image: {
  14472. source: "./media/characters/frifna/anthro.svg",
  14473. extra: 282 / 269,
  14474. bottom: 0.015
  14475. }
  14476. },
  14477. feral: {
  14478. height: math.unit(16 + 2 / 12, "feet"),
  14479. weight: math.unit(624, "lb"),
  14480. name: "Feral",
  14481. image: {
  14482. source: "./media/characters/frifna/feral.svg"
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(9 + 6 / 12, "feet"),
  14490. default: true
  14491. },
  14492. ]
  14493. ))
  14494. characterMakers.push(() => makeCharacter(
  14495. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14496. {
  14497. front: {
  14498. height: math.unit(6 + 2 / 12, "feet"),
  14499. weight: math.unit(168, "lb"),
  14500. name: "Front",
  14501. image: {
  14502. source: "./media/characters/elise/front.svg",
  14503. extra: 276 / 271
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Normal",
  14510. height: math.unit(6 + 2 / 12, "feet"),
  14511. default: true
  14512. },
  14513. ]
  14514. ))
  14515. characterMakers.push(() => makeCharacter(
  14516. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14517. {
  14518. front: {
  14519. height: math.unit(5 + 10 / 12, "feet"),
  14520. weight: math.unit(210, "lb"),
  14521. name: "Front",
  14522. image: {
  14523. source: "./media/characters/glade/front.svg",
  14524. extra: 258 / 247,
  14525. bottom: 0.008
  14526. }
  14527. },
  14528. },
  14529. [
  14530. {
  14531. name: "Normal",
  14532. height: math.unit(5 + 10 / 12, "feet"),
  14533. default: true
  14534. },
  14535. ]
  14536. ))
  14537. characterMakers.push(() => makeCharacter(
  14538. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14539. {
  14540. front: {
  14541. height: math.unit(5 + 10 / 12, "feet"),
  14542. weight: math.unit(129, "lb"),
  14543. name: "Front",
  14544. image: {
  14545. source: "./media/characters/rina/front.svg",
  14546. extra: 266 / 255,
  14547. bottom: 0.005
  14548. }
  14549. },
  14550. },
  14551. [
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(5 + 10 / 12, "feet"),
  14555. default: true
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14561. {
  14562. front: {
  14563. height: math.unit(6 + 1 / 12, "feet"),
  14564. weight: math.unit(192, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/veronica/front.svg",
  14568. extra: 319 / 309,
  14569. bottom: 0.005
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Normal",
  14576. height: math.unit(6 + 1 / 12, "feet"),
  14577. default: true
  14578. },
  14579. ]
  14580. ))
  14581. characterMakers.push(() => makeCharacter(
  14582. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14583. {
  14584. front: {
  14585. height: math.unit(9 + 3 / 12, "feet"),
  14586. weight: math.unit(1100, "lb"),
  14587. name: "Front",
  14588. image: {
  14589. source: "./media/characters/braxton/front.svg",
  14590. extra: 1057 / 984,
  14591. bottom: 0.05
  14592. }
  14593. },
  14594. },
  14595. [
  14596. {
  14597. name: "Normal",
  14598. height: math.unit(9 + 3 / 12, "feet")
  14599. },
  14600. {
  14601. name: "Giant",
  14602. height: math.unit(300, "feet"),
  14603. default: true
  14604. },
  14605. {
  14606. name: "Macro",
  14607. height: math.unit(700, "feet")
  14608. },
  14609. {
  14610. name: "Megamacro",
  14611. height: math.unit(6000, "feet")
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14617. {
  14618. front: {
  14619. height: math.unit(6 + 7 / 12, "feet"),
  14620. weight: math.unit(150, "lb"),
  14621. name: "Front",
  14622. image: {
  14623. source: "./media/characters/blue-feyonics/front.svg",
  14624. extra: 1403 / 1306,
  14625. bottom: 0.047
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Normal",
  14632. height: math.unit(6 + 7 / 12, "feet"),
  14633. default: true
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(1.8, "meters"),
  14642. weight: math.unit(60, "kg"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/maxwell/front.svg",
  14646. extra: 2060 / 1873
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Micro",
  14653. height: math.unit(1, "mm")
  14654. },
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(1.8, "meter"),
  14658. default: true
  14659. },
  14660. {
  14661. name: "Macro",
  14662. height: math.unit(30, "meters")
  14663. },
  14664. {
  14665. name: "Megamacro",
  14666. height: math.unit(10, "km")
  14667. },
  14668. ]
  14669. ))
  14670. characterMakers.push(() => makeCharacter(
  14671. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14672. {
  14673. front: {
  14674. height: math.unit(6, "feet"),
  14675. weight: math.unit(150, "lb"),
  14676. name: "Front",
  14677. image: {
  14678. source: "./media/characters/jack/front.svg",
  14679. extra: 1754 / 1640,
  14680. bottom: 0.01
  14681. }
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(80000, "feet"),
  14688. default: true
  14689. },
  14690. {
  14691. name: "Max size",
  14692. height: math.unit(10, "lightyears")
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14698. {
  14699. upright: {
  14700. height: math.unit(7, "feet"),
  14701. weight: math.unit(170, "lb"),
  14702. name: "Upright",
  14703. image: {
  14704. source: "./media/characters/cafat/upright.svg",
  14705. bottom: 0.01
  14706. }
  14707. },
  14708. uprightFull: {
  14709. height: math.unit(7, "feet"),
  14710. weight: math.unit(170, "lb"),
  14711. name: "Upright (Full)",
  14712. image: {
  14713. source: "./media/characters/cafat/upright-full.svg",
  14714. bottom: 0.01
  14715. }
  14716. },
  14717. side: {
  14718. height: math.unit(5, "feet"),
  14719. weight: math.unit(150, "lb"),
  14720. name: "Side",
  14721. image: {
  14722. source: "./media/characters/cafat/side.svg"
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Small",
  14729. height: math.unit(7, "feet"),
  14730. default: true
  14731. },
  14732. {
  14733. name: "Large",
  14734. height: math.unit(15.5, "feet")
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14740. {
  14741. front: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/verin-raharra/front.svg",
  14747. extra: 5019 / 4835,
  14748. bottom: 0.023
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(7 + 5 / 12, "feet"),
  14756. default: true
  14757. },
  14758. {
  14759. name: "Upsized",
  14760. height: math.unit(20, "feet")
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(7, "feet"),
  14769. weight: math.unit(230, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/nakata/front.svg",
  14773. extra: 1.005,
  14774. bottom: 0.01
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(7, "feet"),
  14782. default: true
  14783. },
  14784. {
  14785. name: "Big",
  14786. height: math.unit(14, "feet")
  14787. },
  14788. {
  14789. name: "Macro",
  14790. height: math.unit(400, "feet")
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14796. {
  14797. front: {
  14798. height: math.unit(4.91, "feet"),
  14799. weight: math.unit(100, "lb"),
  14800. name: "Front",
  14801. image: {
  14802. source: "./media/characters/lily/front.svg",
  14803. extra: 1585 / 1415,
  14804. bottom: 0.02
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Normal",
  14811. height: math.unit(4.91, "feet"),
  14812. default: true
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14818. {
  14819. laying: {
  14820. height: math.unit(4 + 4 / 12, "feet"),
  14821. weight: math.unit(600, "lb"),
  14822. name: "Laying",
  14823. image: {
  14824. source: "./media/characters/sheila/laying.svg",
  14825. extra: 1333 / 1265,
  14826. bottom: 0.16
  14827. }
  14828. },
  14829. },
  14830. [
  14831. {
  14832. name: "Normal",
  14833. height: math.unit(4 + 4 / 12, "feet"),
  14834. default: true
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14840. {
  14841. front: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(190, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/sax/front.svg",
  14847. extra: 1187 / 973,
  14848. bottom: 0.042
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Micro",
  14855. height: math.unit(4, "inches"),
  14856. default: true
  14857. },
  14858. ]
  14859. ))
  14860. characterMakers.push(() => makeCharacter(
  14861. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14862. {
  14863. front: {
  14864. height: math.unit(6, "feet"),
  14865. weight: math.unit(150, "lb"),
  14866. name: "Front",
  14867. image: {
  14868. source: "./media/characters/pandora/front.svg",
  14869. extra: 2720 / 2556,
  14870. bottom: 0.015
  14871. }
  14872. },
  14873. back: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(150, "lb"),
  14876. name: "Back",
  14877. image: {
  14878. source: "./media/characters/pandora/back.svg",
  14879. extra: 2720 / 2556,
  14880. bottom: 0.01
  14881. }
  14882. },
  14883. beans: {
  14884. height: math.unit(6 / 8, "feet"),
  14885. name: "Beans",
  14886. image: {
  14887. source: "./media/characters/pandora/beans.svg"
  14888. }
  14889. },
  14890. skirt: {
  14891. height: math.unit(6, "feet"),
  14892. weight: math.unit(150, "lb"),
  14893. name: "Skirt",
  14894. image: {
  14895. source: "./media/characters/pandora/skirt.svg",
  14896. extra: 1622 / 1525,
  14897. bottom: 0.015
  14898. }
  14899. },
  14900. hoodie: {
  14901. height: math.unit(6, "feet"),
  14902. weight: math.unit(150, "lb"),
  14903. name: "Hoodie",
  14904. image: {
  14905. source: "./media/characters/pandora/hoodie.svg",
  14906. extra: 1622 / 1525,
  14907. bottom: 0.015
  14908. }
  14909. },
  14910. casual: {
  14911. height: math.unit(6, "feet"),
  14912. weight: math.unit(150, "lb"),
  14913. name: "Casual",
  14914. image: {
  14915. source: "./media/characters/pandora/casual.svg",
  14916. extra: 1622 / 1525,
  14917. bottom: 0.015
  14918. }
  14919. },
  14920. },
  14921. [
  14922. {
  14923. name: "Normal",
  14924. height: math.unit(6, "feet")
  14925. },
  14926. {
  14927. name: "Big Steppy",
  14928. height: math.unit(1, "km"),
  14929. default: true
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14935. {
  14936. side: {
  14937. height: math.unit(10, "feet"),
  14938. weight: math.unit(800, "kg"),
  14939. name: "Side",
  14940. image: {
  14941. source: "./media/characters/venio-darcony/side.svg",
  14942. extra: 1373 / 1003,
  14943. bottom: 0.037
  14944. }
  14945. },
  14946. front: {
  14947. height: math.unit(19, "feet"),
  14948. weight: math.unit(800, "kg"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/venio-darcony/front.svg"
  14952. }
  14953. },
  14954. back: {
  14955. height: math.unit(19, "feet"),
  14956. weight: math.unit(800, "kg"),
  14957. name: "Back",
  14958. image: {
  14959. source: "./media/characters/venio-darcony/back.svg"
  14960. }
  14961. },
  14962. sideNsfw: {
  14963. height: math.unit(10, "feet"),
  14964. weight: math.unit(800, "kg"),
  14965. name: "Side (NSFW)",
  14966. image: {
  14967. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14968. extra: 1373 / 1003,
  14969. bottom: 0.037
  14970. }
  14971. },
  14972. frontNsfw: {
  14973. height: math.unit(19, "feet"),
  14974. weight: math.unit(800, "kg"),
  14975. name: "Front (NSFW)",
  14976. image: {
  14977. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14978. }
  14979. },
  14980. backNsfw: {
  14981. height: math.unit(19, "feet"),
  14982. weight: math.unit(800, "kg"),
  14983. name: "Back (NSFW)",
  14984. image: {
  14985. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14986. }
  14987. },
  14988. sideArmored: {
  14989. height: math.unit(10, "feet"),
  14990. weight: math.unit(800, "kg"),
  14991. name: "Side (Armored)",
  14992. image: {
  14993. source: "./media/characters/venio-darcony/side-armored.svg",
  14994. extra: 1373 / 1003,
  14995. bottom: 0.037
  14996. }
  14997. },
  14998. frontArmored: {
  14999. height: math.unit(19, "feet"),
  15000. weight: math.unit(900, "kg"),
  15001. name: "Front (Armored)",
  15002. image: {
  15003. source: "./media/characters/venio-darcony/front-armored.svg"
  15004. }
  15005. },
  15006. backArmored: {
  15007. height: math.unit(19, "feet"),
  15008. weight: math.unit(900, "kg"),
  15009. name: "Back (Armored)",
  15010. image: {
  15011. source: "./media/characters/venio-darcony/back-armored.svg"
  15012. }
  15013. },
  15014. sword: {
  15015. height: math.unit(10, "feet"),
  15016. weight: math.unit(50, "lb"),
  15017. name: "Sword",
  15018. image: {
  15019. source: "./media/characters/venio-darcony/sword.svg"
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Normal",
  15026. height: math.unit(10, "feet")
  15027. },
  15028. {
  15029. name: "Macro",
  15030. height: math.unit(130, "feet"),
  15031. default: true
  15032. },
  15033. {
  15034. name: "Macro+",
  15035. height: math.unit(240, "feet")
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15041. {
  15042. front: {
  15043. height: math.unit(6, "feet"),
  15044. weight: math.unit(150, "lb"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/veski/front.svg",
  15048. extra: 1299 / 1225,
  15049. bottom: 0.04
  15050. }
  15051. },
  15052. back: {
  15053. height: math.unit(6, "feet"),
  15054. weight: math.unit(150, "lb"),
  15055. name: "Back",
  15056. image: {
  15057. source: "./media/characters/veski/back.svg",
  15058. extra: 1299 / 1225,
  15059. bottom: 0.008
  15060. }
  15061. },
  15062. maw: {
  15063. height: math.unit(1.5 * 1.21, "feet"),
  15064. name: "Maw",
  15065. image: {
  15066. source: "./media/characters/veski/maw.svg"
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Macro",
  15073. height: math.unit(2, "km"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(5 + 7 / 12, "feet"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/isabelle/front.svg",
  15086. extra: 2130 / 1976,
  15087. bottom: 0.05
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Supermicro",
  15094. height: math.unit(10, "micrometers")
  15095. },
  15096. {
  15097. name: "Micro",
  15098. height: math.unit(1, "inch")
  15099. },
  15100. {
  15101. name: "Tiny",
  15102. height: math.unit(5, "inches")
  15103. },
  15104. {
  15105. name: "Standard",
  15106. height: math.unit(5 + 7 / 12, "inches")
  15107. },
  15108. {
  15109. name: "Macro",
  15110. height: math.unit(80, "meters"),
  15111. default: true
  15112. },
  15113. {
  15114. name: "Megamacro",
  15115. height: math.unit(250, "meters")
  15116. },
  15117. {
  15118. name: "Gigamacro",
  15119. height: math.unit(5, "km")
  15120. },
  15121. {
  15122. name: "Cosmic",
  15123. height: math.unit(2.5e6, "miles")
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/hanzo/front.svg",
  15136. extra: 374 / 344,
  15137. bottom: 0.02
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(8, "feet"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15151. {
  15152. front: {
  15153. height: math.unit(7, "feet"),
  15154. weight: math.unit(130, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/anna/front.svg",
  15158. extra: 169 / 145,
  15159. bottom: 0.06
  15160. }
  15161. },
  15162. full: {
  15163. height: math.unit(4.96, "feet"),
  15164. weight: math.unit(220, "lb"),
  15165. name: "Full",
  15166. image: {
  15167. source: "./media/characters/anna/full.svg",
  15168. extra: 138 / 114,
  15169. bottom: 0.15
  15170. }
  15171. },
  15172. tongue: {
  15173. height: math.unit(2.53, "feet"),
  15174. name: "Tongue",
  15175. image: {
  15176. source: "./media/characters/anna/tongue.svg"
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(7, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(7, "feet"),
  15193. weight: math.unit(150, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/ian-corvid/front.svg",
  15197. extra: 150 / 142,
  15198. bottom: 0.02
  15199. }
  15200. },
  15201. back: {
  15202. height: math.unit(7, "feet"),
  15203. weight: math.unit(150, "lb"),
  15204. name: "Back",
  15205. image: {
  15206. source: "./media/characters/ian-corvid/back.svg",
  15207. extra: 150 / 143,
  15208. bottom: 0.01
  15209. }
  15210. },
  15211. stomping: {
  15212. height: math.unit(7, "feet"),
  15213. weight: math.unit(150, "lb"),
  15214. name: "Stomping",
  15215. image: {
  15216. source: "./media/characters/ian-corvid/stomping.svg",
  15217. extra: 76 / 72
  15218. }
  15219. },
  15220. sitting: {
  15221. height: math.unit(7 / 1.8, "feet"),
  15222. weight: math.unit(150, "lb"),
  15223. name: "Sitting",
  15224. image: {
  15225. source: "./media/characters/ian-corvid/sitting.svg",
  15226. extra: 1400 / 1269,
  15227. bottom: 0.15
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Tiny Microw",
  15234. height: math.unit(1, "inch")
  15235. },
  15236. {
  15237. name: "Microw",
  15238. height: math.unit(6, "inches")
  15239. },
  15240. {
  15241. name: "Crow",
  15242. height: math.unit(7 + 1 / 12, "feet"),
  15243. default: true
  15244. },
  15245. {
  15246. name: "Macrow",
  15247. height: math.unit(176, "feet")
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(5 + 7 / 12, "feet"),
  15256. weight: math.unit(147, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/natalie-kellon/front.svg",
  15260. extra: 1214 / 1141,
  15261. bottom: 0.02
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Micro",
  15268. height: math.unit(1 / 16, "inch")
  15269. },
  15270. {
  15271. name: "Tiny",
  15272. height: math.unit(4, "inches")
  15273. },
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(5 + 7 / 12, "feet"),
  15277. default: true
  15278. },
  15279. {
  15280. name: "Amazon",
  15281. height: math.unit(12, "feet")
  15282. },
  15283. {
  15284. name: "Giantess",
  15285. height: math.unit(160, "meters")
  15286. },
  15287. {
  15288. name: "Titaness",
  15289. height: math.unit(800, "meters")
  15290. },
  15291. ]
  15292. ))
  15293. characterMakers.push(() => makeCharacter(
  15294. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15295. {
  15296. front: {
  15297. height: math.unit(6, "feet"),
  15298. weight: math.unit(150, "lb"),
  15299. name: "Front",
  15300. image: {
  15301. source: "./media/characters/alluria/front.svg",
  15302. extra: 806 / 738,
  15303. bottom: 0.01
  15304. }
  15305. },
  15306. side: {
  15307. height: math.unit(6, "feet"),
  15308. weight: math.unit(150, "lb"),
  15309. name: "Side",
  15310. image: {
  15311. source: "./media/characters/alluria/side.svg",
  15312. extra: 800 / 750,
  15313. }
  15314. },
  15315. back: {
  15316. height: math.unit(6, "feet"),
  15317. weight: math.unit(150, "lb"),
  15318. name: "Back",
  15319. image: {
  15320. source: "./media/characters/alluria/back.svg",
  15321. extra: 806 / 738,
  15322. }
  15323. },
  15324. frontMaid: {
  15325. height: math.unit(6, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Front (Maid)",
  15328. image: {
  15329. source: "./media/characters/alluria/front-maid.svg",
  15330. extra: 806 / 738,
  15331. bottom: 0.01
  15332. }
  15333. },
  15334. sideMaid: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Side (Maid)",
  15338. image: {
  15339. source: "./media/characters/alluria/side-maid.svg",
  15340. extra: 800 / 750,
  15341. bottom: 0.005
  15342. }
  15343. },
  15344. backMaid: {
  15345. height: math.unit(6, "feet"),
  15346. weight: math.unit(150, "lb"),
  15347. name: "Back (Maid)",
  15348. image: {
  15349. source: "./media/characters/alluria/back-maid.svg",
  15350. extra: 806 / 738,
  15351. }
  15352. },
  15353. },
  15354. [
  15355. {
  15356. name: "Micro",
  15357. height: math.unit(6, "inches"),
  15358. default: true
  15359. },
  15360. ]
  15361. ))
  15362. characterMakers.push(() => makeCharacter(
  15363. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15364. {
  15365. front: {
  15366. height: math.unit(6, "feet"),
  15367. weight: math.unit(150, "lb"),
  15368. name: "Front",
  15369. image: {
  15370. source: "./media/characters/kyle/front.svg",
  15371. extra: 1069 / 962,
  15372. bottom: 77.228 / 1727.45
  15373. }
  15374. },
  15375. },
  15376. [
  15377. {
  15378. name: "Macro",
  15379. height: math.unit(150, "feet"),
  15380. default: true
  15381. },
  15382. ]
  15383. ))
  15384. characterMakers.push(() => makeCharacter(
  15385. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15386. {
  15387. front: {
  15388. height: math.unit(6, "feet"),
  15389. weight: math.unit(300, "lb"),
  15390. name: "Front",
  15391. image: {
  15392. source: "./media/characters/duncan/front.svg",
  15393. extra: 1650 / 1482,
  15394. bottom: 0.05
  15395. }
  15396. },
  15397. },
  15398. [
  15399. {
  15400. name: "Macro",
  15401. height: math.unit(100, "feet"),
  15402. default: true
  15403. },
  15404. ]
  15405. ))
  15406. characterMakers.push(() => makeCharacter(
  15407. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15408. {
  15409. front: {
  15410. height: math.unit(5 + 4 / 12, "feet"),
  15411. weight: math.unit(220, "lb"),
  15412. name: "Front",
  15413. image: {
  15414. source: "./media/characters/memory/front.svg",
  15415. extra: 3641 / 3545,
  15416. bottom: 0.03
  15417. }
  15418. },
  15419. back: {
  15420. height: math.unit(5 + 4 / 12, "feet"),
  15421. weight: math.unit(220, "lb"),
  15422. name: "Back",
  15423. image: {
  15424. source: "./media/characters/memory/back.svg",
  15425. extra: 3641 / 3545,
  15426. bottom: 0.025
  15427. }
  15428. },
  15429. frontSkirt: {
  15430. height: math.unit(5 + 4 / 12, "feet"),
  15431. weight: math.unit(220, "lb"),
  15432. name: "Front (Skirt)",
  15433. image: {
  15434. source: "./media/characters/memory/front-skirt.svg",
  15435. extra: 3641 / 3545,
  15436. bottom: 0.03
  15437. }
  15438. },
  15439. frontDress: {
  15440. height: math.unit(5 + 4 / 12, "feet"),
  15441. weight: math.unit(220, "lb"),
  15442. name: "Front (Dress)",
  15443. image: {
  15444. source: "./media/characters/memory/front-dress.svg",
  15445. extra: 3641 / 3545,
  15446. bottom: 0.03
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Micro",
  15453. height: math.unit(6, "inches"),
  15454. default: true
  15455. },
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(5 + 4 / 12, "feet")
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15464. {
  15465. front: {
  15466. height: math.unit(4 + 11 / 12, "feet"),
  15467. weight: math.unit(100, "lb"),
  15468. name: "Front",
  15469. image: {
  15470. source: "./media/characters/luno/front.svg",
  15471. extra: 1535 / 1487,
  15472. bottom: 0.03
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Micro",
  15479. height: math.unit(3, "inches")
  15480. },
  15481. {
  15482. name: "Normal",
  15483. height: math.unit(4 + 11 / 12, "feet"),
  15484. default: true
  15485. },
  15486. {
  15487. name: "Macro",
  15488. height: math.unit(300, "feet")
  15489. },
  15490. {
  15491. name: "Megamacro",
  15492. height: math.unit(700, "miles")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6 + 2 / 12, "feet"),
  15501. weight: math.unit(170, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/jamesy/front.svg",
  15505. extra: 440 / 382,
  15506. bottom: 0.005
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Micro",
  15513. height: math.unit(3, "inches")
  15514. },
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(6 + 2 / 12, "feet"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Macro",
  15522. height: math.unit(300, "feet")
  15523. },
  15524. {
  15525. name: "Megamacro",
  15526. height: math.unit(700, "miles")
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(160, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/mark/front.svg",
  15539. extra: 3300 / 3100,
  15540. bottom: 136.42 / 3440.47
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Macro",
  15547. height: math.unit(120, "meters")
  15548. },
  15549. {
  15550. name: "Bigger Macro",
  15551. height: math.unit(350, "meters")
  15552. },
  15553. {
  15554. name: "Megamacro",
  15555. height: math.unit(8, "km"),
  15556. default: true
  15557. },
  15558. {
  15559. name: "Continental",
  15560. height: math.unit(4550, "km")
  15561. },
  15562. {
  15563. name: "Planetary",
  15564. height: math.unit(65000, "km")
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(6, "feet"),
  15573. weight: math.unit(400, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/mac/front.svg",
  15577. extra: 1048 / 987.7,
  15578. bottom: 60 / 1107.6,
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Macro",
  15585. height: math.unit(500, "feet"),
  15586. default: true
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15592. {
  15593. front: {
  15594. height: math.unit(5 + 2 / 12, "feet"),
  15595. weight: math.unit(190, "lb"),
  15596. name: "Front",
  15597. image: {
  15598. source: "./media/characters/bari/front.svg",
  15599. extra: 3156 / 2880,
  15600. bottom: 0.03
  15601. }
  15602. },
  15603. back: {
  15604. height: math.unit(5 + 2 / 12, "feet"),
  15605. weight: math.unit(190, "lb"),
  15606. name: "Back",
  15607. image: {
  15608. source: "./media/characters/bari/back.svg",
  15609. extra: 3260 / 2834,
  15610. bottom: 0.025
  15611. }
  15612. },
  15613. frontPlush: {
  15614. height: math.unit(5 + 2 / 12, "feet"),
  15615. weight: math.unit(190, "lb"),
  15616. name: "Front (Plush)",
  15617. image: {
  15618. source: "./media/characters/bari/front-plush.svg",
  15619. extra: 1112 / 1061,
  15620. bottom: 0.002
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Micro",
  15627. height: math.unit(3, "inches")
  15628. },
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(5 + 2 / 12, "feet"),
  15632. default: true
  15633. },
  15634. {
  15635. name: "Macro",
  15636. height: math.unit(20, "feet")
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(6 + 1 / 12, "feet"),
  15645. weight: math.unit(275, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/hunter-misha-raven/front.svg"
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Mortal",
  15655. height: math.unit(6 + 1 / 12, "feet")
  15656. },
  15657. {
  15658. name: "Divine",
  15659. height: math.unit(1.12134e34, "parsecs"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(6 + 3 / 12, "feet"),
  15669. weight: math.unit(220, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/max-calore/front.svg",
  15673. extra: 1700 / 1648,
  15674. bottom: 0.01
  15675. }
  15676. },
  15677. back: {
  15678. height: math.unit(6 + 3 / 12, "feet"),
  15679. weight: math.unit(220, "lb"),
  15680. name: "Back",
  15681. image: {
  15682. source: "./media/characters/max-calore/back.svg",
  15683. extra: 1700 / 1648,
  15684. bottom: 0.01
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(6 + 3 / 12, "feet"),
  15692. default: true
  15693. },
  15694. ]
  15695. ))
  15696. characterMakers.push(() => makeCharacter(
  15697. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15698. {
  15699. side: {
  15700. height: math.unit(2 + 8 / 12, "feet"),
  15701. weight: math.unit(99, "lb"),
  15702. name: "Side",
  15703. image: {
  15704. source: "./media/characters/aspen/side.svg",
  15705. extra: 152 / 138,
  15706. bottom: 0.032
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(2 + 8 / 12, "feet"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"]},
  15720. {
  15721. side: {
  15722. height: math.unit(3 + 2 / 12, "feet"),
  15723. weight: math.unit(224, "lb"),
  15724. name: "Side",
  15725. image: {
  15726. source: "./media/characters/sheila-feral-wolf/side.svg",
  15727. extra: 179 / 166,
  15728. bottom: 0.03
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(3 + 2 / 12, "feet"),
  15736. default: true
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15742. {
  15743. side: {
  15744. height: math.unit(1 + 9 / 12, "feet"),
  15745. weight: math.unit(38, "lb"),
  15746. name: "Side",
  15747. image: {
  15748. source: "./media/characters/michelle/side.svg",
  15749. extra: 147 / 136.7,
  15750. bottom: 0.03
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(1 + 9 / 12, "feet"),
  15758. default: true
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(1 + 1 / 12, "feet"),
  15767. weight: math.unit(18, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/nino/front.svg"
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Normal",
  15777. height: math.unit(1 + 1 / 12, "feet"),
  15778. default: true
  15779. },
  15780. ]
  15781. ))
  15782. characterMakers.push(() => makeCharacter(
  15783. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15784. {
  15785. front: {
  15786. height: math.unit(1, "feet"),
  15787. weight: math.unit(16, "lb"),
  15788. name: "Front",
  15789. image: {
  15790. source: "./media/characters/viola/front.svg"
  15791. }
  15792. },
  15793. },
  15794. [
  15795. {
  15796. name: "Normal",
  15797. height: math.unit(1, "feet"),
  15798. default: true
  15799. },
  15800. ]
  15801. ))
  15802. characterMakers.push(() => makeCharacter(
  15803. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15804. {
  15805. front: {
  15806. height: math.unit(6 + 5 / 12, "feet"),
  15807. weight: math.unit(580, "lb"),
  15808. name: "Front",
  15809. image: {
  15810. source: "./media/characters/atlas/front.svg",
  15811. extra: 298.5 / 290,
  15812. bottom: 0.015
  15813. }
  15814. },
  15815. },
  15816. [
  15817. {
  15818. name: "Normal",
  15819. height: math.unit(6 + 5 / 12, "feet"),
  15820. default: true
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15826. {
  15827. side: {
  15828. height: math.unit(1 + 10 / 12, "feet"),
  15829. weight: math.unit(25, "lb"),
  15830. name: "Side",
  15831. image: {
  15832. source: "./media/characters/davy/side.svg",
  15833. extra: 200 / 170,
  15834. bottom: 0.01
  15835. }
  15836. },
  15837. },
  15838. [
  15839. {
  15840. name: "Normal",
  15841. height: math.unit(1 + 10 / 12, "feet"),
  15842. default: true
  15843. },
  15844. ]
  15845. ))
  15846. characterMakers.push(() => makeCharacter(
  15847. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15848. {
  15849. side: {
  15850. height: math.unit(4 + 8 / 12, "feet"),
  15851. weight: math.unit(166, "lb"),
  15852. name: "Side",
  15853. image: {
  15854. source: "./media/characters/fiona/side.svg",
  15855. extra: 232 / 220,
  15856. bottom: 0.03
  15857. }
  15858. },
  15859. },
  15860. [
  15861. {
  15862. name: "Normal",
  15863. height: math.unit(4 + 8 / 12, "feet"),
  15864. default: true
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15870. {
  15871. front: {
  15872. height: math.unit(2, "feet"),
  15873. weight: math.unit(62, "lb"),
  15874. name: "Front",
  15875. image: {
  15876. source: "./media/characters/lyla/front.svg",
  15877. bottom: 0.1
  15878. }
  15879. },
  15880. },
  15881. [
  15882. {
  15883. name: "Normal",
  15884. height: math.unit(2, "feet"),
  15885. default: true
  15886. },
  15887. ]
  15888. ))
  15889. characterMakers.push(() => makeCharacter(
  15890. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15891. {
  15892. side: {
  15893. height: math.unit(1.8, "feet"),
  15894. weight: math.unit(44, "lb"),
  15895. name: "Side",
  15896. image: {
  15897. source: "./media/characters/perseus/side.svg",
  15898. bottom: 0.21
  15899. }
  15900. },
  15901. },
  15902. [
  15903. {
  15904. name: "Normal",
  15905. height: math.unit(1.8, "feet"),
  15906. default: true
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15912. {
  15913. side: {
  15914. height: math.unit(4 + 2 / 12, "feet"),
  15915. weight: math.unit(20, "lb"),
  15916. name: "Side",
  15917. image: {
  15918. source: "./media/characters/remus/side.svg"
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Normal",
  15925. height: math.unit(4 + 2 / 12, "feet"),
  15926. default: true
  15927. },
  15928. ]
  15929. ))
  15930. characterMakers.push(() => makeCharacter(
  15931. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15932. {
  15933. front: {
  15934. height: math.unit(4 + 11 / 12, "feet"),
  15935. weight: math.unit(114, "lb"),
  15936. name: "Front",
  15937. image: {
  15938. source: "./media/characters/raf/front.svg",
  15939. bottom: 0.01
  15940. }
  15941. },
  15942. side: {
  15943. height: math.unit(4 + 11 / 12, "feet"),
  15944. weight: math.unit(114, "lb"),
  15945. name: "Side",
  15946. image: {
  15947. source: "./media/characters/raf/side.svg",
  15948. bottom: 0.005
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Micro",
  15955. height: math.unit(2, "inches")
  15956. },
  15957. {
  15958. name: "Normal",
  15959. height: math.unit(4 + 11 / 12, "feet"),
  15960. default: true
  15961. },
  15962. {
  15963. name: "Macro",
  15964. height: math.unit(70, "feet")
  15965. },
  15966. ]
  15967. ))
  15968. characterMakers.push(() => makeCharacter(
  15969. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  15970. {
  15971. front: {
  15972. height: math.unit(1.5, "meters"),
  15973. weight: math.unit(68, "kg"),
  15974. name: "Front",
  15975. image: {
  15976. source: "./media/characters/liam-einarr/front.svg",
  15977. extra: 2822 / 2666
  15978. }
  15979. },
  15980. back: {
  15981. height: math.unit(1.5, "meters"),
  15982. weight: math.unit(68, "kg"),
  15983. name: "Back",
  15984. image: {
  15985. source: "./media/characters/liam-einarr/back.svg",
  15986. extra: 2822 / 2666,
  15987. bottom: 0.015
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Normal",
  15994. height: math.unit(1.5, "meters"),
  15995. default: true
  15996. },
  15997. {
  15998. name: "Macro",
  15999. height: math.unit(150, "meters")
  16000. },
  16001. {
  16002. name: "Megamacro",
  16003. height: math.unit(35, "km")
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(6, "feet"),
  16012. weight: math.unit(75, "kg"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/linda/front.svg",
  16016. extra: 930 / 874,
  16017. bottom: 0.004
  16018. }
  16019. },
  16020. },
  16021. [
  16022. {
  16023. name: "Normal",
  16024. height: math.unit(6, "feet"),
  16025. default: true
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(6 + 8 / 12, "feet"),
  16034. weight: math.unit(220, "lb"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/caylex/front.svg",
  16038. extra: 821 / 772,
  16039. bottom: 0.07
  16040. }
  16041. },
  16042. back: {
  16043. height: math.unit(6 + 8 / 12, "feet"),
  16044. weight: math.unit(220, "lb"),
  16045. name: "Back",
  16046. image: {
  16047. source: "./media/characters/caylex/back.svg",
  16048. extra: 821 / 772,
  16049. bottom: 0.022
  16050. }
  16051. },
  16052. hand: {
  16053. height: math.unit(1.25, "feet"),
  16054. name: "Hand",
  16055. image: {
  16056. source: "./media/characters/caylex/hand.svg"
  16057. }
  16058. },
  16059. foot: {
  16060. height: math.unit(1.6, "feet"),
  16061. name: "Foot",
  16062. image: {
  16063. source: "./media/characters/caylex/foot.svg"
  16064. }
  16065. },
  16066. armored: {
  16067. height: math.unit(6 + 8 / 12, "feet"),
  16068. weight: math.unit(250, "lb"),
  16069. name: "Armored",
  16070. image: {
  16071. source: "./media/characters/caylex/armored.svg",
  16072. extra: 1420 / 1310,
  16073. bottom: 0.045
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(6 + 8 / 12, "feet"),
  16081. default: true
  16082. },
  16083. {
  16084. name: "Normal+",
  16085. height: math.unit(12, "feet")
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16091. {
  16092. front: {
  16093. height: math.unit(7 + 6 / 12, "feet"),
  16094. weight: math.unit(288, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/alana/front.svg",
  16098. extra: 679 / 653,
  16099. bottom: 22.5 / 701
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(7 + 6 / 12, "feet")
  16107. },
  16108. {
  16109. name: "Large",
  16110. height: math.unit(50, "feet")
  16111. },
  16112. {
  16113. name: "Macro",
  16114. height: math.unit(100, "feet"),
  16115. default: true
  16116. },
  16117. {
  16118. name: "Macro+",
  16119. height: math.unit(200, "feet")
  16120. },
  16121. ]
  16122. ))
  16123. characterMakers.push(() => makeCharacter(
  16124. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16125. {
  16126. front: {
  16127. height: math.unit(6 + 1 / 12, "feet"),
  16128. weight: math.unit(210, "lb"),
  16129. name: "Front",
  16130. image: {
  16131. source: "./media/characters/hasani/front.svg",
  16132. extra: 244 / 232,
  16133. bottom: 0.01
  16134. }
  16135. },
  16136. back: {
  16137. height: math.unit(6 + 1 / 12, "feet"),
  16138. weight: math.unit(210, "lb"),
  16139. name: "Back",
  16140. image: {
  16141. source: "./media/characters/hasani/back.svg",
  16142. extra: 244 / 232,
  16143. bottom: 0.01
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Normal",
  16150. height: math.unit(6 + 1 / 12, "feet")
  16151. },
  16152. {
  16153. name: "Macro",
  16154. height: math.unit(175, "feet"),
  16155. default: true
  16156. },
  16157. ]
  16158. ))
  16159. characterMakers.push(() => makeCharacter(
  16160. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16161. {
  16162. front: {
  16163. height: math.unit(1.82, "meters"),
  16164. weight: math.unit(140, "lb"),
  16165. name: "Front",
  16166. image: {
  16167. source: "./media/characters/nita/front.svg",
  16168. extra: 2473 / 2363,
  16169. bottom: 0.01
  16170. }
  16171. },
  16172. },
  16173. [
  16174. {
  16175. name: "Normal",
  16176. height: math.unit(1.82, "m")
  16177. },
  16178. {
  16179. name: "Macro",
  16180. height: math.unit(300, "m")
  16181. },
  16182. {
  16183. name: "Mistake Canon",
  16184. height: math.unit(0.5, "miles"),
  16185. default: true
  16186. },
  16187. {
  16188. name: "Big Mistake",
  16189. height: math.unit(13, "miles")
  16190. },
  16191. {
  16192. name: "Playing God",
  16193. height: math.unit(2450, "miles")
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16199. {
  16200. front: {
  16201. height: math.unit(4, "feet"),
  16202. weight: math.unit(120, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/shiriko/front.svg",
  16206. extra: 195 / 188
  16207. }
  16208. },
  16209. },
  16210. [
  16211. {
  16212. name: "Normal",
  16213. height: math.unit(4, "feet"),
  16214. default: true
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16220. {
  16221. front: {
  16222. height: math.unit(6, "feet"),
  16223. name: "front",
  16224. image: {
  16225. source: "./media/characters/deja/front.svg",
  16226. extra: 926 / 840,
  16227. bottom: 0.07
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Planck Length",
  16234. height: math.unit(1.6e-35, "meters")
  16235. },
  16236. {
  16237. name: "Normal",
  16238. height: math.unit(30.48, "meters"),
  16239. default: true
  16240. },
  16241. {
  16242. name: "Universal",
  16243. height: math.unit(8.8e26, "meters")
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16249. {
  16250. side: {
  16251. height: math.unit(8, "feet"),
  16252. weight: math.unit(6300, "lb"),
  16253. name: "Side",
  16254. image: {
  16255. source: "./media/characters/anima/side.svg",
  16256. bottom: 0.035
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(8, "feet"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(8, "feet"),
  16273. weight: math.unit(350, "lb"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/bianca/front.svg",
  16277. extra: 234 / 225,
  16278. bottom: 0.03
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(8, "feet"),
  16286. default: true
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(150, "lb"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/adinia/front.svg",
  16299. extra: 1845 / 1672,
  16300. bottom: 0.02
  16301. }
  16302. },
  16303. back: {
  16304. height: math.unit(6, "feet"),
  16305. weight: math.unit(150, "lb"),
  16306. name: "Back",
  16307. image: {
  16308. source: "./media/characters/adinia/back.svg",
  16309. extra: 1845 / 1672,
  16310. bottom: 0.002
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Normal",
  16317. height: math.unit(11 + 5 / 12, "feet"),
  16318. default: true
  16319. },
  16320. ]
  16321. ))
  16322. characterMakers.push(() => makeCharacter(
  16323. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16324. {
  16325. front: {
  16326. height: math.unit(3, "meters"),
  16327. weight: math.unit(200, "kg"),
  16328. name: "Front",
  16329. image: {
  16330. source: "./media/characters/lykasa/front.svg",
  16331. extra: 1076 / 976,
  16332. bottom: 0.06
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(3, "meters")
  16340. },
  16341. {
  16342. name: "Kaiju",
  16343. height: math.unit(120, "meters"),
  16344. default: true
  16345. },
  16346. {
  16347. name: "Mega Kaiju",
  16348. height: math.unit(240, "km")
  16349. },
  16350. {
  16351. name: "Giga Kaiju",
  16352. height: math.unit(400, "megameters")
  16353. },
  16354. {
  16355. name: "Tera Kaiju",
  16356. height: math.unit(800, "gigameters")
  16357. },
  16358. {
  16359. name: "Kaiju Dragon Goddess",
  16360. height: math.unit(26, "zettaparsecs")
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16366. {
  16367. side: {
  16368. height: math.unit(283 / 124 * 6, "feet"),
  16369. weight: math.unit(35000, "lb"),
  16370. name: "Side",
  16371. image: {
  16372. source: "./media/characters/malfaren/side.svg",
  16373. extra: 2500 / 1010,
  16374. bottom: 0.01
  16375. }
  16376. },
  16377. front: {
  16378. height: math.unit(22.36, "feet"),
  16379. weight: math.unit(35000, "lb"),
  16380. name: "Front",
  16381. image: {
  16382. source: "./media/characters/malfaren/front.svg",
  16383. extra: 1631 / 1476,
  16384. bottom: 0.01
  16385. }
  16386. },
  16387. maw: {
  16388. height: math.unit(6.9, "feet"),
  16389. name: "Maw",
  16390. image: {
  16391. source: "./media/characters/malfaren/maw.svg"
  16392. }
  16393. },
  16394. },
  16395. [
  16396. {
  16397. name: "Big",
  16398. height: math.unit(283 / 162 * 6, "feet"),
  16399. },
  16400. {
  16401. name: "Bigger",
  16402. height: math.unit(283 / 124 * 6, "feet")
  16403. },
  16404. {
  16405. name: "Massive",
  16406. height: math.unit(283 / 92 * 6, "feet"),
  16407. default: true
  16408. },
  16409. {
  16410. name: "👀💦",
  16411. height: math.unit(283 / 73 * 6, "feet"),
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(1.7, "m"),
  16420. weight: math.unit(70, "kg"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/kernel/front.svg",
  16424. extra: 222 / 210,
  16425. bottom: 0.007
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Nano",
  16432. height: math.unit(17, "micrometers")
  16433. },
  16434. {
  16435. name: "Micro",
  16436. height: math.unit(1.7, "mm")
  16437. },
  16438. {
  16439. name: "Small",
  16440. height: math.unit(1.7, "cm")
  16441. },
  16442. {
  16443. name: "Normal",
  16444. height: math.unit(1.7, "m"),
  16445. default: true
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(1.75, "meters"),
  16454. weight: math.unit(65, "kg"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/jayne-folest/front.svg",
  16458. extra: 2115 / 2007,
  16459. bottom: 0.02
  16460. }
  16461. },
  16462. back: {
  16463. height: math.unit(1.75, "meters"),
  16464. weight: math.unit(65, "kg"),
  16465. name: "Back",
  16466. image: {
  16467. source: "./media/characters/jayne-folest/back.svg",
  16468. extra: 2115 / 2007,
  16469. bottom: 0.005
  16470. }
  16471. },
  16472. frontClothed: {
  16473. height: math.unit(1.75, "meters"),
  16474. weight: math.unit(65, "kg"),
  16475. name: "Front (Clothed)",
  16476. image: {
  16477. source: "./media/characters/jayne-folest/front-clothed.svg",
  16478. extra: 2115 / 2007,
  16479. bottom: 0.035
  16480. }
  16481. },
  16482. hand: {
  16483. height: math.unit(1 / 1.260, "feet"),
  16484. name: "Hand",
  16485. image: {
  16486. source: "./media/characters/jayne-folest/hand.svg"
  16487. }
  16488. },
  16489. foot: {
  16490. height: math.unit(1 / 0.918, "feet"),
  16491. name: "Foot",
  16492. image: {
  16493. source: "./media/characters/jayne-folest/foot.svg"
  16494. }
  16495. },
  16496. },
  16497. [
  16498. {
  16499. name: "Micro",
  16500. height: math.unit(4, "cm")
  16501. },
  16502. {
  16503. name: "Normal",
  16504. height: math.unit(1.75, "meters")
  16505. },
  16506. {
  16507. name: "Macro",
  16508. height: math.unit(47.5, "meters"),
  16509. default: true
  16510. },
  16511. ]
  16512. ))
  16513. characterMakers.push(() => makeCharacter(
  16514. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16515. {
  16516. front: {
  16517. height: math.unit(180, "cm"),
  16518. weight: math.unit(70, "kg"),
  16519. name: "Front",
  16520. image: {
  16521. source: "./media/characters/algier/front.svg",
  16522. extra: 596 / 572,
  16523. bottom: 0.04
  16524. }
  16525. },
  16526. back: {
  16527. height: math.unit(180, "cm"),
  16528. weight: math.unit(70, "kg"),
  16529. name: "Back",
  16530. image: {
  16531. source: "./media/characters/algier/back.svg",
  16532. extra: 596 / 572,
  16533. bottom: 0.025
  16534. }
  16535. },
  16536. frontdressed: {
  16537. height: math.unit(180, "cm"),
  16538. weight: math.unit(150, "kg"),
  16539. name: "Front-dressed",
  16540. image: {
  16541. source: "./media/characters/algier/front-dressed.svg",
  16542. extra: 596 / 572,
  16543. bottom: 0.038
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Micro",
  16550. height: math.unit(5, "cm")
  16551. },
  16552. {
  16553. name: "Normal",
  16554. height: math.unit(180, "cm"),
  16555. default: true
  16556. },
  16557. {
  16558. name: "Macro",
  16559. height: math.unit(64, "m")
  16560. },
  16561. ]
  16562. ))
  16563. characterMakers.push(() => makeCharacter(
  16564. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16565. {
  16566. upright: {
  16567. height: math.unit(7, "feet"),
  16568. weight: math.unit(300, "lb"),
  16569. name: "Upright",
  16570. image: {
  16571. source: "./media/characters/pretzel/upright.svg",
  16572. extra: 534 / 522,
  16573. bottom: 0.065
  16574. }
  16575. },
  16576. sprawling: {
  16577. height: math.unit(3.75, "feet"),
  16578. weight: math.unit(300, "lb"),
  16579. name: "Sprawling",
  16580. image: {
  16581. source: "./media/characters/pretzel/sprawling.svg",
  16582. extra: 314 / 281,
  16583. bottom: 0.1
  16584. }
  16585. },
  16586. tongue: {
  16587. height: math.unit(2, "feet"),
  16588. name: "Tongue",
  16589. image: {
  16590. source: "./media/characters/pretzel/tongue.svg"
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(7, "feet"),
  16598. default: true
  16599. },
  16600. {
  16601. name: "Oversized",
  16602. height: math.unit(15, "feet")
  16603. },
  16604. {
  16605. name: "Huge",
  16606. height: math.unit(30, "feet")
  16607. },
  16608. {
  16609. name: "Macro",
  16610. height: math.unit(250, "feet")
  16611. },
  16612. ]
  16613. ))
  16614. characterMakers.push(() => makeCharacter(
  16615. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16616. {
  16617. sideFront: {
  16618. height: math.unit(5 + 2 / 12, "feet"),
  16619. weight: math.unit(120, "lb"),
  16620. name: "Front Side",
  16621. image: {
  16622. source: "./media/characters/roxi/side-front.svg",
  16623. extra: 2924 / 2717,
  16624. bottom: 0.08
  16625. }
  16626. },
  16627. sideBack: {
  16628. height: math.unit(5 + 2 / 12, "feet"),
  16629. weight: math.unit(120, "lb"),
  16630. name: "Back Side",
  16631. image: {
  16632. source: "./media/characters/roxi/side-back.svg",
  16633. extra: 2904 / 2693,
  16634. bottom: 0.06
  16635. }
  16636. },
  16637. front: {
  16638. height: math.unit(5 + 2 / 12, "feet"),
  16639. weight: math.unit(120, "lb"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/roxi/front.svg",
  16643. extra: 2028 / 1907,
  16644. bottom: 0.01
  16645. }
  16646. },
  16647. frontAlt: {
  16648. height: math.unit(5 + 2 / 12, "feet"),
  16649. weight: math.unit(120, "lb"),
  16650. name: "Front (Alt)",
  16651. image: {
  16652. source: "./media/characters/roxi/front-alt.svg",
  16653. extra: 1828 / 1798,
  16654. bottom: 0.01
  16655. }
  16656. },
  16657. sitting: {
  16658. height: math.unit(2.8, "feet"),
  16659. weight: math.unit(120, "lb"),
  16660. name: "Sitting",
  16661. image: {
  16662. source: "./media/characters/roxi/sitting.svg",
  16663. extra: 2660 / 2462,
  16664. bottom: 0.1
  16665. }
  16666. },
  16667. },
  16668. [
  16669. {
  16670. name: "Normal",
  16671. height: math.unit(5 + 2 / 12, "feet"),
  16672. default: true
  16673. },
  16674. ]
  16675. ))
  16676. characterMakers.push(() => makeCharacter(
  16677. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16678. {
  16679. side: {
  16680. height: math.unit(55, "feet"),
  16681. weight: math.unit(153, "tons"),
  16682. name: "Side",
  16683. image: {
  16684. source: "./media/characters/shadow/side.svg",
  16685. extra: 701 / 628,
  16686. bottom: 0.02
  16687. }
  16688. },
  16689. flying: {
  16690. height: math.unit(145, "feet"),
  16691. weight: math.unit(153, "tons"),
  16692. name: "Flying",
  16693. image: {
  16694. source: "./media/characters/shadow/flying.svg"
  16695. }
  16696. },
  16697. },
  16698. [
  16699. {
  16700. name: "Normal",
  16701. height: math.unit(55, "feet"),
  16702. default: true
  16703. },
  16704. ]
  16705. ))
  16706. characterMakers.push(() => makeCharacter(
  16707. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16708. {
  16709. front: {
  16710. height: math.unit(6, "feet"),
  16711. weight: math.unit(200, "lb"),
  16712. name: "Front",
  16713. image: {
  16714. source: "./media/characters/marcie/front.svg",
  16715. extra: 960 / 876,
  16716. bottom: 58 / 1017.87
  16717. }
  16718. },
  16719. },
  16720. [
  16721. {
  16722. name: "Macro",
  16723. height: math.unit(1, "mile"),
  16724. default: true
  16725. },
  16726. ]
  16727. ))
  16728. characterMakers.push(() => makeCharacter(
  16729. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16730. {
  16731. front: {
  16732. height: math.unit(7, "feet"),
  16733. weight: math.unit(200, "lb"),
  16734. name: "Front",
  16735. image: {
  16736. source: "./media/characters/kachina/front.svg",
  16737. extra: 1290.68 / 1119,
  16738. bottom: 36.5 / 1327.18
  16739. }
  16740. },
  16741. },
  16742. [
  16743. {
  16744. name: "Normal",
  16745. height: math.unit(7, "feet"),
  16746. default: true
  16747. },
  16748. ]
  16749. ))
  16750. characterMakers.push(() => makeCharacter(
  16751. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16752. {
  16753. looking: {
  16754. height: math.unit(2, "meters"),
  16755. weight: math.unit(300, "kg"),
  16756. name: "Looking",
  16757. image: {
  16758. source: "./media/characters/kash/looking.svg",
  16759. extra: 474 / 344,
  16760. bottom: 0.03
  16761. }
  16762. },
  16763. side: {
  16764. height: math.unit(2, "meters"),
  16765. weight: math.unit(300, "kg"),
  16766. name: "Side",
  16767. image: {
  16768. source: "./media/characters/kash/side.svg",
  16769. extra: 302 / 251,
  16770. bottom: 0.03
  16771. }
  16772. },
  16773. front: {
  16774. height: math.unit(2, "meters"),
  16775. weight: math.unit(300, "kg"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/kash/front.svg",
  16779. extra: 495 / 360,
  16780. bottom: 0.015
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Normal",
  16787. height: math.unit(2, "meters"),
  16788. default: true
  16789. },
  16790. {
  16791. name: "Big",
  16792. height: math.unit(3, "meters")
  16793. },
  16794. {
  16795. name: "Large",
  16796. height: math.unit(5, "meters")
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16802. {
  16803. feeding: {
  16804. height: math.unit(6.7, "feet"),
  16805. weight: math.unit(350, "lb"),
  16806. name: "Feeding",
  16807. image: {
  16808. source: "./media/characters/lalim/feeding.svg",
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(6.7, "feet"),
  16816. default: true
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16822. {
  16823. front: {
  16824. height: math.unit(9.5, "feet"),
  16825. weight: math.unit(600, "lb"),
  16826. name: "Front",
  16827. image: {
  16828. source: "./media/characters/de'vout/front.svg",
  16829. extra: 1443 / 1328,
  16830. bottom: 0.025
  16831. }
  16832. },
  16833. back: {
  16834. height: math.unit(9.5, "feet"),
  16835. weight: math.unit(600, "lb"),
  16836. name: "Back",
  16837. image: {
  16838. source: "./media/characters/de'vout/back.svg",
  16839. extra: 1443 / 1328
  16840. }
  16841. },
  16842. frontDressed: {
  16843. height: math.unit(9.5, "feet"),
  16844. weight: math.unit(600, "lb"),
  16845. name: "Front (Dressed",
  16846. image: {
  16847. source: "./media/characters/de'vout/front-dressed.svg",
  16848. extra: 1443 / 1328,
  16849. bottom: 0.025
  16850. }
  16851. },
  16852. backDressed: {
  16853. height: math.unit(9.5, "feet"),
  16854. weight: math.unit(600, "lb"),
  16855. name: "Back (Dressed",
  16856. image: {
  16857. source: "./media/characters/de'vout/back-dressed.svg",
  16858. extra: 1443 / 1328
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(9.5, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16872. {
  16873. front: {
  16874. height: math.unit(8, "feet"),
  16875. weight: math.unit(225, "lb"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/talana/front.svg",
  16879. extra: 1410 / 1300,
  16880. bottom: 0.015
  16881. }
  16882. },
  16883. frontDressed: {
  16884. height: math.unit(8, "feet"),
  16885. weight: math.unit(225, "lb"),
  16886. name: "Front (Dressed",
  16887. image: {
  16888. source: "./media/characters/talana/front-dressed.svg",
  16889. extra: 1410 / 1300,
  16890. bottom: 0.015
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(8, "feet"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16904. {
  16905. side: {
  16906. height: math.unit(7.2, "feet"),
  16907. weight: math.unit(150, "lb"),
  16908. name: "Side",
  16909. image: {
  16910. source: "./media/characters/xeauvok/side.svg",
  16911. extra: 1975 / 1523,
  16912. bottom: 0.07
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(7.2, "feet"),
  16920. default: true
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16926. {
  16927. side: {
  16928. height: math.unit(10, "feet"),
  16929. weight: math.unit(900, "kg"),
  16930. name: "Side",
  16931. image: {
  16932. source: "./media/characters/zara/side.svg",
  16933. extra: 504 / 498
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(10, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16947. {
  16948. side: {
  16949. height: math.unit(6, "feet"),
  16950. weight: math.unit(150, "lb"),
  16951. name: "Side",
  16952. image: {
  16953. source: "./media/characters/richard-dragon/side.svg",
  16954. extra: 845 / 340,
  16955. bottom: 0.017
  16956. }
  16957. },
  16958. maw: {
  16959. height: math.unit(2.97, "feet"),
  16960. name: "Maw",
  16961. image: {
  16962. source: "./media/characters/richard-dragon/maw.svg"
  16963. }
  16964. },
  16965. },
  16966. [
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(4, "feet"),
  16974. weight: math.unit(100, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/richard-smeargle/front.svg",
  16978. extra: 2952 / 2820,
  16979. bottom: 0.028
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(4, "feet"),
  16987. default: true
  16988. },
  16989. {
  16990. name: "Dynamax",
  16991. height: math.unit(20, "meters")
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  16997. {
  16998. front: {
  16999. height: math.unit(6, "feet"),
  17000. weight: math.unit(110, "lb"),
  17001. name: "Front",
  17002. image: {
  17003. source: "./media/characters/klay/front.svg",
  17004. extra: 962 / 883,
  17005. bottom: 0.04
  17006. }
  17007. },
  17008. back: {
  17009. height: math.unit(6, "feet"),
  17010. weight: math.unit(110, "lb"),
  17011. name: "Back",
  17012. image: {
  17013. source: "./media/characters/klay/back.svg",
  17014. extra: 962 / 883
  17015. }
  17016. },
  17017. beans: {
  17018. height: math.unit(1.15, "feet"),
  17019. name: "Beans",
  17020. image: {
  17021. source: "./media/characters/klay/beans.svg"
  17022. }
  17023. },
  17024. },
  17025. [
  17026. {
  17027. name: "Micro",
  17028. height: math.unit(6, "inches")
  17029. },
  17030. {
  17031. name: "Mini",
  17032. height: math.unit(3, "feet")
  17033. },
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(6, "feet"),
  17037. default: true
  17038. },
  17039. {
  17040. name: "Big",
  17041. height: math.unit(25, "feet")
  17042. },
  17043. {
  17044. name: "Macro",
  17045. height: math.unit(100, "feet")
  17046. },
  17047. {
  17048. name: "Megamacro",
  17049. height: math.unit(400, "feet")
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(6, "feet"),
  17058. weight: math.unit(160, "lb"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/marcus/front.svg",
  17062. extra: 734 / 676,
  17063. bottom: 0.03
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Little",
  17070. height: math.unit(6, "feet")
  17071. },
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(110, "feet"),
  17075. default: true
  17076. },
  17077. {
  17078. name: "Macro",
  17079. height: math.unit(250, "feet")
  17080. },
  17081. {
  17082. name: "Megamacro",
  17083. height: math.unit(1000, "feet")
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(7, "feet"),
  17092. weight: math.unit(275, "lb"),
  17093. name: "Front",
  17094. image: {
  17095. source: "./media/characters/claude-delroute/front.svg",
  17096. extra: 230 / 214,
  17097. bottom: 0.007
  17098. }
  17099. },
  17100. side: {
  17101. height: math.unit(7, "feet"),
  17102. weight: math.unit(275, "lb"),
  17103. name: "Side",
  17104. image: {
  17105. source: "./media/characters/claude-delroute/side.svg",
  17106. extra: 222 / 214,
  17107. bottom: 0.01
  17108. }
  17109. },
  17110. back: {
  17111. height: math.unit(7, "feet"),
  17112. weight: math.unit(275, "lb"),
  17113. name: "Back",
  17114. image: {
  17115. source: "./media/characters/claude-delroute/back.svg",
  17116. extra: 230 / 214,
  17117. bottom: 0.015
  17118. }
  17119. },
  17120. maw: {
  17121. height: math.unit(0.6407, "meters"),
  17122. name: "Maw",
  17123. image: {
  17124. source: "./media/characters/claude-delroute/maw.svg"
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(7, "feet"),
  17132. default: true
  17133. },
  17134. {
  17135. name: "Lorge",
  17136. height: math.unit(20, "feet")
  17137. },
  17138. ]
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17142. {
  17143. front: {
  17144. height: math.unit(8 + 4 / 12, "feet"),
  17145. weight: math.unit(600, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/dragonien/front.svg",
  17149. extra: 100 / 94,
  17150. bottom: 3.3 / 103.3445
  17151. }
  17152. },
  17153. back: {
  17154. height: math.unit(8 + 4 / 12, "feet"),
  17155. weight: math.unit(600, "lb"),
  17156. name: "Back",
  17157. image: {
  17158. source: "./media/characters/dragonien/back.svg",
  17159. extra: 776 / 746,
  17160. bottom: 6.4 / 782.0616
  17161. }
  17162. },
  17163. foot: {
  17164. height: math.unit(1.54, "feet"),
  17165. name: "Foot",
  17166. image: {
  17167. source: "./media/characters/dragonien/foot.svg",
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(8 + 4 / 12, "feet"),
  17175. default: true
  17176. },
  17177. {
  17178. name: "Macro",
  17179. height: math.unit(200, "feet")
  17180. },
  17181. {
  17182. name: "Megamacro",
  17183. height: math.unit(1, "mile")
  17184. },
  17185. {
  17186. name: "Gigamacro",
  17187. height: math.unit(1000, "miles")
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17193. {
  17194. front: {
  17195. height: math.unit(5 + 2 / 12, "feet"),
  17196. weight: math.unit(110, "lb"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/desta/front.svg",
  17200. extra: 1482 / 1417
  17201. }
  17202. },
  17203. side: {
  17204. height: math.unit(5 + 2 / 12, "feet"),
  17205. weight: math.unit(110, "lb"),
  17206. name: "Side",
  17207. image: {
  17208. source: "./media/characters/desta/side.svg",
  17209. extra: 2579 / 2491,
  17210. bottom: 0.053
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Micro",
  17217. height: math.unit(6, "inches")
  17218. },
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(5 + 2 / 12, "feet"),
  17222. default: true
  17223. },
  17224. {
  17225. name: "Macro",
  17226. height: math.unit(62, "feet")
  17227. },
  17228. {
  17229. name: "Megamacro",
  17230. height: math.unit(1800, "feet")
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17236. {
  17237. front: {
  17238. height: math.unit(10, "feet"),
  17239. weight: math.unit(700, "lb"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/storm-alystar/front.svg",
  17243. extra: 2112 / 1898,
  17244. bottom: 0.034
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Micro",
  17251. height: math.unit(3.5, "inches")
  17252. },
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(10, "feet"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Macro",
  17260. height: math.unit(400, "feet")
  17261. },
  17262. {
  17263. name: "Deific",
  17264. height: math.unit(60, "miles")
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(2.35, "meters"),
  17273. weight: math.unit(119, "kg"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/ilia/front.svg",
  17277. extra: 1285 / 1255,
  17278. bottom: 0.06
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(2.35, "meters")
  17286. },
  17287. {
  17288. name: "Macro",
  17289. height: math.unit(140, "meters"),
  17290. default: true
  17291. },
  17292. {
  17293. name: "Megamacro",
  17294. height: math.unit(100, "miles")
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17300. {
  17301. front: {
  17302. height: math.unit(6 + 5 / 12, "feet"),
  17303. weight: math.unit(190, "lb"),
  17304. name: "Front",
  17305. image: {
  17306. source: "./media/characters/kingdead/front.svg",
  17307. extra: 1228 / 1177
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Micro",
  17314. height: math.unit(7, "inches")
  17315. },
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(6 + 5 / 12, "feet")
  17319. },
  17320. {
  17321. name: "Macro",
  17322. height: math.unit(150, "feet"),
  17323. default: true
  17324. },
  17325. {
  17326. name: "Megamacro",
  17327. height: math.unit(200, "miles")
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17333. {
  17334. front: {
  17335. height: math.unit(8, "feet"),
  17336. weight: math.unit(600, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/kyrehx/front.svg",
  17340. extra: 1195 / 1095,
  17341. bottom: 0.034
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Micro",
  17348. height: math.unit(2, "inches")
  17349. },
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(8, "feet"),
  17353. default: true
  17354. },
  17355. {
  17356. name: "Macro",
  17357. height: math.unit(255, "feet")
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17363. {
  17364. front: {
  17365. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17366. weight: math.unit(184, "lb"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/xang/front.svg",
  17370. extra: 845 / 755
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17378. default: true
  17379. },
  17380. {
  17381. name: "Macro",
  17382. height: math.unit(0.935 * 146, "feet")
  17383. },
  17384. {
  17385. name: "Megamacro",
  17386. height: math.unit(0.935 * 3, "miles")
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17392. {
  17393. frontDressed: {
  17394. height: math.unit(5 + 7 / 12, "feet"),
  17395. weight: math.unit(140, "lb"),
  17396. name: "Front (Dressed)",
  17397. image: {
  17398. source: "./media/characters/doc-weardno/front-dressed.svg",
  17399. extra: 263 / 234
  17400. }
  17401. },
  17402. backDressed: {
  17403. height: math.unit(5 + 7 / 12, "feet"),
  17404. weight: math.unit(140, "lb"),
  17405. name: "Back (Dressed)",
  17406. image: {
  17407. source: "./media/characters/doc-weardno/back-dressed.svg",
  17408. extra: 266 / 238
  17409. }
  17410. },
  17411. front: {
  17412. height: math.unit(5 + 7 / 12, "feet"),
  17413. weight: math.unit(140, "lb"),
  17414. name: "Front",
  17415. image: {
  17416. source: "./media/characters/doc-weardno/front.svg",
  17417. extra: 254 / 233
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Micro",
  17424. height: math.unit(3, "inches")
  17425. },
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(5 + 7 / 12, "feet"),
  17429. default: true
  17430. },
  17431. {
  17432. name: "Macro",
  17433. height: math.unit(25, "feet")
  17434. },
  17435. {
  17436. name: "Megamacro",
  17437. height: math.unit(2, "miles")
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17443. {
  17444. front: {
  17445. height: math.unit(6 + 2 / 12, "feet"),
  17446. weight: math.unit(153, "lb"),
  17447. name: "Front",
  17448. image: {
  17449. source: "./media/characters/seth-whilst/front.svg",
  17450. bottom: 0.07
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Micro",
  17457. height: math.unit(5, "inches")
  17458. },
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(6 + 2 / 12, "feet"),
  17462. default: true
  17463. },
  17464. ]
  17465. ))
  17466. characterMakers.push(() => makeCharacter(
  17467. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17468. {
  17469. front: {
  17470. height: math.unit(3, "inches"),
  17471. weight: math.unit(8, "grams"),
  17472. name: "Front",
  17473. image: {
  17474. source: "./media/characters/pocket-jabari/front.svg",
  17475. extra: 1024 / 974,
  17476. bottom: 0.039
  17477. }
  17478. },
  17479. },
  17480. [
  17481. {
  17482. name: "Minimicro",
  17483. height: math.unit(8, "mm")
  17484. },
  17485. {
  17486. name: "Micro",
  17487. height: math.unit(3, "inches"),
  17488. default: true
  17489. },
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(3, "feet")
  17493. },
  17494. ]
  17495. ))
  17496. characterMakers.push(() => makeCharacter(
  17497. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17498. {
  17499. front: {
  17500. height: math.unit(15, "feet"),
  17501. weight: math.unit(3280, "lb"),
  17502. name: "Front",
  17503. image: {
  17504. source: "./media/characters/sapphy/front.svg",
  17505. extra: 671 / 577,
  17506. bottom: 0.085
  17507. }
  17508. },
  17509. back: {
  17510. height: math.unit(15, "feet"),
  17511. weight: math.unit(3280, "lb"),
  17512. name: "Back",
  17513. image: {
  17514. source: "./media/characters/sapphy/back.svg",
  17515. extra: 631 / 607,
  17516. bottom: 0.045
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(15, "feet")
  17524. },
  17525. {
  17526. name: "Casual Macro",
  17527. height: math.unit(120, "feet")
  17528. },
  17529. {
  17530. name: "Macro",
  17531. height: math.unit(2150, "feet"),
  17532. default: true
  17533. },
  17534. {
  17535. name: "Megamacro",
  17536. height: math.unit(8, "miles")
  17537. },
  17538. {
  17539. name: "Galaxy Mom",
  17540. height: math.unit(6, "megalightyears")
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(6, "feet"),
  17549. weight: math.unit(170, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/kiro/front.svg",
  17553. extra: 1064 / 1012,
  17554. bottom: 0.052
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Micro",
  17561. height: math.unit(6, "inches")
  17562. },
  17563. {
  17564. name: "Normal",
  17565. height: math.unit(6, "feet"),
  17566. default: true
  17567. },
  17568. {
  17569. name: "Macro",
  17570. height: math.unit(72, "feet")
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(5 + 9 / 12, "feet"),
  17579. weight: math.unit(175, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/irishfox/front.svg",
  17583. extra: 1912 / 1680,
  17584. bottom: 0.02
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Nano",
  17591. height: math.unit(1, "mm")
  17592. },
  17593. {
  17594. name: "Micro",
  17595. height: math.unit(2, "inches")
  17596. },
  17597. {
  17598. name: "Normal",
  17599. height: math.unit(5 + 9 / 12, "feet"),
  17600. default: true
  17601. },
  17602. {
  17603. name: "Macro",
  17604. height: math.unit(45, "feet")
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17610. {
  17611. front: {
  17612. height: math.unit(6 + 1 / 12, "feet"),
  17613. weight: math.unit(150, "lb"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/aronai-sieyes/front.svg",
  17617. extra: 1556 / 1480,
  17618. bottom: 0.015
  17619. }
  17620. },
  17621. side: {
  17622. height: math.unit(6 + 1 / 12, "feet"),
  17623. weight: math.unit(150, "lb"),
  17624. name: "Side",
  17625. image: {
  17626. source: "./media/characters/aronai-sieyes/side.svg",
  17627. extra: 1433 / 1390,
  17628. bottom: 0.0393
  17629. }
  17630. },
  17631. back: {
  17632. height: math.unit(6 + 1 / 12, "feet"),
  17633. weight: math.unit(150, "lb"),
  17634. name: "Back",
  17635. image: {
  17636. source: "./media/characters/aronai-sieyes/back.svg",
  17637. extra: 1544 / 1494,
  17638. bottom: 0.02
  17639. }
  17640. },
  17641. frontClothed: {
  17642. height: math.unit(6 + 1 / 12, "feet"),
  17643. weight: math.unit(150, "lb"),
  17644. name: "Front (Clothed)",
  17645. image: {
  17646. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17647. extra: 1582 / 1527
  17648. }
  17649. },
  17650. feral: {
  17651. height: math.unit(18, "feet"),
  17652. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17653. name: "Feral",
  17654. image: {
  17655. source: "./media/characters/aronai-sieyes/feral.svg",
  17656. extra: 1530 / 1240,
  17657. bottom: 0.035
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Micro",
  17664. height: math.unit(2, "inches")
  17665. },
  17666. {
  17667. name: "Normal",
  17668. height: math.unit(6 + 1 / 12, "feet"),
  17669. default: true
  17670. }
  17671. ]
  17672. ))
  17673. characterMakers.push(() => makeCharacter(
  17674. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17675. {
  17676. front: {
  17677. height: math.unit(12, "feet"),
  17678. weight: math.unit(410, "kg"),
  17679. name: "Front",
  17680. image: {
  17681. source: "./media/characters/xuna/front.svg",
  17682. extra: 2184 / 1980
  17683. }
  17684. },
  17685. side: {
  17686. height: math.unit(12, "feet"),
  17687. weight: math.unit(410, "kg"),
  17688. name: "Side",
  17689. image: {
  17690. source: "./media/characters/xuna/side.svg",
  17691. extra: 2184 / 1980
  17692. }
  17693. },
  17694. back: {
  17695. height: math.unit(12, "feet"),
  17696. weight: math.unit(410, "kg"),
  17697. name: "Back",
  17698. image: {
  17699. source: "./media/characters/xuna/back.svg",
  17700. extra: 2184 / 1980
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Nano glow",
  17707. height: math.unit(10, "nm")
  17708. },
  17709. {
  17710. name: "Micro floof",
  17711. height: math.unit(0.3, "m")
  17712. },
  17713. {
  17714. name: "Huggable softy boi",
  17715. height: math.unit(3.6576, "m"),
  17716. default: true
  17717. },
  17718. {
  17719. name: "Admirable floof",
  17720. height: math.unit(80, "meters")
  17721. },
  17722. {
  17723. name: "Gentle macro",
  17724. height: math.unit(300, "meters")
  17725. },
  17726. {
  17727. name: "Very careful floof",
  17728. height: math.unit(3200, "meters")
  17729. },
  17730. {
  17731. name: "The mega floof",
  17732. height: math.unit(36000, "meters")
  17733. },
  17734. {
  17735. name: "Giga-fur-Wicker",
  17736. height: math.unit(4800000, "meters")
  17737. },
  17738. {
  17739. name: "Licky world",
  17740. height: math.unit(20000000, "meters")
  17741. },
  17742. {
  17743. name: "Floofy cyan sun",
  17744. height: math.unit(1500000000, "meters")
  17745. },
  17746. {
  17747. name: "Milky Wicker",
  17748. height: math.unit(1000000000000000000000, "meters")
  17749. },
  17750. {
  17751. name: "The observing Wicker",
  17752. height: math.unit(999999999999999999999999999, "meters")
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(5 + 9 / 12, "feet"),
  17761. weight: math.unit(150, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/arokha-sieyes/front.svg",
  17765. extra: 1425 / 1284,
  17766. bottom: 0.05
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(5 + 9 / 12, "feet")
  17774. },
  17775. {
  17776. name: "Macro",
  17777. height: math.unit(30, "meters"),
  17778. default: true
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17784. {
  17785. front: {
  17786. height: math.unit(6, "feet"),
  17787. weight: math.unit(180, "lb"),
  17788. name: "Front",
  17789. image: {
  17790. source: "./media/characters/arokh-sieyes/front.svg",
  17791. extra: 1830 / 1769,
  17792. bottom: 0.01
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(6, "feet")
  17800. },
  17801. {
  17802. name: "Macro",
  17803. height: math.unit(30, "meters"),
  17804. default: true
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17810. {
  17811. side: {
  17812. height: math.unit(13 + 1 / 12, "feet"),
  17813. weight: math.unit(8.5, "tonnes"),
  17814. name: "Side",
  17815. image: {
  17816. source: "./media/characters/goldeneye/side.svg",
  17817. extra: 1182 / 778,
  17818. bottom: 0.067
  17819. }
  17820. },
  17821. paw: {
  17822. height: math.unit(3.4, "feet"),
  17823. name: "Paw",
  17824. image: {
  17825. source: "./media/characters/goldeneye/paw.svg"
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Normal",
  17832. height: math.unit(13 + 1 / 12, "feet"),
  17833. default: true
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17839. {
  17840. front: {
  17841. height: math.unit(6 + 1 / 12, "feet"),
  17842. weight: math.unit(210, "lb"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/leonardo-lycheborne/front.svg",
  17846. extra: 390 / 365,
  17847. bottom: 0.032
  17848. }
  17849. },
  17850. side: {
  17851. height: math.unit(6 + 1 / 12, "feet"),
  17852. weight: math.unit(210, "lb"),
  17853. name: "Side",
  17854. image: {
  17855. source: "./media/characters/leonardo-lycheborne/side.svg",
  17856. extra: 390 / 365,
  17857. bottom: 0.005
  17858. }
  17859. },
  17860. back: {
  17861. height: math.unit(6 + 1 / 12, "feet"),
  17862. weight: math.unit(210, "lb"),
  17863. name: "Back",
  17864. image: {
  17865. source: "./media/characters/leonardo-lycheborne/back.svg",
  17866. extra: 392 / 366,
  17867. bottom: 0.01
  17868. }
  17869. },
  17870. hand: {
  17871. height: math.unit(1.08, "feet"),
  17872. name: "Hand",
  17873. image: {
  17874. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17875. }
  17876. },
  17877. foot: {
  17878. height: math.unit(1.32, "feet"),
  17879. name: "Foot",
  17880. image: {
  17881. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17882. }
  17883. },
  17884. were: {
  17885. height: math.unit(20, "feet"),
  17886. weight: math.unit(7800, "lb"),
  17887. name: "Were",
  17888. image: {
  17889. source: "./media/characters/leonardo-lycheborne/were.svg",
  17890. extra: 308 / 294,
  17891. bottom: 0.048
  17892. }
  17893. },
  17894. feral: {
  17895. height: math.unit(7.5, "feet"),
  17896. weight: math.unit(600, "lb"),
  17897. name: "Feral",
  17898. image: {
  17899. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17900. extra: 210 / 186,
  17901. bottom: 0.108
  17902. }
  17903. },
  17904. taur: {
  17905. height: math.unit(11, "feet"),
  17906. weight: math.unit(3300, "lb"),
  17907. name: "Taur",
  17908. image: {
  17909. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17910. extra: 320 / 303,
  17911. bottom: 0.025
  17912. }
  17913. },
  17914. barghest: {
  17915. height: math.unit(11, "feet"),
  17916. weight: math.unit(1300, "lb"),
  17917. name: "Barghest",
  17918. image: {
  17919. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17920. extra: 323 / 302,
  17921. bottom: 0.027
  17922. }
  17923. },
  17924. dick: {
  17925. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17926. name: "Dick",
  17927. image: {
  17928. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17929. }
  17930. },
  17931. dickWere: {
  17932. height: math.unit((20) / 3.8, "feet"),
  17933. name: "Dick (Were)",
  17934. image: {
  17935. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(6 + 1 / 12, "feet"),
  17943. default: true
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(10, "feet"),
  17952. weight: math.unit(350, "lb"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/jet/front.svg",
  17956. extra: 2050 / 1980,
  17957. bottom: 0.013
  17958. }
  17959. },
  17960. back: {
  17961. height: math.unit(10, "feet"),
  17962. weight: math.unit(350, "lb"),
  17963. name: "Back",
  17964. image: {
  17965. source: "./media/characters/jet/back.svg",
  17966. extra: 2050 / 1980,
  17967. bottom: 0.013
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Micro",
  17974. height: math.unit(6, "inches")
  17975. },
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(10, "feet"),
  17979. default: true
  17980. },
  17981. {
  17982. name: "Macro",
  17983. height: math.unit(100, "feet")
  17984. },
  17985. ]
  17986. ))
  17987. characterMakers.push(() => makeCharacter(
  17988. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  17989. {
  17990. front: {
  17991. height: math.unit(15, "feet"),
  17992. weight: math.unit(2800, "lb"),
  17993. name: "Front",
  17994. image: {
  17995. source: "./media/characters/tanarath/front.svg",
  17996. extra: 2392 / 2220,
  17997. bottom: 0.03
  17998. }
  17999. },
  18000. back: {
  18001. height: math.unit(15, "feet"),
  18002. weight: math.unit(2800, "lb"),
  18003. name: "Back",
  18004. image: {
  18005. source: "./media/characters/tanarath/back.svg",
  18006. extra: 2392 / 2220,
  18007. bottom: 0.03
  18008. }
  18009. },
  18010. },
  18011. [
  18012. {
  18013. name: "Normal",
  18014. height: math.unit(15, "feet"),
  18015. default: true
  18016. },
  18017. ]
  18018. ))
  18019. characterMakers.push(() => makeCharacter(
  18020. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18021. {
  18022. front: {
  18023. height: math.unit(7 + 1 / 12, "feet"),
  18024. weight: math.unit(175, "lb"),
  18025. name: "Front",
  18026. image: {
  18027. source: "./media/characters/patty-cattybatty/front.svg",
  18028. extra: 908 / 874,
  18029. bottom: 0.025
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Micro",
  18036. height: math.unit(1, "inch")
  18037. },
  18038. {
  18039. name: "Normal",
  18040. height: math.unit(7 + 1 / 12, "feet")
  18041. },
  18042. {
  18043. name: "Mini Macro",
  18044. height: math.unit(155, "feet")
  18045. },
  18046. {
  18047. name: "Macro",
  18048. height: math.unit(1077, "feet")
  18049. },
  18050. {
  18051. name: "Mega Macro",
  18052. height: math.unit(47650, "feet"),
  18053. default: true
  18054. },
  18055. {
  18056. name: "Giga Macro",
  18057. height: math.unit(440, "miles")
  18058. },
  18059. {
  18060. name: "Tera Macro",
  18061. height: math.unit(8700, "miles")
  18062. },
  18063. {
  18064. name: "Planetary Macro",
  18065. height: math.unit(32700, "miles")
  18066. },
  18067. {
  18068. name: "Solar Macro",
  18069. height: math.unit(550000, "miles")
  18070. },
  18071. {
  18072. name: "Celestial Macro",
  18073. height: math.unit(2.5, "AU")
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18079. {
  18080. front: {
  18081. height: math.unit(4 + 5 / 12, "feet"),
  18082. weight: math.unit(90, "lb"),
  18083. name: "Front",
  18084. image: {
  18085. source: "./media/characters/cappu/front.svg",
  18086. extra: 1247 / 1152,
  18087. bottom: 0.012
  18088. }
  18089. },
  18090. },
  18091. [
  18092. {
  18093. name: "Normal",
  18094. height: math.unit(4 + 5 / 12, "feet"),
  18095. default: true
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18101. {
  18102. frontDressed: {
  18103. height: math.unit(70, "cm"),
  18104. weight: math.unit(6, "kg"),
  18105. name: "Front (Dressed)",
  18106. image: {
  18107. source: "./media/characters/sebi/front-dressed.svg",
  18108. extra: 713.5 / 686.5,
  18109. bottom: 0.003
  18110. }
  18111. },
  18112. front: {
  18113. height: math.unit(70, "cm"),
  18114. weight: math.unit(5, "kg"),
  18115. name: "Front",
  18116. image: {
  18117. source: "./media/characters/sebi/front.svg",
  18118. extra: 713.5 / 686.5,
  18119. bottom: 0.003
  18120. }
  18121. }
  18122. },
  18123. [
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(70, "cm"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Macro",
  18131. height: math.unit(8, "meters")
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(6, "feet"),
  18140. weight: math.unit(150, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/typhek/front.svg",
  18144. extra: 1948 / 1929,
  18145. bottom: 0.025
  18146. }
  18147. },
  18148. side: {
  18149. height: math.unit(6, "feet"),
  18150. weight: math.unit(150, "lb"),
  18151. name: "Side",
  18152. image: {
  18153. source: "./media/characters/typhek/side.svg",
  18154. extra: 2034 / 2010,
  18155. bottom: 0.003
  18156. }
  18157. },
  18158. back: {
  18159. height: math.unit(6, "feet"),
  18160. weight: math.unit(150, "lb"),
  18161. name: "Back",
  18162. image: {
  18163. source: "./media/characters/typhek/back.svg",
  18164. extra: 2005 / 1978,
  18165. bottom: 0.004
  18166. }
  18167. },
  18168. palm: {
  18169. height: math.unit(1.2, "feet"),
  18170. name: "Palm",
  18171. image: {
  18172. source: "./media/characters/typhek/palm.svg"
  18173. }
  18174. },
  18175. fist: {
  18176. height: math.unit(1.1, "feet"),
  18177. name: "Fist",
  18178. image: {
  18179. source: "./media/characters/typhek/fist.svg"
  18180. }
  18181. },
  18182. foot: {
  18183. height: math.unit(1.57, "feet"),
  18184. name: "Foot",
  18185. image: {
  18186. source: "./media/characters/typhek/foot.svg"
  18187. }
  18188. },
  18189. sole: {
  18190. height: math.unit(2.05, "feet"),
  18191. name: "Sole",
  18192. image: {
  18193. source: "./media/characters/typhek/sole.svg"
  18194. }
  18195. },
  18196. },
  18197. [
  18198. {
  18199. name: "Macro",
  18200. height: math.unit(40, "stories"),
  18201. default: true
  18202. },
  18203. {
  18204. name: "Megamacro",
  18205. height: math.unit(1, "mile")
  18206. },
  18207. {
  18208. name: "Gigamacro",
  18209. height: math.unit(4000, "solarradii")
  18210. },
  18211. {
  18212. name: "Universal",
  18213. height: math.unit(1.1, "universes")
  18214. }
  18215. ]
  18216. ))
  18217. characterMakers.push(() => makeCharacter(
  18218. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18219. {
  18220. side: {
  18221. height: math.unit(5 + 7 / 12, "feet"),
  18222. weight: math.unit(150, "lb"),
  18223. name: "Side",
  18224. image: {
  18225. source: "./media/characters/kassy/side.svg",
  18226. extra: 1280 / 1225,
  18227. bottom: 0.002
  18228. }
  18229. },
  18230. front: {
  18231. height: math.unit(5 + 7 / 12, "feet"),
  18232. weight: math.unit(150, "lb"),
  18233. name: "Front",
  18234. image: {
  18235. source: "./media/characters/kassy/front.svg",
  18236. extra: 1280 / 1225,
  18237. bottom: 0.025
  18238. }
  18239. },
  18240. back: {
  18241. height: math.unit(5 + 7 / 12, "feet"),
  18242. weight: math.unit(150, "lb"),
  18243. name: "Back",
  18244. image: {
  18245. source: "./media/characters/kassy/back.svg",
  18246. extra: 1280 / 1225,
  18247. bottom: 0.002
  18248. }
  18249. },
  18250. foot: {
  18251. height: math.unit(1.266, "feet"),
  18252. name: "Foot",
  18253. image: {
  18254. source: "./media/characters/kassy/foot.svg"
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(5 + 7 / 12, "feet")
  18262. },
  18263. {
  18264. name: "Macro",
  18265. height: math.unit(137, "feet"),
  18266. default: true
  18267. },
  18268. {
  18269. name: "Megamacro",
  18270. height: math.unit(1, "mile")
  18271. },
  18272. ]
  18273. ))
  18274. characterMakers.push(() => makeCharacter(
  18275. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18276. {
  18277. front: {
  18278. height: math.unit(6 + 1 / 12, "feet"),
  18279. weight: math.unit(200, "lb"),
  18280. name: "Front",
  18281. image: {
  18282. source: "./media/characters/neil/front.svg",
  18283. extra: 1326 / 1250,
  18284. bottom: 0.023
  18285. }
  18286. },
  18287. },
  18288. [
  18289. {
  18290. name: "Normal",
  18291. height: math.unit(6 + 1 / 12, "feet"),
  18292. default: true
  18293. },
  18294. {
  18295. name: "Macro",
  18296. height: math.unit(200, "feet")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(5 + 9 / 12, "feet"),
  18305. weight: math.unit(190, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/atticus/front.svg",
  18309. extra: 2934 / 2785,
  18310. bottom: 0.025
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(5 + 9 / 12, "feet"),
  18318. default: true
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(180, "feet")
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18328. {
  18329. side: {
  18330. height: math.unit(9, "feet"),
  18331. weight: math.unit(650, "lb"),
  18332. name: "Side",
  18333. image: {
  18334. source: "./media/characters/milo/side.svg",
  18335. extra: 2644 / 2310,
  18336. bottom: 0.032
  18337. }
  18338. },
  18339. },
  18340. [
  18341. {
  18342. name: "Normal",
  18343. height: math.unit(9, "feet"),
  18344. default: true
  18345. },
  18346. {
  18347. name: "Macro",
  18348. height: math.unit(300, "feet")
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18354. {
  18355. side: {
  18356. height: math.unit(8, "meters"),
  18357. weight: math.unit(90000, "kg"),
  18358. name: "Side",
  18359. image: {
  18360. source: "./media/characters/ijzer/side.svg",
  18361. extra: 2756 / 1600,
  18362. bottom: 0.01
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Small",
  18369. height: math.unit(3, "meters")
  18370. },
  18371. {
  18372. name: "Normal",
  18373. height: math.unit(8, "meters"),
  18374. default: true
  18375. },
  18376. {
  18377. name: "Normal+",
  18378. height: math.unit(10, "meters")
  18379. },
  18380. {
  18381. name: "Bigger",
  18382. height: math.unit(24, "meters")
  18383. },
  18384. {
  18385. name: "Huge",
  18386. height: math.unit(80, "meters")
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18392. {
  18393. front: {
  18394. height: math.unit(6 + 2 / 12, "feet"),
  18395. weight: math.unit(153, "lb"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/luca-cervicum/front.svg",
  18399. extra: 370 / 327,
  18400. bottom: 0.015
  18401. }
  18402. },
  18403. back: {
  18404. height: math.unit(6 + 2 / 12, "feet"),
  18405. weight: math.unit(153, "lb"),
  18406. name: "Back",
  18407. image: {
  18408. source: "./media/characters/luca-cervicum/back.svg",
  18409. extra: 367 / 333,
  18410. bottom: 0.005
  18411. }
  18412. },
  18413. frontGear: {
  18414. height: math.unit(6 + 2 / 12, "feet"),
  18415. weight: math.unit(173, "lb"),
  18416. name: "Front (Gear)",
  18417. image: {
  18418. source: "./media/characters/luca-cervicum/front-gear.svg",
  18419. extra: 377 / 333,
  18420. bottom: 0.006
  18421. }
  18422. },
  18423. },
  18424. [
  18425. {
  18426. name: "Normal",
  18427. height: math.unit(6 + 2 / 12, "feet"),
  18428. default: true
  18429. },
  18430. ]
  18431. ))
  18432. characterMakers.push(() => makeCharacter(
  18433. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18434. {
  18435. front: {
  18436. height: math.unit(6 + 1 / 12, "feet"),
  18437. weight: math.unit(304, "lb"),
  18438. name: "Front",
  18439. image: {
  18440. source: "./media/characters/oliver/front.svg",
  18441. extra: 157 / 143,
  18442. bottom: 0.08
  18443. }
  18444. },
  18445. },
  18446. [
  18447. {
  18448. name: "Normal",
  18449. height: math.unit(6 + 1 / 12, "feet"),
  18450. default: true
  18451. },
  18452. ]
  18453. ))
  18454. characterMakers.push(() => makeCharacter(
  18455. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18456. {
  18457. front: {
  18458. height: math.unit(5 + 7 / 12, "feet"),
  18459. weight: math.unit(140, "lb"),
  18460. name: "Front",
  18461. image: {
  18462. source: "./media/characters/shane/front.svg",
  18463. extra: 304 / 289,
  18464. bottom: 0.005
  18465. }
  18466. },
  18467. },
  18468. [
  18469. {
  18470. name: "Normal",
  18471. height: math.unit(5 + 7 / 12, "feet"),
  18472. default: true
  18473. },
  18474. ]
  18475. ))
  18476. characterMakers.push(() => makeCharacter(
  18477. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18478. {
  18479. front: {
  18480. height: math.unit(5 + 9 / 12, "feet"),
  18481. weight: math.unit(178, "lb"),
  18482. name: "Front",
  18483. image: {
  18484. source: "./media/characters/shin/front.svg",
  18485. extra: 159 / 151,
  18486. bottom: 0.015
  18487. }
  18488. },
  18489. },
  18490. [
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(5 + 9 / 12, "feet"),
  18494. default: true
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18500. {
  18501. front: {
  18502. height: math.unit(5 + 10 / 12, "feet"),
  18503. weight: math.unit(168, "lb"),
  18504. name: "Front",
  18505. image: {
  18506. source: "./media/characters/xerxes/front.svg",
  18507. extra: 282 / 260,
  18508. bottom: 0.045
  18509. }
  18510. },
  18511. },
  18512. [
  18513. {
  18514. name: "Normal",
  18515. height: math.unit(5 + 10 / 12, "feet"),
  18516. default: true
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18522. {
  18523. front: {
  18524. height: math.unit(6 + 7 / 12, "feet"),
  18525. weight: math.unit(208, "lb"),
  18526. name: "Front",
  18527. image: {
  18528. source: "./media/characters/chaska/front.svg",
  18529. extra: 332 / 319,
  18530. bottom: 0.015
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(6 + 7 / 12, "feet"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18544. {
  18545. front: {
  18546. height: math.unit(5 + 8 / 12, "feet"),
  18547. weight: math.unit(208, "lb"),
  18548. name: "Front",
  18549. image: {
  18550. source: "./media/characters/enuk/front.svg",
  18551. extra: 437 / 406,
  18552. bottom: 0.02
  18553. }
  18554. },
  18555. },
  18556. [
  18557. {
  18558. name: "Normal",
  18559. height: math.unit(5 + 8 / 12, "feet"),
  18560. default: true
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18566. {
  18567. front: {
  18568. height: math.unit(5 + 10 / 12, "feet"),
  18569. weight: math.unit(252, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/bruun/front.svg",
  18573. extra: 197 / 187,
  18574. bottom: 0.012
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(5 + 10 / 12, "feet"),
  18582. default: true
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18588. {
  18589. front: {
  18590. height: math.unit(6 + 10 / 12, "feet"),
  18591. weight: math.unit(255, "lb"),
  18592. name: "Front",
  18593. image: {
  18594. source: "./media/characters/alexeev/front.svg",
  18595. extra: 213 / 200,
  18596. bottom: 0.05
  18597. }
  18598. },
  18599. },
  18600. [
  18601. {
  18602. name: "Normal",
  18603. height: math.unit(6 + 10 / 12, "feet"),
  18604. default: true
  18605. },
  18606. ]
  18607. ))
  18608. characterMakers.push(() => makeCharacter(
  18609. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18610. {
  18611. front: {
  18612. height: math.unit(2 + 8 / 12, "feet"),
  18613. weight: math.unit(22, "lb"),
  18614. name: "Front",
  18615. image: {
  18616. source: "./media/characters/evelyn/front.svg",
  18617. extra: 208 / 180
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Normal",
  18624. height: math.unit(2 + 8 / 12, "feet"),
  18625. default: true
  18626. },
  18627. ]
  18628. ))
  18629. characterMakers.push(() => makeCharacter(
  18630. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18631. {
  18632. front: {
  18633. height: math.unit(5 + 9 / 12, "feet"),
  18634. weight: math.unit(139, "lb"),
  18635. name: "Front",
  18636. image: {
  18637. source: "./media/characters/inca/front.svg",
  18638. extra: 294 / 291,
  18639. bottom: 0.03
  18640. }
  18641. },
  18642. },
  18643. [
  18644. {
  18645. name: "Normal",
  18646. height: math.unit(5 + 9 / 12, "feet"),
  18647. default: true
  18648. },
  18649. ]
  18650. ))
  18651. characterMakers.push(() => makeCharacter(
  18652. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18653. {
  18654. front: {
  18655. height: math.unit(5 + 1 / 12, "feet"),
  18656. weight: math.unit(84, "lb"),
  18657. name: "Front",
  18658. image: {
  18659. source: "./media/characters/magdalene/front.svg",
  18660. extra: 293 / 273
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(5 + 1 / 12, "feet"),
  18668. default: true
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18674. {
  18675. front: {
  18676. height: math.unit(6 + 3 / 12, "feet"),
  18677. weight: math.unit(185, "lb"),
  18678. name: "Front",
  18679. image: {
  18680. source: "./media/characters/mera/front.svg",
  18681. extra: 291 / 277,
  18682. bottom: 0.03
  18683. }
  18684. },
  18685. },
  18686. [
  18687. {
  18688. name: "Normal",
  18689. height: math.unit(6 + 3 / 12, "feet"),
  18690. default: true
  18691. },
  18692. ]
  18693. ))
  18694. characterMakers.push(() => makeCharacter(
  18695. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18696. {
  18697. front: {
  18698. height: math.unit(6 + 7 / 12, "feet"),
  18699. weight: math.unit(160, "lb"),
  18700. name: "Front",
  18701. image: {
  18702. source: "./media/characters/ceres/front.svg",
  18703. extra: 1023 / 950,
  18704. bottom: 0.027
  18705. }
  18706. },
  18707. back: {
  18708. height: math.unit(6 + 7 / 12, "feet"),
  18709. weight: math.unit(160, "lb"),
  18710. name: "Back",
  18711. image: {
  18712. source: "./media/characters/ceres/back.svg",
  18713. extra: 1023 / 950
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(6 + 7 / 12, "feet"),
  18721. default: true
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(5 + 10 / 12, "feet"),
  18730. weight: math.unit(150, "lb"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/kris/front.svg",
  18734. extra: 885 / 803,
  18735. bottom: 0.03
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(5 + 10 / 12, "feet"),
  18743. default: true
  18744. },
  18745. ]
  18746. ))
  18747. characterMakers.push(() => makeCharacter(
  18748. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18749. {
  18750. front: {
  18751. height: math.unit(7, "feet"),
  18752. weight: math.unit(120, "kg"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/taluthus/front.svg",
  18756. extra: 903 / 833,
  18757. bottom: 0.015
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(7, "feet"),
  18765. default: true
  18766. },
  18767. {
  18768. name: "Macro",
  18769. height: math.unit(300, "feet")
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18775. {
  18776. front: {
  18777. height: math.unit(5 + 9 / 12, "feet"),
  18778. weight: math.unit(145, "lb"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/dawn/front.svg",
  18782. extra: 2094 / 2016,
  18783. bottom: 0.025
  18784. }
  18785. },
  18786. back: {
  18787. height: math.unit(5 + 9 / 12, "feet"),
  18788. weight: math.unit(160, "lb"),
  18789. name: "Back",
  18790. image: {
  18791. source: "./media/characters/dawn/back.svg",
  18792. extra: 2112 / 2080,
  18793. bottom: 0.005
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(6 + 7 / 12, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18807. {
  18808. anthro: {
  18809. height: math.unit(8 + 3 / 12, "feet"),
  18810. weight: math.unit(450, "lb"),
  18811. name: "Anthro",
  18812. image: {
  18813. source: "./media/characters/arador/anthro.svg",
  18814. extra: 1835 / 1718,
  18815. bottom: 0.025
  18816. }
  18817. },
  18818. feral: {
  18819. height: math.unit(4, "feet"),
  18820. weight: math.unit(200, "lb"),
  18821. name: "Feral",
  18822. image: {
  18823. source: "./media/characters/arador/feral.svg",
  18824. extra: 1683 / 1514,
  18825. bottom: 0.07
  18826. }
  18827. },
  18828. },
  18829. [
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(8 + 3 / 12, "feet")
  18833. },
  18834. {
  18835. name: "Macro",
  18836. height: math.unit(82.5, "feet"),
  18837. default: true
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(5 + 10 / 12, "feet"),
  18846. weight: math.unit(125, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/dharsi/front.svg",
  18850. extra: 716 / 630,
  18851. bottom: 0.035
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Nano",
  18858. height: math.unit(100, "nm")
  18859. },
  18860. {
  18861. name: "Micro",
  18862. height: math.unit(2, "inches")
  18863. },
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(5 + 10 / 12, "feet"),
  18867. default: true
  18868. },
  18869. {
  18870. name: "Macro",
  18871. height: math.unit(1000, "feet")
  18872. },
  18873. {
  18874. name: "Megamacro",
  18875. height: math.unit(10, "miles")
  18876. },
  18877. {
  18878. name: "Gigamacro",
  18879. height: math.unit(3000, "miles")
  18880. },
  18881. {
  18882. name: "Teramacro",
  18883. height: math.unit(500000, "miles")
  18884. },
  18885. {
  18886. name: "Teramacro+",
  18887. height: math.unit(30, "galaxies")
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18893. {
  18894. front: {
  18895. height: math.unit(6, "feet"),
  18896. weight: math.unit(150, "lb"),
  18897. name: "Front",
  18898. image: {
  18899. source: "./media/characters/deathy/front.svg",
  18900. extra: 1552 / 1463,
  18901. bottom: 0.025
  18902. }
  18903. },
  18904. side: {
  18905. height: math.unit(6, "feet"),
  18906. weight: math.unit(150, "lb"),
  18907. name: "Side",
  18908. image: {
  18909. source: "./media/characters/deathy/side.svg",
  18910. extra: 1604 / 1455,
  18911. bottom: 0.025
  18912. }
  18913. },
  18914. back: {
  18915. height: math.unit(6, "feet"),
  18916. weight: math.unit(150, "lb"),
  18917. name: "Back",
  18918. image: {
  18919. source: "./media/characters/deathy/back.svg",
  18920. extra: 1580 / 1463,
  18921. bottom: 0.005
  18922. }
  18923. },
  18924. },
  18925. [
  18926. {
  18927. name: "Micro",
  18928. height: math.unit(5, "millimeters")
  18929. },
  18930. {
  18931. name: "Normal",
  18932. height: math.unit(6 + 5 / 12, "feet"),
  18933. default: true
  18934. },
  18935. ]
  18936. ))
  18937. characterMakers.push(() => makeCharacter(
  18938. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18939. {
  18940. front: {
  18941. height: math.unit(16, "feet"),
  18942. weight: math.unit(4000, "lb"),
  18943. name: "Front",
  18944. image: {
  18945. source: "./media/characters/juniper/front.svg",
  18946. bottom: 0.04
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(16, "feet"),
  18954. default: true
  18955. },
  18956. ]
  18957. ))
  18958. characterMakers.push(() => makeCharacter(
  18959. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18960. {
  18961. front: {
  18962. height: math.unit(6, "feet"),
  18963. weight: math.unit(150, "lb"),
  18964. name: "Front",
  18965. image: {
  18966. source: "./media/characters/hipster/front.svg",
  18967. extra: 1312 / 1209,
  18968. bottom: 0.025
  18969. }
  18970. },
  18971. back: {
  18972. height: math.unit(6, "feet"),
  18973. weight: math.unit(150, "lb"),
  18974. name: "Back",
  18975. image: {
  18976. source: "./media/characters/hipster/back.svg",
  18977. extra: 1281 / 1196,
  18978. bottom: 0.01
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Micro",
  18985. height: math.unit(1, "mm")
  18986. },
  18987. {
  18988. name: "Normal",
  18989. height: math.unit(4, "inches"),
  18990. default: true
  18991. },
  18992. {
  18993. name: "Macro",
  18994. height: math.unit(500, "feet")
  18995. },
  18996. {
  18997. name: "Megamacro",
  18998. height: math.unit(1000, "miles")
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19004. {
  19005. front: {
  19006. height: math.unit(6, "feet"),
  19007. weight: math.unit(150, "lb"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/tendirmuldr/front.svg",
  19011. extra: 1878 / 1772,
  19012. bottom: 0.015
  19013. }
  19014. },
  19015. },
  19016. [
  19017. {
  19018. name: "Megamacro",
  19019. height: math.unit(1500, "miles"),
  19020. default: true
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19026. {
  19027. front: {
  19028. height: math.unit(14, "feet"),
  19029. weight: math.unit(12000, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/mort/front.svg",
  19033. extra: 365 / 318,
  19034. bottom: 0.01
  19035. }
  19036. },
  19037. side: {
  19038. height: math.unit(14, "feet"),
  19039. weight: math.unit(12000, "lb"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/mort/side.svg",
  19043. extra: 365 / 318,
  19044. bottom: 0.052
  19045. },
  19046. default: true
  19047. },
  19048. back: {
  19049. height: math.unit(14, "feet"),
  19050. weight: math.unit(12000, "lb"),
  19051. name: "Back",
  19052. image: {
  19053. source: "./media/characters/mort/back.svg",
  19054. extra: 371 / 332,
  19055. bottom: 0.18
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(14, "feet"),
  19063. default: true
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19069. {
  19070. front: {
  19071. height: math.unit(8, "feet"),
  19072. weight: math.unit(1, "ton"),
  19073. name: "Front",
  19074. image: {
  19075. source: "./media/characters/lycoa/front.svg",
  19076. extra: 1875 / 1789,
  19077. bottom: 0.022
  19078. }
  19079. },
  19080. back: {
  19081. height: math.unit(8, "feet"),
  19082. weight: math.unit(1, "ton"),
  19083. name: "Back",
  19084. image: {
  19085. source: "./media/characters/lycoa/back.svg",
  19086. extra: 1835 / 1781,
  19087. bottom: 0.03
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Normal",
  19094. height: math.unit(8, "feet"),
  19095. default: true
  19096. },
  19097. {
  19098. name: "Macro",
  19099. height: math.unit(30, "feet")
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(4 + 2 / 12, "feet"),
  19108. weight: math.unit(70, "lb"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/naldara/front.svg",
  19112. extra: 841 / 720,
  19113. bottom: 0.04
  19114. }
  19115. },
  19116. },
  19117. [
  19118. {
  19119. name: "Normal",
  19120. height: math.unit(4 + 2 / 12, "feet"),
  19121. default: true
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(13 + 7 / 12, "feet"),
  19130. weight: math.unit(1500, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/briar/front.svg",
  19134. extra: 626 / 596,
  19135. bottom: 0.08
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Normal",
  19142. height: math.unit(13 + 7 / 12, "feet"),
  19143. default: true
  19144. },
  19145. ]
  19146. ))
  19147. characterMakers.push(() => makeCharacter(
  19148. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19149. {
  19150. side: {
  19151. height: math.unit(10, "feet"),
  19152. weight: math.unit(500, "lb"),
  19153. name: "Side",
  19154. image: {
  19155. source: "./media/characters/vanguard/side.svg",
  19156. extra: 502 / 425,
  19157. bottom: 0.087
  19158. }
  19159. },
  19160. },
  19161. [
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(10, "feet"),
  19165. default: true
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(7.5, "feet"),
  19174. weight: math.unit(2, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/artemis/front.svg",
  19178. extra: 1192 / 1075,
  19179. bottom: 0.07
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(7.5, "feet"),
  19187. default: true
  19188. },
  19189. {
  19190. name: "Enlarged",
  19191. height: math.unit(12, "feet")
  19192. },
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19197. {
  19198. front: {
  19199. height: math.unit(5 + 3 / 12, "feet"),
  19200. weight: math.unit(160, "lb"),
  19201. name: "Front",
  19202. image: {
  19203. source: "./media/characters/kira/front.svg",
  19204. extra: 906 / 786,
  19205. bottom: 0.01
  19206. }
  19207. },
  19208. back: {
  19209. height: math.unit(5 + 3 / 12, "feet"),
  19210. weight: math.unit(160, "lb"),
  19211. name: "Back",
  19212. image: {
  19213. source: "./media/characters/kira/back.svg",
  19214. extra: 882 / 757,
  19215. bottom: 0.005
  19216. }
  19217. },
  19218. frontDressed: {
  19219. height: math.unit(5 + 3 / 12, "feet"),
  19220. weight: math.unit(160, "lb"),
  19221. name: "Front (Dressed)",
  19222. image: {
  19223. source: "./media/characters/kira/front-dressed.svg",
  19224. extra: 906 / 786,
  19225. bottom: 0.01
  19226. }
  19227. },
  19228. beans: {
  19229. height: math.unit(0.92, "feet"),
  19230. name: "Beans",
  19231. image: {
  19232. source: "./media/characters/kira/beans.svg"
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(5 + 3 / 12, "feet"),
  19240. default: true
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19246. {
  19247. front: {
  19248. height: math.unit(5 + 4 / 12, "feet"),
  19249. weight: math.unit(145, "lb"),
  19250. name: "Front",
  19251. image: {
  19252. source: "./media/characters/scramble/front.svg",
  19253. extra: 763 / 727,
  19254. bottom: 0.05
  19255. }
  19256. },
  19257. back: {
  19258. height: math.unit(5 + 4 / 12, "feet"),
  19259. weight: math.unit(145, "lb"),
  19260. name: "Back",
  19261. image: {
  19262. source: "./media/characters/scramble/back.svg",
  19263. extra: 826 / 737,
  19264. bottom: 0.002
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(5 + 4 / 12, "feet"),
  19272. default: true
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19278. {
  19279. side: {
  19280. height: math.unit(6 + 2 / 12, "feet"),
  19281. weight: math.unit(190, "lb"),
  19282. name: "Side",
  19283. image: {
  19284. source: "./media/characters/biscuit/side.svg",
  19285. extra: 858 / 791,
  19286. bottom: 0.044
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(6 + 2 / 12, "feet"),
  19294. default: true
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19300. {
  19301. front: {
  19302. height: math.unit(5 + 2 / 12, "feet"),
  19303. weight: math.unit(120, "lb"),
  19304. name: "Front",
  19305. image: {
  19306. source: "./media/characters/poffin/front.svg",
  19307. extra: 786 / 680,
  19308. bottom: 0.005
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(5 + 2 / 12, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(6 + 3 / 12, "feet"),
  19325. weight: math.unit(519, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/dhari/front.svg",
  19329. extra: 1048 / 946,
  19330. bottom: 0.015
  19331. }
  19332. },
  19333. back: {
  19334. height: math.unit(6 + 3 / 12, "feet"),
  19335. weight: math.unit(519, "lb"),
  19336. name: "Back",
  19337. image: {
  19338. source: "./media/characters/dhari/back.svg",
  19339. extra: 1048 / 931,
  19340. bottom: 0.005
  19341. }
  19342. },
  19343. frontDressed: {
  19344. height: math.unit(6 + 3 / 12, "feet"),
  19345. weight: math.unit(519, "lb"),
  19346. name: "Front (Dressed)",
  19347. image: {
  19348. source: "./media/characters/dhari/front-dressed.svg",
  19349. extra: 1713 / 1546,
  19350. bottom: 0.02
  19351. }
  19352. },
  19353. backDressed: {
  19354. height: math.unit(6 + 3 / 12, "feet"),
  19355. weight: math.unit(519, "lb"),
  19356. name: "Back (Dressed)",
  19357. image: {
  19358. source: "./media/characters/dhari/back-dressed.svg",
  19359. extra: 1699 / 1537,
  19360. bottom: 0.01
  19361. }
  19362. },
  19363. maw: {
  19364. height: math.unit(0.95, "feet"),
  19365. name: "Maw",
  19366. image: {
  19367. source: "./media/characters/dhari/maw.svg"
  19368. }
  19369. },
  19370. wereFront: {
  19371. height: math.unit(12 + 8 / 12, "feet"),
  19372. weight: math.unit(4000, "lb"),
  19373. name: "Front (Were)",
  19374. image: {
  19375. source: "./media/characters/dhari/were-front.svg",
  19376. extra: 1065 / 969,
  19377. bottom: 0.015
  19378. }
  19379. },
  19380. wereBack: {
  19381. height: math.unit(12 + 8 / 12, "feet"),
  19382. weight: math.unit(4000, "lb"),
  19383. name: "Back (Were)",
  19384. image: {
  19385. source: "./media/characters/dhari/were-back.svg",
  19386. extra: 1065 / 969,
  19387. bottom: 0.012
  19388. }
  19389. },
  19390. wereMaw: {
  19391. height: math.unit(0.625, "meters"),
  19392. name: "Maw (Were)",
  19393. image: {
  19394. source: "./media/characters/dhari/were-maw.svg"
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(6 + 3 / 12, "feet"),
  19402. default: true
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19408. {
  19409. anthro: {
  19410. height: math.unit(5 + 7 / 12, "feet"),
  19411. weight: math.unit(175, "lb"),
  19412. name: "Anthro",
  19413. image: {
  19414. source: "./media/characters/rena-dyne/anthro.svg",
  19415. extra: 1849 / 1785,
  19416. bottom: 0.005
  19417. }
  19418. },
  19419. taur: {
  19420. height: math.unit(15 + 6 / 12, "feet"),
  19421. weight: math.unit(8000, "lb"),
  19422. name: "Taur",
  19423. image: {
  19424. source: "./media/characters/rena-dyne/taur.svg",
  19425. extra: 2315 / 2234,
  19426. bottom: 0.033
  19427. }
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Normal",
  19433. height: math.unit(5 + 7 / 12, "feet"),
  19434. default: true
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19440. {
  19441. front: {
  19442. height: math.unit(8, "feet"),
  19443. weight: math.unit(600, "lb"),
  19444. name: "Front",
  19445. image: {
  19446. source: "./media/characters/weremeep/front.svg",
  19447. extra: 967 / 862,
  19448. bottom: 0.01
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(8, "feet"),
  19456. default: true
  19457. },
  19458. {
  19459. name: "Lorg",
  19460. height: math.unit(12, "feet")
  19461. },
  19462. {
  19463. name: "Oh Lawd She Comin'",
  19464. height: math.unit(20, "feet")
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19470. {
  19471. front: {
  19472. height: math.unit(4, "feet"),
  19473. weight: math.unit(90, "lb"),
  19474. name: "Front",
  19475. image: {
  19476. source: "./media/characters/reza/front.svg",
  19477. extra: 1183 / 1111,
  19478. bottom: 0.017
  19479. }
  19480. },
  19481. back: {
  19482. height: math.unit(4, "feet"),
  19483. weight: math.unit(90, "lb"),
  19484. name: "Back",
  19485. image: {
  19486. source: "./media/characters/reza/back.svg",
  19487. extra: 1183 / 1111,
  19488. bottom: 0.01
  19489. }
  19490. },
  19491. drake: {
  19492. height: math.unit(30, "feet"),
  19493. weight: math.unit(246960, "lb"),
  19494. name: "Drake",
  19495. image: {
  19496. source: "./media/characters/reza/drake.svg",
  19497. extra: 2350/2024,
  19498. bottom: 60.7/2403
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(4, "feet"),
  19506. default: true
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19512. {
  19513. side: {
  19514. height: math.unit(15, "feet"),
  19515. weight: math.unit(14, "tons"),
  19516. name: "Side",
  19517. image: {
  19518. source: "./media/characters/athea/side.svg",
  19519. extra: 960 / 540,
  19520. bottom: 0.003
  19521. }
  19522. },
  19523. sitting: {
  19524. height: math.unit(6 * 2.85, "feet"),
  19525. weight: math.unit(14, "tons"),
  19526. name: "Sitting",
  19527. image: {
  19528. source: "./media/characters/athea/sitting.svg",
  19529. extra: 621 / 581,
  19530. bottom: 0.075
  19531. }
  19532. },
  19533. maw: {
  19534. height: math.unit(7.59498031496063, "feet"),
  19535. name: "Maw",
  19536. image: {
  19537. source: "./media/characters/athea/maw.svg"
  19538. }
  19539. },
  19540. },
  19541. [
  19542. {
  19543. name: "Lap Cat",
  19544. height: math.unit(2.5, "feet")
  19545. },
  19546. {
  19547. name: "Minimacro",
  19548. height: math.unit(15, "feet"),
  19549. default: true
  19550. },
  19551. {
  19552. name: "Macro",
  19553. height: math.unit(120, "feet")
  19554. },
  19555. {
  19556. name: "Macro+",
  19557. height: math.unit(640, "feet")
  19558. },
  19559. {
  19560. name: "Colossus",
  19561. height: math.unit(2.2, "miles")
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19567. {
  19568. front: {
  19569. height: math.unit(8 + 8 / 12, "feet"),
  19570. weight: math.unit(130, "kg"),
  19571. name: "Front",
  19572. image: {
  19573. source: "./media/characters/seroko/front.svg",
  19574. extra: 1385 / 1280,
  19575. bottom: 0.025
  19576. }
  19577. },
  19578. back: {
  19579. height: math.unit(8 + 8 / 12, "feet"),
  19580. weight: math.unit(130, "kg"),
  19581. name: "Back",
  19582. image: {
  19583. source: "./media/characters/seroko/back.svg",
  19584. extra: 1369 / 1238,
  19585. bottom: 0.018
  19586. }
  19587. },
  19588. frontDressed: {
  19589. height: math.unit(8 + 8 / 12, "feet"),
  19590. weight: math.unit(130, "kg"),
  19591. name: "Front (Dressed)",
  19592. image: {
  19593. source: "./media/characters/seroko/front-dressed.svg",
  19594. extra: 1366 / 1275,
  19595. bottom: 0.03
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(8 + 8 / 12, "feet"),
  19603. default: true
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19609. {
  19610. front: {
  19611. height: math.unit(5.5, "feet"),
  19612. weight: math.unit(160, "lb"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/quatzi/front.svg",
  19616. extra: 2346 / 2242,
  19617. bottom: 0.015
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(5.5, "feet"),
  19625. default: true
  19626. },
  19627. {
  19628. name: "Big",
  19629. height: math.unit(7.7, "feet")
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19635. {
  19636. front: {
  19637. height: math.unit(5 + 11 / 12, "feet"),
  19638. weight: math.unit(180, "lb"),
  19639. name: "Front",
  19640. image: {
  19641. source: "./media/characters/sen/front.svg",
  19642. extra: 1321 / 1254,
  19643. bottom: 0.015
  19644. }
  19645. },
  19646. side: {
  19647. height: math.unit(5 + 11 / 12, "feet"),
  19648. weight: math.unit(180, "lb"),
  19649. name: "Side",
  19650. image: {
  19651. source: "./media/characters/sen/side.svg",
  19652. extra: 1321 / 1254,
  19653. bottom: 0.007
  19654. }
  19655. },
  19656. back: {
  19657. height: math.unit(5 + 11 / 12, "feet"),
  19658. weight: math.unit(180, "lb"),
  19659. name: "Back",
  19660. image: {
  19661. source: "./media/characters/sen/back.svg",
  19662. extra: 1321 / 1254
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(5 + 11 / 12, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(166.6, "cm"),
  19679. weight: math.unit(66.6, "kg"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/fruity/front.svg",
  19683. extra: 1510 / 1386,
  19684. bottom: 0.04
  19685. }
  19686. },
  19687. back: {
  19688. height: math.unit(166.6, "cm"),
  19689. weight: math.unit(66.6, "lb"),
  19690. name: "Back",
  19691. image: {
  19692. source: "./media/characters/fruity/back.svg",
  19693. extra: 1563 / 1435,
  19694. bottom: 0.005
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(166.6, "cm"),
  19702. default: true
  19703. },
  19704. {
  19705. name: "Demonic",
  19706. height: math.unit(166.6, "feet")
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19712. {
  19713. side: {
  19714. height: math.unit(10, "feet"),
  19715. weight: math.unit(500, "lb"),
  19716. name: "Side",
  19717. image: {
  19718. source: "./media/characters/zost/side.svg",
  19719. extra: 966 / 880,
  19720. bottom: 0.075
  19721. }
  19722. },
  19723. mawFront: {
  19724. height: math.unit(1.08, "meters"),
  19725. name: "Maw (Front)",
  19726. image: {
  19727. source: "./media/characters/zost/maw-front.svg"
  19728. }
  19729. },
  19730. mawSide: {
  19731. height: math.unit(2.66, "feet"),
  19732. name: "Maw (Side)",
  19733. image: {
  19734. source: "./media/characters/zost/maw-side.svg"
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Normal",
  19741. height: math.unit(10, "feet"),
  19742. default: true
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(5 + 4 / 12, "feet"),
  19751. weight: math.unit(120, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/luci/front.svg",
  19755. extra: 1985 / 1884,
  19756. bottom: 0.04
  19757. }
  19758. },
  19759. back: {
  19760. height: math.unit(5 + 4 / 12, "feet"),
  19761. weight: math.unit(120, "lb"),
  19762. name: "Back",
  19763. image: {
  19764. source: "./media/characters/luci/back.svg",
  19765. extra: 1892 / 1791,
  19766. bottom: 0.002
  19767. }
  19768. },
  19769. },
  19770. [
  19771. {
  19772. name: "Normal",
  19773. height: math.unit(5 + 4 / 12, "feet"),
  19774. default: true
  19775. },
  19776. ]
  19777. ))
  19778. characterMakers.push(() => makeCharacter(
  19779. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19780. {
  19781. front: {
  19782. height: math.unit(1500, "feet"),
  19783. weight: math.unit(3.8e6, "tons"),
  19784. name: "Front",
  19785. image: {
  19786. source: "./media/characters/2th/front.svg",
  19787. extra: 3489 / 3350,
  19788. bottom: 0.1
  19789. }
  19790. },
  19791. foot: {
  19792. height: math.unit(461, "feet"),
  19793. name: "Foot",
  19794. image: {
  19795. source: "./media/characters/2th/foot.svg"
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "\"Micro\"",
  19802. height: math.unit(15 + 7 / 12, "feet")
  19803. },
  19804. {
  19805. name: "Normal",
  19806. height: math.unit(1500, "feet"),
  19807. default: true
  19808. },
  19809. {
  19810. name: "Macro",
  19811. height: math.unit(5000, "feet")
  19812. },
  19813. {
  19814. name: "Megamacro",
  19815. height: math.unit(15, "miles")
  19816. },
  19817. {
  19818. name: "Gigamacro",
  19819. height: math.unit(4000, "miles")
  19820. },
  19821. {
  19822. name: "Galactic",
  19823. height: math.unit(50, "AU")
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19829. {
  19830. front: {
  19831. height: math.unit(5 + 6 / 12, "feet"),
  19832. weight: math.unit(220, "lb"),
  19833. name: "Front",
  19834. image: {
  19835. source: "./media/characters/amethyst/front.svg",
  19836. extra: 2078 / 2040,
  19837. bottom: 0.045
  19838. }
  19839. },
  19840. back: {
  19841. height: math.unit(5 + 6 / 12, "feet"),
  19842. weight: math.unit(220, "lb"),
  19843. name: "Back",
  19844. image: {
  19845. source: "./media/characters/amethyst/back.svg",
  19846. extra: 2021 / 1989,
  19847. bottom: 0.02
  19848. }
  19849. },
  19850. },
  19851. [
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(5 + 6 / 12, "feet"),
  19855. default: true
  19856. },
  19857. ]
  19858. ))
  19859. characterMakers.push(() => makeCharacter(
  19860. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19861. {
  19862. front: {
  19863. height: math.unit(4 + 11 / 12, "feet"),
  19864. weight: math.unit(120, "lb"),
  19865. name: "Front",
  19866. image: {
  19867. source: "./media/characters/yumi-akiyama/front.svg",
  19868. extra: 1327 / 1235,
  19869. bottom: 0.02
  19870. }
  19871. },
  19872. back: {
  19873. height: math.unit(4 + 11 / 12, "feet"),
  19874. weight: math.unit(120, "lb"),
  19875. name: "Back",
  19876. image: {
  19877. source: "./media/characters/yumi-akiyama/back.svg",
  19878. extra: 1287 / 1245,
  19879. bottom: 0.002
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Galactic",
  19886. height: math.unit(50, "galaxies"),
  19887. default: true
  19888. },
  19889. {
  19890. name: "Universal",
  19891. height: math.unit(100, "universes")
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19897. {
  19898. front: {
  19899. height: math.unit(8, "feet"),
  19900. weight: math.unit(500, "lb"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/rifter-yrmori/front.svg",
  19904. extra: 1180 / 1125,
  19905. bottom: 0.02
  19906. }
  19907. },
  19908. back: {
  19909. height: math.unit(8, "feet"),
  19910. weight: math.unit(500, "lb"),
  19911. name: "Back",
  19912. image: {
  19913. source: "./media/characters/rifter-yrmori/back.svg",
  19914. extra: 1190 / 1145,
  19915. bottom: 0.001
  19916. }
  19917. },
  19918. wings: {
  19919. height: math.unit(7.75, "feet"),
  19920. weight: math.unit(500, "lb"),
  19921. name: "Wings",
  19922. image: {
  19923. source: "./media/characters/rifter-yrmori/wings.svg",
  19924. extra: 1357 / 1285
  19925. }
  19926. },
  19927. maw: {
  19928. height: math.unit(0.8, "feet"),
  19929. name: "Maw",
  19930. image: {
  19931. source: "./media/characters/rifter-yrmori/maw.svg"
  19932. }
  19933. },
  19934. },
  19935. [
  19936. {
  19937. name: "Normal",
  19938. height: math.unit(8, "feet"),
  19939. default: true
  19940. },
  19941. {
  19942. name: "Macro",
  19943. height: math.unit(42, "meters")
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  19949. {
  19950. were: {
  19951. height: math.unit(25 + 6 / 12, "feet"),
  19952. weight: math.unit(10000, "lb"),
  19953. name: "Were",
  19954. image: {
  19955. source: "./media/characters/tahajin/were.svg",
  19956. extra: 801 / 770,
  19957. bottom: 0.042
  19958. }
  19959. },
  19960. aquatic: {
  19961. height: math.unit(6 + 4 / 12, "feet"),
  19962. weight: math.unit(160, "lb"),
  19963. name: "Aquatic",
  19964. image: {
  19965. source: "./media/characters/tahajin/aquatic.svg",
  19966. extra: 572 / 542,
  19967. bottom: 0.04
  19968. }
  19969. },
  19970. chow: {
  19971. height: math.unit(8 + 11 / 12, "feet"),
  19972. weight: math.unit(450, "lb"),
  19973. name: "Chow",
  19974. image: {
  19975. source: "./media/characters/tahajin/chow.svg",
  19976. extra: 660 / 640,
  19977. bottom: 0.015
  19978. }
  19979. },
  19980. demiNaga: {
  19981. height: math.unit(6 + 8 / 12, "feet"),
  19982. weight: math.unit(300, "lb"),
  19983. name: "Demi Naga",
  19984. image: {
  19985. source: "./media/characters/tahajin/demi-naga.svg",
  19986. extra: 643 / 615,
  19987. bottom: 0.1
  19988. }
  19989. },
  19990. data: {
  19991. height: math.unit(5, "inches"),
  19992. weight: math.unit(0.1, "lb"),
  19993. name: "Data",
  19994. image: {
  19995. source: "./media/characters/tahajin/data.svg"
  19996. }
  19997. },
  19998. fluu: {
  19999. height: math.unit(5 + 7 / 12, "feet"),
  20000. weight: math.unit(140, "lb"),
  20001. name: "Fluu",
  20002. image: {
  20003. source: "./media/characters/tahajin/fluu.svg",
  20004. extra: 628 / 592,
  20005. bottom: 0.02
  20006. }
  20007. },
  20008. starWarrior: {
  20009. height: math.unit(4 + 5 / 12, "feet"),
  20010. weight: math.unit(50, "lb"),
  20011. name: "Star Warrior",
  20012. image: {
  20013. source: "./media/characters/tahajin/star-warrior.svg"
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(25 + 6 / 12, "feet"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20027. {
  20028. front: {
  20029. height: math.unit(8, "feet"),
  20030. weight: math.unit(350, "lb"),
  20031. name: "Front",
  20032. image: {
  20033. source: "./media/characters/gabira/front.svg",
  20034. extra: 608 / 580,
  20035. bottom: 0.03
  20036. }
  20037. },
  20038. back: {
  20039. height: math.unit(8, "feet"),
  20040. weight: math.unit(350, "lb"),
  20041. name: "Back",
  20042. image: {
  20043. source: "./media/characters/gabira/back.svg",
  20044. extra: 608 / 580,
  20045. bottom: 0.03
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(8, "feet"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20059. {
  20060. front: {
  20061. height: math.unit(5 + 3 / 12, "feet"),
  20062. weight: math.unit(137, "lb"),
  20063. name: "Front",
  20064. image: {
  20065. source: "./media/characters/sasha-katraine/front.svg",
  20066. bottom: 0.045
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Micro",
  20073. height: math.unit(5, "inches")
  20074. },
  20075. {
  20076. name: "Normal",
  20077. height: math.unit(5 + 3 / 12, "feet"),
  20078. default: true
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20084. {
  20085. side: {
  20086. height: math.unit(4, "inches"),
  20087. weight: math.unit(200, "grams"),
  20088. name: "Side",
  20089. image: {
  20090. source: "./media/characters/der/side.svg",
  20091. extra: 719 / 400,
  20092. bottom: 30.6 / 749.9187
  20093. }
  20094. },
  20095. },
  20096. [
  20097. {
  20098. name: "Micro",
  20099. height: math.unit(4, "inches"),
  20100. default: true
  20101. },
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20106. {
  20107. side: {
  20108. height: math.unit(30, "meters"),
  20109. weight: math.unit(700, "tonnes"),
  20110. name: "Side",
  20111. image: {
  20112. source: "./media/characters/fixerdragon/side.svg",
  20113. extra: (1293.0514 - 116.03) / 1106.86,
  20114. bottom: 116.03 / 1293.0514
  20115. }
  20116. },
  20117. },
  20118. [
  20119. {
  20120. name: "Planck",
  20121. height: math.unit(1.6e-35, "meters")
  20122. },
  20123. {
  20124. name: "Micro",
  20125. height: math.unit(0.4, "meters")
  20126. },
  20127. {
  20128. name: "Normal",
  20129. height: math.unit(30, "meters"),
  20130. default: true
  20131. },
  20132. {
  20133. name: "Megamacro",
  20134. height: math.unit(1.2, "megameters")
  20135. },
  20136. {
  20137. name: "Teramacro",
  20138. height: math.unit(130, "terameters")
  20139. },
  20140. {
  20141. name: "Yottamacro",
  20142. height: math.unit(6200, "yottameters")
  20143. },
  20144. ]
  20145. ));
  20146. characterMakers.push(() => makeCharacter(
  20147. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20148. {
  20149. front: {
  20150. height: math.unit(8, "feet"),
  20151. weight: math.unit(250, "lb"),
  20152. name: "Front",
  20153. image: {
  20154. source: "./media/characters/kite/front.svg",
  20155. extra: 2796 / 2659,
  20156. bottom: 0.002
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Normal",
  20163. height: math.unit(8, "feet"),
  20164. default: true
  20165. },
  20166. {
  20167. name: "Macro",
  20168. height: math.unit(360, "feet")
  20169. },
  20170. {
  20171. name: "Megamacro",
  20172. height: math.unit(1500, "feet")
  20173. },
  20174. ]
  20175. ))
  20176. characterMakers.push(() => makeCharacter(
  20177. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20178. {
  20179. front: {
  20180. height: math.unit(5 + 10 / 12, "feet"),
  20181. weight: math.unit(150, "lb"),
  20182. name: "Front",
  20183. image: {
  20184. source: "./media/characters/poojawa-vynar/front.svg",
  20185. extra: (1506.1547 - 55) / 1356.6,
  20186. bottom: 55 / 1506.1547
  20187. }
  20188. },
  20189. frontTailless: {
  20190. height: math.unit(5 + 10 / 12, "feet"),
  20191. weight: math.unit(150, "lb"),
  20192. name: "Front (Tailless)",
  20193. image: {
  20194. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20195. extra: (1506.1547 - 55) / 1356.6,
  20196. bottom: 55 / 1506.1547
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Normal",
  20203. height: math.unit(5 + 10 / 12, "feet"),
  20204. default: true
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20210. {
  20211. front: {
  20212. height: math.unit(293, "meters"),
  20213. weight: math.unit(70400, "tons"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/violette/front.svg",
  20217. extra: 1227 / 1180,
  20218. bottom: 0.005
  20219. }
  20220. },
  20221. back: {
  20222. height: math.unit(293, "meters"),
  20223. weight: math.unit(70400, "tons"),
  20224. name: "Back",
  20225. image: {
  20226. source: "./media/characters/violette/back.svg",
  20227. extra: 1227 / 1180,
  20228. bottom: 0.005
  20229. }
  20230. },
  20231. },
  20232. [
  20233. {
  20234. name: "Macro",
  20235. height: math.unit(293, "meters"),
  20236. default: true
  20237. },
  20238. ]
  20239. ))
  20240. characterMakers.push(() => makeCharacter(
  20241. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20242. {
  20243. front: {
  20244. height: math.unit(1050, "feet"),
  20245. weight: math.unit(200000, "tons"),
  20246. name: "Front",
  20247. image: {
  20248. source: "./media/characters/alessandra/front.svg",
  20249. extra: 960 / 912,
  20250. bottom: 0.06
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Macro",
  20257. height: math.unit(1050, "feet")
  20258. },
  20259. {
  20260. name: "Macro+",
  20261. height: math.unit(900, "meters"),
  20262. default: true
  20263. },
  20264. ]
  20265. ))
  20266. characterMakers.push(() => makeCharacter(
  20267. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20268. {
  20269. front: {
  20270. height: math.unit(5, "feet"),
  20271. weight: math.unit(187, "lb"),
  20272. name: "Front",
  20273. image: {
  20274. source: "./media/characters/person/front.svg",
  20275. extra: 3087 / 2945,
  20276. bottom: 91 / 3181
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Micro",
  20283. height: math.unit(3, "inches")
  20284. },
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(5, "feet"),
  20288. default: true
  20289. },
  20290. {
  20291. name: "Macro",
  20292. height: math.unit(90, "feet")
  20293. },
  20294. {
  20295. name: "Max Size",
  20296. height: math.unit(280, "feet")
  20297. },
  20298. ]
  20299. ))
  20300. characterMakers.push(() => makeCharacter(
  20301. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20302. {
  20303. front: {
  20304. height: math.unit(4.5, "meters"),
  20305. weight: math.unit(3200, "lb"),
  20306. name: "Front",
  20307. image: {
  20308. source: "./media/characters/ty/front.svg",
  20309. extra: 1038 / 960,
  20310. bottom: 31.156 / 1068
  20311. }
  20312. },
  20313. back: {
  20314. height: math.unit(4.5, "meters"),
  20315. weight: math.unit(3200, "lb"),
  20316. name: "Back",
  20317. image: {
  20318. source: "./media/characters/ty/back.svg",
  20319. extra: 1044 / 966,
  20320. bottom: 7.48 / 1049
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(4.5, "meters"),
  20328. default: true
  20329. },
  20330. ]
  20331. ))
  20332. characterMakers.push(() => makeCharacter(
  20333. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20334. {
  20335. front: {
  20336. height: math.unit(5 + 4 / 12, "feet"),
  20337. weight: math.unit(115, "lb"),
  20338. name: "Front",
  20339. image: {
  20340. source: "./media/characters/rocky/front.svg",
  20341. extra: 1012 / 975,
  20342. bottom: 54 / 1066
  20343. }
  20344. },
  20345. },
  20346. [
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(5 + 4 / 12, "feet"),
  20350. default: true
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20356. {
  20357. upright: {
  20358. height: math.unit(6, "meters"),
  20359. weight: math.unit(4000, "kg"),
  20360. name: "Upright",
  20361. image: {
  20362. source: "./media/characters/ruin/upright.svg",
  20363. extra: 668 / 661,
  20364. bottom: 42 / 799.8396
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(6, "meters"),
  20372. default: true
  20373. },
  20374. ]
  20375. ))
  20376. characterMakers.push(() => makeCharacter(
  20377. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20378. {
  20379. front: {
  20380. height: math.unit(5, "feet"),
  20381. weight: math.unit(106, "lb"),
  20382. name: "Front",
  20383. image: {
  20384. source: "./media/characters/robin/front.svg",
  20385. extra: 862 / 799,
  20386. bottom: 42.4 / 914.8856
  20387. }
  20388. },
  20389. },
  20390. [
  20391. {
  20392. name: "Normal",
  20393. height: math.unit(5, "feet"),
  20394. default: true
  20395. },
  20396. ]
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20400. {
  20401. side: {
  20402. height: math.unit(3, "feet"),
  20403. weight: math.unit(225, "lb"),
  20404. name: "Side",
  20405. image: {
  20406. source: "./media/characters/saian/side.svg",
  20407. extra: 566 / 356,
  20408. bottom: 79.7 / 643
  20409. }
  20410. },
  20411. maw: {
  20412. height: math.unit(2.85, "feet"),
  20413. name: "Maw",
  20414. image: {
  20415. source: "./media/characters/saian/maw.svg"
  20416. }
  20417. },
  20418. },
  20419. [
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(3, "feet"),
  20423. default: true
  20424. },
  20425. ]
  20426. ))
  20427. characterMakers.push(() => makeCharacter(
  20428. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20429. {
  20430. side: {
  20431. height: math.unit(8, "feet"),
  20432. weight: math.unit(300, "lb"),
  20433. name: "Side",
  20434. image: {
  20435. source: "./media/characters/equus-silvermane/side.svg",
  20436. extra: 2176 / 2050,
  20437. bottom: 65.7 / 2245
  20438. }
  20439. },
  20440. front: {
  20441. height: math.unit(8, "feet"),
  20442. weight: math.unit(300, "lb"),
  20443. name: "Front",
  20444. image: {
  20445. source: "./media/characters/equus-silvermane/front.svg",
  20446. extra: 4633 / 4400,
  20447. bottom: 71.3 / 4706.915
  20448. }
  20449. },
  20450. sideStepping: {
  20451. height: math.unit(8, "feet"),
  20452. weight: math.unit(300, "lb"),
  20453. name: "Side (Stepping)",
  20454. image: {
  20455. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20456. extra: 1968 / 1860,
  20457. bottom: 16.4 / 1989
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(8, "feet")
  20465. },
  20466. {
  20467. name: "Minimacro",
  20468. height: math.unit(75, "feet"),
  20469. default: true
  20470. },
  20471. {
  20472. name: "Macro",
  20473. height: math.unit(150, "feet")
  20474. },
  20475. {
  20476. name: "Macro+",
  20477. height: math.unit(1000, "feet")
  20478. },
  20479. {
  20480. name: "Megamacro",
  20481. height: math.unit(1, "mile")
  20482. },
  20483. ]
  20484. ))
  20485. characterMakers.push(() => makeCharacter(
  20486. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20487. {
  20488. side: {
  20489. height: math.unit(20, "feet"),
  20490. weight: math.unit(30000, "kg"),
  20491. name: "Side",
  20492. image: {
  20493. source: "./media/characters/windar/side.svg",
  20494. extra: 1491 / 1248,
  20495. bottom: 82.56 / 1568
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Normal",
  20502. height: math.unit(20, "feet"),
  20503. default: true
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20509. {
  20510. side: {
  20511. height: math.unit(15.66, "feet"),
  20512. weight: math.unit(150, "lb"),
  20513. name: "Side",
  20514. image: {
  20515. source: "./media/characters/melody/side.svg",
  20516. extra: 1097 / 944,
  20517. bottom: 11.8 / 1109
  20518. }
  20519. },
  20520. sideOutfit: {
  20521. height: math.unit(15.66, "feet"),
  20522. weight: math.unit(150, "lb"),
  20523. name: "Side (Outfit)",
  20524. image: {
  20525. source: "./media/characters/melody/side-outfit.svg",
  20526. extra: 1097 / 944,
  20527. bottom: 11.8 / 1109
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(15.66, "feet"),
  20535. default: true
  20536. },
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20541. {
  20542. front: {
  20543. height: math.unit(8, "feet"),
  20544. weight: math.unit(325, "lb"),
  20545. name: "Front",
  20546. image: {
  20547. source: "./media/characters/windera/front.svg",
  20548. extra: 3180 / 2845,
  20549. bottom: 178 / 3365
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(8, "feet"),
  20557. default: true
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20563. {
  20564. front: {
  20565. height: math.unit(28.75, "feet"),
  20566. weight: math.unit(2000, "kg"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/sonear/front.svg",
  20570. extra: 1041.1 / 964.9,
  20571. bottom: 53.7 / 1096.6
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(28.75, "feet"),
  20579. default: true
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20585. {
  20586. side: {
  20587. height: math.unit(25.5, "feet"),
  20588. weight: math.unit(23000, "kg"),
  20589. name: "Side",
  20590. image: {
  20591. source: "./media/characters/kanara/side.svg"
  20592. }
  20593. },
  20594. },
  20595. [
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(25.5, "feet"),
  20599. default: true
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20605. {
  20606. side: {
  20607. height: math.unit(10, "feet"),
  20608. weight: math.unit(1000, "kg"),
  20609. name: "Side",
  20610. image: {
  20611. source: "./media/characters/ereus/side.svg",
  20612. extra: 1157 / 959,
  20613. bottom: 153 / 1312.5
  20614. }
  20615. },
  20616. },
  20617. [
  20618. {
  20619. name: "Normal",
  20620. height: math.unit(10, "feet"),
  20621. default: true
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20627. {
  20628. side: {
  20629. height: math.unit(4.5, "feet"),
  20630. weight: math.unit(500, "lb"),
  20631. name: "Side",
  20632. image: {
  20633. source: "./media/characters/e-ter/side.svg",
  20634. extra: 1550 / 1248,
  20635. bottom: 146 / 1694
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Normal",
  20642. height: math.unit(4.5, "feet"),
  20643. default: true
  20644. },
  20645. ]
  20646. ))
  20647. characterMakers.push(() => makeCharacter(
  20648. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20649. {
  20650. side: {
  20651. height: math.unit(9.7, "feet"),
  20652. weight: math.unit(4000, "kg"),
  20653. name: "Side",
  20654. image: {
  20655. source: "./media/characters/yamie/side.svg"
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Normal",
  20662. height: math.unit(9.7, "feet"),
  20663. default: true
  20664. },
  20665. ]
  20666. ))
  20667. characterMakers.push(() => makeCharacter(
  20668. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20669. {
  20670. front: {
  20671. height: math.unit(50, "feet"),
  20672. weight: math.unit(50000, "kg"),
  20673. name: "Front",
  20674. image: {
  20675. source: "./media/characters/anders/front.svg",
  20676. extra: 570 / 539,
  20677. bottom: 14.7 / 586.7
  20678. }
  20679. },
  20680. },
  20681. [
  20682. {
  20683. name: "Large",
  20684. height: math.unit(50, "feet")
  20685. },
  20686. {
  20687. name: "Macro",
  20688. height: math.unit(2000, "feet"),
  20689. default: true
  20690. },
  20691. {
  20692. name: "Megamacro",
  20693. height: math.unit(12, "miles")
  20694. },
  20695. ]
  20696. ))
  20697. characterMakers.push(() => makeCharacter(
  20698. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20699. {
  20700. front: {
  20701. height: math.unit(7 + 2 / 12, "feet"),
  20702. weight: math.unit(300, "lb"),
  20703. name: "Front",
  20704. image: {
  20705. source: "./media/characters/reban/front.svg",
  20706. extra: 516 / 487,
  20707. bottom: 42.82 / 558.356
  20708. }
  20709. },
  20710. dick: {
  20711. height: math.unit(7 / 5, "feet"),
  20712. name: "Dick",
  20713. image: {
  20714. source: "./media/characters/reban/dick.svg"
  20715. }
  20716. },
  20717. },
  20718. [
  20719. {
  20720. name: "Natural Height",
  20721. height: math.unit(7 + 2 / 12, "feet")
  20722. },
  20723. {
  20724. name: "Macro",
  20725. height: math.unit(500, "feet"),
  20726. default: true
  20727. },
  20728. {
  20729. name: "Canon Height",
  20730. height: math.unit(50, "AU")
  20731. },
  20732. ]
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20736. {
  20737. front: {
  20738. height: math.unit(6, "feet"),
  20739. weight: math.unit(150, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/terrance-keayes/front.svg",
  20743. extra: 1.005,
  20744. bottom: 151 / 1615
  20745. }
  20746. },
  20747. side: {
  20748. height: math.unit(6, "feet"),
  20749. weight: math.unit(150, "lb"),
  20750. name: "Side",
  20751. image: {
  20752. source: "./media/characters/terrance-keayes/side.svg",
  20753. extra: 1.005,
  20754. bottom: 129.4 / 1544
  20755. }
  20756. },
  20757. back: {
  20758. height: math.unit(6, "feet"),
  20759. weight: math.unit(150, "lb"),
  20760. name: "Back",
  20761. image: {
  20762. source: "./media/characters/terrance-keayes/back.svg",
  20763. extra: 1.005,
  20764. bottom: 58.4 / 1557.3
  20765. }
  20766. },
  20767. dick: {
  20768. height: math.unit(6 * 0.208, "feet"),
  20769. name: "Dick",
  20770. image: {
  20771. source: "./media/characters/terrance-keayes/dick.svg"
  20772. }
  20773. },
  20774. },
  20775. [
  20776. {
  20777. name: "Canon Height",
  20778. height: math.unit(35, "miles"),
  20779. default: true
  20780. },
  20781. ]
  20782. ))
  20783. characterMakers.push(() => makeCharacter(
  20784. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20785. {
  20786. front: {
  20787. height: math.unit(6, "feet"),
  20788. weight: math.unit(150, "lb"),
  20789. name: "Front",
  20790. image: {
  20791. source: "./media/characters/ofelia/front.svg",
  20792. extra: 546 / 541,
  20793. bottom: 39 / 583
  20794. }
  20795. },
  20796. back: {
  20797. height: math.unit(6, "feet"),
  20798. weight: math.unit(150, "lb"),
  20799. name: "Back",
  20800. image: {
  20801. source: "./media/characters/ofelia/back.svg",
  20802. extra: 564 / 559.5,
  20803. bottom: 8.69 / 573.02
  20804. }
  20805. },
  20806. maw: {
  20807. height: math.unit(1, "feet"),
  20808. name: "Maw",
  20809. image: {
  20810. source: "./media/characters/ofelia/maw.svg"
  20811. }
  20812. },
  20813. foot: {
  20814. height: math.unit(1.949, "feet"),
  20815. name: "Foot",
  20816. image: {
  20817. source: "./media/characters/ofelia/foot.svg"
  20818. }
  20819. },
  20820. },
  20821. [
  20822. {
  20823. name: "Canon Height",
  20824. height: math.unit(2000, "miles"),
  20825. default: true
  20826. },
  20827. ]
  20828. ))
  20829. characterMakers.push(() => makeCharacter(
  20830. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20831. {
  20832. front: {
  20833. height: math.unit(6, "feet"),
  20834. weight: math.unit(150, "lb"),
  20835. name: "Front",
  20836. image: {
  20837. source: "./media/characters/samuel/front.svg",
  20838. extra: 265 / 258,
  20839. bottom: 2 / 266.1566
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Macro",
  20846. height: math.unit(100, "feet"),
  20847. default: true
  20848. },
  20849. {
  20850. name: "Full Size",
  20851. height: math.unit(1000, "miles")
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20857. {
  20858. front: {
  20859. height: math.unit(6, "feet"),
  20860. weight: math.unit(300, "lb"),
  20861. name: "Front",
  20862. image: {
  20863. source: "./media/characters/beishir-kiel/front.svg",
  20864. extra: 569 / 547,
  20865. bottom: 41.9 / 609
  20866. }
  20867. },
  20868. maw: {
  20869. height: math.unit(6 * 0.202, "feet"),
  20870. name: "Maw",
  20871. image: {
  20872. source: "./media/characters/beishir-kiel/maw.svg"
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Macro",
  20879. height: math.unit(300, "feet"),
  20880. default: true
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20886. {
  20887. front: {
  20888. height: math.unit(5 + 8 / 12, "feet"),
  20889. weight: math.unit(120, "lb"),
  20890. name: "Front",
  20891. image: {
  20892. source: "./media/characters/logan-grey/front.svg",
  20893. extra: 2539 / 2393,
  20894. bottom: 97.6 / 2636.37
  20895. }
  20896. },
  20897. frontAlt: {
  20898. height: math.unit(5 + 8 / 12, "feet"),
  20899. weight: math.unit(120, "lb"),
  20900. name: "Front (Alt)",
  20901. image: {
  20902. source: "./media/characters/logan-grey/front-alt.svg",
  20903. extra: 958 / 893,
  20904. bottom: 15 / 970.768
  20905. }
  20906. },
  20907. back: {
  20908. height: math.unit(5 + 8 / 12, "feet"),
  20909. weight: math.unit(120, "lb"),
  20910. name: "Back",
  20911. image: {
  20912. source: "./media/characters/logan-grey/back.svg",
  20913. extra: 958 / 893,
  20914. bottom: 2.1881 / 970.9788
  20915. }
  20916. },
  20917. dick: {
  20918. height: math.unit(1.437, "feet"),
  20919. name: "Dick",
  20920. image: {
  20921. source: "./media/characters/logan-grey/dick.svg"
  20922. }
  20923. },
  20924. },
  20925. [
  20926. {
  20927. name: "Normal",
  20928. height: math.unit(5 + 8 / 12, "feet")
  20929. },
  20930. {
  20931. name: "The 500 Foot Femboy",
  20932. height: math.unit(500, "feet"),
  20933. default: true
  20934. },
  20935. {
  20936. name: "Megmacro",
  20937. height: math.unit(20, "miles")
  20938. },
  20939. ]
  20940. ))
  20941. characterMakers.push(() => makeCharacter(
  20942. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  20943. {
  20944. front: {
  20945. height: math.unit(8 + 2 / 12, "feet"),
  20946. weight: math.unit(275, "lb"),
  20947. name: "Front",
  20948. image: {
  20949. source: "./media/characters/draganta/front.svg",
  20950. extra: 1177 / 1135,
  20951. bottom: 33.46 / 1212.1
  20952. }
  20953. },
  20954. },
  20955. [
  20956. {
  20957. name: "Normal",
  20958. height: math.unit(8 + 6 / 12, "feet"),
  20959. default: true
  20960. },
  20961. {
  20962. name: "Macro",
  20963. height: math.unit(150, "feet")
  20964. },
  20965. {
  20966. name: "Megamacro",
  20967. height: math.unit(1000, "miles")
  20968. },
  20969. ]
  20970. ))
  20971. characterMakers.push(() => makeCharacter(
  20972. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20973. {
  20974. front: {
  20975. height: math.unit(1.72, "m"),
  20976. weight: math.unit(80, "lb"),
  20977. name: "Front",
  20978. image: {
  20979. source: "./media/characters/voski/front.svg",
  20980. extra: 2076.22 / 2022.4,
  20981. bottom: 102.7 / 2177.3866
  20982. }
  20983. },
  20984. frontNsfw: {
  20985. height: math.unit(1.72, "m"),
  20986. weight: math.unit(80, "lb"),
  20987. name: "Front (NSFW)",
  20988. image: {
  20989. source: "./media/characters/voski/front-nsfw.svg",
  20990. extra: 2076.22 / 2022.4,
  20991. bottom: 102.7 / 2177.3866
  20992. }
  20993. },
  20994. back: {
  20995. height: math.unit(1.72, "m"),
  20996. weight: math.unit(80, "lb"),
  20997. name: "Back",
  20998. image: {
  20999. source: "./media/characters/voski/back.svg",
  21000. extra: 2104 / 2051,
  21001. bottom: 10.45 / 2113.63
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(1.72, "m")
  21009. },
  21010. {
  21011. name: "Macro",
  21012. height: math.unit(55, "m"),
  21013. default: true
  21014. },
  21015. {
  21016. name: "Macro+",
  21017. height: math.unit(300, "m")
  21018. },
  21019. {
  21020. name: "Macro++",
  21021. height: math.unit(700, "m")
  21022. },
  21023. {
  21024. name: "Macro+++",
  21025. height: math.unit(4500, "m")
  21026. },
  21027. {
  21028. name: "Macro++++",
  21029. height: math.unit(45, "km")
  21030. },
  21031. {
  21032. name: "Macro+++++",
  21033. height: math.unit(1220, "km")
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21039. {
  21040. front: {
  21041. height: math.unit(2.3, "m"),
  21042. weight: math.unit(304, "kg"),
  21043. name: "Front",
  21044. image: {
  21045. source: "./media/characters/icowom-lee/front.svg",
  21046. extra: 985/955,
  21047. bottom: 25.4/1012
  21048. }
  21049. },
  21050. fronttentacles: {
  21051. height: math.unit(2.3, "m"),
  21052. weight: math.unit(304, "kg"),
  21053. name: "Front-tentacles",
  21054. image: {
  21055. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21056. extra: 985/955,
  21057. bottom: 25.4/1012
  21058. }
  21059. },
  21060. back: {
  21061. height: math.unit(2.3, "m"),
  21062. weight: math.unit(304, "kg"),
  21063. name: "Back",
  21064. image: {
  21065. source: "./media/characters/icowom-lee/back.svg",
  21066. extra: 975/954,
  21067. bottom: 9.5/985
  21068. }
  21069. },
  21070. backtentacles: {
  21071. height: math.unit(2.3, "m"),
  21072. weight: math.unit(304, "kg"),
  21073. name: "Back-tentacles",
  21074. image: {
  21075. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21076. extra: 975/954,
  21077. bottom: 9.5/985
  21078. }
  21079. },
  21080. frontDressed: {
  21081. height: math.unit(2.3, "m"),
  21082. weight: math.unit(304, "kg"),
  21083. name: "Front (Dressed)",
  21084. image: {
  21085. source: "./media/characters/icowom-lee/front-dressed.svg",
  21086. extra: 3076 / 2933,
  21087. bottom: 51.4 / 3125.1889
  21088. }
  21089. },
  21090. rump: {
  21091. height: math.unit(0.776, "meters"),
  21092. name: "Rump",
  21093. image: {
  21094. source: "./media/characters/icowom-lee/rump.svg"
  21095. }
  21096. },
  21097. genitals: {
  21098. height: math.unit(0.78, "meters"),
  21099. name: "Genitals",
  21100. image: {
  21101. source: "./media/characters/icowom-lee/genitals.svg"
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Normal",
  21108. height: math.unit(2.3, "meters"),
  21109. default: true
  21110. },
  21111. {
  21112. name: "Macro",
  21113. height: math.unit(94, "meters"),
  21114. default: true
  21115. },
  21116. ]
  21117. ))
  21118. characterMakers.push(() => makeCharacter(
  21119. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21120. {
  21121. front: {
  21122. height: math.unit(22, "meters"),
  21123. weight: math.unit(21000, "kg"),
  21124. name: "Front",
  21125. image: {
  21126. source: "./media/characters/shock-diamond/front.svg",
  21127. extra: 2204 / 2053,
  21128. bottom: 65 / 2239.47
  21129. }
  21130. },
  21131. frontNude: {
  21132. height: math.unit(22, "meters"),
  21133. weight: math.unit(21000, "kg"),
  21134. name: "Front (Nude)",
  21135. image: {
  21136. source: "./media/characters/shock-diamond/front-nude.svg",
  21137. extra: 2514 / 2285,
  21138. bottom: 13 / 2527.56
  21139. }
  21140. },
  21141. },
  21142. [
  21143. {
  21144. name: "Normal",
  21145. height: math.unit(3, "meters")
  21146. },
  21147. {
  21148. name: "Macro",
  21149. height: math.unit(22, "meters"),
  21150. default: true
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21156. {
  21157. front: {
  21158. height: math.unit(5 + 4 / 12, "feet"),
  21159. weight: math.unit(120, "lb"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/rory/front.svg",
  21163. extra: 589 / 556,
  21164. bottom: 45.7 / 635.76
  21165. }
  21166. },
  21167. frontNude: {
  21168. height: math.unit(5 + 4 / 12, "feet"),
  21169. weight: math.unit(120, "lb"),
  21170. name: "Front (Nude)",
  21171. image: {
  21172. source: "./media/characters/rory/front-nude.svg",
  21173. extra: 589 / 556,
  21174. bottom: 45.7 / 635.76
  21175. }
  21176. },
  21177. side: {
  21178. height: math.unit(5 + 4 / 12, "feet"),
  21179. weight: math.unit(120, "lb"),
  21180. name: "Side",
  21181. image: {
  21182. source: "./media/characters/rory/side.svg",
  21183. extra: 597 / 564,
  21184. bottom: 55 / 653
  21185. }
  21186. },
  21187. back: {
  21188. height: math.unit(5 + 4 / 12, "feet"),
  21189. weight: math.unit(120, "lb"),
  21190. name: "Back",
  21191. image: {
  21192. source: "./media/characters/rory/back.svg",
  21193. extra: 620 / 585,
  21194. bottom: 8.86 / 630.43
  21195. }
  21196. },
  21197. dick: {
  21198. height: math.unit(0.86, "feet"),
  21199. name: "Dick",
  21200. image: {
  21201. source: "./media/characters/rory/dick.svg"
  21202. }
  21203. },
  21204. },
  21205. [
  21206. {
  21207. name: "Normal",
  21208. height: math.unit(5 + 4 / 12, "feet"),
  21209. default: true
  21210. },
  21211. {
  21212. name: "Macro",
  21213. height: math.unit(100, "feet")
  21214. },
  21215. {
  21216. name: "Macro+",
  21217. height: math.unit(140, "feet")
  21218. },
  21219. {
  21220. name: "Macro++",
  21221. height: math.unit(300, "feet")
  21222. },
  21223. ]
  21224. ))
  21225. characterMakers.push(() => makeCharacter(
  21226. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21227. {
  21228. front: {
  21229. height: math.unit(5 + 9 / 12, "feet"),
  21230. weight: math.unit(190, "lb"),
  21231. name: "Front",
  21232. image: {
  21233. source: "./media/characters/sprisk/front.svg",
  21234. extra: 1225 / 1180,
  21235. bottom: 42.7 / 1266.4
  21236. }
  21237. },
  21238. frontNsfw: {
  21239. height: math.unit(5 + 9 / 12, "feet"),
  21240. weight: math.unit(190, "lb"),
  21241. name: "Front (NSFW)",
  21242. image: {
  21243. source: "./media/characters/sprisk/front-nsfw.svg",
  21244. extra: 1225 / 1180,
  21245. bottom: 42.7 / 1266.4
  21246. }
  21247. },
  21248. back: {
  21249. height: math.unit(5 + 9 / 12, "feet"),
  21250. weight: math.unit(190, "lb"),
  21251. name: "Back",
  21252. image: {
  21253. source: "./media/characters/sprisk/back.svg",
  21254. extra: 1247 / 1200,
  21255. bottom: 5.6 / 1253.04
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Tiny",
  21262. height: math.unit(2, "inches")
  21263. },
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(5 + 9 / 12, "feet"),
  21267. default: true
  21268. },
  21269. {
  21270. name: "Mini Macro",
  21271. height: math.unit(18, "feet")
  21272. },
  21273. {
  21274. name: "Macro",
  21275. height: math.unit(100, "feet")
  21276. },
  21277. {
  21278. name: "MACRO",
  21279. height: math.unit(50, "miles")
  21280. },
  21281. {
  21282. name: "M A C R O",
  21283. height: math.unit(300, "miles")
  21284. },
  21285. ]
  21286. ))
  21287. characterMakers.push(() => makeCharacter(
  21288. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21289. {
  21290. side: {
  21291. height: math.unit(15.6, "meters"),
  21292. weight: math.unit(700000, "kg"),
  21293. name: "Side",
  21294. image: {
  21295. source: "./media/characters/bunsen/side.svg",
  21296. extra: 1644 / 358
  21297. }
  21298. },
  21299. foot: {
  21300. height: math.unit(1.611 * 1644 / 358, "meter"),
  21301. name: "Foot",
  21302. image: {
  21303. source: "./media/characters/bunsen/foot.svg"
  21304. }
  21305. },
  21306. },
  21307. [
  21308. {
  21309. name: "Small",
  21310. height: math.unit(10, "feet")
  21311. },
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(15.6, "meters"),
  21315. default: true
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21321. {
  21322. front: {
  21323. height: math.unit(4 + 11 / 12, "feet"),
  21324. weight: math.unit(140, "lb"),
  21325. name: "Front",
  21326. image: {
  21327. source: "./media/characters/sesh/front.svg",
  21328. extra: 3420 / 3231,
  21329. bottom: 72 / 3949.5
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(4 + 11 / 12, "feet")
  21337. },
  21338. {
  21339. name: "Grown",
  21340. height: math.unit(15, "feet"),
  21341. default: true
  21342. },
  21343. {
  21344. name: "Macro",
  21345. height: math.unit(1500, "feet")
  21346. },
  21347. {
  21348. name: "Megamacro",
  21349. height: math.unit(30, "miles")
  21350. },
  21351. {
  21352. name: "Continental",
  21353. height: math.unit(3000, "miles")
  21354. },
  21355. {
  21356. name: "Gravity Mass",
  21357. height: math.unit(300000, "miles")
  21358. },
  21359. {
  21360. name: "Planet Buster",
  21361. height: math.unit(30000000, "miles")
  21362. },
  21363. {
  21364. name: "Big",
  21365. height: math.unit(3000000000, "miles")
  21366. },
  21367. ]
  21368. ))
  21369. characterMakers.push(() => makeCharacter(
  21370. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21371. {
  21372. front: {
  21373. height: math.unit(9, "feet"),
  21374. weight: math.unit(350, "lb"),
  21375. name: "Front",
  21376. image: {
  21377. source: "./media/characters/pepper/front.svg",
  21378. extra: 1448/1312,
  21379. bottom: 9.4/1457.88
  21380. }
  21381. },
  21382. back: {
  21383. height: math.unit(9, "feet"),
  21384. weight: math.unit(350, "lb"),
  21385. name: "Back",
  21386. image: {
  21387. source: "./media/characters/pepper/back.svg",
  21388. extra: 1423/1300,
  21389. bottom: 4.6/1429
  21390. }
  21391. },
  21392. maw: {
  21393. height: math.unit(0.932, "feet"),
  21394. name: "Maw",
  21395. image: {
  21396. source: "./media/characters/pepper/maw.svg"
  21397. }
  21398. },
  21399. },
  21400. [
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(9, "feet"),
  21404. default: true
  21405. },
  21406. ]
  21407. ))
  21408. characterMakers.push(() => makeCharacter(
  21409. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21410. {
  21411. front: {
  21412. height: math.unit(6, "feet"),
  21413. weight: math.unit(150, "lb"),
  21414. name: "Front",
  21415. image: {
  21416. source: "./media/characters/maelstrom/front.svg",
  21417. extra: 2100/1883,
  21418. bottom: 94/2196.7
  21419. }
  21420. },
  21421. },
  21422. [
  21423. {
  21424. name: "Less Kaiju",
  21425. height: math.unit(200, "feet")
  21426. },
  21427. {
  21428. name: "Kaiju",
  21429. height: math.unit(400, "feet"),
  21430. default: true
  21431. },
  21432. {
  21433. name: "Kaiju-er",
  21434. height: math.unit(600, "feet")
  21435. },
  21436. ]
  21437. ))
  21438. characterMakers.push(() => makeCharacter(
  21439. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21440. {
  21441. front: {
  21442. height: math.unit(6 + 5/12, "feet"),
  21443. weight: math.unit(180, "lb"),
  21444. name: "Front",
  21445. image: {
  21446. source: "./media/characters/lexir/front.svg",
  21447. extra: 180/172,
  21448. bottom: 12/192
  21449. }
  21450. },
  21451. back: {
  21452. height: math.unit(6 + 5/12, "feet"),
  21453. weight: math.unit(180, "lb"),
  21454. name: "Back",
  21455. image: {
  21456. source: "./media/characters/lexir/back.svg",
  21457. extra: 183.84/175.5,
  21458. bottom: 3.1/187
  21459. }
  21460. },
  21461. },
  21462. [
  21463. {
  21464. name: "Very Smal",
  21465. height: math.unit(1, "nm")
  21466. },
  21467. {
  21468. name: "Normal",
  21469. height: math.unit(6 + 5/12, "feet"),
  21470. default: true
  21471. },
  21472. {
  21473. name: "Macro",
  21474. height: math.unit(1, "mile")
  21475. },
  21476. {
  21477. name: "Megamacro",
  21478. height: math.unit(50, "miles")
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21484. {
  21485. front: {
  21486. height: math.unit(1.5, "meters"),
  21487. weight: math.unit(100, "lb"),
  21488. name: "Front",
  21489. image: {
  21490. source: "./media/characters/maksio/front.svg",
  21491. extra: 1549/1531,
  21492. bottom: 123.7/1674.5429
  21493. }
  21494. },
  21495. back: {
  21496. height: math.unit(1.5, "meters"),
  21497. weight: math.unit(100, "lb"),
  21498. name: "Back",
  21499. image: {
  21500. source: "./media/characters/maksio/back.svg",
  21501. extra: 1541/1509,
  21502. bottom: 97/1639
  21503. }
  21504. },
  21505. hand: {
  21506. height: math.unit(0.621, "feet"),
  21507. name: "Hand",
  21508. image: {
  21509. source: "./media/characters/maksio/hand.svg"
  21510. }
  21511. },
  21512. foot: {
  21513. height: math.unit(1.611, "feet"),
  21514. name: "Foot",
  21515. image: {
  21516. source: "./media/characters/maksio/foot.svg"
  21517. }
  21518. },
  21519. },
  21520. [
  21521. {
  21522. name: "Shrunken",
  21523. height: math.unit(10, "cm")
  21524. },
  21525. {
  21526. name: "Normal",
  21527. height: math.unit(150, "cm"),
  21528. default: true
  21529. },
  21530. ]
  21531. ))
  21532. characterMakers.push(() => makeCharacter(
  21533. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21534. {
  21535. front: {
  21536. height: math.unit(100, "feet"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/erza-bear/front.svg",
  21540. extra: 2449/2390,
  21541. bottom: 46/2494
  21542. }
  21543. },
  21544. back: {
  21545. height: math.unit(100, "feet"),
  21546. name: "Back",
  21547. image: {
  21548. source: "./media/characters/erza-bear/back.svg",
  21549. extra: 2489/2430,
  21550. bottom: 85.4/2480
  21551. }
  21552. },
  21553. tail: {
  21554. height: math.unit(42, "feet"),
  21555. name: "Tail",
  21556. image: {
  21557. source: "./media/characters/erza-bear/tail.svg"
  21558. }
  21559. },
  21560. tongue: {
  21561. height: math.unit(8, "feet"),
  21562. name: "Tongue",
  21563. image: {
  21564. source: "./media/characters/erza-bear/tongue.svg"
  21565. }
  21566. },
  21567. dick: {
  21568. height: math.unit(10.5, "feet"),
  21569. name: "Dick",
  21570. image: {
  21571. source: "./media/characters/erza-bear/dick.svg"
  21572. }
  21573. },
  21574. dickVertical: {
  21575. height: math.unit(16.9, "feet"),
  21576. name: "Dick (Vertical)",
  21577. image: {
  21578. source: "./media/characters/erza-bear/dick-vertical.svg"
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Macro",
  21585. height: math.unit(100, "feet"),
  21586. default: true
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21592. {
  21593. front: {
  21594. height: math.unit(172, "cm"),
  21595. weight: math.unit(73, "kg"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/violet-flor/front.svg",
  21599. extra: 1530/1442,
  21600. bottom: 61.9/1588.8
  21601. }
  21602. },
  21603. back: {
  21604. height: math.unit(180, "cm"),
  21605. weight: math.unit(73, "kg"),
  21606. name: "Back",
  21607. image: {
  21608. source: "./media/characters/violet-flor/back.svg",
  21609. extra: 1692/1630,
  21610. bottom: 20/1712
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(172, "cm"),
  21618. default: true
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(6, "feet"),
  21627. weight: math.unit(220, "lb"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/lynn-rhea/front.svg",
  21631. extra: 310/273
  21632. }
  21633. },
  21634. back: {
  21635. height: math.unit(6, "feet"),
  21636. weight: math.unit(220, "lb"),
  21637. name: "Back",
  21638. image: {
  21639. source: "./media/characters/lynn-rhea/back.svg",
  21640. extra: 310/273
  21641. }
  21642. },
  21643. dicks: {
  21644. height: math.unit(0.9, "feet"),
  21645. name: "Dicks",
  21646. image: {
  21647. source: "./media/characters/lynn-rhea/dicks.svg"
  21648. }
  21649. },
  21650. slit: {
  21651. height: math.unit(0.4, "feet"),
  21652. name: "Slit",
  21653. image: {
  21654. source: "./media/characters/lynn-rhea/slit.svg"
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Micro",
  21661. height: math.unit(1, "inch")
  21662. },
  21663. {
  21664. name: "Macro",
  21665. height: math.unit(60, "feet"),
  21666. default: true
  21667. },
  21668. {
  21669. name: "Megamacro",
  21670. height: math.unit(2, "miles")
  21671. },
  21672. {
  21673. name: "Gigamacro",
  21674. height: math.unit(3, "earths")
  21675. },
  21676. {
  21677. name: "Galactic",
  21678. height: math.unit(0.8, "galaxies")
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21684. {
  21685. front: {
  21686. height: math.unit(1600, "feet"),
  21687. weight: math.unit(85758785169, "kg"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/valathos/front.svg",
  21691. extra: 1451/1339
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Macro",
  21698. height: math.unit(1600, "feet"),
  21699. default: true
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21705. {
  21706. front: {
  21707. height: math.unit(7 + 5/12, "feet"),
  21708. weight: math.unit(300, "lb"),
  21709. name: "Front",
  21710. image: {
  21711. source: "./media/characters/azula/front.svg",
  21712. extra: 3208/2880,
  21713. bottom: 80.2/3277
  21714. }
  21715. },
  21716. back: {
  21717. height: math.unit(7 + 5/12, "feet"),
  21718. weight: math.unit(300, "lb"),
  21719. name: "Back",
  21720. image: {
  21721. source: "./media/characters/azula/back.svg",
  21722. extra: 3169/2822,
  21723. bottom: 150.6/3321
  21724. }
  21725. },
  21726. },
  21727. [
  21728. {
  21729. name: "Normal",
  21730. height: math.unit(7 + 5/12, "feet"),
  21731. default: true
  21732. },
  21733. {
  21734. name: "Big",
  21735. height: math.unit(20, "feet")
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(5 + 1/12, "feet"),
  21744. weight: math.unit(110, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/rupert/front.svg",
  21748. extra: 1549/1495,
  21749. bottom: 54.2/1604.4
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(5 + 1/12, "feet"),
  21757. default: true
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21763. {
  21764. front: {
  21765. height: math.unit(8 + 4/12, "feet"),
  21766. weight: math.unit(350, "lb"),
  21767. name: "Front",
  21768. image: {
  21769. source: "./media/characters/sheera-castellar/front.svg",
  21770. extra: 1957/1894,
  21771. bottom: 26.97/1975.017
  21772. }
  21773. },
  21774. side: {
  21775. height: math.unit(8 + 4/12, "feet"),
  21776. weight: math.unit(350, "lb"),
  21777. name: "Side",
  21778. image: {
  21779. source: "./media/characters/sheera-castellar/side.svg",
  21780. extra: 1957/1894
  21781. }
  21782. },
  21783. back: {
  21784. height: math.unit(8 + 4/12, "feet"),
  21785. weight: math.unit(350, "lb"),
  21786. name: "Back",
  21787. image: {
  21788. source: "./media/characters/sheera-castellar/back.svg",
  21789. extra: 1957/1894
  21790. }
  21791. },
  21792. angled: {
  21793. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  21794. weight: math.unit(350, "lb"),
  21795. name: "Angled",
  21796. image: {
  21797. source: "./media/characters/sheera-castellar/angled.svg",
  21798. extra: 1807/1707,
  21799. bottom: 68/1875
  21800. }
  21801. },
  21802. genitals: {
  21803. height: math.unit(2.2, "feet"),
  21804. name: "Genitals",
  21805. image: {
  21806. source: "./media/characters/sheera-castellar/genitals.svg"
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Normal",
  21813. height: math.unit(8 + 4/12, "feet")
  21814. },
  21815. {
  21816. name: "Macro",
  21817. height: math.unit(150, "feet"),
  21818. default: true
  21819. },
  21820. {
  21821. name: "Macro+",
  21822. height: math.unit(800, "feet")
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(6, "feet"),
  21831. weight: math.unit(150, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/jaipur/front.svg",
  21835. extra: 3860/3731,
  21836. bottom: 287/4140
  21837. }
  21838. },
  21839. back: {
  21840. height: math.unit(6, "feet"),
  21841. weight: math.unit(150, "lb"),
  21842. name: "Back",
  21843. image: {
  21844. source: "./media/characters/jaipur/back.svg",
  21845. extra: 4060/3930,
  21846. bottom: 151/4200
  21847. }
  21848. },
  21849. },
  21850. [
  21851. {
  21852. name: "Normal",
  21853. height: math.unit(1.85, "meters"),
  21854. default: true
  21855. },
  21856. {
  21857. name: "Macro",
  21858. height: math.unit(150, "meters")
  21859. },
  21860. {
  21861. name: "Macro+",
  21862. height: math.unit(0.5, "miles")
  21863. },
  21864. {
  21865. name: "Macro++",
  21866. height: math.unit(2.5, "miles")
  21867. },
  21868. {
  21869. name: "Macro+++",
  21870. height: math.unit(12, "miles")
  21871. },
  21872. {
  21873. name: "Macro++++",
  21874. height: math.unit(120, "miles")
  21875. },
  21876. {
  21877. name: "Macro+++++",
  21878. height: math.unit(1200, "miles")
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(6, "feet"),
  21887. weight: math.unit(150, "lb"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/sheila-wolf/front.svg",
  21891. extra: 1931/1808,
  21892. bottom: 29.5/1960
  21893. }
  21894. },
  21895. dick: {
  21896. height: math.unit(1.464, "feet"),
  21897. name: "Dick",
  21898. image: {
  21899. source: "./media/characters/sheila-wolf/dick.svg"
  21900. }
  21901. },
  21902. muzzle: {
  21903. height: math.unit(0.513, "feet"),
  21904. name: "Muzzle",
  21905. image: {
  21906. source: "./media/characters/sheila-wolf/muzzle.svg"
  21907. }
  21908. },
  21909. },
  21910. [
  21911. {
  21912. name: "Macro",
  21913. height: math.unit(70, "feet"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21920. {
  21921. front: {
  21922. height: math.unit(32, "meters"),
  21923. weight: math.unit(300000, "kg"),
  21924. name: "Front",
  21925. image: {
  21926. source: "./media/characters/almor/front.svg",
  21927. extra: 1408/1322,
  21928. bottom: 94.6/1506.5
  21929. }
  21930. },
  21931. },
  21932. [
  21933. {
  21934. name: "Macro",
  21935. height: math.unit(32, "meters"),
  21936. default: true
  21937. },
  21938. ]
  21939. ))
  21940. characterMakers.push(() => makeCharacter(
  21941. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  21942. {
  21943. front: {
  21944. height: math.unit(7, "feet"),
  21945. weight: math.unit(200, "lb"),
  21946. name: "Front",
  21947. image: {
  21948. source: "./media/characters/silver/front.svg",
  21949. extra: 472.1/450.5,
  21950. bottom: 26.5/499.424
  21951. }
  21952. },
  21953. },
  21954. [
  21955. {
  21956. name: "Normal",
  21957. height: math.unit(7, "feet"),
  21958. default: true
  21959. },
  21960. {
  21961. name: "Macro",
  21962. height: math.unit(800, "feet")
  21963. },
  21964. {
  21965. name: "Megamacro",
  21966. height: math.unit(250, "miles")
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(6, "feet"),
  21975. weight: math.unit(150, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/pliskin/front.svg",
  21979. extra: 1469/1359,
  21980. bottom: 70/1540
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Micro",
  21987. height: math.unit(3, "inches")
  21988. },
  21989. {
  21990. name: "Normal",
  21991. height: math.unit(5 + 11/12, "feet"),
  21992. default: true
  21993. },
  21994. {
  21995. name: "Macro",
  21996. height: math.unit(120, "feet")
  21997. },
  21998. ]
  21999. ))
  22000. characterMakers.push(() => makeCharacter(
  22001. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22002. {
  22003. front: {
  22004. height: math.unit(6, "feet"),
  22005. weight: math.unit(150, "lb"),
  22006. name: "Front",
  22007. image: {
  22008. source: "./media/characters/sammy/front.svg",
  22009. extra: 1193/1089,
  22010. bottom: 30.5/1226
  22011. }
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Macro",
  22017. height: math.unit(1700, "feet"),
  22018. default: true
  22019. },
  22020. {
  22021. name: "Examacro",
  22022. height: math.unit(2.5e9, "lightyears")
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(21, "meters"),
  22031. weight: math.unit(12, "tonnes"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/kuru/front.svg",
  22035. extra: 4301/3785,
  22036. bottom: 371.3/4691
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Macro",
  22043. height: math.unit(21, "meters"),
  22044. default: true
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22050. {
  22051. front: {
  22052. height: math.unit(23, "meters"),
  22053. weight: math.unit(12.2, "tonnes"),
  22054. name: "Front",
  22055. image: {
  22056. source: "./media/characters/rakka/front.svg",
  22057. extra: 4670/4169,
  22058. bottom: 301/4968.7
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Macro",
  22065. height: math.unit(23, "meters"),
  22066. default: true
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(6, "feet"),
  22075. weight: math.unit(150, "lb"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/rhys-feline/front.svg",
  22079. extra: 2488/2308,
  22080. bottom: 35.67/2519.19
  22081. }
  22082. },
  22083. },
  22084. [
  22085. {
  22086. name: "Really Small",
  22087. height: math.unit(1, "nm")
  22088. },
  22089. {
  22090. name: "Micro",
  22091. height: math.unit(4, "inches")
  22092. },
  22093. {
  22094. name: "Normal",
  22095. height: math.unit(4 + 10/12, "feet"),
  22096. default: true
  22097. },
  22098. {
  22099. name: "Macro",
  22100. height: math.unit(100, "feet")
  22101. },
  22102. {
  22103. name: "Megamacto",
  22104. height: math.unit(50, "miles")
  22105. },
  22106. ]
  22107. ))
  22108. characterMakers.push(() => makeCharacter(
  22109. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22110. {
  22111. side: {
  22112. height: math.unit(30, "feet"),
  22113. weight: math.unit(35000, "kg"),
  22114. name: "Side",
  22115. image: {
  22116. source: "./media/characters/alydar/side.svg",
  22117. extra: 234/222,
  22118. bottom: 6.5/241
  22119. }
  22120. },
  22121. front: {
  22122. height: math.unit(30, "feet"),
  22123. weight: math.unit(35000, "kg"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/alydar/front.svg",
  22127. extra: 223.37/210.2,
  22128. bottom: 22.3/246.76
  22129. }
  22130. },
  22131. top: {
  22132. height: math.unit(64.54, "feet"),
  22133. weight: math.unit(35000, "kg"),
  22134. name: "Top",
  22135. image: {
  22136. source: "./media/characters/alydar/top.svg"
  22137. }
  22138. },
  22139. anthro: {
  22140. height: math.unit(30, "feet"),
  22141. weight: math.unit(9000, "kg"),
  22142. name: "Anthro",
  22143. image: {
  22144. source: "./media/characters/alydar/anthro.svg",
  22145. extra: 432/421,
  22146. bottom: 7.18/440
  22147. }
  22148. },
  22149. maw: {
  22150. height: math.unit(11.693, "feet"),
  22151. name: "Maw",
  22152. image: {
  22153. source: "./media/characters/alydar/maw.svg"
  22154. }
  22155. },
  22156. head: {
  22157. height: math.unit(11.693, "feet"),
  22158. name: "Head",
  22159. image: {
  22160. source: "./media/characters/alydar/head.svg"
  22161. }
  22162. },
  22163. headAlt: {
  22164. height: math.unit(12.861, "feet"),
  22165. name: "Head (Alt)",
  22166. image: {
  22167. source: "./media/characters/alydar/head-alt.svg"
  22168. }
  22169. },
  22170. wing: {
  22171. height: math.unit(20.712, "feet"),
  22172. name: "Wing",
  22173. image: {
  22174. source: "./media/characters/alydar/wing.svg"
  22175. }
  22176. },
  22177. wingFeather: {
  22178. height: math.unit(9.662, "feet"),
  22179. name: "Wing Feather",
  22180. image: {
  22181. source: "./media/characters/alydar/wing-feather.svg"
  22182. }
  22183. },
  22184. countourFeather: {
  22185. height: math.unit(4.154, "feet"),
  22186. name: "Contour Feather",
  22187. image: {
  22188. source: "./media/characters/alydar/contour-feather.svg"
  22189. }
  22190. },
  22191. },
  22192. [
  22193. {
  22194. name: "Diplomatic",
  22195. height: math.unit(13, "feet"),
  22196. default: true
  22197. },
  22198. {
  22199. name: "Small",
  22200. height: math.unit(30, "feet")
  22201. },
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(95, "feet"),
  22205. default: true
  22206. },
  22207. {
  22208. name: "Large",
  22209. height: math.unit(285, "feet")
  22210. },
  22211. {
  22212. name: "Incomprehensible",
  22213. height: math.unit(450, "megameters")
  22214. },
  22215. ]
  22216. ))
  22217. characterMakers.push(() => makeCharacter(
  22218. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22219. {
  22220. side: {
  22221. height: math.unit(11, "feet"),
  22222. weight: math.unit(1750, "kg"),
  22223. name: "Side",
  22224. image: {
  22225. source: "./media/characters/selicia/side.svg",
  22226. extra: 440/396,
  22227. bottom: 24.8/465.979
  22228. }
  22229. },
  22230. maw: {
  22231. height: math.unit(4.665, "feet"),
  22232. name: "Maw",
  22233. image: {
  22234. source: "./media/characters/selicia/maw.svg"
  22235. }
  22236. },
  22237. },
  22238. [
  22239. {
  22240. name: "Normal",
  22241. height: math.unit(11, "feet"),
  22242. default: true
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22248. {
  22249. side: {
  22250. height: math.unit(2 + 6 /12, "feet"),
  22251. weight: math.unit(30, "lb"),
  22252. name: "Side",
  22253. image: {
  22254. source: "./media/characters/layla/side.svg",
  22255. extra: 244/188,
  22256. bottom: 18.2/262.1
  22257. }
  22258. },
  22259. back: {
  22260. height: math.unit(2 + 6 /12, "feet"),
  22261. weight: math.unit(30, "lb"),
  22262. name: "Back",
  22263. image: {
  22264. source: "./media/characters/layla/back.svg",
  22265. extra: 308/241.5,
  22266. bottom: 8.9/316.8
  22267. }
  22268. },
  22269. cumming: {
  22270. height: math.unit(2 + 6 /12, "feet"),
  22271. weight: math.unit(30, "lb"),
  22272. name: "Cumming",
  22273. image: {
  22274. source: "./media/characters/layla/cumming.svg",
  22275. extra: 342/279,
  22276. bottom: 595/938
  22277. }
  22278. },
  22279. dickFlaccid: {
  22280. height: math.unit(2.595, "feet"),
  22281. name: "Flaccid Genitals",
  22282. image: {
  22283. source: "./media/characters/layla/dick-flaccid.svg"
  22284. }
  22285. },
  22286. dickErect: {
  22287. height: math.unit(2.359, "feet"),
  22288. name: "Erect Genitals",
  22289. image: {
  22290. source: "./media/characters/layla/dick-erect.svg"
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Micro",
  22297. height: math.unit(1, "inch")
  22298. },
  22299. {
  22300. name: "Small",
  22301. height: math.unit(1, "foot")
  22302. },
  22303. {
  22304. name: "Normal",
  22305. height: math.unit(2 + 6/12, "feet"),
  22306. default: true
  22307. },
  22308. {
  22309. name: "Macro",
  22310. height: math.unit(200, "feet")
  22311. },
  22312. {
  22313. name: "Megamacro",
  22314. height: math.unit(1000, "miles")
  22315. },
  22316. {
  22317. name: "Planetary",
  22318. height: math.unit(8000, "miles")
  22319. },
  22320. {
  22321. name: "True Layla",
  22322. height: math.unit(200000*7, "multiverses")
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22328. {
  22329. back: {
  22330. height: math.unit(10.5, "feet"),
  22331. weight: math.unit(800, "lb"),
  22332. name: "Back",
  22333. image: {
  22334. source: "./media/characters/knox/back.svg",
  22335. extra: 1486/1089,
  22336. bottom: 107/1601.4
  22337. }
  22338. },
  22339. side: {
  22340. height: math.unit(10.5, "feet"),
  22341. weight: math.unit(800, "lb"),
  22342. name: "Side",
  22343. image: {
  22344. source: "./media/characters/knox/side.svg",
  22345. extra: 244/218,
  22346. bottom: 14/260
  22347. }
  22348. },
  22349. },
  22350. [
  22351. {
  22352. name: "Compact",
  22353. height: math.unit(10.5, "feet"),
  22354. default: true
  22355. },
  22356. {
  22357. name: "Dynamax",
  22358. height: math.unit(210, "feet")
  22359. },
  22360. {
  22361. name: "Full Macro",
  22362. height: math.unit(850, "feet")
  22363. },
  22364. ]
  22365. ))
  22366. characterMakers.push(() => makeCharacter(
  22367. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22368. {
  22369. front: {
  22370. height: math.unit(6, "feet"),
  22371. weight: math.unit(152, "lb"),
  22372. name: "Front",
  22373. image: {
  22374. source: "./media/characters/shin-pikachu/front.svg",
  22375. extra: 1574/1480,
  22376. bottom: 53.3/1626
  22377. }
  22378. },
  22379. hand: {
  22380. height: math.unit(1.055, "feet"),
  22381. name: "Hand",
  22382. image: {
  22383. source: "./media/characters/shin-pikachu/hand.svg"
  22384. }
  22385. },
  22386. foot: {
  22387. height: math.unit(1.1, "feet"),
  22388. name: "Foot",
  22389. image: {
  22390. source: "./media/characters/shin-pikachu/foot.svg"
  22391. }
  22392. },
  22393. collar: {
  22394. height: math.unit(0.386, "feet"),
  22395. name: "Collar",
  22396. image: {
  22397. source: "./media/characters/shin-pikachu/collar.svg"
  22398. }
  22399. },
  22400. },
  22401. [
  22402. {
  22403. name: "Smallest",
  22404. height: math.unit(0.5, "inches")
  22405. },
  22406. {
  22407. name: "Micro",
  22408. height: math.unit(6, "inches")
  22409. },
  22410. {
  22411. name: "Normal",
  22412. height: math.unit(6, "feet"),
  22413. default: true
  22414. },
  22415. {
  22416. name: "Macro",
  22417. height: math.unit(150, "feet")
  22418. },
  22419. ]
  22420. ))
  22421. characterMakers.push(() => makeCharacter(
  22422. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22423. {
  22424. front: {
  22425. height: math.unit(28, "feet"),
  22426. weight: math.unit(10500, "lb"),
  22427. name: "Front",
  22428. image: {
  22429. source: "./media/characters/kayda/front.svg",
  22430. extra: 1536/1428,
  22431. bottom: 68.7/1603
  22432. }
  22433. },
  22434. back: {
  22435. height: math.unit(28, "feet"),
  22436. weight: math.unit(10500, "lb"),
  22437. name: "Back",
  22438. image: {
  22439. source: "./media/characters/kayda/back.svg",
  22440. extra: 1557/1464,
  22441. bottom: 39.5/1597.49
  22442. }
  22443. },
  22444. dick: {
  22445. height: math.unit(3.858, "feet"),
  22446. name: "Dick",
  22447. image: {
  22448. source: "./media/characters/kayda/dick.svg"
  22449. }
  22450. },
  22451. },
  22452. [
  22453. {
  22454. name: "Macro",
  22455. height: math.unit(28, "feet"),
  22456. default: true
  22457. },
  22458. ]
  22459. ))
  22460. characterMakers.push(() => makeCharacter(
  22461. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22462. {
  22463. front: {
  22464. height: math.unit(10 + 11/12, "feet"),
  22465. weight: math.unit(1400, "lb"),
  22466. name: "Front",
  22467. image: {
  22468. source: "./media/characters/brian/front.svg",
  22469. extra: 737/692,
  22470. bottom: 55.4/785
  22471. }
  22472. },
  22473. },
  22474. [
  22475. {
  22476. name: "Normal",
  22477. height: math.unit(10 + 11/12, "feet"),
  22478. default: true
  22479. },
  22480. ]
  22481. ))
  22482. characterMakers.push(() => makeCharacter(
  22483. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22484. {
  22485. front: {
  22486. height: math.unit(5 + 8/12, "feet"),
  22487. weight: math.unit(140, "lb"),
  22488. name: "Front",
  22489. image: {
  22490. source: "./media/characters/khemri/front.svg",
  22491. extra: 4780/4059,
  22492. bottom: 80.1/4859.25
  22493. }
  22494. },
  22495. },
  22496. [
  22497. {
  22498. name: "Micro",
  22499. height: math.unit(6, "inches")
  22500. },
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(5 + 8/12, "feet"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22510. {
  22511. front: {
  22512. height: math.unit(13, "feet"),
  22513. weight: math.unit(1700, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/felix-braveheart/front.svg",
  22517. extra: 1222/1157,
  22518. bottom: 53.2/1280
  22519. }
  22520. },
  22521. back: {
  22522. height: math.unit(13, "feet"),
  22523. weight: math.unit(1700, "lb"),
  22524. name: "Back",
  22525. image: {
  22526. source: "./media/characters/felix-braveheart/back.svg",
  22527. extra: 1277/1203,
  22528. bottom: 50.2/1327
  22529. }
  22530. },
  22531. feral: {
  22532. height: math.unit(6, "feet"),
  22533. weight: math.unit(400, "lb"),
  22534. name: "Feral",
  22535. image: {
  22536. source: "./media/characters/felix-braveheart/feral.svg",
  22537. extra: 682/625,
  22538. bottom: 6.9/688
  22539. }
  22540. },
  22541. },
  22542. [
  22543. {
  22544. name: "Normal",
  22545. height: math.unit(13, "feet"),
  22546. default: true
  22547. },
  22548. ]
  22549. ))
  22550. characterMakers.push(() => makeCharacter(
  22551. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22552. {
  22553. side: {
  22554. height: math.unit(5 + 11/12, "feet"),
  22555. weight: math.unit(1400, "lb"),
  22556. name: "Side",
  22557. image: {
  22558. source: "./media/characters/shadow-blade/side.svg",
  22559. extra: 1726/1267,
  22560. bottom: 58.4/1785
  22561. }
  22562. },
  22563. },
  22564. [
  22565. {
  22566. name: "Normal",
  22567. height: math.unit(5 + 11/12, "feet"),
  22568. default: true
  22569. },
  22570. ]
  22571. ))
  22572. characterMakers.push(() => makeCharacter(
  22573. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22574. {
  22575. front: {
  22576. height: math.unit(1 + 6/12, "feet"),
  22577. weight: math.unit(25, "lb"),
  22578. name: "Front",
  22579. image: {
  22580. source: "./media/characters/karla-halldor/front.svg",
  22581. extra: 1459/1383,
  22582. bottom: 12/1472
  22583. }
  22584. },
  22585. },
  22586. [
  22587. {
  22588. name: "Normal",
  22589. height: math.unit(1 + 6/12, "feet"),
  22590. default: true
  22591. },
  22592. ]
  22593. ))
  22594. characterMakers.push(() => makeCharacter(
  22595. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22596. {
  22597. front: {
  22598. height: math.unit(6 + 2/12, "feet"),
  22599. weight: math.unit(160, "lb"),
  22600. name: "Front",
  22601. image: {
  22602. source: "./media/characters/ariam/front.svg",
  22603. extra: 714/617,
  22604. bottom: 23.4/737,
  22605. }
  22606. },
  22607. squatting: {
  22608. height: math.unit(4.1, "feet"),
  22609. weight: math.unit(160, "lb"),
  22610. name: "Squatting",
  22611. image: {
  22612. source: "./media/characters/ariam/squatting.svg",
  22613. extra: 2617/2112,
  22614. bottom: 61.2/2681,
  22615. }
  22616. },
  22617. },
  22618. [
  22619. {
  22620. name: "Normal",
  22621. height: math.unit(6 + 2/12, "feet"),
  22622. default: true
  22623. },
  22624. {
  22625. name: "Normal+",
  22626. height: math.unit(4, "meters")
  22627. },
  22628. {
  22629. name: "Macro",
  22630. height: math.unit(50, "meters")
  22631. },
  22632. {
  22633. name: "Macro+",
  22634. height: math.unit(100, "meters")
  22635. },
  22636. {
  22637. name: "Megamacro",
  22638. height: math.unit(20, "km")
  22639. },
  22640. ]
  22641. ))
  22642. characterMakers.push(() => makeCharacter(
  22643. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22644. {
  22645. front: {
  22646. height: math.unit(1.67, "meters"),
  22647. weight: math.unit(140, "lb"),
  22648. name: "Front",
  22649. image: {
  22650. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22651. extra: 438/410,
  22652. bottom: 0.75/439
  22653. }
  22654. },
  22655. },
  22656. [
  22657. {
  22658. name: "Shrunken",
  22659. height: math.unit(7.6, "cm")
  22660. },
  22661. {
  22662. name: "Human Scale",
  22663. height: math.unit(1.67, "meters")
  22664. },
  22665. {
  22666. name: "Wolxi Scale",
  22667. height: math.unit(36.7, "meters"),
  22668. default: true
  22669. },
  22670. ]
  22671. ))
  22672. characterMakers.push(() => makeCharacter(
  22673. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22674. {
  22675. front: {
  22676. height: math.unit(1.73, "meters"),
  22677. weight: math.unit(240, "lb"),
  22678. name: "Front",
  22679. image: {
  22680. source: "./media/characters/izue-two-mothers/front.svg",
  22681. extra: 469/437,
  22682. bottom: 1.24/470.6
  22683. }
  22684. },
  22685. },
  22686. [
  22687. {
  22688. name: "Shrunken",
  22689. height: math.unit(7.86, "cm")
  22690. },
  22691. {
  22692. name: "Human Scale",
  22693. height: math.unit(1.73, "meters")
  22694. },
  22695. {
  22696. name: "Wolxi Scale",
  22697. height: math.unit(38, "meters"),
  22698. default: true
  22699. },
  22700. ]
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(1.55, "meters"),
  22707. weight: math.unit(120, "lb"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/teeku-love-shack/front.svg",
  22711. extra: 387/362,
  22712. bottom: 1.51/388
  22713. }
  22714. },
  22715. },
  22716. [
  22717. {
  22718. name: "Shrunken",
  22719. height: math.unit(7, "cm")
  22720. },
  22721. {
  22722. name: "Human Scale",
  22723. height: math.unit(1.55, "meters")
  22724. },
  22725. {
  22726. name: "Wolxi Scale",
  22727. height: math.unit(34.1, "meters"),
  22728. default: true
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22734. {
  22735. front: {
  22736. height: math.unit(1.83, "meters"),
  22737. weight: math.unit(135, "lb"),
  22738. name: "Front",
  22739. image: {
  22740. source: "./media/characters/dejma-the-red/front.svg",
  22741. extra: 480/458,
  22742. bottom: 1.8/482
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Shrunken",
  22749. height: math.unit(8.3, "cm")
  22750. },
  22751. {
  22752. name: "Human Scale",
  22753. height: math.unit(1.83, "meters")
  22754. },
  22755. {
  22756. name: "Wolxi Scale",
  22757. height: math.unit(40, "meters"),
  22758. default: true
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22764. {
  22765. front: {
  22766. height: math.unit(1.78, "meters"),
  22767. weight: math.unit(65, "kg"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/aki/front.svg",
  22771. extra: 452/415
  22772. }
  22773. },
  22774. frontNsfw: {
  22775. height: math.unit(1.78, "meters"),
  22776. weight: math.unit(65, "kg"),
  22777. name: "Front (NSFW)",
  22778. image: {
  22779. source: "./media/characters/aki/front-nsfw.svg",
  22780. extra: 452/415
  22781. }
  22782. },
  22783. back: {
  22784. height: math.unit(1.78, "meters"),
  22785. weight: math.unit(65, "kg"),
  22786. name: "Back",
  22787. image: {
  22788. source: "./media/characters/aki/back.svg",
  22789. extra: 452/415
  22790. }
  22791. },
  22792. rump: {
  22793. height: math.unit(2.05, "feet"),
  22794. name: "Rump",
  22795. image: {
  22796. source: "./media/characters/aki/rump.svg"
  22797. }
  22798. },
  22799. dick: {
  22800. height: math.unit(0.95, "feet"),
  22801. name: "Dick",
  22802. image: {
  22803. source: "./media/characters/aki/dick.svg"
  22804. }
  22805. },
  22806. },
  22807. [
  22808. {
  22809. name: "Micro",
  22810. height: math.unit(15, "cm")
  22811. },
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(178, "cm"),
  22815. default: true
  22816. },
  22817. {
  22818. name: "Macro",
  22819. height: math.unit(214, "m")
  22820. },
  22821. {
  22822. name: "Macro+",
  22823. height: math.unit(534, "m")
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22829. {
  22830. front: {
  22831. height: math.unit(5 + 5/12, "feet"),
  22832. weight: math.unit(120, "lb"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/ari/front.svg",
  22836. extra: 714.5/682,
  22837. bottom: 8/722.5
  22838. }
  22839. },
  22840. },
  22841. [
  22842. {
  22843. name: "Normal",
  22844. height: math.unit(5 + 5/12, "feet")
  22845. },
  22846. {
  22847. name: "Macro",
  22848. height: math.unit(100, "feet"),
  22849. default: true
  22850. },
  22851. {
  22852. name: "Megamacro",
  22853. height: math.unit(100, "miles")
  22854. },
  22855. {
  22856. name: "Gigamacro",
  22857. height: math.unit(80000, "miles")
  22858. },
  22859. ]
  22860. ))
  22861. characterMakers.push(() => makeCharacter(
  22862. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22863. {
  22864. side: {
  22865. height: math.unit(9, "feet"),
  22866. weight: math.unit(400, "kg"),
  22867. name: "Side",
  22868. image: {
  22869. source: "./media/characters/bolt/side.svg",
  22870. extra: 1126/896,
  22871. bottom: 60/1187.3,
  22872. }
  22873. },
  22874. },
  22875. [
  22876. {
  22877. name: "Micro",
  22878. height: math.unit(5, "inches")
  22879. },
  22880. {
  22881. name: "Normal",
  22882. height: math.unit(9, "feet"),
  22883. default: true
  22884. },
  22885. {
  22886. name: "Macro",
  22887. height: math.unit(700, "feet")
  22888. },
  22889. {
  22890. name: "Max Size",
  22891. height: math.unit(1.52e22, "yottameters")
  22892. },
  22893. ]
  22894. ))
  22895. characterMakers.push(() => makeCharacter(
  22896. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22897. {
  22898. front: {
  22899. height: math.unit(4.53, "meters"),
  22900. weight: math.unit(3, "tons"),
  22901. name: "Front",
  22902. image: {
  22903. source: "./media/characters/draekon-sylviar/front.svg",
  22904. extra: 1228/1068,
  22905. bottom: 41/1270
  22906. }
  22907. },
  22908. tail: {
  22909. height: math.unit(1.772, "meter"),
  22910. name: "Tail",
  22911. image: {
  22912. source: "./media/characters/draekon-sylviar/tail.svg"
  22913. }
  22914. },
  22915. head: {
  22916. height: math.unit(1.331, "meter"),
  22917. name: "Head",
  22918. image: {
  22919. source: "./media/characters/draekon-sylviar/head.svg"
  22920. }
  22921. },
  22922. hand: {
  22923. height: math.unit(0.564, "meter"),
  22924. name: "Hand",
  22925. image: {
  22926. source: "./media/characters/draekon-sylviar/hand.svg"
  22927. }
  22928. },
  22929. foot: {
  22930. height: math.unit(0.621, "meter"),
  22931. name: "Foot",
  22932. image: {
  22933. source: "./media/characters/draekon-sylviar/foot.svg",
  22934. bottom: 32/324
  22935. }
  22936. },
  22937. dick: {
  22938. height: math.unit(61, "cm"),
  22939. name: "Dick",
  22940. image: {
  22941. source: "./media/characters/draekon-sylviar/dick.svg"
  22942. }
  22943. },
  22944. dickseparated: {
  22945. height: math.unit(61, "cm"),
  22946. name: "Dick-separated",
  22947. image: {
  22948. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22949. }
  22950. },
  22951. },
  22952. [
  22953. {
  22954. name: "Small",
  22955. height: math.unit(4.53/2, "meters"),
  22956. default: true
  22957. },
  22958. {
  22959. name: "Normal",
  22960. height: math.unit(4.53, "meters"),
  22961. default: true
  22962. },
  22963. {
  22964. name: "Large",
  22965. height: math.unit(4.53*2, "meters"),
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22971. {
  22972. front: {
  22973. height: math.unit(6 + 2/12, "feet"),
  22974. weight: math.unit(180, "lb"),
  22975. name: "Front",
  22976. image: {
  22977. source: "./media/characters/brawler/front.svg",
  22978. extra: 3301/3027,
  22979. bottom: 138/3439
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Normal",
  22986. height: math.unit(6 + 2/12, "feet"),
  22987. default: true
  22988. },
  22989. ]
  22990. ))
  22991. characterMakers.push(() => makeCharacter(
  22992. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22993. {
  22994. front: {
  22995. height: math.unit(11, "feet"),
  22996. weight: math.unit(1000, "lb"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/alex/front.svg",
  23000. bottom: 44.5/620
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Micro",
  23007. height: math.unit(5, "inches")
  23008. },
  23009. {
  23010. name: "Normal",
  23011. height: math.unit(11, "feet"),
  23012. default: true
  23013. },
  23014. {
  23015. name: "Macro",
  23016. height: math.unit(9.5e9, "feet")
  23017. },
  23018. {
  23019. name: "Max Size",
  23020. height: math.unit(1.4e283, "yottameters")
  23021. },
  23022. ]
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23026. {
  23027. female: {
  23028. height: math.unit(29.9, "m"),
  23029. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  23030. name: "Female",
  23031. image: {
  23032. source: "./media/characters/zenari/female.svg",
  23033. extra: 3281.6/3217,
  23034. bottom: 72.2/3353
  23035. }
  23036. },
  23037. male: {
  23038. height: math.unit(27.7, "m"),
  23039. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  23040. name: "Male",
  23041. image: {
  23042. source: "./media/characters/zenari/male.svg",
  23043. extra: 3008/2991,
  23044. bottom: 54.6/3069
  23045. }
  23046. },
  23047. },
  23048. [
  23049. {
  23050. name: "Macro",
  23051. height: math.unit(29.7, "meters"),
  23052. default: true
  23053. },
  23054. ]
  23055. ))
  23056. characterMakers.push(() => makeCharacter(
  23057. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23058. {
  23059. female: {
  23060. height: math.unit(23.8, "m"),
  23061. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  23062. name: "Female",
  23063. image: {
  23064. source: "./media/characters/mactarian/female.svg",
  23065. extra: 2662/2569,
  23066. bottom: 73/2736
  23067. }
  23068. },
  23069. male: {
  23070. height: math.unit(23.8, "m"),
  23071. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  23072. name: "Male",
  23073. image: {
  23074. source: "./media/characters/mactarian/male.svg",
  23075. extra: 2673/2600,
  23076. bottom: 76/2750
  23077. }
  23078. },
  23079. },
  23080. [
  23081. {
  23082. name: "Macro",
  23083. height: math.unit(23.8, "meters"),
  23084. default: true
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23090. {
  23091. female: {
  23092. height: math.unit(19.3, "m"),
  23093. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  23094. name: "Female",
  23095. image: {
  23096. source: "./media/characters/umok/female.svg",
  23097. extra: 2186/2078,
  23098. bottom: 87/2277
  23099. }
  23100. },
  23101. male: {
  23102. height: math.unit(19.5, "m"),
  23103. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  23104. name: "Male",
  23105. image: {
  23106. source: "./media/characters/umok/male.svg",
  23107. extra: 2233/2140,
  23108. bottom: 24.4/2258
  23109. }
  23110. },
  23111. },
  23112. [
  23113. {
  23114. name: "Macro",
  23115. height: math.unit(19.3, "meters"),
  23116. default: true
  23117. },
  23118. ]
  23119. ))
  23120. characterMakers.push(() => makeCharacter(
  23121. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23122. {
  23123. female: {
  23124. height: math.unit(26.15, "m"),
  23125. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  23126. name: "Female",
  23127. image: {
  23128. source: "./media/characters/joraxian/female.svg",
  23129. extra: 2943/2831,
  23130. bottom: 27/2972
  23131. }
  23132. },
  23133. male: {
  23134. height: math.unit(25.4, "m"),
  23135. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  23136. name: "Male",
  23137. image: {
  23138. source: "./media/characters/joraxian/male.svg",
  23139. extra: 2835/2741,
  23140. bottom: 27/2862
  23141. }
  23142. },
  23143. },
  23144. [
  23145. {
  23146. name: "Macro",
  23147. height: math.unit(26.15, "meters"),
  23148. default: true
  23149. },
  23150. ]
  23151. ))
  23152. characterMakers.push(() => makeCharacter(
  23153. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23154. {
  23155. female: {
  23156. height: math.unit(21.6, "m"),
  23157. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  23158. name: "Female",
  23159. image: {
  23160. source: "./media/characters/sthara/female.svg",
  23161. extra: 2516/2347,
  23162. bottom: 21.5/2537
  23163. }
  23164. },
  23165. male: {
  23166. height: math.unit(24, "m"),
  23167. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  23168. name: "Male",
  23169. image: {
  23170. source: "./media/characters/sthara/male.svg",
  23171. extra: 2732/2607,
  23172. bottom: 23/2732
  23173. }
  23174. },
  23175. },
  23176. [
  23177. {
  23178. name: "Macro",
  23179. height: math.unit(21.6, "meters"),
  23180. default: true
  23181. },
  23182. ]
  23183. ))
  23184. characterMakers.push(() => makeCharacter(
  23185. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23186. {
  23187. front: {
  23188. height: math.unit(6 + 4/12, "feet"),
  23189. weight: math.unit(175, "lb"),
  23190. name: "Front",
  23191. image: {
  23192. source: "./media/characters/luka-bryzant/front.svg",
  23193. extra: 311/289,
  23194. bottom: 4/315
  23195. }
  23196. },
  23197. back: {
  23198. height: math.unit(6 + 4/12, "feet"),
  23199. weight: math.unit(175, "lb"),
  23200. name: "Back",
  23201. image: {
  23202. source: "./media/characters/luka-bryzant/back.svg",
  23203. extra: 311/289,
  23204. bottom: 3.8/313.7
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Micro",
  23211. height: math.unit(10, "inches")
  23212. },
  23213. {
  23214. name: "Normal",
  23215. height: math.unit(6 + 4/12, "feet"),
  23216. default: true
  23217. },
  23218. {
  23219. name: "Large",
  23220. height: math.unit(12, "feet")
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23226. {
  23227. front: {
  23228. height: math.unit(5 + 7/12, "feet"),
  23229. weight: math.unit(185, "lb"),
  23230. name: "Front",
  23231. image: {
  23232. source: "./media/characters/aman-aquila/front.svg",
  23233. extra: 1013/976,
  23234. bottom: 45.6/1057
  23235. }
  23236. },
  23237. side: {
  23238. height: math.unit(5 + 7/12, "feet"),
  23239. weight: math.unit(185, "lb"),
  23240. name: "Side",
  23241. image: {
  23242. source: "./media/characters/aman-aquila/side.svg",
  23243. extra: 1054/1011,
  23244. bottom: 15/1070
  23245. }
  23246. },
  23247. back: {
  23248. height: math.unit(5 + 7/12, "feet"),
  23249. weight: math.unit(185, "lb"),
  23250. name: "Back",
  23251. image: {
  23252. source: "./media/characters/aman-aquila/back.svg",
  23253. extra: 1026/970,
  23254. bottom: 12/1039
  23255. }
  23256. },
  23257. head: {
  23258. height: math.unit(1.211, "feet"),
  23259. name: "Head",
  23260. image: {
  23261. source: "./media/characters/aman-aquila/head.svg",
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Minimicro",
  23268. height: math.unit(0.057, "inches")
  23269. },
  23270. {
  23271. name: "Micro",
  23272. height: math.unit(7, "inches")
  23273. },
  23274. {
  23275. name: "Mini",
  23276. height: math.unit(3 + 7/12, "feet")
  23277. },
  23278. {
  23279. name: "Normal",
  23280. height: math.unit(5 + 7/12, "feet"),
  23281. default: true
  23282. },
  23283. {
  23284. name: "Macro",
  23285. height: math.unit(157 + 7/12, "feet")
  23286. },
  23287. {
  23288. name: "Megamacro",
  23289. height: math.unit(1557 + 7/12, "feet")
  23290. },
  23291. {
  23292. name: "Gigamacro",
  23293. height: math.unit(15557 + 7/12, "feet")
  23294. },
  23295. ]
  23296. ))
  23297. characterMakers.push(() => makeCharacter(
  23298. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23299. {
  23300. front: {
  23301. height: math.unit(3 + 2/12, "inches"),
  23302. weight: math.unit(0.3, "ounces"),
  23303. name: "Front",
  23304. image: {
  23305. source: "./media/characters/hiphae/front.svg",
  23306. extra: 1931/1683,
  23307. bottom: 24/1955
  23308. }
  23309. },
  23310. },
  23311. [
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(3 + 1/2, "inches"),
  23315. default: true
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(5 + 10/12, "feet"),
  23324. weight: math.unit(165, "lb"),
  23325. name: "Front",
  23326. image: {
  23327. source: "./media/characters/nicky/front.svg",
  23328. extra: 3144/2886,
  23329. bottom: 45.6/3192
  23330. }
  23331. },
  23332. back: {
  23333. height: math.unit(5 + 10/12, "feet"),
  23334. weight: math.unit(165, "lb"),
  23335. name: "Back",
  23336. image: {
  23337. source: "./media/characters/nicky/back.svg",
  23338. extra: 3055/2804,
  23339. bottom: 28.4/3087
  23340. }
  23341. },
  23342. frontclothed: {
  23343. height: math.unit(5 + 10/12, "feet"),
  23344. weight: math.unit(165, "lb"),
  23345. name: "Front-clothed",
  23346. image: {
  23347. source: "./media/characters/nicky/front-clothed.svg",
  23348. extra: 3184.9/2926.9,
  23349. bottom: 86.5/3239.9
  23350. }
  23351. },
  23352. foot: {
  23353. height: math.unit(1.16, "feet"),
  23354. name: "Foot",
  23355. image: {
  23356. source: "./media/characters/nicky/foot.svg"
  23357. }
  23358. },
  23359. feet: {
  23360. height: math.unit(1.34, "feet"),
  23361. name: "Feet",
  23362. image: {
  23363. source: "./media/characters/nicky/feet.svg"
  23364. }
  23365. },
  23366. maw: {
  23367. height: math.unit(0.9, "feet"),
  23368. name: "Maw",
  23369. image: {
  23370. source: "./media/characters/nicky/maw.svg"
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(5 + 10/12, "feet"),
  23378. default: true
  23379. },
  23380. {
  23381. name: "Macro",
  23382. height: math.unit(60, "feet")
  23383. },
  23384. {
  23385. name: "Megamacro",
  23386. height: math.unit(1, "mile")
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23392. {
  23393. side: {
  23394. height: math.unit(10, "feet"),
  23395. weight: math.unit(600, "lb"),
  23396. name: "Side",
  23397. image: {
  23398. source: "./media/characters/blair/side.svg",
  23399. bottom: 16.6/475,
  23400. extra: 458/431
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Micro",
  23407. height: math.unit(8, "inches")
  23408. },
  23409. {
  23410. name: "Normal",
  23411. height: math.unit(10, "feet"),
  23412. default: true
  23413. },
  23414. {
  23415. name: "Macro",
  23416. height: math.unit(180, "feet")
  23417. },
  23418. ]
  23419. ))
  23420. characterMakers.push(() => makeCharacter(
  23421. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23422. {
  23423. front: {
  23424. height: math.unit(5 + 4/12, "feet"),
  23425. weight: math.unit(125, "lb"),
  23426. name: "Front",
  23427. image: {
  23428. source: "./media/characters/fisher/front.svg",
  23429. extra: 444/390,
  23430. bottom: 2/444.8
  23431. }
  23432. },
  23433. },
  23434. [
  23435. {
  23436. name: "Micro",
  23437. height: math.unit(4, "inches")
  23438. },
  23439. {
  23440. name: "Normal",
  23441. height: math.unit(5 + 4/12, "feet"),
  23442. default: true
  23443. },
  23444. {
  23445. name: "Macro",
  23446. height: math.unit(100, "feet")
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23452. {
  23453. front: {
  23454. height: math.unit(6.71, "feet"),
  23455. weight: math.unit(200, "lb"),
  23456. capacity: math.unit(1000000, "people"),
  23457. name: "Front",
  23458. image: {
  23459. source: "./media/characters/gliss/front.svg",
  23460. extra: 2347/2231,
  23461. bottom: 113/2462
  23462. }
  23463. },
  23464. hammerspaceSize: {
  23465. height: math.unit(6.71*717, "feet"),
  23466. weight: math.unit(200, "lb"),
  23467. capacity: math.unit(1000000, "people"),
  23468. name: "Hammerspace Size",
  23469. image: {
  23470. source: "./media/characters/gliss/front.svg",
  23471. extra: 2347/2231,
  23472. bottom: 113/2462
  23473. }
  23474. },
  23475. },
  23476. [
  23477. {
  23478. name: "Normal",
  23479. height: math.unit(6.71, "feet"),
  23480. default: true
  23481. },
  23482. ]
  23483. ))
  23484. characterMakers.push(() => makeCharacter(
  23485. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23486. {
  23487. side: {
  23488. height: math.unit(1.44, "m"),
  23489. weight: math.unit(80, "kg"),
  23490. name: "Side",
  23491. image: {
  23492. source: "./media/characters/dune-anderson/side.svg",
  23493. bottom: 49/1426
  23494. }
  23495. },
  23496. },
  23497. [
  23498. {
  23499. name: "Wolf-sized",
  23500. height: math.unit(1.44, "meters")
  23501. },
  23502. {
  23503. name: "Normal",
  23504. height: math.unit(5.05, "meters"),
  23505. default: true
  23506. },
  23507. {
  23508. name: "Big",
  23509. height: math.unit(14.4, "meters")
  23510. },
  23511. {
  23512. name: "Huge",
  23513. height: math.unit(144, "meters")
  23514. },
  23515. ]
  23516. ))
  23517. characterMakers.push(() => makeCharacter(
  23518. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23519. {
  23520. front: {
  23521. height: math.unit(7, "feet"),
  23522. weight: math.unit(425, "lb"),
  23523. name: "Front",
  23524. image: {
  23525. source: "./media/characters/hind/front.svg",
  23526. extra: 2091/1860,
  23527. bottom: 129/2220
  23528. }
  23529. },
  23530. back: {
  23531. height: math.unit(7, "feet"),
  23532. weight: math.unit(425, "lb"),
  23533. name: "Back",
  23534. image: {
  23535. source: "./media/characters/hind/back.svg",
  23536. extra: 2091/1860,
  23537. bottom: 24.6/2309
  23538. }
  23539. },
  23540. tail: {
  23541. height: math.unit(2.8, "feet"),
  23542. name: "Tail",
  23543. image: {
  23544. source: "./media/characters/hind/tail.svg"
  23545. }
  23546. },
  23547. head: {
  23548. height: math.unit(2.55, "feet"),
  23549. name: "Head",
  23550. image: {
  23551. source: "./media/characters/hind/head.svg"
  23552. }
  23553. },
  23554. },
  23555. [
  23556. {
  23557. name: "XS",
  23558. height: math.unit(0.7, "feet")
  23559. },
  23560. {
  23561. name: "Normal",
  23562. height: math.unit(7, "feet"),
  23563. default: true
  23564. },
  23565. {
  23566. name: "XL",
  23567. height: math.unit(70, "feet")
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23573. {
  23574. front: {
  23575. height: math.unit(6, "feet"),
  23576. weight: math.unit(150, "lb"),
  23577. name: "Front",
  23578. image: {
  23579. source: "./media/characters/dylan-skaven/front.svg",
  23580. extra: 2318/2063,
  23581. bottom: 93.4/2410
  23582. }
  23583. },
  23584. },
  23585. [
  23586. {
  23587. name: "Nano",
  23588. height: math.unit(1, "mm")
  23589. },
  23590. {
  23591. name: "Micro",
  23592. height: math.unit(1, "cm")
  23593. },
  23594. {
  23595. name: "Normal",
  23596. height: math.unit(2.1, "meters"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23603. {
  23604. front: {
  23605. height: math.unit(7 + 5/12, "feet"),
  23606. weight: math.unit(357, "lb"),
  23607. name: "Front",
  23608. image: {
  23609. source: "./media/characters/solex-draconov/front.svg",
  23610. extra: 1993/1865,
  23611. bottom: 117/2111
  23612. }
  23613. },
  23614. },
  23615. [
  23616. {
  23617. name: "Natural Height",
  23618. height: math.unit(7 + 5/12, "feet"),
  23619. default: true
  23620. },
  23621. {
  23622. name: "Macro",
  23623. height: math.unit(350, "feet")
  23624. },
  23625. {
  23626. name: "Macro+",
  23627. height: math.unit(1000, "feet")
  23628. },
  23629. {
  23630. name: "Megamacro",
  23631. height: math.unit(20, "km")
  23632. },
  23633. {
  23634. name: "Megamacro+",
  23635. height: math.unit(1000, "km")
  23636. },
  23637. {
  23638. name: "Gigamacro",
  23639. height: math.unit(2.5, "Gm")
  23640. },
  23641. {
  23642. name: "Teramacro",
  23643. height: math.unit(15, "Tm")
  23644. },
  23645. {
  23646. name: "Galactic",
  23647. height: math.unit(30, "Zm")
  23648. },
  23649. {
  23650. name: "Universal",
  23651. height: math.unit(21000, "Ym")
  23652. },
  23653. {
  23654. name: "Omniversal",
  23655. height: math.unit(9.861e50, "Ym")
  23656. },
  23657. {
  23658. name: "Existential",
  23659. height: math.unit(1e300, "meters")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23665. {
  23666. side: {
  23667. height: math.unit(25, "feet"),
  23668. weight: math.unit(90000, "lb"),
  23669. name: "Side",
  23670. image: {
  23671. source: "./media/characters/mandarax/side.svg",
  23672. extra: 614/332,
  23673. bottom: 55/630
  23674. }
  23675. },
  23676. head: {
  23677. height: math.unit(11.4, "feet"),
  23678. name: "Head",
  23679. image: {
  23680. source: "./media/characters/mandarax/head.svg"
  23681. }
  23682. },
  23683. belly: {
  23684. height: math.unit(33, "feet"),
  23685. name: "Belly",
  23686. capacity: math.unit(500, "people"),
  23687. image: {
  23688. source: "./media/characters/mandarax/belly.svg"
  23689. }
  23690. },
  23691. dick: {
  23692. height: math.unit(8.46, "feet"),
  23693. name: "Dick",
  23694. image: {
  23695. source: "./media/characters/mandarax/dick.svg"
  23696. }
  23697. },
  23698. top: {
  23699. height: math.unit(28, "meters"),
  23700. name: "Top",
  23701. image: {
  23702. source: "./media/characters/mandarax/top.svg"
  23703. }
  23704. },
  23705. },
  23706. [
  23707. {
  23708. name: "Normal",
  23709. height: math.unit(25, "feet"),
  23710. default: true
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23716. {
  23717. front: {
  23718. height: math.unit(5, "feet"),
  23719. weight: math.unit(90, "lb"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/pixil/front.svg",
  23723. extra: 2000/1618,
  23724. bottom: 12.3/2011
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Normal",
  23731. height: math.unit(5, "feet"),
  23732. default: true
  23733. },
  23734. {
  23735. name: "Megamacro",
  23736. height: math.unit(10, "miles"),
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23742. {
  23743. front: {
  23744. height: math.unit(7 + 2/12, "feet"),
  23745. weight: math.unit(200, "lb"),
  23746. name: "Front",
  23747. image: {
  23748. source: "./media/characters/angel/front.svg",
  23749. extra: 1830/1737,
  23750. bottom: 22.6/1854,
  23751. }
  23752. },
  23753. },
  23754. [
  23755. {
  23756. name: "Normal",
  23757. height: math.unit(7 + 2/12, "feet"),
  23758. default: true
  23759. },
  23760. {
  23761. name: "Macro",
  23762. height: math.unit(1000, "feet")
  23763. },
  23764. {
  23765. name: "Megamacro",
  23766. height: math.unit(2, "miles")
  23767. },
  23768. {
  23769. name: "Gigamacro",
  23770. height: math.unit(20, "earths")
  23771. },
  23772. ]
  23773. ))
  23774. characterMakers.push(() => makeCharacter(
  23775. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23776. {
  23777. front: {
  23778. height: math.unit(5, "feet"),
  23779. weight: math.unit(180, "lb"),
  23780. name: "Front",
  23781. image: {
  23782. source: "./media/characters/mekana/front.svg",
  23783. extra: 1671/1605,
  23784. bottom: 3.5/1691
  23785. }
  23786. },
  23787. side: {
  23788. height: math.unit(5, "feet"),
  23789. weight: math.unit(180, "lb"),
  23790. name: "Side",
  23791. image: {
  23792. source: "./media/characters/mekana/side.svg",
  23793. extra: 1671/1605,
  23794. bottom: 3.5/1691
  23795. }
  23796. },
  23797. back: {
  23798. height: math.unit(5, "feet"),
  23799. weight: math.unit(180, "lb"),
  23800. name: "Back",
  23801. image: {
  23802. source: "./media/characters/mekana/back.svg",
  23803. extra: 1671/1605,
  23804. bottom: 3.5/1691
  23805. }
  23806. },
  23807. },
  23808. [
  23809. {
  23810. name: "Normal",
  23811. height: math.unit(5, "feet"),
  23812. default: true
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23818. {
  23819. front: {
  23820. height: math.unit(4 + 6/12, "feet"),
  23821. weight: math.unit(80, "lb"),
  23822. name: "Front",
  23823. image: {
  23824. source: "./media/characters/pixie/front.svg",
  23825. extra: 1924/1825,
  23826. bottom: 22.4/1946
  23827. }
  23828. },
  23829. },
  23830. [
  23831. {
  23832. name: "Normal",
  23833. height: math.unit(4 + 6/12, "feet"),
  23834. default: true
  23835. },
  23836. {
  23837. name: "Macro",
  23838. height: math.unit(40, "feet")
  23839. },
  23840. ]
  23841. ))
  23842. characterMakers.push(() => makeCharacter(
  23843. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  23844. {
  23845. front: {
  23846. height: math.unit(2.1, "meters"),
  23847. weight: math.unit(200, "lb"),
  23848. name: "Front",
  23849. image: {
  23850. source: "./media/characters/the-lascivious/front.svg",
  23851. extra: 1/0.893,
  23852. bottom: 3.5/573.7
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Human Scale",
  23859. height: math.unit(2.1, "meters")
  23860. },
  23861. {
  23862. name: "Wolxi Scale",
  23863. height: math.unit(46.2, "m"),
  23864. default: true
  23865. },
  23866. {
  23867. name: "Boinker of Buildings",
  23868. height: math.unit(10, "km")
  23869. },
  23870. {
  23871. name: "Shagger of Skyscrapers",
  23872. height: math.unit(40, "km")
  23873. },
  23874. {
  23875. name: "Banger of Boroughs",
  23876. height: math.unit(4000, "km")
  23877. },
  23878. {
  23879. name: "Screwer of States",
  23880. height: math.unit(100000, "km")
  23881. },
  23882. {
  23883. name: "Pounder of Planets",
  23884. height: math.unit(2000000, "km")
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  23890. {
  23891. front: {
  23892. height: math.unit(6, "feet"),
  23893. weight: math.unit(150, "lb"),
  23894. name: "Front",
  23895. image: {
  23896. source: "./media/characters/aj/front.svg",
  23897. extra: 2039/1562,
  23898. bottom: 40/2079
  23899. }
  23900. },
  23901. },
  23902. [
  23903. {
  23904. name: "Normal",
  23905. height: math.unit(11 + 6/12, "feet"),
  23906. default: true
  23907. },
  23908. {
  23909. name: "Megamacro",
  23910. height: math.unit(60, "megameters")
  23911. },
  23912. ]
  23913. ))
  23914. //characters
  23915. function makeCharacters() {
  23916. const results = [];
  23917. characterMakers.forEach(character => {
  23918. results.push(character());
  23919. });
  23920. return results;
  23921. }