Skip to content

Commit

Permalink
Update Recipes (#57)
Browse files Browse the repository at this point in the history
* Update Recipes

This restores the index that got chopped off from lists

* Create 2019-04-13-00-Changes_To_Recipe_Tables.sql
  • Loading branch information
LtRipley36706 authored Apr 13, 2019
1 parent bbe73af commit c80df6b
Show file tree
Hide file tree
Showing 752 changed files with 5,231 additions and 5,194 deletions.
37 changes: 37 additions & 0 deletions Database/2-BaseUpdates/2019-04-13-00-Changes_To_Recipe_Tables.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
USE `ace_world`;

ALTER TABLE `recipe_mods_bool`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Mod_Id`;

ALTER TABLE `recipe_mods_d_i_d`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Mod_Id`;

ALTER TABLE `recipe_mods_float`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Mod_Id`;

ALTER TABLE `recipe_mods_i_i_d`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Mod_Id`;

ALTER TABLE `recipe_mods_int`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Mod_Id`;

ALTER TABLE `recipe_mods_string`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Mod_Id`;

ALTER TABLE `recipe_requirements_bool`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Id`;

ALTER TABLE `recipe_requirements_d_i_d`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Id`;

ALTER TABLE `recipe_requirements_float`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Id`;

ALTER TABLE `recipe_requirements_i_i_d`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Id`;

ALTER TABLE `recipe_requirements_int`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Id`;

ALTER TABLE `recipe_requirements_string`
ADD COLUMN `index` TINYINT(5) NOT NULL AFTER `recipe_Id`;
8 changes: 4 additions & 4 deletions Database/3-Core/4 CraftTable/SQL/00291 Candied Apple.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ VALUES (291, True, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 25, NULL, 4, 1) /* CraftsmanName */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 3, 25, NULL, 4, 1) /* CraftsmanName */;

INSERT INTO `recipe_mod` (`recipe_Id`, `executes_On_Success`, `health`, `stamina`, `mana`, `unknown_7`, `data_Id`, `unknown_9`, `instance_Id`)
VALUES (291, False, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 25, NULL, 4, 1) /* CraftsmanName */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 7, 25, NULL, 4, 1) /* CraftsmanName */;

DELETE FROM `cook_book` WHERE `recipe_Id` = 291;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ VALUES (292, True, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 25, NULL, 4, 1) /* CraftsmanName */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 3, 25, NULL, 4, 1) /* CraftsmanName */;

INSERT INTO `recipe_mod` (`recipe_Id`, `executes_On_Success`, `health`, `stamina`, `mana`, `unknown_7`, `data_Id`, `unknown_9`, `instance_Id`)
VALUES (292, False, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 25, NULL, 4, 1) /* CraftsmanName */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 7, 25, NULL, 4, 1) /* CraftsmanName */;

DELETE FROM `cook_book` WHERE `recipe_Id` = 292;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ VALUES (293, True, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 25, NULL, 4, 1) /* CraftsmanName */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 3, 25, NULL, 4, 1) /* CraftsmanName */;

INSERT INTO `recipe_mod` (`recipe_Id`, `executes_On_Success`, `health`, `stamina`, `mana`, `unknown_7`, `data_Id`, `unknown_9`, `instance_Id`)
VALUES (293, False, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 25, NULL, 4, 1) /* CraftsmanName */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 7, 25, NULL, 4, 1) /* CraftsmanName */;

DELETE FROM `cook_book` WHERE `recipe_Id` = 293;

Expand Down
20 changes: 10 additions & 10 deletions Database/3-Core/4 CraftTable/SQL/01801 Bandit Blade Hilt.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ DELETE FROM `recipe` WHERE `id` = 1801;
INSERT INTO `recipe` (`id`, `unknown_1`, `skill`, `difficulty`, `salvage_Type`, `success_W_C_I_D`, `success_Amount`, `success_Message`, `fail_W_C_I_D`, `fail_Amount`, `fail_Message`, `success_Destroy_Source_Chance`, `success_Destroy_Source_Amount`, `success_Destroy_Source_Message`, `success_Destroy_Target_Chance`, `success_Destroy_Target_Amount`, `success_Destroy_Target_Message`, `fail_Destroy_Source_Chance`, `fail_Destroy_Source_Amount`, `fail_Destroy_Source_Message`, `fail_Destroy_Target_Chance`, `fail_Destroy_Target_Amount`, `fail_Destroy_Target_Message`, `data_Id`, `last_Modified`)
VALUES (1801, 0, 0, 0, 0, 0, 0, 'You attach the Bandit Hilt to the Dagger.', 0, 0, 'You fail.', 1, 1, NULL, 0, 0, NULL, 1, 1, NULL, 0, 0, NULL, 0, '2005-02-09 10:00:00');

INSERT INTO `recipe_requirements_int` (`recipe_Id`, `stat`, `value`, `enum`, `message`)
VALUES (1801, 171, 0, 4, 'You can''t hilt a weapon that has been tinkered.') /* NumTimesTinkered */
, (1801, 47, 32, 3, 'This weapon has already been hilted!') /* AttackType - DoubleSlash */;
INSERT INTO `recipe_requirements_int` (`recipe_Id`, `index`, `stat`, `value`, `enum`, `message`)
VALUES (1801, 0, 171, 0, 4, 'You can''t hilt a weapon that has been tinkered.') /* NumTimesTinkered */
, (1801, 0, 47, 32, 3, 'This weapon has already been hilted!') /* AttackType - DoubleSlash */;

INSERT INTO `recipe_mod` (`recipe_Id`, `executes_On_Success`, `health`, `stamina`, `mana`, `unknown_7`, `data_Id`, `unknown_9`, `instance_Id`)
VALUES (1801, True, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_int` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 47, 486, 1, 1) /* AttackType - Thrust, Slash, DoubleSlash, TripleSlash, DoubleThrust, TripleThrust */
, (@parent_id, 33, 1, 1, 1) /* Bonded - Bonded */
, (@parent_id, 114, 1, 1, 1) /* Attuned - Attuned */
, (@parent_id, 19, 0, 1, 1) /* Value */;
INSERT INTO `recipe_mods_int` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 0, 47, 486, 1, 1) /* AttackType - Thrust, Slash, DoubleSlash, TripleSlash, DoubleThrust, TripleThrust */
, (@parent_id, 0, 33, 1, 1, 1) /* Bonded - Bonded */
, (@parent_id, 0, 114, 1, 1, 1) /* Attuned - Attuned */
, (@parent_id, 0, 19, 0, 1, 1) /* Value */;

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 1, 'Bandit Dagger', 1, 1) /* Name */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 0, 1, 'Bandit Dagger', 1, 1) /* Name */;

