Skip to content

Commit

Permalink
add frost power effects for enhance, warden as well
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Jan 14, 2025
1 parent b5a3c83 commit cac162e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
1 change: 0 additions & 1 deletion ui/elemental_shaman/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecElementalShaman, {
// Buff and Debuff inputs to include/exclude, overriding the EP-based defaults.
includeBuffDebuffInputs: [
BuffDebuffInputs.SpellWintersChillDebuff,
BuffDebuffInputs.WarlockCursesConfig,
ConsumesInputs.ElixirOfFrostPower,
],
excludeBuffDebuffInputs: [],
Expand Down
7 changes: 6 additions & 1 deletion ui/enhancement_shaman/sim.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as BuffDebuffInputs from '../core/components/inputs/buffs_debuffs';
import * as ConsumesInputs from '../core/components/inputs/consumables';
import * as OtherInputs from '../core/components/other_inputs.js';
import { Phase } from '../core/constants/other.js';
import { IndividualSimUI, registerSpecConfig } from '../core/individual_sim_ui.js';
Expand Down Expand Up @@ -114,7 +115,11 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecEnhancementShaman, {
// IconInputs to include in the 'Player' section on the settings tab.
playerIconInputs: [],
// Buff and Debuff inputs to include/exclude, overriding the EP-based defaults.
includeBuffDebuffInputs: [BuffDebuffInputs.BlessingOfWisdom, BuffDebuffInputs.ManaSpringTotem, BuffDebuffInputs.SpiritBuff],
includeBuffDebuffInputs: [
BuffDebuffInputs.SpellWintersChillDebuff,
BuffDebuffInputs.SpiritBuff,
ConsumesInputs.ElixirOfFrostPower,
],
excludeBuffDebuffInputs: [],
// Inputs to include in the 'Other' section on the settings tab.
otherInputs: {
Expand Down
7 changes: 6 additions & 1 deletion ui/warden_shaman/sim.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import * as BuffDebuffInputs from '../core/components/inputs/buffs_debuffs';
import * as ConsumesInputs from '../core/components/inputs/consumables';
import * as OtherInputs from '../core/components/other_inputs.js';
import { Phase } from '../core/constants/other.js';
import { IndividualSimUI, registerSpecConfig } from '../core/individual_sim_ui.js';
Expand Down Expand Up @@ -142,7 +143,11 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecWardenShaman, {
// IconInputs to include in the 'Player' section on the settings tab.
playerIconInputs: [],
// Buff and Debuff inputs to include/exclude, overriding the EP-based defaults.
includeBuffDebuffInputs: [BuffDebuffInputs.BlessingOfWisdom, BuffDebuffInputs.ManaSpringTotem, BuffDebuffInputs.SpiritBuff],
includeBuffDebuffInputs: [
BuffDebuffInputs.SpellWintersChillDebuff,
BuffDebuffInputs.SpiritBuff,
ConsumesInputs.ElixirOfFrostPower,
],
excludeBuffDebuffInputs: [],
// Inputs to include in the 'Other' section on the settings tab.
otherInputs: {
Expand Down

0 comments on commit cac162e

Please sign in to comment.