diff options
author | Matan Shukry <matanshukry@gmail.com> | 2021-02-06 19:09:49 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-02-06 19:09:49 +0100 |
commit | c6c583a63e188c1d8d81d0141a0f188479a98d0f (patch) | |
tree | 8e5c179d0ded0c2bb77f9f930ec9f0334093a9d8 | |
parent | 65df9d424d88a50ec9155d05cba12e529e6f9557 (diff) |
DB: Remove deprecated spells from riding trainers
-rw-r--r-- | sql/updates/world/master/2021_02_06_00_world_disable_artisan_riding.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_02_06_00_world_disable_artisan_riding.sql b/sql/updates/world/master/2021_02_06_00_world_disable_artisan_riding.sql new file mode 100644 index 00000000000..f4d46fd0431 --- /dev/null +++ b/sql/updates/world/master/2021_02_06_00_world_disable_artisan_riding.sql @@ -0,0 +1,14 @@ +-- Delete the following spells from the trainer: Artisan Riding, Cold Weather Flying, Flight Masters License +DELETE FROM `trainer_spell` WHERE `SpellId` IN (34093, 54198, 90269); + +-- Apprentice riding skill +UPDATE `trainer_spell` SET `MoneyCost` = 10000, `ReqLevel` = 10 WHERE `SpellId` = 33389; + +-- Journeyman riding skill +UPDATE `trainer_spell` SET `MoneyCost` = 500000, `ReqLevel` = 20 WHERE `SpellId` = 33392; + +-- Expert riding skill +UPDATE `trainer_spell` SET `MoneyCost` = 2500000, `ReqLevel` = 30 WHERE `SpellId` = 34092; + +-- Master riding skill +UPDATE `trainer_spell` SET `MoneyCost` = 50000000, `ReqLevel` = 40, `ReqAbility1` = 34090 WHERE `SpellId` = 90266; |