@@ -23,10 +23,14 @@ import {
2323} from '../core/proto/common.js' ;
2424import { FeralDruid_Options as FeralDruidOptions , FeralDruid_Rotation as FeralDruidRotation } from '../core/proto/druid.js' ;
2525import { SavedTalents } from '../core/proto/ui.js' ;
26- import P2APL from './apls/p2.apl.json' ;
26+ import FeralAPL from './apls/feral.apl.json' ;
27+ import SimpleVaelAPL from './apls/simple_vael.apl.json' ;
2728import P2BISGear from './gear_sets/p2.bis.gear.json' ;
2829import P2PreBISGear from './gear_sets/p2.pre-bis.gear.json' ;
2930import P3BISGear from './gear_sets/p3.bis.gear.json' ;
31+ import P4BISGear from './gear_sets/p4.bis.gear.json' ;
32+ import P5BISGear from './gear_sets/p5.bis.gear.json' ;
33+ import P6BISGear from './gear_sets/p6.bis.gear.json' ;
3034
3135// Preset options for this spec.
3236// Eventually we will import these values for the raid sim too, so its good to
@@ -36,27 +40,31 @@ import P3BISGear from './gear_sets/p3.bis.gear.json';
3640// Gear Presets
3741///////////////////////////////////////////////////////////////////////////
3842
39- export const GearP2BIS = PresetUtils . makePresetGear ( 'P2 BiS' , P2BISGear ) ;
4043export const GearP2PreBIS = PresetUtils . makePresetGear ( 'P2 Pre-BiS' , P2PreBISGear ) ;
44+ export const GearP2BIS = PresetUtils . makePresetGear ( 'P2 BiS' , P2BISGear ) ;
4145export const GearP3BIS = PresetUtils . makePresetGear ( 'P3 BiS' , P3BISGear )
46+ export const GearP4BIS = PresetUtils . makePresetGear ( 'P4 BiS' , P4BISGear )
47+ export const GearP5BIS = PresetUtils . makePresetGear ( 'P5 BiS' , P5BISGear )
48+ export const GearP6BIS = PresetUtils . makePresetGear ( 'P6 BiS' , P6BISGear )
4249
4350export const GearPresets = {
44- [ Phase . Phase2 ] : [ GearP2PreBIS , GearP2BIS , GearP3BIS ] ,
51+ [ Phase . Phase4 ] : [ GearP2PreBIS , GearP2BIS , GearP3BIS , GearP4BIS , GearP5BIS , GearP6BIS ] ,
4552} ;
4653
47- export const DefaultGear = GearP2BIS ;
54+ export const DefaultGear = GearP4BIS ;
4855
4956///////////////////////////////////////////////////////////////////////////
5057// APL Presets
5158///////////////////////////////////////////////////////////////////////////
5259
53- export const APLP2Feral = PresetUtils . makePresetAPLRotation ( 'Feral' , P2APL ) ;
60+ export const APLFeral = PresetUtils . makePresetAPLRotation ( 'Feral' , FeralAPL ) ;
61+ export const APLSimpleVael = PresetUtils . makePresetAPLRotation ( 'Simple Vaelastrasz' , SimpleVaelAPL ) ;
5462
5563export const APLPresets = {
56- [ Phase . Phase2 ] : [ APLP2Feral ] ,
64+ [ Phase . Phase4 ] : [ APLFeral , APLSimpleVael ] ,
5765} ;
5866
59- export const DefaultAPL = APLPresets [ Phase . Phase2 ] [ 0 ] ;
67+ export const DefaultAPL = APLFeral ;
6068
6169export const DefaultRotation = FeralDruidRotation . create ( {
6270 maintainFaerieFire : false ,
@@ -72,13 +80,13 @@ export const SIMPLE_ROTATION_DEFAULT = PresetUtils.makePresetSimpleRotation('Sim
7280// Talent Presets
7381///////////////////////////////////////////////////////////////////////////
7482
75- export const TalentsP2Feral = PresetUtils . makePresetTalents ( 'Feral' , SavedTalents . create ( { talentsString : '500005301-5500021323202151-05' } ) ) ;
83+ export const TalentsFeral = PresetUtils . makePresetTalents ( 'Feral' , SavedTalents . create ( { talentsString : '500005301-5500021323202151-05' } ) ) ;
7684
7785export const TalentPresets = {
78- [ Phase . Phase2 ] : [ TalentsP2Feral ] ,
86+ [ Phase . Phase4 ] : [ TalentsFeral ] ,
7987} ;
8088
81- export const DefaultTalents = TalentPresets [ Phase . Phase2 ] [ 0 ] ;
89+ export const DefaultTalents = TalentsFeral ;
8290
8391///////////////////////////////////////////////////////////////////////////
8492// Options
@@ -120,7 +128,7 @@ export const DefaultIndividualBuffs = IndividualBuffs.create({
120128 rallyingCryOfTheDragonslayer : true ,
121129 saygesFortune : SaygesFortune . SaygesDamage ,
122130 songflowerSerenade : true ,
123- spiritOfZandalar : false ,
131+ spiritOfZandalar : true ,
124132 warchiefsBlessing : true ,
125133} ) ;
126134
0 commit comments