mirror of
https://github.com/mangosfour/server.git
synced 2025-12-30 01:37:03 +00:00
Merge commit 'origin/master' into 330
This commit is contained in:
commit
57267884a8
34 changed files with 240 additions and 201 deletions
|
|
@ -24,7 +24,7 @@ CREATE TABLE `db_version` (
|
|||
`version` varchar(120) default NULL,
|
||||
`creature_ai_version` varchar(120) default NULL,
|
||||
`cache_id` int(10) default '0',
|
||||
`required_8693_01_mangos_spell_proc_event` bit(1) default NULL
|
||||
`required_8720_01_mangos_quest_template` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||
|
||||
--
|
||||
|
|
@ -13677,10 +13677,14 @@ CREATE TABLE `quest_template` (
|
|||
`RewItemId2` mediumint(8) unsigned NOT NULL default '0',
|
||||
`RewItemId3` mediumint(8) unsigned NOT NULL default '0',
|
||||
`RewItemId4` mediumint(8) unsigned NOT NULL default '0',
|
||||
`ReqItemId5` mediumint(8) unsigned NOT NULL default '0',
|
||||
`ReqItemId6` mediumint(8) unsigned NOT NULL default '0',
|
||||
`RewItemCount1` smallint(5) unsigned NOT NULL default '0',
|
||||
`RewItemCount2` smallint(5) unsigned NOT NULL default '0',
|
||||
`RewItemCount3` smallint(5) unsigned NOT NULL default '0',
|
||||
`RewItemCount4` smallint(5) unsigned NOT NULL default '0',
|
||||
`ReqItemCount5` smallint(5) unsigned NOT NULL default '0',
|
||||
`ReqItemCount6` smallint(5) unsigned NOT NULL default '0',
|
||||
`RewRepFaction1` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewRepFaction2` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
`RewRepFaction3` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
|
||||
|
|
|
|||
|
|
@ -345,7 +345,7 @@ INSERT INTO spell_check (spellid,SpellFamilyName,SpellFamilyMaskA,SpellFamilyMas
|
|||
/*id fm familyMaskA fmMaskB icon vis cat eff aur ef name code */
|
||||
( 0, 3,0x0000000020000000,0x00000000, -1, -1, -1, 2, -1,-1,'Arcane Blast', 'Spell::EffectSchoolDMG'),
|
||||
( 0, 9,0x0000000000000800,0x00000000, -1, -1, -1, 2, -1,-1,'Arcane Shot', 'Spell::EffectSchoolDMG'),
|
||||
( 0, 5,0x0000000000004000,0x00000000, -1, -1, -1, -1, -1,-1,'Drain Soul', 'Aura::HandlePeriodicDamage'),
|
||||
( 0, 5,0x0000000000004000,0x00000000, -1, -1, -1, -1, -1,-1,'Drain Soul', 'Unit::SpellDamageBonus'),
|
||||
( 0,10,0x0000000000004000,0x00000000, -1, -1, -1, 2, -1,-1,'Avenger\'s Shield', 'Spell::EffectSchoolDMG'),
|
||||
( 0, 4,0x0000040000000000,0x00000000, -1, -1, -1, 2, -1,-1,'Bloodthirst', 'Spell::EffectSchoolDMG'),
|
||||
(0, 4,0x0000000000000001,0x00000000, -1, 867, -1, 3, -1,-1,'Charge', 'Spell::EffectDummy'),
|
||||
|
|
|
|||
7
sql/updates/8720_01_mangos_quest_template.sql
Normal file
7
sql/updates/8720_01_mangos_quest_template.sql
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
ALTER TABLE db_version CHANGE COLUMN required_8693_01_mangos_spell_proc_event required_8720_01_mangos_quest_template bit;
|
||||
|
||||
alter table `quest_template`
|
||||
add column `ReqItemId5` mediumint(8) UNSIGNED DEFAULT '0' NOT NULL after `ReqItemId4`,
|
||||
add column `ReqItemId6` mediumint(8) UNSIGNED DEFAULT '0' NOT NULL after `ReqItemId5`,
|
||||
add column `ReqItemCount5` smallint(5) UNSIGNED DEFAULT '0' NOT NULL after `ReqItemCount4`,
|
||||
add column `ReqItemCount6` smallint(5) UNSIGNED DEFAULT '0' NOT NULL after `ReqItemCount5`;
|
||||
|
|
@ -139,6 +139,7 @@ pkgdata_DATA = \
|
|||
8688_01_mangos_creature_template.sql \
|
||||
8693_01_mangos_spell_proc_event.sql \
|
||||
8702_01_characters_character_reputation.sql \
|
||||
8720_01_mangos_quest_template.sql \
|
||||
README
|
||||
|
||||
## Additional files to include when running 'make dist'
|
||||
|
|
@ -258,4 +259,5 @@ EXTRA_DIST = \
|
|||
8688_01_mangos_creature_template.sql \
|
||||
8693_01_mangos_spell_proc_event.sql \
|
||||
8702_01_characters_character_reputation.sql \
|
||||
8720_01_mangos_quest_template.sql \
|
||||
README
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue