-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Exported SpellTableExtendedData (#13)
* Adding Exported SpellTableExtendedData * Fix sql syntax errors
- Loading branch information
1 parent
729eda8
commit 7f5a283
Showing
3,745 changed files
with
7,598 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
USE `ace_world`; | ||
|
||
CREATE TABLE `spell` ( | ||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Unique Id of this Spell', | ||
`spell_Id` int(10) unsigned NOT NULL COMMENT 'Unique Spell Id', | ||
`name` text NOT NULL, | ||
`description` text NOT NULL, | ||
`school` int(10) NOT NULL DEFAULT '0', | ||
`icon_Id` int(10) unsigned NOT NULL DEFAULT '0', | ||
`category` int(10) unsigned NOT NULL DEFAULT '0', | ||
`bitfield` int(10) unsigned NOT NULL DEFAULT '0', | ||
`mana` int(10) unsigned NOT NULL DEFAULT '0', | ||
`range_Constant` float NOT NULL, | ||
`range_Mod` float NOT NULL, | ||
`power` int(10) unsigned NOT NULL DEFAULT '0', | ||
`economy_Mod` float NOT NULL, | ||
`formula_Version` int(10) unsigned NOT NULL DEFAULT '0', | ||
`component_Loss` float NOT NULL, | ||
`meta_Spell_Type` int(10) NOT NULL DEFAULT '0', | ||
`meta_Spell_Id` int(10) unsigned NOT NULL DEFAULT '0', | ||
`spell_Formula_Comp_1_Component_Id` int(10) unsigned NOT NULL DEFAULT '0', | ||
`spell_Formula_Comp_2_Component_Id` int(10) unsigned NOT NULL DEFAULT '0', | ||
`spell_Formula_Comp_3_Component_Id` int(10) unsigned NOT NULL DEFAULT '0', | ||
`spell_Formula_Comp_4_Component_Id` int(10) unsigned NOT NULL DEFAULT '0', | ||
`spell_Formula_Comp_5_Component_Id` int(10) unsigned NOT NULL DEFAULT '0', | ||
`spell_Formula_Comp_6_Component_Id` int(10) unsigned NOT NULL DEFAULT '0', | ||
`spell_Formula_Comp_7_Component_Id` int(10) unsigned NOT NULL DEFAULT '0', | ||
`spell_Formula_Comp_8_Component_Id` int(10) unsigned NOT NULL DEFAULT '0', | ||
`caster_Effect` int(10) unsigned NOT NULL DEFAULT '0', | ||
`target_Effect` int(10) unsigned NOT NULL DEFAULT '0', | ||
`fizzle_Effect` int(10) unsigned NOT NULL DEFAULT '0', | ||
`recovery_Interval` double NOT NULL, | ||
`recovery_Amount` float NOT NULL, | ||
`display_Order` int(10) unsigned NOT NULL DEFAULT '0', | ||
`non_Component_Target_Type` int(10) unsigned NOT NULL DEFAULT '0', | ||
`mana_Mod` int(10) unsigned NOT NULL DEFAULT '0', | ||
`duration` double DEFAULT NULL, | ||
`degrade_Modifier` float DEFAULT NULL, | ||
`degrade_Limit` float DEFAULT NULL, | ||
`stat_Mod_Type` int(10) unsigned DEFAULT NULL, | ||
`stat_Mod_Key` int(10) unsigned DEFAULT NULL, | ||
`stat_Mod_Val` float DEFAULT NULL, | ||
`e_Type` int(10) unsigned DEFAULT NULL, | ||
`base_Intensity` int(10) DEFAULT NULL, | ||
`variance` int(10) DEFAULT NULL, | ||
`wcid` int(10) unsigned DEFAULT NULL, | ||
`num_Projectiles` int(10) DEFAULT NULL, | ||
`num_Projectiles_Variance` int(10) DEFAULT NULL, | ||
`spread_Angle` float DEFAULT NULL, | ||
`vertical_Angle` float DEFAULT NULL, | ||
`default_Launch_Angle` float DEFAULT NULL, | ||
`non_Tracking` bit(1) DEFAULT NULL, | ||
`create_Offset_Origin_X` float DEFAULT NULL, | ||
`create_Offset_Origin_Y` float DEFAULT NULL, | ||
`create_Offset_Origin_Z` float DEFAULT NULL, | ||
`padding_Origin_X` float DEFAULT NULL, | ||
`padding_Origin_Y` float DEFAULT NULL, | ||
`padding_Origin_Z` float DEFAULT NULL, | ||
`dims_Origin_X` float DEFAULT NULL, | ||
`dims_Origin_Y` float DEFAULT NULL, | ||
`dims_Origin_Z` float DEFAULT NULL, | ||
`peturbation_Origin_X` float DEFAULT NULL, | ||
`peturbation_Origin_Y` float DEFAULT NULL, | ||
`peturbation_Origin_Z` float DEFAULT NULL, | ||
`imbued_Effect` int(10) unsigned DEFAULT NULL, | ||
`slayer_Creature_Type` int(10) DEFAULT NULL, | ||
`slayer_Damage_Bonus` float DEFAULT NULL, | ||
`crit_Freq` double DEFAULT NULL, | ||
`crit_Multiplier` double DEFAULT NULL, | ||
`ignore_Magic_Resist` int(10) DEFAULT NULL, | ||
`elemental_Modifier` double DEFAULT NULL, | ||
`drain_Percentage` float DEFAULT NULL, | ||
`damage_Ratio` float DEFAULT NULL, | ||
`damage_Type` int(10) DEFAULT NULL, | ||
`boost` int(10) DEFAULT NULL, | ||
`boost_Variance` int(10) DEFAULT NULL, | ||
`source` int(10) DEFAULT NULL, | ||
`destination` int(10) DEFAULT NULL, | ||
`proportion` float DEFAULT NULL, | ||
`loss_Percent` float DEFAULT NULL, | ||
`source_Loss` int(10) DEFAULT NULL, | ||
`transfer_Cap` int(10) DEFAULT NULL, | ||
`max_Boost_Allowed` int(10) DEFAULT NULL, | ||
`transfer_Bitfield` int(10) unsigned DEFAULT NULL, | ||
`index` int(10) DEFAULT NULL, | ||
`portal_Lifetime` double DEFAULT NULL, | ||
`link` int(10) DEFAULT NULL, | ||
`position_Obj_Cell_ID` int(10) unsigned DEFAULT NULL, | ||
`position_Origin_X` float DEFAULT NULL, | ||
`position_Origin_Y` float DEFAULT NULL, | ||
`position_Origin_Z` float DEFAULT NULL, | ||
`position_Angles_W` float DEFAULT NULL, | ||
`position_Angles_X` float DEFAULT NULL, | ||
`position_Angles_Y` float DEFAULT NULL, | ||
`position_Angles_Z` float DEFAULT NULL, | ||
`min_Power` int(10) DEFAULT NULL, | ||
`max_Power` int(10) DEFAULT NULL, | ||
`power_Variance` float DEFAULT NULL, | ||
`dispel_School` int(10) DEFAULT NULL, | ||
`align` int(10) DEFAULT NULL, | ||
`number` int(10) DEFAULT NULL, | ||
`number_Variance` float DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
UNIQUE KEY `spell_id_uidx` (`spell_Id`), | ||
UNIQUE KEY `metaspell_id_uidx` (`meta_Spell_Id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Spell Table Extended Data'; |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00001 Strength Other I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `duration`, `degrade_Modifier`, `degrade_Limit`, `stat_Mod_Type`, `stat_Mod_Key`, `stat_Mod_Val`) | ||
VALUES (1, 'Strength Other I', 'Increases the target''s Strength by 10 points.', 4 /* CreatureEnchantment */, 100668300, 1 , 6, 10, 5, 1, 1, 1, 1, 0, 1 /* Enchantment_SpellType */, 1, 1, 7, 33, 44, 49, 0, 0, 0, 0, 6, 0, 0, 0, 4294967295, 16, 0, 1800, 0, -666, 36865 /* */, 1, 10); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00002 Strength Self I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `duration`, `degrade_Modifier`, `degrade_Limit`, `stat_Mod_Type`, `stat_Mod_Key`, `stat_Mod_Val`) | ||
VALUES (2, 'Strength Self I', 'Increases the caster''s Strength by 10 points.', 4 /* CreatureEnchantment */, 100668300, 1 , 16396, 15, 0, 0, 1, 1, 1, 0.01, 1 /* Enchantment_SpellType */, 2, 1, 7, 33, 44, 60, 0, 0, 0, 0, 6, 0, 0, 0, 4294967295, 16, 0, 1800, 0, -666, 36865 /* */, 1, 10); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00003 Weakness Other I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `duration`, `degrade_Modifier`, `degrade_Limit`, `stat_Mod_Type`, `stat_Mod_Key`, `stat_Mod_Val`) | ||
VALUES (3, 'Weakness Other I', 'Decreases the target''s Strength by 10 points.', 4 /* CreatureEnchantment */, 100668300, 2 , 19, 10, 5, 1, 1, 1, 1, 0.01, 1 /* Enchantment_SpellType */, 3, 1, 8, 33, 44, 50, 0, 0, 0, 0, 7, 0, 0, 0, 4294967295, 16, 0, 60, 0, -666, 36865 /* */, 1, -10); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00004 Weakness Self I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `duration`, `degrade_Modifier`, `degrade_Limit`, `stat_Mod_Type`, `stat_Mod_Key`, `stat_Mod_Val`) | ||
VALUES (4, 'Weakness Self I', 'Decrease the caster''s Strength by 10 points.', 4 /* CreatureEnchantment */, 100668300, 2 , 24, 15, 0, 0, 15, 1, 1, 0.01, 1 /* Enchantment_SpellType */, 4, 1, 8, 33, 44, 60, 0, 0, 0, 0, 7, 0, 0, 0, 4294967295, 16, 0, 60, 0, -666, 36865 /* */, 1, -10); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00005 Heal Other I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `damage_Type`, `boost`, `boost_Variance`) | ||
VALUES (5, 'Heal Other I', 'Restores 10-25 points of the target''s Health.', 2 /* LifeMagic */, 100674018, 79 , 4, 10, 5, 1, 1, 1, 1, 0, 3 /* Boost_SpellType */, 5, 1, 7, 26, 41, 51, 0, 0, 0, 0, 30, 0, 0, 0, 4294967295, 16, 0, 128 /* HEALTH_DAMAGE_TYPE */, 10, 15); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00006 Heal Self I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `damage_Type`, `boost`, `boost_Variance`) | ||
VALUES (6, 'Heal Self I', 'Restores 10-25 points of the caster''s Health.', 2 /* LifeMagic */, 100674019, 67 , 12, 15, 0, 0, 1, 1, 1, 0.01, 3 /* Boost_SpellType */, 6, 1, 7, 26, 41, 61, 0, 0, 0, 0, 30, 0, 0, 0, 4294967295, 16, 0, 128 /* HEALTH_DAMAGE_TYPE */, 10, 15); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00007 Harm Other I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `damage_Type`, `boost`, `boost_Variance`) | ||
VALUES (7, 'Harm Other I', 'Drains 4-6 points of the target''s Health.', 2 /* LifeMagic */, 100674016, 80 , 19, 10, 10, 0, 1, 1, 1, 0.01, 3 /* Boost_SpellType */, 7, 1, 8, 26, 41, 52, 0, 0, 0, 0, 31, 0, 0, 0, 4294967295, 16, 0, 128 /* HEALTH_DAMAGE_TYPE */, -4, -6); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00008 Harm Self I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `damage_Type`, `boost`, `boost_Variance`) | ||
VALUES (8, 'Harm Self I', 'Drains 4-6 points of the caster''s Health.', 2 /* LifeMagic */, 100674017, 80 , 26, 15, 0, 0, 15, 1, 1, 0.01, 3 /* Boost_SpellType */, 8, 1, 8, 26, 41, 61, 0, 0, 0, 0, 31, 0, 0, 0, 4294967295, 16, 0, 128 /* HEALTH_DAMAGE_TYPE */, -4, -6); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00009 Infuse Mana Other I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `source`, `destination`, `proportion`, `loss_Percent`, `source_Loss`, `transfer_Cap`, `max_Boost_Allowed`, `transfer_Bitfield`) | ||
VALUES (9, 'Infuse Mana Other I', 'Drains one-quarter of the caster''s Mana and gives 75% of that to the target.', 2 /* LifeMagic */, 100668288, 92 , 6, 10, 5, 0.5, 1, 0, 1, 0.1, 4 /* Transfer_SpellType */, 9, 1, 9, 26, 42, 53, 0, 0, 0, 0, 32, 0, 0, 0, 4294967295, 16, 0, 6 /* MANA_ATTRIBUTE_2ND */, 6 /* MANA_ATTRIBUTE_2ND */, 0.25, 0.25, 0, 0, 0, 9); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00015 Vulnerability Other I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `duration`, `degrade_Modifier`, `degrade_Limit`, `stat_Mod_Type`, `stat_Mod_Key`, `stat_Mod_Val`) | ||
VALUES (15, 'Vulnerability Other I', 'Decrease the target''s Melee Defense skill by 10 points.', 4 /* CreatureEnchantment */, 100668331, 38 , 19, 10, 0, 1, 1, 1, 1, 0.01, 1 /* Enchantment_SpellType */, 15, 1, 8, 30, 44, 50, 0, 0, 0, 0, 23, 0, 0, 0, 4294967295, 16, 0, 60, 0, -666, 36880 /* */, 6, -10); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00016 Vulnerability Self I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `duration`, `degrade_Modifier`, `degrade_Limit`, `stat_Mod_Type`, `stat_Mod_Key`, `stat_Mod_Val`) | ||
VALUES (16, 'Vulnerability Self I', 'Decrease the target''s Melee Defense skill by 10 points.', 4 /* CreatureEnchantment */, 100668331, 38 , 24, 15, 0, 0, 1, 1, 1, 0.01, 1 /* Enchantment_SpellType */, 16, 1, 8, 30, 44, 60, 0, 0, 0, 0, 23, 0, 0, 0, 4294967295, 16, 0, 60, 0, -666, 36880 /* */, 6, -10); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00017 Invulnerability Other I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `duration`, `degrade_Modifier`, `degrade_Limit`, `stat_Mod_Type`, `stat_Mod_Key`, `stat_Mod_Val`) | ||
VALUES (17, 'Invulnerability Other I', 'Increases the target''s Melee Defense skill by 10 points.', 4 /* CreatureEnchantment */, 100668331, 37 , 4, 10, 5, 1, 1, 1, 1, 0.01, 1 /* Enchantment_SpellType */, 17, 1, 7, 30, 44, 49, 0, 0, 0, 0, 22, 0, 0, 0, 4294967295, 16, 0, 1800, 0, -666, 36880 /* */, 6, 10); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00018 Invulnerability Self I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `duration`, `degrade_Modifier`, `degrade_Limit`, `stat_Mod_Type`, `stat_Mod_Key`, `stat_Mod_Val`) | ||
VALUES (18, 'Invulnerability Self I', 'Increases the caster''s Melee Defense skill by 10 points.', 4 /* CreatureEnchantment */, 100668331, 37 , 16396, 15, 0, 0, 1, 1, 1, 0, 1 /* Enchantment_SpellType */, 18, 1, 7, 30, 44, 60, 0, 0, 0, 0, 22, 0, 0, 0, 4294967295, 16, 0, 1800, 0, -666, 36880 /* */, 6, 10); |
2 changes: 2 additions & 0 deletions
2
Database/3-Core/2 SpellTableExtendedData/SQL/00019 Fire Protection Other I.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INSERT INTO `spell` (`spell_Id`, `name`, `description`, `school`, `icon_Id`, `category`, `bitfield`, `mana`, `range_Constant`, `range_Mod`, `power`, `economy_Mod`, `formula_Version`, `component_Loss`, `meta_Spell_Type`, `meta_Spell_Id`, `spell_Formula_Comp_1_Component_Id`, `spell_Formula_Comp_2_Component_Id`, `spell_Formula_Comp_3_Component_Id`, `spell_Formula_Comp_4_Component_Id`, `spell_Formula_Comp_5_Component_Id`, `spell_Formula_Comp_6_Component_Id`, `spell_Formula_Comp_7_Component_Id`, `spell_Formula_Comp_8_Component_Id`, `caster_Effect`, `target_Effect`, `fizzle_Effect`, `recovery_Interval`, `recovery_Amount`, `display_Order`, `non_Component_Target_Type`, `mana_Mod`, `duration`, `degrade_Modifier`, `degrade_Limit`, `stat_Mod_Type`, `stat_Mod_Key`, `stat_Mod_Val`) | ||
VALUES (19, 'Fire Protection Other I', 'Reduces damage the target takes from fire by 9%.', 2 /* LifeMagic */, 100668291, 109 , 6, 10, 5, 1, 1, 0, 1, 0.01, 1 /* Enchantment_SpellType */, 19, 1, 13, 34, 45, 54, 0, 0, 0, 0, 42, 0, 0, 0, 4294967295, 16, 0, 1800, 0, -666, 20488 /* */, 67, 0.91); |
Oops, something went wrong.