Skip to content

Commit

Permalink
Emergency hotfix for Burn Resist
Browse files Browse the repository at this point in the history
  • Loading branch information
pheonix99 committed Jan 15, 2023
1 parent e4bc237 commit d29c72c
Show file tree
Hide file tree
Showing 9 changed files with 105 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion TomeOfTheFirebird/Info.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 4 additions & 0 deletions TomeOfTheFirebird/Modified Content/Classes/Witch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
23 changes: 23 additions & 0 deletions TomeOfTheFirebird/New Content/Feats/AncestralScorn.cs
Original file line number Diff line number Diff line change
@@ -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.
*/
}
}
25 changes: 25 additions & 0 deletions TomeOfTheFirebird/New Content/Feats/ArmorOfThePit.cs
Original file line number Diff line number Diff line change
@@ -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.
*/

/*
*/
}
}
21 changes: 21 additions & 0 deletions TomeOfTheFirebird/New Content/Feats/BannerOfDoom.cs
Original file line number Diff line number Diff line change
@@ -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.
*/
}
}
2 changes: 1 addition & 1 deletion TomeOfTheFirebird/New Content/Feats/BurnResistance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static void Make()
Property = new KineticistBurnPropertyGetter(),
featureBaseReference = done.ToReference<BlueprintFeatureBaseReference>()
},
Numerator = 2
Numerator = -2
}
};
Expand Down
23 changes: 23 additions & 0 deletions TomeOfTheFirebird/New Content/RacialOptions/Tiefling.cs
Original file line number Diff line number Diff line change
@@ -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.
*/
}
}
4 changes: 4 additions & 0 deletions TomeOfTheFirebird/TomeOfTheFirebird.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,10 @@
<Compile Include="New Content\Bloodlines\PheonixBloodline.cs" />
<Compile Include="New Content\Bloodlines\TotFBloodlineTools.cs" />
<Compile Include="New Content\Feats\Afterburn.cs" />
<Compile Include="New Content\Feats\AncestralScorn.cs" />
<Compile Include="New Content\Feats\ArmorOfThePit.cs" />
<Compile Include="New Content\Feats\Autobuffer.cs" />
<Compile Include="New Content\Feats\BannerOfDoom.cs" />
<Compile Include="New Content\Feats\BreathWeaponFeats.cs" />
<Compile Include="New Content\Feats\BurnResistance.cs" />
<Compile Include="New Content\Feats\CoordinatedShot.cs" />
Expand All @@ -237,6 +240,7 @@
<Compile Include="New Content\Feats\KineticLeap.cs" />
<Compile Include="New Content\Feats\LastwallPhalanx.cs" />
<Compile Include="New Content\Feats\OverwhelmingDefense.cs" />
<Compile Include="New Content\RacialOptions\Tiefling.cs" />
<Compile Include="New Content\RagePowers\RageStanceMastery.cs" />
<Compile Include="New Content\Feats\SwarmStrike.cs" />
<Compile Include="New Content\Features\KineticistDefenseOverclocks.cs" />
Expand Down

0 comments on commit d29c72c

Please sign in to comment.