Skip to content

Commit

Permalink
Merge pull request #2262 from wowsims/lockexecute
Browse files Browse the repository at this point in the history
Added P2 shadow priest preset
  • Loading branch information
dbyena authored Jan 2, 2023
2 parents 5b316ec + 45d25c5 commit 70e2eae
Show file tree
Hide file tree
Showing 3 changed files with 235 additions and 0 deletions.
115 changes: 115 additions & 0 deletions sim/priest/shadow/presets.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,118 @@ var P1Gear = core.EquipmentSpecFromJsonString(`{"items": [
"id": 39712
}
]}`)
var P2Gear = core.EquipmentSpecFromJsonString(`{"items": [
{
"id": 46172,
"enchant": 3820,
"gems": [
41285,
45883
]
},
{
"id": 45243,
"gems": [
39998
]
},
{
"id": 46165,
"enchant": 3810,
"gems": [
39998
]
},
{
"id": 45242,
"enchant": 3722,
"gems": [
40049
]
},
{
"id": 46168,
"enchant": 1144,
"gems": [
39998,
39998
]
},
{
"id": 45446,
"enchant": 2332,
"gems": [
39998,
0
]
},
{
"id": 45665,
"enchant": 3604,
"gems": [
39998,
39998,
0
]
},
{
"id": 45619,
"enchant": 3601,
"gems": [
39998,
39998,
39998
]
},
{
"id": 46170,
"enchant": 3719,
"gems": [
39998,
40049
]
},
{
"id": 45135,
"enchant": 3606,
"gems": [
39998,
40049
]
},
{
"id": 45495,
"gems": [
40026
]
},
{
"id": 46046,
"gems": [
39998
]
},
{
"id": 45518
},
{
"id": 45466
},
{
"id": 45620,
"enchant": 3834,
"gems": [
40026
]
},
{
"id": 45617
},
{
"id": 45294,
"gems": [
39998
]
}
]
}`)
119 changes: 119 additions & 0 deletions ui/shadow_priest/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,3 +280,122 @@ export const P1_PRESET = {
}
]}`),
};
export const P2_PRESET = {
name: 'P2 Preset',
tooltip: Tooltips.BASIC_BIS_DISCLAIMER,
gear: EquipmentSpec.fromJsonString(`{ "items": [
{
"id": 46172,
"enchant": 3820,
"gems": [
41285,
45883
]
},
{
"id": 45243,
"gems": [
39998
]
},
{
"id": 46165,
"enchant": 3810,
"gems": [
39998
]
},
{
"id": 45242,
"enchant": 3722,
"gems": [
40049
]
},
{
"id": 46168,
"enchant": 1144,
"gems": [
39998,
39998
]
},
{
"id": 45446,
"enchant": 2332,
"gems": [
39998,
0
]
},
{
"id": 45665,
"enchant": 3604,
"gems": [
39998,
39998,
0
]
},
{
"id": 45619,
"enchant": 3601,
"gems": [
39998,
39998,
39998
]
},
{
"id": 46170,
"enchant": 3719,
"gems": [
39998,
40049
]
},
{
"id": 45135,
"enchant": 3606,
"gems": [
39998,
40049
]
},
{
"id": 45495,
"gems": [
40026
]
},
{
"id": 46046,
"gems": [
39998
]
},
{
"id": 45518
},
{
"id": 45466
},
{
"id": 45620,
"enchant": 3834,
"gems": [
40026
]
},
{
"id": 45617
},
{
"id": 45294,
"gems": [
39998
]
}
]
}`),
};
1 change: 1 addition & 0 deletions ui/shadow_priest/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ export class ShadowPriestSimUI extends IndividualSimUI<Spec.SpecShadowPriest> {
gear: [
Presets.PreBis_PRESET,
Presets.P1_PRESET,
Presets.P2_PRESET,
],
},
});
Expand Down

0 comments on commit 70e2eae

Please sign in to comment.