Skip to content

Commit

Permalink
Split rogue and bard talents
Browse files Browse the repository at this point in the history
  • Loading branch information
Vek17 committed Jul 22, 2022
1 parent 9508388 commit 5991211
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions TabletopTweaks-Core/Utilities/FeatTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,20 @@ public static class FeatTools {
Selections.SylvanTricksterTalentSelection,
Selections.SlayerTalentSelection10,
Selections.SlayerTalentSelection6,
Selections.SlayerTalentSelection2,
Selections.SkaldTalentSelection,
Selections.SlayerTalentSelection2,
Selections.RogueTalentSelection,
Selections.LoremasterRogueTalentSelection,
Selections.BardTalentSelection,
Selections.BardTalentSelection2
Selections.LoremasterRogueTalentSelection
};
TalentSelections.ForEach(selection => selection.AddFeatures(feature));
}
public static void AddAsBardTalent(BlueprintFeature feature) {
var BardSelections = new BlueprintFeatureSelection[] {
Selections.BardTalentSelection,
Selections.BardTalentSelection2,
Selections.SkaldTalentSelection
};
BardSelections.ForEach(selection => selection.AddFeatures(feature));
}
public static void AddAsArcanistExploit(BlueprintFeature feature) {
var TalentSelections = new BlueprintFeatureSelection[] {
Selections.ExploiterExploitSelection,
Expand Down

0 comments on commit 5991211

Please sign in to comment.