Skip to content

Commit 78224db

Browse files
committed
[Paladin] Update some test options
1 parent a20126f commit 78224db

3 files changed

Lines changed: 21 additions & 26 deletions

File tree

sim/paladin/protection/_protection_test.go

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ func init() {
1414

1515
func TestProtection(t *testing.T) {
1616
core.RunTestSuite(t, t.Name(), core.FullCharacterTestSuiteGenerator(core.CharacterSuiteConfig{
17-
Class: proto.Class_ClassPaladin,
18-
Race: proto.Race_RaceBloodElf,
19-
OtherRaces: []proto.Race{proto.Race_RaceHuman},
17+
Class: proto.Class_ClassPaladin,
18+
Race: proto.Race_RaceBloodElf,
2019

21-
GearSet: core.GetGearSet("../../../ui/paladin/protection/gear_sets", "T12"),
20+
GearSet: core.GetGearSet("../../../ui/paladin/protection/gear_sets", "p1"),
2221
Talents: StandardTalents,
2322
Glyphs: StandardGlyphs,
2423
Consumables: FullConsumesSpec,
@@ -52,7 +51,7 @@ func BenchmarkSimulate(b *testing.B) {
5251
&proto.Player{
5352
Race: proto.Race_RaceBloodElf,
5453
Class: proto.Class_ClassPaladin,
55-
Equipment: core.GetGearSet("../../../ui/paladin/protection/gear_sets", "T12").GearSet,
54+
Equipment: core.GetGearSet("../../../ui/paladin/protection/gear_sets", "p1").GearSet,
5655
Consumables: FullConsumesSpec,
5756
Spec: DefaultOptions,
5857
Glyphs: StandardGlyphs,
@@ -77,31 +76,28 @@ func BenchmarkSimulate(b *testing.B) {
7776
core.RaidBenchmark(b, rsr)
7877
}
7978

80-
var StandardTalents = "-32023013122121101231-032032"
79+
var StandardTalents = "112222"
8180
var StandardGlyphs = &proto.Glyphs{
82-
Major1: int32(proto.PaladinMajorGlyph_GlyphOfTheAsceticCrusader),
83-
Major2: int32(proto.PaladinMajorGlyph_GlyphOfLayOnHands),
84-
Major3: int32(proto.PaladinMajorGlyph_GlyphOfFocusedShield),
85-
Minor1: int32(proto.PaladinMinorGlyph_GlyphOfTruth),
86-
Minor2: int32(proto.PaladinMinorGlyph_GlyphOfBlessingOfMight),
87-
Minor3: int32(proto.PaladinMinorGlyph_GlyphOfInsight),
81+
Major1: int32(proto.PaladinMajorGlyph_GlyphOfFocusedShield),
82+
Major2: int32(proto.PaladinMajorGlyph_GlyphOfTheAlabasterShield),
83+
Major3: int32(proto.PaladinMajorGlyph_GlyphOfDivineProtection),
84+
Minor1: int32(proto.PaladinMinorGlyph_GlyphOfFocusedWrath),
8885
}
8986

9087
var DefaultOptions = &proto.Player_ProtectionPaladin{
9188
ProtectionPaladin: &proto.ProtectionPaladin{
9289
Options: &proto.ProtectionPaladin_Options{
9390
ClassOptions: &proto.PaladinOptions{
9491
Seal: proto.PaladinSeal_Truth,
95-
Aura: proto.PaladinAura_Retribution,
9692
},
9793
},
9894
},
9995
}
10096

10197
var FullConsumesSpec = &proto.ConsumesSpec{
102-
FlaskId: 58085, // Flask of Steelskin
103-
FoodId: 62663, // Lavascale Minestrone
104-
PotId: 58146, // Golemblood Potion
105-
PrepotId: 58146, // Golemblood Potion
106-
TinkerId: 82174, // Synapse Springs
98+
FlaskId: 76087, // Flask of the Earth
99+
FoodId: 74656, // Lavascale Minestrone
100+
PotId: 76095, // Potion of Mogu Power
101+
PrepotId: 76095, // Potion of Mogu Power
102+
TinkerId: 126734, // Synapse Springs Mark II
107103
}

sim/paladin/retribution/retribution_test.go

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ func TestRetribution(t *testing.T) {
1717
Class: proto.Class_ClassPaladin,
1818
Race: proto.Race_RaceBloodElf,
1919

20-
GearSet: core.GetGearSet("../../../ui/paladin/retribution/gear_sets", "p1"),
21-
OtherGearSets: []core.GearSetCombo{},
22-
Talents: StandardTalents,
23-
Glyphs: StandardGlyphs,
24-
Consumables: FullConsumesSpec,
25-
SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: DefaultOptions},
20+
GearSet: core.GetGearSet("../../../ui/paladin/retribution/gear_sets", "p1"),
21+
Talents: StandardTalents,
22+
Glyphs: StandardGlyphs,
23+
Consumables: FullConsumesSpec,
24+
SpecOptions: core.SpecOptionsCombo{Label: "Basic", SpecOptions: DefaultOptions},
2625
OtherSpecOptions: []core.SpecOptionsCombo{
2726
{Label: "Aoe", SpecOptions: AoeOptions},
2827
},

ui/core/launched_sims.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ export const simLaunchStatuses: Record<Spec, SimStatus> = {
104104
},
105105
[Spec.SpecProtectionPaladin]: {
106106
phase: Phase.Phase1,
107-
status: LaunchStatus.Launched,
107+
status: LaunchStatus.Alpha,
108108
},
109109
[Spec.SpecRetributionPaladin]: {
110110
phase: Phase.Phase1,
111-
status: LaunchStatus.Launched,
111+
status: LaunchStatus.Alpha,
112112
},
113113
// Priest
114114
[Spec.SpecDisciplinePriest]: {

0 commit comments

Comments
 (0)