Skip to content

Commit

Permalink
update balance p3 talents + preset updates
Browse files Browse the repository at this point in the history
  • Loading branch information
lime-green committed Oct 19, 2023
1 parent f5e24b3 commit c07eea0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions ui/balance_druid/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import {
RaidBuffs,
UnitReference,
TristateEffect,
Faction
Faction,
Profession,
} from '../core/proto/common.js';
import { SavedTalents } from '../core/proto/ui.js';

Expand Down Expand Up @@ -85,7 +86,7 @@ export const Phase2Talents = {
export const Phase3Talents = {
name: 'Phase 3',
data: SavedTalents.create({
talentsString: '5102233115331303213305311031--205003002',
talentsString: '5102223115331303213305311031--205003012',
glyphs: Glyphs.create({
major1: DruidMajorGlyph.GlyphOfStarfire,
major2: DruidMajorGlyph.GlyphOfMoonfire,
Expand Down Expand Up @@ -176,4 +177,6 @@ export const DefaultDebuffs = Debuffs.create({

export const OtherDefaults = {
distanceFromTarget: 18,
profession1: Profession.Engineering,
profession2: Profession.Tailoring,
};
4 changes: 2 additions & 2 deletions ui/balance_druid/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class BalanceDruidSimUI extends IndividualSimUI<Spec.SpecBalanceDruid> {

defaults: {
// Default equipped gear.
gear: Presets.P2_PRESET.gear,
gear: Presets.P3_PRESET_HORDE.gear,
// Default EP weights for sorting gear in the gear picker.
epWeights: Stats.fromMap({
[Stat.StatIntellect]: 0.43,
Expand All @@ -67,7 +67,7 @@ export class BalanceDruidSimUI extends IndividualSimUI<Spec.SpecBalanceDruid> {
// Default rotation settings.
rotation: Presets.DefaultRotation,
// Default talents.
talents: Presets.Phase2Talents.data,
talents: Presets.Phase3Talents.data,
// Default spec-specific settings.
specOptions: Presets.DefaultOptions,
// Default raid/party buffs settings.
Expand Down
2 changes: 1 addition & 1 deletion ui/core/proto_utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1129,8 +1129,8 @@ export const specToClass: Record<Spec, Class> = {
};

const druidRaces = [
Race.RaceNightElf,
Race.RaceTauren,
Race.RaceNightElf,
];
const hunterRaces = [
Race.RaceBloodElf,
Expand Down

0 comments on commit c07eea0

Please sign in to comment.