DELETE FROM `cook_book` WHERE `recipe_Id` = 1801;

Expand Down
20 changes: 10 additions & 10 deletions Database/3-Core/4 CraftTable/SQL/01802 Bandit Blade Hilt.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ DELETE FROM `recipe` WHERE `id` = 1802;
INSERT INTO `recipe` (`id`, `unknown_1`, `skill`, `difficulty`, `salvage_Type`, `success_W_C_I_D`, `success_Amount`, `success_Message`, `fail_W_C_I_D`, `fail_Amount`, `fail_Message`, `success_Destroy_Source_Chance`, `success_Destroy_Source_Amount`, `success_Destroy_Source_Message`, `success_Destroy_Target_Chance`, `success_Destroy_Target_Amount`, `success_Destroy_Target_Message`, `fail_Destroy_Source_Chance`, `fail_Destroy_Source_Amount`, `fail_Destroy_Source_Message`, `fail_Destroy_Target_Chance`, `fail_Destroy_Target_Amount`, `fail_Destroy_Target_Message`, `data_Id`, `last_Modified`)
VALUES (1802, 0, 0, 0, 0, 0, 0, 'You attach the Bandit Hilt to the Acid Dagger.', 0, 0, 'You fail.', 1, 1, NULL, 0, 0, NULL, 1, 1, NULL, 0, 0, NULL, 0, '2005-02-09 10:00:00');

INSERT INTO `recipe_requirements_int` (`recipe_Id`, `stat`, `value`, `enum`, `message`)
VALUES (1802, 171, 0, 4, 'You can''t hilt a weapon that has been tinkered.') /* NumTimesTinkered */
, (1802, 47, 32, 3, 'This weapon has already been hilted!') /* AttackType - DoubleSlash */;
INSERT INTO `recipe_requirements_int` (`recipe_Id`, `index`, `stat`, `value`, `enum`, `message`)
VALUES (1802, 0, 171, 0, 4, 'You can''t hilt a weapon that has been tinkered.') /* NumTimesTinkered */
, (1802, 0, 47, 32, 3, 'This weapon has already been hilted!') /* AttackType - DoubleSlash */;

INSERT INTO `recipe_mod` (`recipe_Id`, `executes_On_Success`, `health`, `stamina`, `mana`, `unknown_7`, `data_Id`, `unknown_9`, `instance_Id`)
VALUES (1802, True, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_int` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 47, 486, 1, 1) /* AttackType - Thrust, Slash, DoubleSlash, TripleSlash, DoubleThrust, TripleThrust */
, (@parent_id, 33, 1, 1, 1) /* Bonded - Bonded */
, (@parent_id, 114, 1, 1, 1) /* Attuned - Attuned */
, (@parent_id, 19, 0, 1, 1) /* Value */;
INSERT INTO `recipe_mods_int` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 0, 47, 486, 1, 1) /* AttackType - Thrust, Slash, DoubleSlash, TripleSlash, DoubleThrust, TripleThrust */
, (@parent_id, 0, 33, 1, 1, 1) /* Bonded - Bonded */
, (@parent_id, 0, 114, 1, 1, 1) /* Attuned - Attuned */
, (@parent_id, 0, 19, 0, 1, 1) /* Value */;

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 1, 'Acid Bandit Dagger', 1, 1) /* Name */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 0, 1, 'Acid Bandit Dagger', 1, 1) /* Name */;

DELETE FROM `cook_book` WHERE `recipe_Id` = 1802;

Expand Down
20 changes: 10 additions & 10 deletions Database/3-Core/4 CraftTable/SQL/01803 Bandit Blade Hilt.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ DELETE FROM `recipe` WHERE `id` = 1803;
INSERT INTO `recipe` (`id`, `unknown_1`, `skill`, `difficulty`, `salvage_Type`, `success_W_C_I_D`, `success_Amount`, `success_Message`, `fail_W_C_I_D`, `fail_Amount`, `fail_Message`, `success_Destroy_Source_Chance`, `success_Destroy_Source_Amount`, `success_Destroy_Source_Message`, `success_Destroy_Target_Chance`, `success_Destroy_Target_Amount`, `success_Destroy_Target_Message`, `fail_Destroy_Source_Chance`, `fail_Destroy_Source_Amount`, `fail_Destroy_Source_Message`, `fail_Destroy_Target_Chance`, `fail_Destroy_Target_Amount`, `fail_Destroy_Target_Message`, `data_Id`, `last_Modified`)
VALUES (1803, 0, 0, 0, 0, 0, 0, 'You attach the Bandit Hilt to the Lightning Dagger.', 0, 0, 'You fail.', 1, 1, NULL, 0, 0, NULL, 1, 1, NULL, 0, 0, NULL, 0, '2005-02-09 10:00:00');

INSERT INTO `recipe_requirements_int` (`recipe_Id`, `stat`, `value`, `enum`, `message`)
VALUES (1803, 171, 0, 4, 'You can''t hilt a weapon that has been tinkered.') /* NumTimesTinkered */
, (1803, 47, 32, 3, 'This weapon has already been hilted!') /* AttackType - DoubleSlash */;
INSERT INTO `recipe_requirements_int` (`recipe_Id`, `index`, `stat`, `value`, `enum`, `message`)
VALUES (1803, 0, 171, 0, 4, 'You can''t hilt a weapon that has been tinkered.') /* NumTimesTinkered */
, (1803, 0, 47, 32, 3, 'This weapon has already been hilted!') /* AttackType - DoubleSlash */;

INSERT INTO `recipe_mod` (`recipe_Id`, `executes_On_Success`, `health`, `stamina`, `mana`, `unknown_7`, `data_Id`, `unknown_9`, `instance_Id`)
VALUES (1803, True, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_int` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 47, 486, 1, 1) /* AttackType - Thrust, Slash, DoubleSlash, TripleSlash, DoubleThrust, TripleThrust */
, (@parent_id, 33, 1, 1, 1) /* Bonded - Bonded */
, (@parent_id, 114, 1, 1, 1) /* Attuned - Attuned */
, (@parent_id, 19, 0, 1, 1) /* Value */;
INSERT INTO `recipe_mods_int` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 0, 47, 486, 1, 1) /* AttackType - Thrust, Slash, DoubleSlash, TripleSlash, DoubleThrust, TripleThrust */
, (@parent_id, 0, 33, 1, 1, 1) /* Bonded - Bonded */
, (@parent_id, 0, 114, 1, 1, 1) /* Attuned - Attuned */
, (@parent_id, 0, 19, 0, 1, 1) /* Value */;

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 1, 'Lightning Bandit Dagger', 1, 1) /* Name */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 0, 1, 'Lightning Bandit Dagger', 1, 1) /* Name */;

