Skip to content
Open

3.03 #94

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
950 changes: 949 additions & 1 deletion IEMod.pw.sln

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion IEMod/IEMod.pw.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@
<Compile Include="Mods\BonusSpellsGrimoire\mod_UIGrimoireInSpellRow.cs" />
<Compile Include="Mods\BonusSpellsGrimoire\mod_Grimoire.cs" />
<Compile Include="Mods\CameraControlMod\Mod_CameraControl.cs" />
<Compile Include="Mods\ChanterPhrase\mod_ChanterTrait.cs" />
<Compile Include="Mods\CheatKeys\mod_CheatKeyFunctions.cs" />
<Compile Include="Mods\CheatKeys\Mod_GameCursors.cs" />
<Compile Include="Mods\CipherFocus\mod_FocusTrait.cs" />
<Compile Include="Mods\CombatLooting\mod_Container.cs" />
<Compile Include="Mods\CombatLooting\mod_UIInventoryGridItem.cs" />
Expand All @@ -107,10 +110,13 @@
<Compile Include="Mods\DropButtonMod\DropButton.cs" />
<Compile Include="Mods\FastSneak\mod_PartyMemberAI.cs" />
<Compile Include="Mods\HideAnticlassSpells\mod_UIAbilityBarButtonSet.cs" />
<Compile Include="Mods\HideCape\mod_NPCAppearance.cs" />
<Compile Include="Mods\HideWeaponEffects\mod_ItemModComponent.cs" />
<Compile Include="Mods\InventorySlots\mod_CharacterStats.cs" />
<Compile Include="Mods\InventorySlots\mod_Equipment.cs" />
<Compile Include="Mods\MaxAdventurers\mod_PartyMemberAI.cs" />
<Compile Include="Mods\NoEngagement\Mod_NoEngagement_HudEngagementIndicator.cs" />
<Compile Include="Mods\Targeting\mod_AIController.cs" />
<Compile Include="Mods\SoulBoundCrafting\mod_UIItemInspectManager.cs" />
<Compile Include="Mods\ToggleWalking\mod_MappedInput.cs" />
<Compile Include="Mods\ToggleWalking\mod_Player.cs" />
<Compile Include="Mods\ToggleWalking\mod_UIChantEditor.cs" />
Expand All @@ -127,6 +133,7 @@
<Compile Include="Mods\StringTable\mod_StringTableManager.cs" />
<Compile Include="Mods\StringTable\IEModString.cs" />
<Compile Include="Mods\UICustomization\UICustomizer.cs" />
<Compile Include="Mods\XpForMonsterKills\mod_BestiaryManager.cs" />
<Compile Include="Options\Definitions\IEModOptions.cs" />
<Compile Include="Helpers\LabelAttribute.cs" />
<Compile Include="Mods\StringTable\mod_StringTableType.cs" />
Expand Down
196 changes: 0 additions & 196 deletions IEMod/Mods/Bugfix2_01_Caster_Centered_Spells/mod_AI_Player_Attack.cs

This file was deleted.

5 changes: 3 additions & 2 deletions IEMod/Mods/CameraControlMod/Mod_CameraControl.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using IEMod.Mods.Options;

using IEMod.Mods.Options;
using Patchwork.Attributes;
using UnityEngine;

Expand Down Expand Up @@ -332,4 +333,4 @@ public void DoUpdateNew()
}
}
}
}
}
28 changes: 28 additions & 0 deletions IEMod/Mods/ChanterPhrase/mod_ChanterTrait.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using IEMod.Mods.Options;
using Patchwork.Attributes;

namespace IEMod.Mods.ChanterPhrase
{
[ModifiesType("ChanterTrait")]
class mod_ChanterTrait : ChanterTrait
{
// Gives the chanter some base Phrases Count at combat start
[ModifiesMember("OnCombatStart")]
public new void OnCombatStart(object sender, EventArgs e)
{
if (!GameState.IsInTrapTriggeredCombat)
{
this.StartLastChant();
}
this.PhraseCountMax = this.FindMaxRoarCost();
// Modded code
if (IEModOptions.ChanterPhraseCount) {
this.PhraseCount = this.PhraseCountMax;
}
}
}
}
Loading