feat(Core): Allow negative resistance values (#12958)

* feat(Core): Allow negative resistance values

* Add SQL
This commit is contained in:
ZhengPeiRu21
2022-09-25 07:45:22 -06:00
committed by GitHub
parent 91daa6cb78
commit fbf65ebc9d
3 changed files with 19 additions and 12 deletions

View File

@@ -659,12 +659,12 @@ struct ItemTemplate
uint32 ScalingStatValue; // mask for selecting column in ScalingStatValues.dbc
_Damage Damage[MAX_ITEM_PROTO_DAMAGES];
uint32 Armor;
uint32 HolyRes;
uint32 FireRes;
uint32 NatureRes;
uint32 FrostRes;
uint32 ShadowRes;
uint32 ArcaneRes;
int32 HolyRes;
int32 FireRes;
int32 NatureRes;
int32 FrostRes;
int32 ShadowRes;
int32 ArcaneRes;
uint32 Delay;
uint32 AmmoType;
float RangedModRange;