Skip to content

Commit

Permalink
Merge pull request #5 from Teraunce/master
Browse files Browse the repository at this point in the history
fixed this for the beta.
  • Loading branch information
TheSparhawk authored Mar 1, 2023
2 parents 2b662c3 + bdf9c1e commit 8af84ea
Show file tree
Hide file tree
Showing 8 changed files with 70 additions and 92 deletions.
Binary file added SparsSorcerousSundries.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion SparsSorcerousSundries/Info.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Id": "SparsSorcerousSundries",
"DisplayName": "Spars Sorcerous Sundries",
"Author": "Sparhawk87",
"Version": "1.1.0",
"Version": "1.1.1",
"ManagerVersion": "0.23.0",
"AssemblyName": "SparsSorcerousSundries.dll",
"EntryMethod": "SparsSorcerousSundries.Main.Load",
Expand Down
2 changes: 1 addition & 1 deletion SparsSorcerousSundries/Items/ContentManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
using Kingmaker.RuleSystem.Rules.Damage;
using Kingmaker.UI;
using Kingmaker.UI.Log;
using Kingmaker.UI.Log.CombatLog_ThreadSystem;
//using Kingmaker.UI.Log.CombatLog_ThreadSystem;
using Kingmaker.UnitLogic;
using Kingmaker.UnitLogic.Abilities;
using Kingmaker.UnitLogic.Abilities.Blueprints;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static void CreateBookOfInfiniteSpells()
.SetDisplayName(Helpers.CreateString(SSSContext, "SpellBookAbilName", "Shifting Page"))
.SetDescription(Helpers.CreateString(SSSContext, "SpellBookAbilDesc", "placeholder"))
.SetDescriptionShort(Helpers.CreateString(SSSContext, "SpellBookAbilDescS", "placeholdershort"))
.SetAnimationStyle(Kingmaker.View.Animation.CastAnimationStyle.CastActionSelf)
//.SetAnimationStyle(Kingmaker.View.Animation.CastAnimationStyle.CastActionSelf)
.SetCustomRange(5.Feet())
.AllowTargeting(self: true)
.SetActionType(Kingmaker.UnitLogic.Commands.Base.UnitCommand.CommandType.Standard)
Expand Down
5 changes: 3 additions & 2 deletions SparsSorcerousSundries/Items/CustomItems/PotofEndlessFood.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static void CreatePotofEndlessFood()
.SetDisplayName(Helpers.CreateString( SSSContext,"PotofFoodAbilName","Rumbling Satisfaction"))
.SetDescription(Helpers.CreateString(SSSContext, "PotofFoodAbilDesc", "Once per day you may use this item to grant you party members each a random food buff, doing so removes any current food buff."))
.SetDescriptionShort(Helpers.CreateString(SSSContext, "PotofFoodAbilDescS", "Grats a different food buff"))
.SetAnimationStyle( Kingmaker.View.Animation.CastAnimationStyle.CastActionSelf)
//.SetAnimationStyle(Kingmaker.View.Animation.CastAnimationStyle.CastActionSelf)
.SetCustomRange(5.Feet())
.AllowTargeting(self: true)
.SetActionType(Kingmaker.UnitLogic.Commands.Base.UnitCommand.CommandType.Standard)
Expand All @@ -85,7 +85,8 @@ public static void CreatePotofEndlessFood()
Action = createFoodBuffPartyAction()
.Build()
});
}).Configure();
})
.Configure();

var PotofEndlessFoodItem = ItemEquipmentUsableConfigurator.New(itemName, itemGuid)
.SetDisplayNameText(Helpers.CreateString(SSSContext, "PotofFoodName", "Pot of Plenty"))
Expand Down
1 change: 1 addition & 0 deletions SparsSorcerousSundries/Items/CustomItems/PrismaticBlade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
using Kingmaker.UnitLogic.Mechanics;
using SparsSorcerousSundries.NewComponents;
using Kingmaker.Designers.Mechanics.Facts;
using BlueprintCore.Blueprints.CustomConfigurators.Classes;

namespace SparsSorcerousSundries.Items.CustomItems
{
Expand Down
148 changes: 62 additions & 86 deletions SparsSorcerousSundries/SparsSorcerousSundries.csproj

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion SparsSorcerousSundries/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="AssemblyPublicizer" version="1.0.1" targetFramework="net46" developmentDependency="true" requireReinstallation="true" />
<package id="AssemblyPublicizer" version="1.0.2" targetFramework="net46" developmentDependency="true" requireReinstallation="true" />
<package id="ILRepack.MSBuild.Task" version="2.0.13" targetFramework="net472" />
<package id="Microsoft.Build.Framework" version="17.1.0" targetFramework="net472" />
<package id="Microsoft.Build.Utilities.Core" version="17.1.0" targetFramework="net472" />
Expand Down

0 comments on commit 8af84ea

Please sign in to comment.