DELETE FROM `cook_book` WHERE `recipe_Id` = 1803;

Expand Down
20 changes: 10 additions & 10 deletions Database/3-Core/4 CraftTable/SQL/01804 Bandit Blade Hilt.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ DELETE FROM `recipe` WHERE `id` = 1804;
INSERT INTO `recipe` (`id`, `unknown_1`, `skill`, `difficulty`, `salvage_Type`, `success_W_C_I_D`, `success_Amount`, `success_Message`, `fail_W_C_I_D`, `fail_Amount`, `fail_Message`, `success_Destroy_Source_Chance`, `success_Destroy_Source_Amount`, `success_Destroy_Source_Message`, `success_Destroy_Target_Chance`, `success_Destroy_Target_Amount`, `success_Destroy_Target_Message`, `fail_Destroy_Source_Chance`, `fail_Destroy_Source_Amount`, `fail_Destroy_Source_Message`, `fail_Destroy_Target_Chance`, `fail_Destroy_Target_Amount`, `fail_Destroy_Target_Message`, `data_Id`, `last_Modified`)
VALUES (1804, 0, 0, 0, 0, 0, 0, 'You attach the Bandit Hilt to the Flaming Dagger.', 0, 0, 'You fail.', 1, 1, NULL, 0, 0, NULL, 1, 1, NULL, 0, 0, NULL, 0, '2005-02-09 10:00:00');

INSERT INTO `recipe_requirements_int` (`recipe_Id`, `stat`, `value`, `enum`, `message`)
VALUES (1804, 171, 0, 4, 'You can''t hilt a weapon that has been tinkered.') /* NumTimesTinkered */
, (1804, 47, 32, 3, 'This weapon has already been hilted!') /* AttackType - DoubleSlash */;
INSERT INTO `recipe_requirements_int` (`recipe_Id`, `index`, `stat`, `value`, `enum`, `message`)
VALUES (1804, 0, 171, 0, 4, 'You can''t hilt a weapon that has been tinkered.') /* NumTimesTinkered */
, (1804, 0, 47, 32, 3, 'This weapon has already been hilted!') /* AttackType - DoubleSlash */;

