DB/SpellTargetRestrictions: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
Line 33: Line 33:
| 12 || Unknown || Integer || Wasn't able to match the value
| 12 || Unknown || Integer || Wasn't able to match the value
|}
|}
Related DB2s: [[DB/Spell|Spell]] | [[DB/SpellAuraOptions|SpellAuraOptions]] | [[DB/SpellAuraRestrictions|SpellAuraRestrictions]] | [[DB/SpellClassOptions|SpellClassOptions]] | [[DB/SpellCastingRequirements|SpellCastingRequirements]] | [[DB/SpellCategories|SpellCategories]] | [[DB/SpellCooldowns|SpellCooldowns]] | [[SpellDescriptionVariables.dbc|SpellDescriptionVariables]] | [[DB/SpellEffect|SpellEffect]] | [[DB/SpellEquippedItems|SpellEquippedItems]] | [[DB/SpellInterrupts|SpellInterrupts]] | [[DB/SpellLevels|SpellLevels]] | [[DB/SpellMisc|SpellMisc]] | [[DB/SpellPower|SpellPower]] | [[DB/SpellReagents|SpellReagents]] | [[DB/SpellShapeShift|SpellShapeShift]] | [[DB/SpellTargetRestrictions|SpellTargetRestrictions]] | [[DB/SpellTotems|SpellTotems]] | [[DB/SpellVisualMissile|SpellVisualMissile]] | [[DB/SpellxSpellVisual|SpellxSpellVisual]]
[[User:Synric|Synric]] 12th July 2016
[[User:Synric|Synric]] 12th July 2016
[[Category:DBC]]
[[Category:DBC_Legion]][[Category:7.0.1.21737]]


==6.0.1.18179==
==6.0.1.18179==
Line 56: Line 49:
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_Legion]][[Category:7.0.1.21737]]

Revision as of 20:00, 12 July 2016

Added in Cataclysm.

7.0.1.21737

Column Field Type Notes
1 ID
2 SpellID IRefID
3 ConeAngle Float
4 Width Float
5 Targets Integer
6 TargetCreatureType Integer
7 DifficultyID iRefID
8 MaxAffectedtargets Integer
9 MaxTargetLevel Integer
10 Unknown Integer Wasn't able to match the value
11 Unknown Integer Wasn't able to match the value
12 Unknown Integer Wasn't able to match the value

Synric 12th July 2016

6.0.1.18179

struct SpellTargetRestrictionsRec {
  uint32_t m_ID;
  uint32_t m_spellID;
  uint32_t m_difficultyID;
  float m_coneAngle;
  float m_width;
  uint32_t m_maxTargets;
  uint32_t m_maxTargetLevel;
  uint32_t m_targetCreatureType;
  uint32_t m_targets;
};