DB/GameObject: Update Toy Train Set

(cherry picked from commit fd9d04062c)
This commit is contained in:
offl
2021-08-31 23:51:35 +03:00
committed by Shauren
parent 318e0e2406
commit 94840f791c
3 changed files with 10 additions and 45 deletions

View File

@@ -26,7 +26,6 @@ go_tele_to_violet_stand
go_soulwell
go_amberpine_outhouse
go_veil_skith_cage
go_toy_train_set
go_bells
EndContentData */
@@ -681,47 +680,6 @@ public:
}
};
enum ToyTrainSpells
{
SPELL_TOY_TRAIN_PULSE = 61551,
};
class go_toy_train_set : public GameObjectScript
{
public:
go_toy_train_set() : GameObjectScript("go_toy_train_set") { }
struct go_toy_train_setAI : public GameObjectAI
{
go_toy_train_setAI(GameObject* go) : GameObjectAI(go), _pulseTimer(3 * IN_MILLISECONDS) { }
void UpdateAI(uint32 diff) override
{
if (diff < _pulseTimer)
_pulseTimer -= diff;
else
{
me->CastSpell(nullptr, SPELL_TOY_TRAIN_PULSE, true);
_pulseTimer = 6 * IN_MILLISECONDS;
}
}
// triggered on wrecker'd
void DoAction(int32 /*action*/) override
{
me->Delete();
}
private:
uint32 _pulseTimer;
};
GameObjectAI* GetAI(GameObject* go) const override
{
return new go_toy_train_setAI(go);
}
};
/*####
## go_brewfest_music
####*/
@@ -1240,7 +1198,6 @@ void AddSC_go_scripts()
new go_frostblade_shrine();
new go_midsummer_bonfire();
new go_midsummer_ribbon_pole();
new go_toy_train_set();
new go_brewfest_music();
new go_midsummer_music();
new go_darkmoon_faire_music();

View File

@@ -2113,7 +2113,6 @@ enum TrainWrecker
GO_TOY_TRAIN = 193963,
SPELL_TOY_TRAIN_PULSE = 61551,
SPELL_WRECK_TRAIN = 62943,
ACTION_WRECKED = 1,
EVENT_DO_JUMP = 1,
EVENT_DO_FACING = 2,
EVENT_DO_WRECK = 3,
@@ -2189,7 +2188,6 @@ class npc_train_wrecker : public CreatureScript
if (GameObject* target = VerifyTarget())
{
me->CastSpell(target, SPELL_WRECK_TRAIN, false);
target->AI()->DoAction(ACTION_WRECKED);
_timer = 2 * IN_MILLISECONDS;
_nextAction = EVENT_DO_DANCE;
}