-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
59 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"Releases": [ | ||
{ | ||
"Id": "TabletopTweaks", | ||
"Version": "1.3.4a" | ||
"Version": "1.3.5" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
TabletopTweaks/NewContent/MythicFeats/MythicShatterDefenses.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using Kingmaker.Blueprints.Classes; | ||
using TabletopTweaks.Config; | ||
using TabletopTweaks.Extensions; | ||
using TabletopTweaks.Utilities; | ||
|
||
namespace TabletopTweaks.NewContent.MythicFeats { | ||
class MythicShatterDefenses { | ||
public static void AddMythicShatterDefenses() { | ||
var ShatterDefenses = Resources.GetBlueprint<BlueprintFeature>("61a17ccbbb3d79445b0926347ec07577"); | ||
var ShatterDefensesMythicBuff = Helpers.CreateBuff("ShatterDefensesMythicBuff", bp => { | ||
bp.m_Icon = ShatterDefenses.m_Icon; | ||
bp.SetName("Shattered Defenses (Mythic)"); | ||
bp.SetDescription("An opponent affected by Shatter Defenses is flat-footed to all attacks."); | ||
}); | ||
var ShatterDefensesMythicFeat = Helpers.CreateBlueprint<BlueprintFeature>("ShatterDefensesMythicFeat", bp => { | ||
bp.m_Icon = ShatterDefenses.m_Icon; | ||
bp.SetName("Shatter Defenses (Mythic)"); | ||
bp.SetDescription("An opponent you affect with Shatter Defenses is flat-footed to all attacks, not just yours."); | ||
bp.IsClassFeature = true; | ||
bp.Ranks = 1; | ||
bp.Groups = new FeatureGroup[] { FeatureGroup.MythicFeat }; | ||
bp.AddPrerequisiteFeature(ShatterDefenses); | ||
}); | ||
if (ModSettings.Fixes.Feats.IsDisabled("ShatterDefenses")) { return; } | ||
if (ModSettings.AddedContent.MythicFeats.IsDisabled("MythicShatterDefenses")) { return; } | ||
FeatTools.AddAsMythicFeat(ShatterDefensesMythicFeat); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters