Skip to content

Commit

Permalink
add p4 balance presets (#3921)
Browse files Browse the repository at this point in the history
  • Loading branch information
lime-green authored Oct 19, 2023
1 parent a30a798 commit cd3c64f
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ui/balance_druid/gear_sets/p4_alliance.gear.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{"items": [
{"id":51290,"enchant":3820,"gems":[41285,40113]},
{"id":50724,"gems":[40113]},
{"id":51292,"enchant":3810,"gems":[40113]},
{"id":50628,"enchant":3722,"gems":[40155]},
{"id":51294,"enchant":3832,"gems":[40113,40155]},
{"id":50630,"enchant":2332,"gems":[40113,0]},
{"id":51291,"enchant":3604,"gems":[45883,0]},
{"id":50613,"enchant":3601,"gems":[40113,45883,40113]},
{"id":50694,"enchant":3719,"gems":[40113,40133,40155]},
{"id":50699,"enchant":3606,"gems":[40133,40113]},
{"id":50664,"gems":[40113]},
{"id":50398,"gems":[40152]},
{"id":50348},
{"id":50365},
{"id":50734,"enchant":3834,"gems":[40113]},
{"id":50719},
{"id":50457}
]}
19 changes: 19 additions & 0 deletions ui/balance_druid/gear_sets/p4_horde.gear.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{"items": [
{"id":51290,"enchant":3820,"gems":[41285,40113]},
{"id":50724,"gems":[40113]},
{"id":51292,"enchant":3810,"gems":[40113]},
{"id":50628,"enchant":3722,"gems":[40155]},
{"id":51294,"enchant":3832,"gems":[40113,40155]},
{"id":50651,"enchant":2332,"gems":[40155,0]},
{"id":50663,"enchant":3604,"gems":[40133,40113,0]},
{"id":50613,"enchant":3601,"gems":[40113,45883,40113]},
{"id":51293,"enchant":3719,"gems":[40113,40155]},
{"id":50699,"enchant":3606,"gems":[40133,40113]},
{"id":50664,"gems":[40113]},
{"id":50398,"gems":[40152]},
{"id":50348},
{"id":50365},
{"id":50734,"enchant":3834,"gems":[40113]},
{"id":50719},
{"id":50457}
]}
4 changes: 4 additions & 0 deletions ui/balance_druid/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ import P1Gear from './gear_sets/p1.gear.json';
import P2Gear from './gear_sets/p2.gear.json';
import P3AllianceGear from './gear_sets/p3_alliance.gear.json';
import P3HordeGear from './gear_sets/p3_horde.gear.json';
import P4HordeGear from './gear_sets/p4_horde.gear.json';
import P4AllianceGear from './gear_sets/p4_alliance.gear.json';

import BasicP3AplJson from './apls/basic_p3.apl.json';
import P4AplJson from './apls/p4.apl.json';
Expand All @@ -47,6 +49,8 @@ export const P1_PRESET = PresetUtils.makePresetGear('P1 Preset', P1Gear);
export const P2_PRESET = PresetUtils.makePresetGear('P2 Preset', P2Gear);
export const P3_PRESET_ALLI = PresetUtils.makePresetGear('P3 Preset [A]', P3AllianceGear, { faction: Faction.Alliance });
export const P3_PRESET_HORDE = PresetUtils.makePresetGear('P3 Preset [H]', P3HordeGear, { faction: Faction.Horde });
export const P4_PRESET_ALLI = PresetUtils.makePresetGear('P4 Preset [A]', P4AllianceGear, { faction: Faction.Alliance });
export const P4_PRESET_HORDE = PresetUtils.makePresetGear('P4 Preset [H]', P4HordeGear, { faction: Faction.Horde });

export const ROTATION_PRESET_P3_APL = PresetUtils.makePresetAPLRotation('P3', BasicP3AplJson);
export const ROTATION_PRESET_P4_APL = PresetUtils.makePresetAPLRotation('P4', P4AplJson);
Expand Down
2 changes: 2 additions & 0 deletions ui/balance_druid/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ export class BalanceDruidSimUI extends IndividualSimUI<Spec.SpecBalanceDruid> {
Presets.P2_PRESET,
Presets.P3_PRESET_HORDE,
Presets.P3_PRESET_ALLI,
Presets.P4_PRESET_HORDE,
Presets.P4_PRESET_ALLI,
],
},

Expand Down

0 comments on commit cd3c64f

Please sign in to comment.