INSERT INTO `recipe_mod` (`recipe_Id`, `executes_On_Success`, `health`, `stamina`, `mana`, `unknown_7`, `data_Id`, `unknown_9`, `instance_Id`)
VALUES (1804, True, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_int` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 47, 486, 1, 1) /* AttackType - Thrust, Slash, DoubleSlash, TripleSlash, DoubleThrust, TripleThrust */
, (@parent_id, 33, 1, 1, 1) /* Bonded - Bonded */
, (@parent_id, 114, 1, 1, 1) /* Attuned - Attuned */
, (@parent_id, 19, 0, 1, 1) /* Value */;
INSERT INTO `recipe_mods_int` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 0, 47, 486, 1, 1) /* AttackType - Thrust, Slash, DoubleSlash, TripleSlash, DoubleThrust, TripleThrust */
, (@parent_id, 0, 33, 1, 1, 1) /* Bonded - Bonded */
, (@parent_id, 0, 114, 1, 1, 1) /* Attuned - Attuned */
, (@parent_id, 0, 19, 0, 1, 1) /* Value */;

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 1, 'Flaming Bandit Dagger', 1, 1) /* Name */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 0, 1, 'Flaming Bandit Dagger', 1, 1) /* Name */;

DELETE FROM `cook_book` WHERE `recipe_Id` = 1804;

Expand Down
20 changes: 10 additions & 10 deletions Database/3-Core/4 CraftTable/SQL/01805 Bandit Blade Hilt.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ DELETE FROM `recipe` WHERE `id` = 1805;
INSERT INTO `recipe` (`id`, `unknown_1`, `skill`, `difficulty`, `salvage_Type`, `success_W_C_I_D`, `success_Amount`, `success_Message`, `fail_W_C_I_D`, `fail_Amount`, `fail_Message`, `success_Destroy_Source_Chance`, `success_Destroy_Source_Amount`, `success_Destroy_Source_Message`, `success_Destroy_Target_Chance`, `success_Destroy_Target_Amount`, `success_Destroy_Target_Message`, `fail_Destroy_Source_Chance`, `fail_Destroy_Source_Amount`, `fail_Destroy_Source_Message`, `fail_Destroy_Target_Chance`, `fail_Destroy_Target_Amount`, `fail_Destroy_Target_Message`, `data_Id`, `last_Modified`)
VALUES (1805, 0, 0, 0, 0, 0, 0, 'You attach the Bandit Hilt to the Frost Dagger.', 0, 0, 'You fail.', 1, 1, NULL, 0, 0, NULL, 1, 1, NULL, 0, 0, NULL, 0, '2005-02-09 10:00:00');

INSERT INTO `recipe_requirements_int` (`recipe_Id`, `stat`, `value`, `enum`, `message`)
VALUES (1805, 171, 0, 4, 'You can''t hilt a weapon that has been tinkered.') /* NumTimesTinkered */
, (1805, 47, 32, 3, 'This weapon has already been hilted!') /* AttackType - DoubleSlash */;
INSERT INTO `recipe_requirements_int` (`recipe_Id`, `index`, `stat`, `value`, `enum`, `message`)
VALUES (1805, 0, 171, 0, 4, 'You can''t hilt a weapon that has been tinkered.') /* NumTimesTinkered */
, (1805, 0, 47, 32, 3, 'This weapon has already been hilted!') /* AttackType - DoubleSlash */;

INSERT INTO `recipe_mod` (`recipe_Id`, `executes_On_Success`, `health`, `stamina`, `mana`, `unknown_7`, `data_Id`, `unknown_9`, `instance_Id`)
VALUES (1805, True, 0, 0, 0, False, 0, 0, 0);

SET @parent_id = LAST_INSERT_ID();

INSERT INTO `recipe_mods_int` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 47, 486, 1, 1) /* AttackType - Thrust, Slash, DoubleSlash, TripleSlash, DoubleThrust, TripleThrust */
, (@parent_id, 33, 1, 1, 1) /* Bonded - Bonded */
, (@parent_id, 114, 1, 1, 1) /* Attuned - Attuned */
, (@parent_id, 19, 0, 1, 1) /* Value */;
INSERT INTO `recipe_mods_int` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 0, 47, 486, 1, 1) /* AttackType - Thrust, Slash, DoubleSlash, TripleSlash, DoubleThrust, TripleThrust */
, (@parent_id, 0, 33, 1, 1, 1) /* Bonded - Bonded */
, (@parent_id, 0, 114, 1, 1, 1) /* Attuned - Attuned */
, (@parent_id, 0, 19, 0, 1, 1) /* Value */;

INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 1, 'Frost Bandit Dagger', 1, 1) /* Name */;
INSERT INTO `recipe_mods_string` (`recipe_Mod_Id`, `index`, `stat`, `value`, `enum`, `source`)
VALUES (@parent_id, 0, 1, 'Frost Bandit Dagger', 1, 1) /* Name */;

DELETE FROM `cook_book` WHERE `recipe_Id` = 1805;

Expand Down
Loading

0 comments on commit c80df6b

Please sign in to comment.