Documentation ¶
Index ¶
- Constants
- Variables
- type APLValueTotemRemainingTime
- type FireElemental
- func (fireElemental *FireElemental) ExecuteCustomRotation(sim *core.Simulation)
- func (fireElemental *FireElemental) GetPet() *core.Pet
- func (fireElemental *FireElemental) Initialize()
- func (fireElemental *FireElemental) Reset(_ *core.Simulation)
- func (fireElemental *FireElemental) TryCast(sim *core.Simulation, target *core.Unit, spell *core.Spell, maxCastCount int32) bool
- type SelfBuffs
- type Shaman
- func (shaman *Shaman) AddPartyBuffs(partyBuffs *proto.PartyBuffs)
- func (shaman *Shaman) AddRaidBuffs(raidBuffs *proto.RaidBuffs)
- func (shaman *Shaman) ApplyEarthlivingImbueToItem(item *core.Item)
- func (shaman *Shaman) ApplyFlametongueImbue(procMask core.ProcMask, isDownranked bool)
- func (shaman *Shaman) ApplyFlametongueImbueToItem(item *core.Item, isDownranked bool)
- func (shaman *Shaman) ApplyTalents()
- func (shaman *Shaman) BloodlustActionID() core.ActionID
- func (shaman *Shaman) ElementalCritMultiplier(secondary float64) float64
- func (shaman *Shaman) FrostbrandDebuffAura(target *core.Unit) *core.Aura
- func (shaman *Shaman) GetCharacter() *core.Character
- func (shaman *Shaman) HasMajorGlyph(glyph proto.ShamanMajorGlyph) bool
- func (shaman *Shaman) HasMinorGlyph(glyph proto.ShamanMinorGlyph) bool
- func (shaman *Shaman) Initialize()
- func (shaman *Shaman) IsFireNovaCastable(sim *core.Simulation) bool
- func (shaman *Shaman) IsLavaLashCastable(sim *core.Simulation) bool
- func (shaman *Shaman) NewAPLValue(rot *core.APLRotation, config *proto.APLValue) core.APLValue
- func (shaman *Shaman) NewFireElemental(bonusSpellPower float64) *FireElemental
- func (shaman *Shaman) NewSpiritWolf(index int) *SpiritWolf
- func (shaman *Shaman) RegisterEarthlivingImbue(procMask core.ProcMask)
- func (shaman *Shaman) RegisterFlametongueImbue(procMask core.ProcMask, isDownranked bool)
- func (shaman *Shaman) RegisterFrostbrandImbue(procMask core.ProcMask)
- func (shaman *Shaman) RegisterHealingSpells()
- func (shaman *Shaman) RegisterOnItemSwapWithImbue(effectID int32, procMask *core.ProcMask, aura *core.Aura)
- func (shaman *Shaman) RegisterWindfuryImbue(procMask core.ProcMask)
- func (shaman *Shaman) Reset(sim *core.Simulation)
- func (shaman *Shaman) ShockCD() time.Duration
- func (shaman *Shaman) StormstrikeDebuffAura(target *core.Unit) *core.Aura
- type ShamanAgent
- type SpiritWolf
- type SpiritWolves
Constants ¶
View Source
const ( StormfuryTotem = 31031 TotemOfAncestralGuidance = 32330 TotemOfStorms = 23199 TotemOfTheVoid = 28248 TotemOfHex = 40267 VentureCoLightningRod = 38361 ThunderfallTotem = 45255 )
Totem Item IDs
View Source
const ( VentureCoFlameSlicer = 38367 DeadlyGladiatorsTotemOfIndomitability = 42607 FuriousGladiatorsTotemOfIndomitability = 42608 RelentlessGladiatorsTotemOfIndomitability = 42609 WrathfulGladiatorsTotemOfIndomitability = 51507 )
Totem IDs
View Source
const ( SpellFlagShock = core.SpellFlagAgentReserved1 SpellFlagElectric = core.SpellFlagAgentReserved2 SpellFlagTotem = core.SpellFlagAgentReserved3 SpellFlagFocusable = core.SpellFlagAgentReserved4 )
View Source
const ( AirTotem int = iota EarthTotem FireTotem WaterTotem )
Indexes into NextTotemDrops for self buffs
View Source
const ( // This could be value or bitflag if we ended up needing multiple flags at the same time. //1 to 5 are used by MaelstromWeapon Stacks CastTagLightningOverload int32 = 6 )
View Source
const PetExpertiseScale = 3.25
View Source
const TotemRefreshTime5M = time.Second * 295
Start looking to refresh 5 minute totems at 4:55.
Variables ¶
View Source
var ItemSetEarthShatterGarb = core.NewItemSet(core.ItemSet{ Name: "Earthshatter Garb", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { }, 4: func(agent core.Agent) { }, }, })
View Source
var ItemSetEarthshatterBattlegear = core.NewItemSet(core.ItemSet{ Name: "Earthshatter Battlegear", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { }, 4: func(agent core.Agent) { }, }, })
View Source
var ItemSetFrostWitchBattlegear = core.NewItemSet(core.ItemSet{ Name: "Frost Witch's Battlegear", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { }, 4: func(agent core.Agent) { }, }, })
View Source
var ItemSetFrostWitchRegalia = core.NewItemSet(core.ItemSet{ Name: "Frost Witch's Regalia", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { }, 4: func(agent core.Agent) { shaman := agent.(ShamanAgent).GetShaman() shaman.RegisterAura(core.Aura{ Label: "Shaman T10 Elemental 4P Bonus", Duration: core.NeverExpires, OnReset: func(aura *core.Aura, sim *core.Simulation) { aura.Activate(sim) }, OnCastComplete: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell) { fsDot := shaman.FlameShock.Dot(shaman.CurrentTarget) if spell == shaman.LavaBurst && fsDot.IsActive() { fsDot.RescheduleNextTick(sim) tickPeriod := fsDot.TickPeriod() numTicks := int32(math.Round(float64(time.Second) * 6 / float64(tickPeriod))) fsDot.NumberOfTicks += numTicks fsDot.Aura.Duration = time.Duration(fsDot.MaxTicksRemaining())*tickPeriod - (tickPeriod - (fsDot.NextTickAt() - sim.CurrentTime)) fsDot.Aura.Refresh(sim) } }, }) }, }, })
View Source
var ItemSetGladiatorsEarthshaker = core.NewItemSet(core.ItemSet{ Name: "Gladiator's Earthshaker", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { shaman := agent.(ShamanAgent).GetShaman() shaman.AddStat(stats.AttackPower, 50) shaman.AddStat(stats.Resilience, 100) }, 4: func(agent core.Agent) { shaman := agent.(ShamanAgent).GetShaman() shaman.AddStat(stats.AttackPower, 150) }, }, })
View Source
var ItemSetGladiatorsWartide = core.NewItemSet(core.ItemSet{ Name: "Gladiator's Wartide", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { shaman := agent.(ShamanAgent).GetShaman() shaman.AddStat(stats.SpellPower, 29) shaman.AddStat(stats.Resilience, 100) }, 4: func(agent core.Agent) { shaman := agent.(ShamanAgent).GetShaman() shaman.AddStat(stats.SpellPower, 88) }, }, })
View Source
var ItemSetSkyshatterHarness = core.NewItemSet(core.ItemSet{ Name: "Skyshatter Harness", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { }, 4: func(agent core.Agent) { }, }, })
View Source
var ItemSetSkyshatterRegalia = core.NewItemSet(core.ItemSet{ Name: "Skyshatter Regalia", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { shaman := agent.(ShamanAgent).GetShaman() if shaman.Totems.Air == proto.AirTotem_NoAirTotem || shaman.Totems.Water == proto.WaterTotem_NoWaterTotem || shaman.Totems.Earth == proto.EarthTotem_NoEarthTotem || shaman.Totems.Fire == proto.FireTotem_NoFireTotem { return } shaman.AddStat(stats.MP5, 19) shaman.AddStat(stats.SpellCrit, 35) shaman.AddStat(stats.SpellPower, 45) }, 4: func(agent core.Agent) { }, }, })
View Source
var ItemSetThrallsBattlegear = core.NewItemSet(core.ItemSet{ Name: "Thrall's Battlegear", AlternativeName: "Nobundo's Battlegear", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { }, 4: func(agent core.Agent) { }, }, })
View Source
var ItemSetThrallsRegalia = core.NewItemSet(core.ItemSet{ Name: "Thrall's Regalia", AlternativeName: "Nobundo's Regalia", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { }, 4: func(agent core.Agent) { }, }, })
View Source
var ItemSetTidefury = core.NewItemSet(core.ItemSet{ Name: "Tidefury Raiment", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { }, 4: func(agent core.Agent) { shaman := agent.(ShamanAgent).GetShaman() if shaman.SelfBuffs.Shield == proto.ShamanShield_WaterShield { shaman.AddStat(stats.MP5, 3) } }, }, })
View Source
var ItemSetWorldbreakerBattlegear = core.NewItemSet(core.ItemSet{ Name: "Worldbreaker Battlegear", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { }, 4: func(agent core.Agent) { }, }, })
View Source
var ItemSetWorldbreakerGarb = core.NewItemSet(core.ItemSet{ Name: "Worldbreaker Garb", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { }, 4: func(agent core.Agent) { }, }, })
View Source
var StormstrikeActionID = core.ActionID{SpellID: 17364}
View Source
var TalentTreeSizes = [3]int{25, 29, 26}
View Source
var TotemOfDueling int32 = 40322
View Source
var TotemOfSplintering int32 = 40710
View Source
var TotemOfTheAstralWinds int32 = 27815
View Source
var TotemOfTheDancingFlame int32 = 45169
Functions ¶
This section is empty.
Types ¶
type APLValueTotemRemainingTime ¶ added in v0.1.44
type APLValueTotemRemainingTime struct { core.DefaultAPLValueImpl // contains filtered or unexported fields }
func (*APLValueTotemRemainingTime) GetDuration ¶ added in v0.1.44
func (value *APLValueTotemRemainingTime) GetDuration(sim *core.Simulation) time.Duration
func (*APLValueTotemRemainingTime) String ¶ added in v0.1.44
func (value *APLValueTotemRemainingTime) String() string
func (*APLValueTotemRemainingTime) Type ¶ added in v0.1.44
func (value *APLValueTotemRemainingTime) Type() proto.APLValueType
type FireElemental ¶
type FireElemental struct { core.Pet FireBlast *core.Spell FireNova *core.Spell FireShieldAura *core.Aura // contains filtered or unexported fields }
func (*FireElemental) ExecuteCustomRotation ¶ added in v0.1.63
func (fireElemental *FireElemental) ExecuteCustomRotation(sim *core.Simulation)
func (*FireElemental) GetPet ¶
func (fireElemental *FireElemental) GetPet() *core.Pet
func (*FireElemental) Initialize ¶
func (fireElemental *FireElemental) Initialize()
func (*FireElemental) Reset ¶
func (fireElemental *FireElemental) Reset(_ *core.Simulation)
type SelfBuffs ¶
type SelfBuffs struct { Shield proto.ShamanShield ImbueMH proto.ShamanImbue ImbueOH proto.ShamanImbue }
Which buffs this shaman is using.
type Shaman ¶
type Shaman struct { core.Character Talents *proto.ShamanTalents SelfBuffs SelfBuffs Totems *proto.ShamanTotems // The expiration time of each totem (earth, air, fire, water). TotemExpirations [4]time.Duration LightningBolt *core.Spell LightningBoltLO *core.Spell ChainLightning *core.Spell ChainLightningHits []*core.Spell ChainLightningLOs []*core.Spell LavaBurst *core.Spell FireNova *core.Spell LavaLash *core.Spell Stormstrike *core.Spell LightningShield *core.Spell LightningShieldAura *core.Aura Thunderstorm *core.Spell EarthShock *core.Spell FlameShock *core.Spell FrostShock *core.Spell FeralSpirit *core.Spell SpiritWolves *SpiritWolves FireElemental *FireElemental FireElementalTotem *core.Spell MagmaTotem *core.Spell ManaSpringTotem *core.Spell HealingStreamTotem *core.Spell SearingTotem *core.Spell StrengthOfEarthTotem *core.Spell TotemOfWrath *core.Spell TremorTotem *core.Spell StoneskinTotem *core.Spell WindfuryTotem *core.Spell WrathOfAirTotem *core.Spell FlametongueTotem *core.Spell MaelstromWeaponAura *core.Aura AncestralAwakening *core.Spell LesserHealingWave *core.Spell HealingWave *core.Spell ChainHeal *core.Spell Riptide *core.Spell EarthShield *core.Spell // contains filtered or unexported fields }
Shaman represents a shaman character.
func (*Shaman) AddPartyBuffs ¶
func (shaman *Shaman) AddPartyBuffs(partyBuffs *proto.PartyBuffs)
func (*Shaman) AddRaidBuffs ¶
func (*Shaman) ApplyEarthlivingImbueToItem ¶ added in v0.1.22
func (*Shaman) ApplyFlametongueImbue ¶
func (*Shaman) ApplyFlametongueImbueToItem ¶ added in v0.1.10
func (*Shaman) ApplyTalents ¶
func (shaman *Shaman) ApplyTalents()
func (*Shaman) BloodlustActionID ¶
func (*Shaman) ElementalCritMultiplier ¶
func (*Shaman) FrostbrandDebuffAura ¶
func (*Shaman) GetCharacter ¶
func (*Shaman) HasMajorGlyph ¶
func (shaman *Shaman) HasMajorGlyph(glyph proto.ShamanMajorGlyph) bool
func (*Shaman) HasMinorGlyph ¶
func (shaman *Shaman) HasMinorGlyph(glyph proto.ShamanMinorGlyph) bool
func (*Shaman) Initialize ¶
func (shaman *Shaman) Initialize()
func (*Shaman) IsFireNovaCastable ¶
func (shaman *Shaman) IsFireNovaCastable(sim *core.Simulation) bool
func (*Shaman) IsLavaLashCastable ¶
func (shaman *Shaman) IsLavaLashCastable(sim *core.Simulation) bool
func (*Shaman) NewAPLValue ¶ added in v0.1.44
func (*Shaman) NewFireElemental ¶
func (shaman *Shaman) NewFireElemental(bonusSpellPower float64) *FireElemental
func (*Shaman) NewSpiritWolf ¶
func (shaman *Shaman) NewSpiritWolf(index int) *SpiritWolf
func (*Shaman) RegisterEarthlivingImbue ¶ added in v0.1.22
func (*Shaman) RegisterFlametongueImbue ¶ added in v0.1.10
func (*Shaman) RegisterFrostbrandImbue ¶ added in v0.1.10
func (*Shaman) RegisterHealingSpells ¶ added in v0.1.22
func (shaman *Shaman) RegisterHealingSpells()
func (*Shaman) RegisterOnItemSwapWithImbue ¶ added in v0.1.10
func (*Shaman) RegisterWindfuryImbue ¶ added in v0.1.10
func (*Shaman) Reset ¶
func (shaman *Shaman) Reset(sim *core.Simulation)
type ShamanAgent ¶
type ShamanAgent interface { core.Agent // The Shaman controlled by this Agent. GetShaman() *Shaman }
Implemented by each Shaman spec.
type SpiritWolf ¶
func (*SpiritWolf) ExecuteCustomRotation ¶ added in v0.1.63
func (spiritWolf *SpiritWolf) ExecuteCustomRotation(_ *core.Simulation)
func (*SpiritWolf) GetPet ¶
func (spiritWolf *SpiritWolf) GetPet() *core.Pet
func (*SpiritWolf) Initialize ¶
func (spiritWolf *SpiritWolf) Initialize()
func (*SpiritWolf) Reset ¶
func (spiritWolf *SpiritWolf) Reset(sim *core.Simulation)
type SpiritWolves ¶
type SpiritWolves struct { SpiritWolf1 *SpiritWolf SpiritWolf2 *SpiritWolf }
func (*SpiritWolves) CancelGCDTimer ¶
func (SpiritWolves *SpiritWolves) CancelGCDTimer(sim *core.Simulation)
func (*SpiritWolves) EnableWithTimeout ¶
func (SpiritWolves *SpiritWolves) EnableWithTimeout(sim *core.Simulation)
Source Files ¶
- apl_values.go
- bloodlust.go
- chain_lightning.go
- electric_spell.go
- feral_spirit.go
- fire_elemental_pet.go
- fire_elemental_spells.go
- fire_elemental_totem.go
- fire_totems.go
- firenova.go
- heals.go
- items.go
- items_wotlk.go
- lavaburst.go
- lavalash.go
- lightning_bolt.go
- lightning_shield.go
- shaman.go
- shamanistic_rage.go
- shocks.go
- spirit_wolves.go
- stormstrike.go
- talents.go
- thunderstorm.go
- totems.go
- weapon_imbues.go
Click to show internal directories.
Click to hide internal directories.