148 lines
5.0 KiB
C#
148 lines
5.0 KiB
C#
/*
|
|
* Copyright (C) 2012-2020 CypherCore <http://github.com/CypherCore>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
using Framework.Constants;
|
|
using Game.Entities;
|
|
using Game.Maps;
|
|
using Game.Scripting;
|
|
|
|
namespace Scripts.EasternKingdoms.Gnomeregan
|
|
{
|
|
struct GNOGameObjectIds
|
|
{
|
|
public const uint CaveInLeft = 146085;
|
|
public const uint CaveInRight = 146086;
|
|
public const uint RedRocket = 103820;
|
|
}
|
|
|
|
struct GNOCreatureIds
|
|
{
|
|
public const uint BlastmasterEmiShortfuse = 7998;
|
|
public const uint CaverndeepAmbusher = 6207;
|
|
public const uint Grubbis = 7361;
|
|
public const uint ViciousFallout = 7079;
|
|
public const uint Chomper = 6215;
|
|
public const uint Electrocutioner = 6235;
|
|
public const uint CrowdPummeler = 6229;
|
|
public const uint Mekgineer = 7800;
|
|
}
|
|
|
|
struct DataTypes
|
|
{
|
|
public const uint BlastmasterEvent = 0;
|
|
public const uint ViciousFallout = 1;
|
|
public const uint Electrocutioner = 2;
|
|
public const uint CrowdPummeler = 3;
|
|
public const uint Thermaplugg = 4;
|
|
|
|
public const uint MaxEncounter = 5;
|
|
|
|
// Additional Objects
|
|
public const uint GoCaveInLeft = 6;
|
|
public const uint GoCaveInRight = 7;
|
|
public const uint NpcBastmasterEmiShortfuse = 8;
|
|
}
|
|
|
|
struct DataTypes64
|
|
{
|
|
public const uint GoCaveInLeft = 0;
|
|
public const uint GoCaveInRight = 1;
|
|
public const uint NpcBastmasterEmiShortfuse = 2;
|
|
}
|
|
|
|
class instance_gnomeregan : InstanceMapScript
|
|
{
|
|
public instance_gnomeregan() : base(nameof(instance_gnomeregan), 90) { }
|
|
|
|
class instance_gnomeregan_InstanceMapScript : InstanceScript
|
|
{
|
|
ObjectGuid uiCaveInLeftGUID;
|
|
ObjectGuid uiCaveInRightGUID;
|
|
|
|
ObjectGuid uiBlastmasterEmiShortfuseGUID;
|
|
|
|
public instance_gnomeregan_InstanceMapScript(InstanceMap map) : base(map)
|
|
{
|
|
SetHeaders("GNO");
|
|
SetBossNumber(DataTypes.MaxEncounter);
|
|
}
|
|
|
|
public override void OnCreatureCreate(Creature creature)
|
|
{
|
|
switch (creature.GetEntry())
|
|
{
|
|
case GNOCreatureIds.BlastmasterEmiShortfuse:
|
|
uiBlastmasterEmiShortfuseGUID = creature.GetGUID();
|
|
break;
|
|
}
|
|
}
|
|
|
|
public override void OnGameObjectCreate(GameObject go)
|
|
{
|
|
switch (go.GetEntry())
|
|
{
|
|
case DataTypes64.GoCaveInLeft:
|
|
uiCaveInLeftGUID = go.GetGUID();
|
|
break;
|
|
case DataTypes64.GoCaveInRight:
|
|
uiCaveInRightGUID = go.GetGUID();
|
|
break;
|
|
}
|
|
}
|
|
|
|
public override void OnUnitDeath(Unit unit)
|
|
{
|
|
Creature creature = unit.ToCreature();
|
|
if (creature)
|
|
switch (creature.GetEntry())
|
|
{
|
|
case GNOCreatureIds.ViciousFallout:
|
|
SetBossState(DataTypes.ViciousFallout, EncounterState.Done);
|
|
break;
|
|
case GNOCreatureIds.Electrocutioner:
|
|
SetBossState(DataTypes.Electrocutioner, EncounterState.Done);
|
|
break;
|
|
case GNOCreatureIds.CrowdPummeler:
|
|
SetBossState(DataTypes.CrowdPummeler, EncounterState.Done);
|
|
break;
|
|
case GNOCreatureIds.Mekgineer:
|
|
SetBossState(DataTypes.Thermaplugg, EncounterState.Done);
|
|
break;
|
|
}
|
|
}
|
|
|
|
public override ObjectGuid GetGuidData(uint uiType)
|
|
{
|
|
switch (uiType)
|
|
{
|
|
case DataTypes64.GoCaveInLeft: return uiCaveInLeftGUID;
|
|
case DataTypes64.GoCaveInRight: return uiCaveInRightGUID;
|
|
case DataTypes64.NpcBastmasterEmiShortfuse: return uiBlastmasterEmiShortfuseGUID;
|
|
}
|
|
|
|
return ObjectGuid.Empty;
|
|
}
|
|
}
|
|
|
|
public override InstanceScript GetInstanceScript(InstanceMap map)
|
|
{
|
|
return new instance_gnomeregan_InstanceMapScript(map);
|
|
}
|
|
}
|
|
}
|
|
|