Skip to content

Commit

Permalink
feral: add p3 preset
Browse files Browse the repository at this point in the history
Signed-off-by: jarves <[email protected]>
  • Loading branch information
jarveson committed Jun 19, 2023
1 parent 494460f commit d471473
Show file tree
Hide file tree
Showing 2 changed files with 118 additions and 2 deletions.
114 changes: 114 additions & 0 deletions ui/feral_druid/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -368,3 +368,117 @@ export const P2_PRESET = {
}
]}`),
};

export const P3_PRESET = {
name: 'P3 Preset',
tooltip: Tooltips.BASIC_BIS_DISCLAIMER,
gear: EquipmentSpec.fromJsonString(`{"items": [
{
"id": 48204,
"enchant": 3817,
"gems": [
41398,
40146
]
},
{
"id": 47060,
"gems": [
40117
]
},
{
"id": 48207,
"enchant": 3808,
"gems": [
40146
]
},
{
"id": 47545,
"enchant": 3605,
"gems": [
40117
]
},
{
"id": 48206,
"enchant": 3832,
"gems": [
40117,
40146
]
},
{
"id": 45611,
"enchant": 3845,
"gems": [
40146,
0
]
},
{
"id": 47945,
"enchant": 3604,
"gems": [
40112,
40117,
0
]
},
{
"id": 47112,
"gems": [
40146,
40117,
40117
]
},
{
"id": 48205,
"enchant": 3823,
"gems": [
40117,
49110
]
},
{
"id": 47077,
"enchant": 3606,
"gems": [
40146,
40117
]
},
{
"id": 47075,
"gems": [
40117
]
},
{
"id": 45608,
"gems": [
40117
]
},
{
"id": 45931
},
{
"id": 47131
},
{
"id": 47239,
"enchant": 3789,
"gems": [
40146,
40117
]
},
{},
{
"id": 47668
}
]}`),
};
6 changes: 4 additions & 2 deletions ui/feral_druid/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class FeralDruidSimUI extends IndividualSimUI<Spec.SpecFeralDruid> {

defaults: {
// Default equipped gear.
gear: Presets.P2_PRESET.gear,
gear: Presets.P3_PRESET.gear,
// Default EP weights for sorting gear in the gear picker.
epWeights: Stats.fromMap({
[Stat.StatStrength]: 2.40,
Expand Down Expand Up @@ -95,6 +95,7 @@ export class FeralDruidSimUI extends IndividualSimUI<Spec.SpecFeralDruid> {
sanctifiedRetribution: true,
}),
partyBuffs: PartyBuffs.create({
heroicPresence: true,
}),
individualBuffs: IndividualBuffs.create({
blessingOfKings: true,
Expand Down Expand Up @@ -150,7 +151,8 @@ export class FeralDruidSimUI extends IndividualSimUI<Spec.SpecFeralDruid> {
gear: [
Presets.PreRaid_PRESET,
Presets.P1_PRESET,
Presets.P2_PRESET
Presets.P2_PRESET,
Presets.P3_PRESET,
],
},
});
Expand Down

0 comments on commit d471473

Please sign in to comment.