Added placeholders for sunwell

--HG--
branch : trunk
This commit is contained in:
Bagsac
2009-04-17 20:44:23 +02:00
parent 3fff87960a
commit 5af6884595
8 changed files with 120 additions and 0 deletions

View File

@@ -303,10 +303,13 @@ SET(trinityscript_LIB_SRCS
scripts/zone/stratholme/def_stratholme.h
scripts/zone/stratholme/instance_stratholme.cpp
scripts/zone/stratholme/stratholme.cpp
scripts/zone/sunwell_plateau/boss_kiljaeden.cpp
scripts/zone/sunwell_plateau/boss_muru.cpp
scripts/zone/sunwell_plateau/boss_eredar_twins.cpp
scripts/zone/sunwell_plateau/boss_felmyst.cpp
scripts/zone/sunwell_plateau/boss_brutallus.cpp
scripts/zone/sunwell_plateau/boss_kalecgos.cpp
scripts/zone/sunwell_plateau/sunwell_plateau.cpp
scripts/zone/sunwell_plateau/def_sunwell_plateau.h
scripts/zone/sunwell_plateau/instance_sunwell_plateau.cpp
scripts/zone/tanaris/tanaris.cpp

View File

@@ -505,6 +505,9 @@ extern void AddSC_boss_kalecgos();
extern void AddSC_boss_brutallus();
extern void AddSC_boss_felmyst();
extern void AddSC_boss_eredar_twins();
extern void AddSC_boss_muru();
extern void AddSC_boss_kiljaeden();
extern void AddSC_sunwell_plateau();
//Tanaris
extern void AddSC_tanaris();
@@ -1823,6 +1826,9 @@ void ScriptsInit()
AddSC_boss_brutallus();
AddSC_boss_felmyst();
AddSC_boss_eredar_twins();
AddSC_boss_muru();
AddSC_boss_kiljaeden();
AddSC_sunwell_plateau();
//Tanaris
AddSC_tanaris();

View File

@@ -2113,6 +2113,18 @@
RelativePath="..\scripts\zone\sunwell_plateau\boss_kalecgos.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\boss_muru.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\boss_kiljaeden.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\sunwell_plateau.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\def_sunwell_plateau.h"
>

View File

@@ -2290,6 +2290,18 @@
RelativePath="..\scripts\zone\sunwell_plateau\boss_kalecgos.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\boss_muru.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\boss_kiljaeden.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\sunwell_plateau.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\def_sunwell_plateau.h"
>

View File

@@ -2283,6 +2283,18 @@
RelativePath="..\scripts\zone\sunwell_plateau\boss_kalecgos.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\boss_muru.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\boss_kiljaeden.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\sunwell_plateau.cpp"
>
</File>
<File
RelativePath="..\scripts\zone\sunwell_plateau\def_sunwell_plateau.h"
>

View File

@@ -0,0 +1,25 @@
/* Copyright (C) 2009 Trinity <http://www.trinitycore.org/>
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* ScriptData
SDName: Boss_Kiljaeden
SD%Complete: 0
SDComment: Placeholer
SDCategory: Sunwell_Plateau
EndScriptData */
void AddSC_boss_kiljaeden()
{};

View File

@@ -0,0 +1,25 @@
/* Copyright (C) 2009 Trinity <http://www.trinitycore.org/>
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* ScriptData
SDName: Boss_Muru
SD%Complete: 0
SDComment: Placeholer
SDCategory: Sunwell_Plateau
EndScriptData */
void AddSC_boss_muru()
{};

View File

@@ -0,0 +1,25 @@
/* Copyright (C) 2009 Trinity <http://www.trinitycore.org/>
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* ScriptData
SDName: sunwell_plateau
SD%Complete: 0
SDComment: Placeholer
SDCategory: Sunwell_Plateau
EndScriptData */
void AddSC_sunwell_plateau()
{};