diff --git a/Readme.md b/Readme.md index 4d27e47..7b5adea 100644 --- a/Readme.md +++ b/Readme.md @@ -10,6 +10,9 @@ NOW REQUIRES TabletopTweaks Core Module and ModMenu ## Changelog +### 1.4.2 +Emergency hotfix to catch Burn Resistance being backwards + ### 1.4.1 Added Homebrew Rage Power: Rage Stance Mastery. Use two Barbarian stances at once. diff --git a/TomeOfTheFirebird/Info.json b/TomeOfTheFirebird/Info.json index 18d9776..2383bea 100644 --- a/TomeOfTheFirebird/Info.json +++ b/TomeOfTheFirebird/Info.json @@ -2,7 +2,7 @@ "Id": "TomeOfTheFirebird", "DisplayName": "Tome Of The Firebird", "Author": "pheonix99", - "Version": "1.4.1", + "Version": "1.4.2", "ManagerVersion": "0.21.3", "AssemblyName": "TomeOfTheFirebird.dll", "EntryMethod": "TomeOfTheFirebird.Main.Load", diff --git a/TomeOfTheFirebird/Modified Content/Classes/Witch.cs b/TomeOfTheFirebird/Modified Content/Classes/Witch.cs index 14a1010..38d1652 100644 --- a/TomeOfTheFirebird/Modified Content/Classes/Witch.cs +++ b/TomeOfTheFirebird/Modified Content/Classes/Witch.cs @@ -15,6 +15,10 @@ namespace TomeOfTheFirebird.Modified_Content.Classes { class Witch { + //TODO patch freezing sphere into Elements 6 + //TODO patch firestorm into Elements 8 + //TODO patch meteor swarm into Elements 9? + public static void FixIcons() { if (Settings.IsDisabled("FixWitchSpellIcons")) diff --git a/TomeOfTheFirebird/New Content/Feats/AncestralScorn.cs b/TomeOfTheFirebird/New Content/Feats/AncestralScorn.cs new file mode 100644 index 0000000..5c0b5ce --- /dev/null +++ b/TomeOfTheFirebird/New Content/Feats/AncestralScorn.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TomeOfTheFirebird.New_Content.Feats +{ + class AncestralScorn + { + /* + * Ancestral Scorn +Source Blood of Fiends pg. 24 +The fury you harbor for your fiendish ancestors gives evil outsiders great reason to fear you. + +Prerequisites: Intimidate 5 ranks, tiefling. + +Benefit: Whenever you successfully demoralize an outsider of the evil subtype with an Intimidate check, it becomes sickened for 1 round in addition to being affected by the normal effects of being demoralized. If you beat the DC by 5 or more, the creature is nauseated for 1 round instead. + +Normal: Demoralizing a foe with a successful Intimidate check causes it to become shaken for 1 round, +1 round for every 5 by which you beat the DC. + */ + } +} diff --git a/TomeOfTheFirebird/New Content/Feats/ArmorOfThePit.cs b/TomeOfTheFirebird/New Content/Feats/ArmorOfThePit.cs new file mode 100644 index 0000000..5535f3b --- /dev/null +++ b/TomeOfTheFirebird/New Content/Feats/ArmorOfThePit.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TomeOfTheFirebird.New_Content.Feats +{ + class ArmorOfThePit + { + /* + * + * Your fiendish traits take the form of a protective scaly skin. + +Prerequisites: Tiefling. + +Benefit: You gain a +2 natural armor bonus. + +Special: If you have the scaled skin racial trait, you instead gain resistance 5 to two of the following energy types that you don’t have resistance to already: cold, electricity, and fire. + */ + + /* + */ + } +} diff --git a/TomeOfTheFirebird/New Content/Feats/BannerOfDoom.cs b/TomeOfTheFirebird/New Content/Feats/BannerOfDoom.cs new file mode 100644 index 0000000..88ba88e --- /dev/null +++ b/TomeOfTheFirebird/New Content/Feats/BannerOfDoom.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TomeOfTheFirebird.New_Content.Feats +{ + class BannerOfDoom + { + /* + * Banner of Doom (Combat) +Source Blood of Fiends pg. 24 +The mere sight of your fiendish banner is enough to send ripples of fear through your enemies. + +Prerequisites: Base attack bonus +8, banner class feature, tiefling. + +Benefit: As long your banner is clearly visible, all enemies within 60 feet take a –2 penalty on saving throws against fear. This penalty does not stack with other effects that provide enemies with penalties on saving throws against fear. + */ + } +} diff --git a/TomeOfTheFirebird/New Content/Feats/BurnResistance.cs b/TomeOfTheFirebird/New Content/Feats/BurnResistance.cs index c0d47a8..9c787c2 100644 --- a/TomeOfTheFirebird/New Content/Feats/BurnResistance.cs +++ b/TomeOfTheFirebird/New Content/Feats/BurnResistance.cs @@ -45,7 +45,7 @@ public static void Make() Property = new KineticistBurnPropertyGetter(), featureBaseReference = done.ToReference() }, - Numerator = 2 + Numerator = -2 } }; diff --git a/TomeOfTheFirebird/New Content/RacialOptions/Tiefling.cs b/TomeOfTheFirebird/New Content/RacialOptions/Tiefling.cs new file mode 100644 index 0000000..855a9f1 --- /dev/null +++ b/TomeOfTheFirebird/New Content/RacialOptions/Tiefling.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TomeOfTheFirebird.New_Content.RacialOptions +{ + class Tiefling + { + /* + * [PFS Legal] Scaled Skin +Source Advanced Race Guide pg. 169 +The skin of these tieflings provides some energy resistance, but is also as hard as armor. Choose one of the following energy types: cold, electricity, or fire. A tiefling with this trait gains resistance 5 in the chosen energy type and also gains a +1 natural armor bonus to AC. This racial trait replaces fiendish resistance. + */ + + /* + * [PFS Legal] Maw or Claw +Source Advanced Race Guide pg. 169 +Some tieflings take on the more bestial aspects of their fiendish ancestors. These tieflings exhibit either powerful, toothy maws or dangerous claws. The tiefling can choose a bite attack that deals 1d6 points of damage or two claws that each deal 1d4 points of damage. These attacks are primary natural attacks. This racial trait replaces the spell-like ability racial trait. + */ + } +} diff --git a/TomeOfTheFirebird/TomeOfTheFirebird.csproj b/TomeOfTheFirebird/TomeOfTheFirebird.csproj index 7a4c1af..745bdf2 100644 --- a/TomeOfTheFirebird/TomeOfTheFirebird.csproj +++ b/TomeOfTheFirebird/TomeOfTheFirebird.csproj @@ -223,7 +223,10 @@ + + + @@ -237,6 +240,7 @@ +