Skip to content

Commit

Permalink
add back missing paladin presets
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Jul 30, 2024
1 parent a4e75a5 commit d47d5d2
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions ui/retribution_paladin/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,16 @@ import APLP1RetJson from './apls/p1ret.apl.json';
import APLP2RetJson from './apls/p2ret.apl.json';
import APLP3RetJson from './apls/p3ret.apl.json';
import APLP4RetJson from './apls/p4ret.apl.json';
import APLP4RetExodinJson from './apls/p4ret-exodin.apl.json';
import APLP4RetExodin6PcT1Json from './apls/p4ret-exodin-6pcT1.apl.json';
import APLP4RetTwisting6PcT1Json from './apls/p4ret-twisting-6pcT1.apl.json';
import Phase1RetGearJson from './gear_sets/p1ret.gear.json';
import Phase2RetSoCGearJson from './gear_sets/p2retsoc.gear.json';
import Phase2RetSoMGearJson from './gear_sets/p2retsom.gear.json';
import Phase3RetSoMGearJson from './gear_sets/p3retsom.gear.json';
import Phase4RetExodinGearJson from './gear_sets/p4ret-exodin.gear.json';
import Phase4RetExodin6PcT1GearJson from './gear_sets/p4ret-exodin-6pcT1.gear.json';
import Phase4RetTwisting6PcT1GearJson from './gear_sets/p4ret-twisting-6pcT1.gear.json';
import Phase4RetGearJson from './gear_sets/p4rettwist.gear.json';

// Preset options for this spec.
Expand All @@ -46,13 +52,16 @@ export const Phase1RetGear = PresetUtils.makePresetGear('P1', Phase1RetGearJson)
export const Phase2RetSoCGear = PresetUtils.makePresetGear('P2 SoC/DS', Phase2RetSoCGearJson);
export const Phase2RetSoMGear = PresetUtils.makePresetGear('P2 SoM', Phase2RetSoMGearJson);
export const Phase3RetSoMGear = PresetUtils.makePresetGear('P3 SoM', Phase3RetSoMGearJson);
export const Phase4RetGear = PresetUtils.makePresetGear('P4 Twist', Phase4RetGearJson);
export const Phase4RetTwistGear = PresetUtils.makePresetGear('P4 Twist', Phase4RetGearJson);
export const Phase4RetTwist6pT1Gear = PresetUtils.makePresetGear('P4 Ret Twist 6pT1', Phase4RetTwisting6PcT1GearJson);
export const Phase4RetExodinGear = PresetUtils.makePresetGear('P4 Ret Exodin', Phase4RetExodinGearJson);
export const Phase4RetExodin6pT1Gear = PresetUtils.makePresetGear('P4 Ret Exodin 6pT1', Phase4RetExodin6PcT1GearJson);

export const GearPresets = {
[Phase.Phase1]: [Phase1RetGear],
[Phase.Phase2]: [Phase2RetSoCGear, Phase2RetSoMGear],
[Phase.Phase3]: [Phase3RetSoMGear],
[Phase.Phase4]: [Phase4RetGear],
[Phase.Phase4]: [Phase4RetTwistGear, Phase4RetTwist6pT1Gear, Phase4RetExodinGear, Phase4RetExodin6pT1Gear],
[Phase.Phase5]: [],
};

Expand All @@ -65,13 +74,16 @@ export const DefaultGear = GearPresets[Phase.Phase4][0];
export const APLP1Ret = PresetUtils.makePresetAPLRotation('P1 Ret', APLP1RetJson);
export const APLP2Ret = PresetUtils.makePresetAPLRotation('P2 Ret/Shockadin', APLP2RetJson);
export const APLP3Ret = PresetUtils.makePresetAPLRotation('P3 Ret/Shockadin', APLP3RetJson);
export const APLP4Ret = PresetUtils.makePresetAPLRotation('P4 Ret-Twisting', APLP4RetJson);
export const APLP4RetTwist = PresetUtils.makePresetAPLRotation('P4 Ret Twist', APLP4RetJson);
export const APLP4RetTwist6pT1 = PresetUtils.makePresetAPLRotation('P4 Ret Twist 6pT1', APLP4RetTwisting6PcT1Json);
export const APLP4RetExodin = PresetUtils.makePresetAPLRotation('P4 Ret Exodin', APLP4RetExodinJson);
export const APLP4RetExodin6pT1 = PresetUtils.makePresetAPLRotation('P4 Ret Exodin 6pT1', APLP4RetExodin6PcT1Json);

export const APLPresets = {
[Phase.Phase1]: [APLP1Ret],
[Phase.Phase2]: [APLP2Ret],
[Phase.Phase3]: [APLP3Ret],
[Phase.Phase4]: [APLP4Ret],
[Phase.Phase4]: [APLP4RetTwist, APLP4RetTwist6pT1, APLP4RetExodin, APLP4RetExodin6pT1],
[Phase.Phase5]: [],
};

Expand Down

0 comments on commit d47d5d2

Please sign in to comment.