updates to states and object ids
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -15,192 +15,234 @@ func (s States) HasState(state State) bool {
|
|||||||
type State uint
|
type State uint
|
||||||
|
|
||||||
const (
|
const (
|
||||||
None State = iota
|
None State = 0
|
||||||
Freeze
|
Freeze State = 1
|
||||||
Poison
|
Poison State = 2
|
||||||
Resistfire
|
Resistfire State = 3
|
||||||
Resistcold
|
Resistcold State = 4
|
||||||
Resistlightning
|
Resistlightning State = 5
|
||||||
Resistmagic
|
Resistmagic State = 6
|
||||||
Playerbody
|
Playerbody State = 7
|
||||||
Resistall
|
Resistall State = 8
|
||||||
Amplifydamage
|
Amplifydamage State = 9
|
||||||
Frozenarmor
|
Frozenarmor State = 10
|
||||||
Cold
|
Cold State = 11
|
||||||
Inferno
|
Inferno State = 12
|
||||||
Blaze
|
Blaze State = 13
|
||||||
Bonearmor
|
Bonearmor State = 14
|
||||||
Concentrate
|
Concentrate State = 15
|
||||||
Enchant
|
Enchant State = 16
|
||||||
Innersight
|
Innersight State = 17
|
||||||
SkillMove
|
SkillMove State = 18
|
||||||
Weaken
|
Weaken State = 19
|
||||||
Chillingarmor
|
Chillingarmor State = 20
|
||||||
Stunned
|
Stunned State = 21
|
||||||
Spiderlay
|
Spiderlay State = 22
|
||||||
Dimvision
|
Dimvision State = 23
|
||||||
Slowed
|
Slowed State = 24
|
||||||
Fetishaura
|
Fetishaura State = 25
|
||||||
Shout
|
Shout State = 26
|
||||||
Taunt
|
Taunt State = 27
|
||||||
Conviction
|
Conviction State = 28
|
||||||
Convicted
|
Convicted State = 29
|
||||||
Energyshield
|
Energyshield State = 30
|
||||||
Venomclaws
|
Venomclaws State = 31
|
||||||
Battleorders
|
Battleorders State = 32
|
||||||
Might
|
Might State = 33
|
||||||
Prayer
|
Prayer State = 34
|
||||||
Holyfire
|
Holyfire State = 35
|
||||||
Thorns
|
Thorns State = 36
|
||||||
Defiance
|
Defiance State = 37
|
||||||
Thunderstorm
|
Thunderstorm State = 38
|
||||||
Lightningbolt
|
Lightningbolt State = 39
|
||||||
Blessedaim
|
Blessedaim State = 40
|
||||||
Stamina
|
Stamina State = 41
|
||||||
Concentration
|
Concentration State = 42
|
||||||
Holywind
|
Holywind State = 43
|
||||||
Holywindcold
|
Holywindcold State = 44
|
||||||
Cleansing
|
Cleansing State = 45
|
||||||
Holyshock
|
Holyshock State = 46
|
||||||
Sanctuary
|
Sanctuary State = 47
|
||||||
Meditation
|
Meditation State = 48
|
||||||
Fanaticism
|
Fanaticism State = 49
|
||||||
Redemption
|
Redemption State = 50
|
||||||
Battlecommand
|
Battlecommand State = 51
|
||||||
Preventheal
|
Preventheal State = 52
|
||||||
Conversion
|
Conversion State = 53
|
||||||
Uninterruptable
|
Uninterruptable State = 54
|
||||||
Ironmaiden
|
Ironmaiden State = 55
|
||||||
Terror
|
Terror State = 56
|
||||||
Attract
|
Attract State = 57
|
||||||
Lifetap
|
Lifetap State = 58
|
||||||
Confuse
|
Confuse State = 59
|
||||||
Decrepify
|
Decrepify State = 60
|
||||||
Lowerresist
|
Lowerresist State = 61
|
||||||
Openwounds
|
Openwounds State = 62
|
||||||
Dopplezon
|
Dopplezon State = 63
|
||||||
Criticalstrike
|
Criticalstrike State = 64
|
||||||
Dodge
|
Dodge State = 65
|
||||||
Avoid
|
Avoid State = 66
|
||||||
Penetrate
|
Penetrate State = 67
|
||||||
Evade
|
Evade State = 68
|
||||||
Pierce
|
Pierce State = 69
|
||||||
Warmth
|
Warmth State = 70
|
||||||
Firemastery
|
Firemastery State = 71
|
||||||
Lightningmastery
|
Lightningmastery State = 72
|
||||||
Coldmastery
|
Coldmastery State = 73
|
||||||
Blademastery
|
Blademastery State = 74
|
||||||
Axemastery
|
Axemastery State = 75
|
||||||
Macemastery
|
Macemastery State = 76
|
||||||
Polearmmastery
|
Polearmmastery State = 77
|
||||||
Throwingmastery
|
Throwingmastery State = 78
|
||||||
Spearmastery
|
Spearmastery State = 79
|
||||||
Increasedstamina
|
Increasedstamina State = 80
|
||||||
Ironskin
|
Ironskin State = 81
|
||||||
Increasedspeed
|
Increasedspeed State = 82
|
||||||
Naturalresistance
|
Naturalresistance State = 83
|
||||||
Fingermagecurse
|
Fingermagecurse State = 84
|
||||||
Nomanaregen
|
Nomanaregen State = 85
|
||||||
Justhit
|
Justhit State = 86
|
||||||
Slowmissiles
|
Slowmissiles State = 87
|
||||||
Shiverarmor
|
Shiverarmor State = 88
|
||||||
Battlecry
|
Battlecry State = 89
|
||||||
Blue
|
Blue State = 90
|
||||||
Red
|
Red State = 91
|
||||||
DeathDelay
|
DeathDelay State = 92
|
||||||
Valkyrie
|
Valkyrie State = 93
|
||||||
Frenzy
|
Frenzy State = 94
|
||||||
Berserk
|
Berserk State = 95
|
||||||
Revive
|
Revive State = 96
|
||||||
Itemfullset
|
Itemfullset State = 97
|
||||||
Sourceunit
|
Sourceunit State = 98
|
||||||
Redeemed
|
Redeemed State = 99
|
||||||
Healthpot
|
Healthpot State = 100
|
||||||
Holyshield
|
Holyshield State = 101
|
||||||
JustPortaled
|
JustPortaled State = 102
|
||||||
Monfrenzy
|
Monfrenzy State = 103
|
||||||
CorpseNodraw
|
CorpseNodraw State = 104
|
||||||
Alignment
|
Alignment State = 105
|
||||||
Manapot
|
Manapot State = 106
|
||||||
Shatter
|
Shatter State = 107
|
||||||
SyncWarped
|
SyncWarped State = 108
|
||||||
ConversionSave
|
ConversionSave State = 109
|
||||||
Pregnant
|
Pregnant State = 110
|
||||||
State111
|
State111 State = 111
|
||||||
Rabies
|
Rabies State = 112
|
||||||
DefenseCurse
|
DefenseCurse State = 113
|
||||||
BloodMana
|
BloodMana State = 114
|
||||||
Burning
|
Burning State = 115
|
||||||
Dragonflight
|
Dragonflight State = 116
|
||||||
Maul
|
Maul State = 117
|
||||||
CorpseNoselect
|
CorpseNoselect State = 118
|
||||||
Shadowwarrior
|
Shadowwarrior State = 119
|
||||||
Feralrage
|
Feralrage State = 120
|
||||||
Skilldelay
|
Skilldelay State = 121
|
||||||
Tigerstrike
|
Tigerstrike State = 122
|
||||||
Cobrastrike
|
Cobrastrike State = 123
|
||||||
Phoenixstrike
|
Phoenixstrike State = 124
|
||||||
Fistsoffire
|
Fistsoffire State = 125
|
||||||
Bladesofice
|
Bladesofice State = 126
|
||||||
Clawsofthunder
|
Clawsofthunder State = 127
|
||||||
ShrineArmor
|
ShrineArmor State = 128
|
||||||
ShrineCombat
|
ShrineCombat State = 129
|
||||||
ShrineResistLightning
|
ShrineResistLightning State = 130
|
||||||
ShrineResistFire
|
ShrineResistFire State = 131
|
||||||
ShrineResistCold
|
ShrineResistCold State = 132
|
||||||
ShrineResistPoison
|
ShrineResistPoison State = 133
|
||||||
ShrineSkill
|
ShrineSkill State = 134
|
||||||
ShrineManaRegen
|
ShrineManaRegen State = 135
|
||||||
ShrineStamina
|
ShrineStamina State = 136
|
||||||
ShrineExperience
|
ShrineExperience State = 137
|
||||||
FenrisRage
|
FenrisRage State = 138
|
||||||
Wolf
|
Wolf State = 139
|
||||||
Bear
|
Bear State = 140
|
||||||
Bloodlust
|
Bloodlust State = 141
|
||||||
Changeclass
|
Changeclass State = 142
|
||||||
Attached
|
Attached State = 143
|
||||||
Hurricane
|
Hurricane State = 144
|
||||||
Armageddon
|
Armageddon State = 145
|
||||||
Invis
|
Invis State = 146
|
||||||
Barbs
|
Barbs State = 147
|
||||||
Wolverine
|
Wolverine State = 148
|
||||||
Oaksage
|
Oaksage State = 149
|
||||||
VineBeast
|
VineBeast State = 150
|
||||||
Cyclonearmor
|
Cyclonearmor State = 151
|
||||||
Clawmastery
|
Clawmastery State = 152
|
||||||
CloakOfShadows
|
CloakOfShadows State = 153
|
||||||
Recycled
|
Recycled State = 154
|
||||||
Weaponblock
|
Weaponblock State = 155
|
||||||
Cloaked
|
Cloaked State = 156
|
||||||
Quickness
|
Quickness State = 157
|
||||||
Bladeshield
|
Bladeshield State = 158
|
||||||
Fade
|
Fade State = 159
|
||||||
Summonresist
|
Summonresist State = 160
|
||||||
Oaksagecontrol
|
Oaksagecontrol State = 161
|
||||||
Wolverinecontrol
|
Wolverinecontrol State = 162
|
||||||
Barbscontrol
|
Barbscontrol State = 163
|
||||||
Debugcontrol
|
Debugcontrol State = 164
|
||||||
Itemset1
|
Itemset1 State = 165
|
||||||
Itemset2
|
Itemset2 State = 166
|
||||||
Itemset3
|
Itemset3 State = 167
|
||||||
Itemset4
|
Itemset4 State = 168
|
||||||
Itemset5
|
Itemset5 State = 169
|
||||||
Itemset6
|
Itemset6 State = 170
|
||||||
Runeword
|
Runeword State = 171
|
||||||
Restinpeace
|
Restinpeace State = 172
|
||||||
Corpseexp
|
Corpseexp State = 173
|
||||||
Whirlwind
|
Whirlwind State = 174
|
||||||
Fullsetgeneric
|
Fullsetgeneric State = 175
|
||||||
Monsterset
|
Monsterset State = 176
|
||||||
Delerium
|
Delerium State = 177
|
||||||
Antidote
|
Antidote State = 178
|
||||||
Thawing
|
Thawing State = 179
|
||||||
Staminapot
|
Staminapot State = 180
|
||||||
PassiveResistfire
|
PassiveResistfire State = 181
|
||||||
PassiveResistcold
|
PassiveResistcold State = 182
|
||||||
PassiveResistltng
|
PassiveResistltng State = 183
|
||||||
Uberminion
|
Uberminion State = 184
|
||||||
Cooldown
|
Cooldown State = 185
|
||||||
Sharedstash
|
Sharedstash State = 186
|
||||||
Hidedead
|
Hidedead State = 187
|
||||||
|
Impale State = 188
|
||||||
|
Desecrated State = 189
|
||||||
|
Markbear State = 190
|
||||||
|
Markwolf State = 191
|
||||||
|
Sigillethargy State = 192
|
||||||
|
Sigilrancor State = 193
|
||||||
|
Sigildeath State = 194
|
||||||
|
Bloodoath State = 195
|
||||||
|
DemonicMastery State = 196
|
||||||
|
LevitateMastery State = 197
|
||||||
|
Hexbane State = 198
|
||||||
|
Hexbanedebuff State = 199
|
||||||
|
Hexsiphon State = 200
|
||||||
|
Hexsiphondebuff State = 201
|
||||||
|
Hexpurge State = 202
|
||||||
|
Mindbarrier State = 203
|
||||||
|
ShadowMastery State = 204
|
||||||
|
Sigil State = 205
|
||||||
|
Psychicward State = 206
|
||||||
|
BindDemon State = 207
|
||||||
|
Consume State = 208
|
||||||
|
Advancedstash State = 209
|
||||||
|
Healthlink State = 210
|
||||||
|
Engorge State = 211
|
||||||
|
DeathMark State = 212
|
||||||
|
Healthlinkcaster State = 213
|
||||||
|
Warlockdemonground State = 214
|
||||||
|
Warlockdemontorso State = 215
|
||||||
|
SkillChanneling State = 216
|
||||||
|
Hexpurgedebuff State = 217
|
||||||
|
Chroniclebacklight State = 218
|
||||||
|
Chroniclefootprints State = 219
|
||||||
|
Chronicleportal State = 220
|
||||||
|
Eldritchblastperiodic State = 221
|
||||||
|
Lightningenchant State = 222
|
||||||
|
Coldenchant State = 223
|
||||||
|
Talicfirepierce State = 224
|
||||||
|
Madawclightpierce State = 225
|
||||||
|
Korliccoldpierce State = 226
|
||||||
|
BindDemonUnderling State = 227
|
||||||
|
Herald State = 228
|
||||||
|
Apocalypse State = 229
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user