Skip to content

Commit

Permalink
add thorns display pseudo to all tanks
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Jan 12, 2025
1 parent 1fd610e commit edcf066
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
4 changes: 3 additions & 1 deletion ui/protection_paladin/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecProtectionPaladin, {
Stat.StatShadowResistance,
Stat.StatArcaneResistance,
],
displayPseudoStats: [],
displayPseudoStats: [
PseudoStat.PseudoStatThornsDamage,
],

defaults: {
// Default equipped gear.
Expand Down
4 changes: 3 additions & 1 deletion ui/tank_rogue/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecTankRogue, {
// Resistances
Stat.StatShadowResistance,
],
displayPseudoStats: [],
displayPseudoStats: [
PseudoStat.PseudoStatThornsDamage,
],

defaults: {
// Default equipped gear.
Expand Down
6 changes: 4 additions & 2 deletions ui/tank_warlock/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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';
import { Player } from '../core/player.js';
import { Class, Faction, ItemSlot, PartyBuffs, Race, Spec, Stat } from '../core/proto/common.js';
import { Class, Faction, ItemSlot, PartyBuffs, PseudoStat, Race, Spec, Stat } from '../core/proto/common.js';
import { WarlockRune } from '../core/proto/warlock.js';
import { Stats } from '../core/proto_utils/stats.js';
import { getSpecIcon } from '../core/proto_utils/utils.js';
Expand Down Expand Up @@ -82,7 +82,9 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecTankWarlock, {
// Resistances
Stat.StatShadowResistance,
],
displayPseudoStats: [],
displayPseudoStats: [
PseudoStat.PseudoStatThornsDamage,
],

defaults: {
// Default equipped gear.
Expand Down
1 change: 1 addition & 0 deletions ui/tank_warrior/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecTankWarrior, {
displayPseudoStats: [
PseudoStat.PseudoStatThornsDamage,
],

defaults: {
// Default equipped gear.
gear: Presets.DefaultGear.gear,
Expand Down
4 changes: 3 additions & 1 deletion ui/warden_shaman/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ const SPEC_CONFIG = registerSpecConfig(Spec.SpecWardenShaman, {
// Resistances
Stat.StatShadowResistance,
],
displayPseudoStats: [],
displayPseudoStats: [
PseudoStat.PseudoStatThornsDamage,
],

defaults: {
race: Race.RaceTroll,
Expand Down

0 comments on commit edcf066

Please sign in to comment.