Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into blood-dk
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosen Rusinov committed Apr 24, 2024
2 parents c5db23e + d53fd14 commit 5fa4671
Show file tree
Hide file tree
Showing 30 changed files with 5,290 additions and 5,187 deletions.
Binary file modified assets/database/db.bin
Binary file not shown.
577 changes: 302 additions & 275 deletions assets/database/db.json

Large diffs are not rendered by default.

Binary file modified assets/database/leftover_db.bin
Binary file not shown.
174 changes: 87 additions & 87 deletions assets/database/leftover_db.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions proto/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ enum GemColor {
GemColorOrange = 6;
GemColorPurple = 7;
GemColorPrismatic = 8;
GemColorCogwheel = 9;
}

enum SpellSchool {
Expand Down
1 change: 1 addition & 0 deletions sim/core/buffs.go
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ func DarkIntentAura(unit *Unit, selfBuff bool) *Aura {
aura.Unit.MultiplyAttackSpeed(sim, 1/1.03)
},
OnPeriodicDamageDealt: periodicHandler,
BuildPhase: CharacterBuildPhaseBuffs,
})
}

Expand Down
1 change: 1 addition & 0 deletions sim/core/database_load.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ func init() {
WeaponDamageMax: item.WeaponDamageMax,
WeaponSpeed: item.WeaponSpeed,
SetName: item.SetName,
RandPropPoints: item.RandPropPoints,
}
}

Expand Down
2 changes: 1 addition & 1 deletion sim/core/debuffs.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ func CurseOfElementsAura(target *Unit) *Aura {
func EarthAndMoonAura(target *Unit) *Aura {
aura := target.GetOrRegisterAura(Aura{
Label: "Earth And Moon",
ActionID: ActionID{SpellID: 48511},
ActionID: ActionID{SpellID: 60433},
Duration: time.Second * 12,
})
spellDamageEffect(aura, 1.08)
Expand Down
3 changes: 3 additions & 0 deletions sim/core/mana.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ func (character *Character) EnableManaBarWithModifier(modifier float64) {
// Starting with cataclysm 1 intellect now provides 1 spell power
character.AddStatDependency(stats.Intellect, stats.SpellPower, 1.0)

// first 10 int should not count so remove them
character.AddStat(stats.SpellPower, -10)

if character.Unit.Type == PlayerUnit {
// Every caster gains 1% crit per 648.91
// Pets have different scaling so let them handle their scaling
Expand Down
Loading

0 comments on commit 5fa4671

Please sign in to comment.