Documentation ¶
Index ¶
- Variables
- func ConstructValkyrPets(character *core.Character)
- func CreateBlackMagicProcAura(character *core.Character) *core.Aura
- func MakeNibelungTriggerAura(agent core.Agent, isHeroic bool)
- func NewItemEffectWithHeroic(f func(isHeroic bool))
- type CapacitorAura
- type CapacitorDamageEffect
- type CapacitorHandler
- type HighestStatAura
- type ProcDamageEffect
- type ProcStatBonusEffect
- type StackingStatBonusCD
- type StackingStatBonusEffect
- type StatCDFactory
- type ValkyrPet
Constants ¶
This section is empty.
Variables ¶
View Source
var ItemSetBlessedBattlegearOfUndeadSlaying = makeUndeadSet("Blessed Battlegear of Undead Slaying")
View Source
var ItemSetBlessedGarbOfTheUndeadSlayer = makeUndeadSet("Blessed Garb of the Undead Slayer")
View Source
var ItemSetBlessedRegaliaOfUndeadCleansing = makeUndeadSet("Blessed Regalia of Undead Cleansing")
View Source
var ItemSetPurifiedShardOfTheGods = core.NewItemSet(core.ItemSet{ Name: "Purified Shard of the Gods", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { agent.GetCharacter().AddStats(stats.Stats{stats.SpellPower: 222}) applyShardOfTheGodsDamageProc(agent.GetCharacter(), false) applyShardOfTheGodsHealingProc(agent.GetCharacter(), false) }, }, })
View Source
var ItemSetShinyShardOfTheGods = core.NewItemSet(core.ItemSet{ Name: "Shiny Shard of the Gods", Bonuses: map[int32]core.ApplyEffect{ 2: func(agent core.Agent) { agent.GetCharacter().AddStats(stats.Stats{stats.SpellPower: 250}) applyShardOfTheGodsDamageProc(agent.GetCharacter(), true) applyShardOfTheGodsHealingProc(agent.GetCharacter(), true) }, }, })
View Source
var ItemSetUndeadSlayersBlessedArmor = makeUndeadSet("Undead Slayer's Blessed Armor")
Functions ¶
func ConstructValkyrPets ¶ added in v0.1.46
func CreateBlackMagicProcAura ¶ added in v0.1.43
func MakeNibelungTriggerAura ¶ added in v0.1.46
func NewItemEffectWithHeroic ¶
func NewItemEffectWithHeroic(f func(isHeroic bool))
Types ¶
type CapacitorAura ¶
type CapacitorAura struct { Aura core.Aura Handler CapacitorHandler }
type CapacitorDamageEffect ¶
type CapacitorDamageEffect struct { Name string ID int32 MaxStacks int32 Trigger core.ProcTrigger School core.SpellSchool MinDmg float64 MaxDmg float64 }
type CapacitorHandler ¶
type CapacitorHandler func(*core.Simulation)
type HighestStatAura ¶
type HighestStatAura struct {
// contains filtered or unexported fields
}
func NewHighestStatAura ¶
func (HighestStatAura) Init ¶ added in v0.1.15
func (hsa HighestStatAura) Init(character *core.Character)
type ProcDamageEffect ¶
type ProcDamageEffect struct { ID int32 Trigger core.ProcTrigger School core.SpellSchool MinDmg float64 MaxDmg float64 }
type ProcStatBonusEffect ¶
type ProcStatBonusEffect struct { Name string ID int32 AuraID int32 Bonus stats.Stats Duration time.Duration Callback core.AuraCallback ProcMask core.ProcMask Outcome core.HitOutcome Harmful bool ProcChance float64 PPM float64 ICD time.Duration // For ignoring a hardcoded spell. IgnoreSpellID int32 }
type StackingStatBonusCD ¶
type StackingStatBonusEffect ¶
type StatCDFactory ¶
type ValkyrPet ¶ added in v0.1.46
func (*ValkyrPet) ExecuteCustomRotation ¶ added in v0.1.63
func (valkyr *ValkyrPet) ExecuteCustomRotation(sim *core.Simulation)
func (*ValkyrPet) Initialize ¶ added in v0.1.46
func (valkyr *ValkyrPet) Initialize()
func (*ValkyrPet) Reset ¶ added in v0.1.46
func (valkyr *ValkyrPet) Reset(_ *core.Simulation)
Click to show internal directories.
Click to hide internal directories.