public TheStewardsFearProduct() : base("The Steward's Fear", "MEC18", ImageType.Png) { RulesUrl = "http://www.fantasyflightgames.com/ffg_content/lotr-lcg/support/rulesheets/MEC18-the-stewards-fear-rulesheet.pdf"; CardSets.Add(CardSet.TheStewardsFear); }
public EscapeFromDolGuldurNightmareProduct() : base("Escape from Dol Guldur Nightmare Deck", "MEN03", ImageType.Jpg) { IsPremier = true; CardSets.Add(CardSet.EscapeFromDolGuldurNightmare); }
public TheLongDarkProduct() : base("The Long Dark", "MEC12", ImageType.Png) { RulesUrl = "http://www.fantasyflightgames.com/ffg_content/lotr-lcg/support/rulesheets/The_Long_Dark_rulesheet.pdf"; CardSets.Add(CardSet.TheLongDark); }
public TheVoiceOfIsengardProduct() : base("The Voice of Isengard", "MEC25", ImageType.Png) { RulesUrl = "http://www.fantasyflightgames.com/ffg_content/lotr-lcg/support/rulesheets/the-voice-of-isengard-rulesheet.pdf"; CardSets.Add(CardSet.TheVoiceOfIsengard); }
public TheHuntForGollumProduct() : base("The Hunt for Gollum", "MEC02", ImageType.Png) { RulesUrl = "http://www.fantasyflightgames.com/ffg_content/lotr-lcg/support/rulesheets/rulesheet-TheHuntForGollum.pdf"; CardSets.Add(CardSet.TheHuntForGollum); }
public TheDeadMarshesProduct() : base("The Dead Marshes", "MEC06", ImageType.Png) { RulesUrl = "http://www.fantasyflightgames.com/ffg_content/lotr-lcg/support/rulesheets/The_Dead_Marshes_rulesheet.pdf"; CardSets.Add(CardSet.TheDeadMarshes); }
public TheHobbitOverHillAndUnderHillProduct() : base("The Hobbit: Over Hill and Under Hill", "MEC16", ImageType.Png) { RulesUrl = "http://www.fantasyflightgames.com/ffg_content/lotr-lcg/support/rulesheets/hobbit_over_hill_and_under_hill_rulesheet.pdf"; CardSets.Add(CardSet.TheHobbitOverHillAndUnderHill); }
/// <summary> /// /// </summary> /// <param name="selectedItem"></param> public void RemoveSet(ITreeViewItemViewModel selectedItem) { if (selectedItem == null) { //imply selection selectedItem = this.treeviewCardSets.SelectedValue as ITreeViewItemViewModel; if (selectedItem != null) { CardSetModelView setModel; if (!selectedItem.IsLeaf) { setModel = selectedItem as CardSetModelView; } else { return; } CardSets.Remove(setModel); NotifyPropertyChanged("CardSets"); NotifyPropertyChanged("ObservableCardSets"); } } else { CardSetModelView set = selectedItem as CardSetModelView; if (set != null && CardSets.Contains(set)) { CardSets.Remove(set); NotifyPropertyChanged("CardSets"); NotifyPropertyChanged("ObservableCardSets"); } } }
public JourneyAlongTheAnduinNightmareProduct() : base("Journey Along the Anduin Nightmare Deck", "MEN02", ImageType.Jpg) { IsPremier = true; CardSets.Add(CardSet.JourneyAlongTheAnduinNightmare); }
public TheMorgulValeProduct() : base("The Morgul Vale", "MEC23", ImageType.Png) { RulesUrl = "http://www.fantasyflightgames.com/ffg_content/lotr-lcg/support/rulesheets/rulesheet-the-morgul-vale.pdf"; CardSets.Add(CardSet.TheMorgulVale); }
public TheDunlandTrapProduct() : base("The Dunland Trap", "MEC26", ImageType.Png) { RulesUrl = "http://www.fantasyflightgames.com/ffg_content/lotr-lcg/support/rulesheets/the-dunland-trap-rulesheet.pdf"; CardSets.Add(CardSet.TheDunlandTrap); }
public TheBloodOfGondorProduct() : base("The Blood of Gondor", "MEC22", ImageType.Png) { RulesUrl = "http://www.fantasyflightgames.com/ffg_content/lotr-lcg/support/rulesheets/rulesheet-the-blood-of-gondor.pdf"; CardSets.Add(CardSet.TheBloodOfGondor); }
public TroubleInTharbadProduct() : base("Trouble in Tharbad", "MEC28", ImageType.Png) { RulesUrl = "http://www.fantasyflightgames.com/ffg_content/lotr-lcg/support/rulesheets/trouble-in-tharbad-rulesheet.pdf"; CardSets.Add(new Sets.TroubleInTharbad()); }