using System; namespace DominionBase.Cards.Nocturne { public static class TypeClass { public static readonly Type Bard = typeof(Bard); public static readonly Type Bat = typeof(Bat); public static readonly Type BlessedVillage = typeof(BlessedVillage); public static readonly Type Cemetery = typeof(Cemetery); public static readonly Type Changeling = typeof(Changeling); public static readonly Type Cobbler = typeof(Cobbler); public static readonly Type Conclave = typeof(Conclave); public static readonly Type Crypt = typeof(Crypt); public static readonly Type CursedGold = typeof(CursedGold); public static readonly Type CursedVillage = typeof(CursedVillage); public static readonly Type DenOfSin = typeof(DenOfSin); public static readonly Type DevilsWorkshop = typeof(DevilsWorkshop); public static readonly Type Druid = typeof(Druid); public static readonly Type DruidBoons = typeof(DruidBoons); public static readonly Type Exorcist = typeof(Exorcist); public static readonly Type FaithfulHound = typeof(FaithfulHound); public static readonly Type Fool = typeof(Fool); public static readonly Type Ghost = typeof(Ghost); public static readonly Type GhostTown = typeof(GhostTown); public static readonly Type Goat = typeof(Goat); public static readonly Type Guardian = typeof(Guardian); public static readonly Type HauntedMirror = typeof(HauntedMirror); public static readonly Type Idol = typeof(Idol); public static readonly Type Imp = typeof(Imp); public static readonly Type Leprechaun = typeof(Leprechaun); public static readonly Type LostInTheWoods = typeof(LostInTheWoods); public static readonly Type LuckyCoin = typeof(LuckyCoin); public static readonly Type MagicLamp = typeof(MagicLamp); public static readonly Type Monastery = typeof(Monastery); public static readonly Type Necromancer = typeof(Necromancer); public static readonly Type NightWatchman = typeof(NightWatchman); public static readonly Type Pasture = typeof(Pasture); public static readonly Type Pixie = typeof(Pixie); public static readonly Type Pooka = typeof(Pooka); public static readonly Type Pouch = typeof(Pouch); public static readonly Type Raider = typeof(Raider); public static readonly Type SacredGrove = typeof(SacredGrove); public static readonly Type SecretCave = typeof(SecretCave); public static readonly Type Shepherd = typeof(Shepherd); public static readonly Type Skulk = typeof(Skulk); public static readonly Type Tormentor = typeof(Tormentor); public static readonly Type Tracker = typeof(Tracker); public static readonly Type TragicHero = typeof(TragicHero); public static readonly Type Vampire = typeof(Vampire); public static readonly Type Werewolf = typeof(Werewolf); public static readonly Type WillOWisp = typeof(WillOWisp); public static readonly Type Wish = typeof(Wish); public static readonly Type ZombieApprentice = typeof(ZombieApprentice); public static readonly Type ZombieMason = typeof(ZombieMason); public static readonly Type ZombieSpy = typeof(ZombieSpy); // Boons public static readonly Type Boons = typeof(Boons); public static readonly Type TheEarthsGift = typeof(TheEarthsGift); public static readonly Type TheFieldsGift = typeof(TheFieldsGift); public static readonly Type TheFlamesGift = typeof(TheFlamesGift); public static readonly Type TheForestsGift = typeof(TheForestsGift); public static readonly Type TheMoonsGift = typeof(TheMoonsGift); public static readonly Type TheMountainsGift = typeof(TheMountainsGift); public static readonly Type TheRiversGift = typeof(TheRiversGift); public static readonly Type TheSeasGift = typeof(TheSeasGift); public static readonly Type TheSkysGift = typeof(TheSkysGift); public static readonly Type TheSunsGift = typeof(TheSunsGift); public static readonly Type TheSwampsGift = typeof(TheSwampsGift); public static readonly Type TheWindsGift = typeof(TheWindsGift); // Hexes public static readonly Type Hexes = typeof(Hexes); public static readonly Type BadOmens = typeof(BadOmens); public static readonly Type Deluded = typeof(Deluded); public static readonly Type Delusion = typeof(Delusion); public static readonly Type Envious = typeof(Envious); public static readonly Type Envy = typeof(Envy); public static readonly Type Famine = typeof(Famine); public static readonly Type Fear = typeof(Fear); public static readonly Type Greed = typeof(Greed); public static readonly Type Haunting = typeof(Haunting); public static readonly Type Locusts = typeof(Locusts); public static readonly Type Miserable = typeof(Miserable); public static readonly Type Misery = typeof(Misery); public static readonly Type Plague = typeof(Plague); public static readonly Type Poverty = typeof(Poverty); public static readonly Type TwiceMiserable = typeof(TwiceMiserable); public static readonly Type War = typeof(War); } }