Files
CypherCore/Source/Game/BattleGrounds/Zones/IsleofConquest.cs
T
2020-01-09 11:35:00 -05:00

64 lines
2.6 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/>.
*/
namespace Game.BattleGrounds.Zones
{
class IsleofConquest
{
}
public struct ICCreatures
{
public const uint HighCommanderHalfordWyrmbane = 34924; // Alliance Boss
public const uint OverlordAgmar = 34922; // Horde Boss
public const uint KorKronGuard = 34918; // Horde Guard
public const uint SevenThLegionInfantry = 34919; // Alliance Guard
public const uint KeepCannon = 34944;
public const uint Demolisher = 34775;
public const uint SiegeEngineH = 35069;
public const uint SiegeEngineA = 34776;
public const uint GlaiveThrowerA = 34802;
public const uint GlaiveThrowerH = 35273;
public const uint Catapult = 34793;
public const uint HordeGunshipCannon = 34935;
public const uint AllianceGunshipCannon = 34929;
public const uint HordeGunshipCaptain = 35003;
public const uint AllianceGunshipCaptain = 34960;
public const uint WorldTriggerNotFloating = 34984;
public const uint WorldTriggerAllianceFriendly = 20213;
public const uint WorldTriggerHordeFriendly = 20212;
}
public struct ICSpells
{
public const uint OilRefinery = 68719;
public const uint Quarry = 68720;
public const uint Parachute = 66656;
public const uint SlowFall = 12438;
public const uint DestroyedVehicleAchievement = 68357;
public const uint BackDoorJobAchievement = 68502;
public const uint DrivingCreditDemolisher = 68365;
public const uint DrivingCreditGlaive = 68363;
public const uint DrivingCreditSiege = 68364;
public const uint DrivingCreditCatapult = 68362;
public const uint SimpleTeleport = 12980;
public const uint TeleportVisualOnly = 51347;
public const uint ParachuteIc = 66657;
public const uint LaunchNoFallingDamage = 66251;
}
}