TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
achievement_orbital_devastation Class Reference

Public Member Functions

 achievement_orbital_devastation ()
 
bool OnCheck (Player *, Unit *target) override
 
- Public Member Functions inherited from ScriptObject
const std::string & GetName () const
 

Additional Inherited Members

- Protected Member Functions inherited from AchievementCriteriaScript
 AchievementCriteriaScript (const char *name)
 
- Protected Member Functions inherited from ScriptObject
 ScriptObject (const char *name)
 
virtual ~ScriptObject ()
 

Constructor & Destructor Documentation

achievement_orbital_devastation::achievement_orbital_devastation ( )
inline
1409 : AchievementCriteriaScript("achievement_orbital_devastation") { }
AchievementCriteriaScript(const char *name)
Definition: ScriptMgr.cpp:1658

Member Function Documentation

bool achievement_orbital_devastation::OnCheck ( Player ,
Unit target 
)
inlineoverridevirtual

Implements AchievementCriteriaScript.

1412  {
1413  if (!target)
1414  return false;
1415 
1416  if (Creature* Leviathan = target->ToCreature())
1417  if (Leviathan->AI()->GetData(DATA_ORBIT_ACHIEVEMENTS) >= 2)
1418  return true;
1419 
1420  return false;
1421  }
Definition: Creature.h:467
Definition: boss_flame_leviathan.cpp:144
Creature * ToCreature()
Definition: Object.h:194

+ Here is the call graph for this function:


The documentation for this class was generated from the following file: