4874 lines
756 KiB
SQL
4874 lines
756 KiB
SQL
-- To enable all recipes in this list use replace fonction, do a replace (-- INSERT INTO) for (INSERT INTO) -> replace all
|
|
-- Don't forget to reload the file into your database with dbtool.py -> update DB
|
|
-- Understand that those recipes might be either innacurate or known to be wrong.
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
|
DROP TABLE IF EXISTS `synth_recipes`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `synth_recipes` (
|
|
`ID` mediumint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|
`Desynth` tinyint(3) unsigned NOT NULL,
|
|
`KeyItem` int(10) unsigned NOT NULL,
|
|
`Wood` tinyint(3) unsigned NOT NULL,
|
|
`Smith` tinyint(3) unsigned NOT NULL,
|
|
`Gold` tinyint(3) unsigned NOT NULL,
|
|
`Cloth` tinyint(3) unsigned NOT NULL,
|
|
`Leather` tinyint(3) unsigned NOT NULL,
|
|
`Bone` tinyint(3) unsigned NOT NULL,
|
|
`Alchemy` tinyint(3) unsigned NOT NULL,
|
|
`Cook` tinyint(3) unsigned NOT NULL,
|
|
`Crystal` smallint(5) unsigned NOT NULL,
|
|
`HQCrystal` smallint(5) unsigned NOT NULL,
|
|
`Ingredient1` smallint(5) unsigned NOT NULL,
|
|
`Ingredient2` smallint(5) unsigned NOT NULL,
|
|
`Ingredient3` smallint(5) unsigned NOT NULL,
|
|
`Ingredient4` smallint(5) unsigned NOT NULL,
|
|
`Ingredient5` smallint(5) unsigned NOT NULL,
|
|
`Ingredient6` smallint(5) unsigned NOT NULL,
|
|
`Ingredient7` smallint(5) unsigned NOT NULL,
|
|
`Ingredient8` smallint(5) unsigned NOT NULL,
|
|
`Result` smallint(5) unsigned NOT NULL,
|
|
`ResultHQ1` smallint(5) unsigned NOT NULL,
|
|
`ResultHQ2` smallint(5) unsigned NOT NULL,
|
|
`ResultHQ3` smallint(5) unsigned NOT NULL,
|
|
`ResultQty` tinyint(2) unsigned NOT NULL,
|
|
`ResultHQ1Qty` tinyint(2) unsigned NOT NULL,
|
|
`ResultHQ2Qty` tinyint(2) unsigned NOT NULL,
|
|
`ResultHQ3Qty` tinyint(2) unsigned NOT NULL,
|
|
`ResultName` tinytext NOT NULL,
|
|
`content_tag` varchar(14) DEFAULT NULL,
|
|
PRIMARY KEY (`ID`)
|
|
) ENGINE=Aria TRANSACTIONAL=0 AUTO_INCREMENT=3500 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci AVG_ROW_LENGTH=79;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
DELIMITER $$
|
|
DROP TRIGGER IF EXISTS ensure_synth_ingredients_are_ordered;
|
|
CREATE TRIGGER ensure_synth_ingredients_are_ordered
|
|
BEFORE INSERT ON synth_recipes FOR EACH ROW BEGIN
|
|
IF NEW.Ingredient2 > 0 AND NEW.Ingredient1 > NEW.Ingredient2
|
|
THEN
|
|
SIGNAL SQLSTATE VALUE '45000'
|
|
SET MESSAGE_TEXT = '[table:synth_recipes] - `Ingredient1` is larger than Ingredient2';
|
|
END IF;
|
|
|
|
IF NEW.Ingredient3 > 0 AND NEW.Ingredient2 > NEW.Ingredient3
|
|
THEN
|
|
SIGNAL SQLSTATE VALUE '45000'
|
|
SET MESSAGE_TEXT = '[table:synth_recipes] - `Ingredient2` is larger than Ingredient3';
|
|
END IF;
|
|
|
|
IF NEW.Ingredient4 > 0 AND NEW.Ingredient3 > NEW.Ingredient4
|
|
THEN
|
|
SIGNAL SQLSTATE VALUE '45000'
|
|
SET MESSAGE_TEXT = '[table:synth_recipes] - `Ingredient3` is larger than Ingredient4';
|
|
END IF;
|
|
|
|
IF NEW.Ingredient5 > 0 AND NEW.Ingredient4 > NEW.Ingredient5
|
|
THEN
|
|
SIGNAL SQLSTATE VALUE '45000'
|
|
SET MESSAGE_TEXT = '[table:synth_recipes] - `Ingredient4` is larger than Ingredient5';
|
|
END IF;
|
|
|
|
IF NEW.Ingredient6 > 0 AND NEW.Ingredient5 > NEW.Ingredient6
|
|
THEN
|
|
SIGNAL SQLSTATE VALUE '45000'
|
|
SET MESSAGE_TEXT = '[table:synth_recipes] - `Ingredient5` is larger than Ingredient6';
|
|
END IF;
|
|
|
|
IF NEW.Ingredient7 > 0 AND NEW.Ingredient6 > NEW.Ingredient7
|
|
THEN
|
|
SIGNAL SQLSTATE VALUE '45000'
|
|
SET MESSAGE_TEXT = '[table:synth_recipes] - `Ingredient6` is larger than Ingredient7';
|
|
END IF;
|
|
|
|
IF NEW.Ingredient8 > 0 AND NEW.Ingredient7 > NEW.Ingredient8
|
|
THEN
|
|
SIGNAL SQLSTATE VALUE '45000'
|
|
SET MESSAGE_TEXT = '[table:synth_recipes] - `Ingredient7` is larger than Ingredient8';
|
|
END IF;
|
|
END$$
|
|
|
|
DELIMITER ;
|
|
|
|
LOCK TABLES `synth_recipes` WRITE;
|
|
/*!40000 ALTER TABLE `synth_recipes` DISABLE KEYS */;
|
|
|
|
-- RECIPES START
|
|
-- -------------
|
|
|
|
INSERT INTO `synth_recipes` VALUES (1,0,0,1,0,0,0,0,0,0,0,4099,4241,3553,3554,3555,0,0,0,0,0,3653,3653,3653,3653,1,1,1,1,'Banquet Table','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (2,0,0,2,0,0,0,0,0,0,0,4098,4240,688,0,0,0,0,0,0,0,705,705,705,705,1,2,3,4,'Arrowwood Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3,0,1986,2,0,0,0,0,0,0,0,4098,4240,688,688,688,1657,0,0,0,0,705,705,705,705,3,6,9,12,'Arrowwood Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4,0,0,2,0,0,0,0,0,0,0,4098,4240,708,917,0,0,0,0,0,0,17345,17372,17844,17844,1,1,1,1,'Flute',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (5,0,0,3,0,0,0,0,0,0,0,4099,4241,705,1214,1221,0,0,0,0,0,17330,17330,17330,17330,33,66,99,99,'Stone Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (6,0,0,3,0,0,0,0,0,0,0,4098,4240,689,0,0,0,0,0,0,0,706,706,706,706,1,2,3,4,'Lauan Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (7,0,1986,3,0,0,0,0,0,0,0,4098,4240,689,689,689,1657,0,0,0,0,706,706,706,706,3,6,9,12,'Lauan Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (8,0,0,4,0,0,0,0,0,0,0,4098,4240,705,768,840,840,0,0,0,0,17318,17318,17318,17318,33,66,99,99,'Wooden Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (9,0,0,5,0,0,0,0,0,0,0,4098,4240,691,0,0,0,0,0,0,0,708,708,708,708,1,2,3,4,'Maple Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10,0,1986,5,0,0,0,0,0,0,0,4098,4240,691,691,691,1657,0,0,0,0,708,708,708,708,3,6,9,12,'Maple Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (11,0,0,5,0,0,0,0,0,0,0,4099,4241,1134,1134,2778,0,0,0,0,0,2775,2775,2775,2775,1,1,1,1,'Padded Box','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (12,0,0,5,0,0,0,0,0,0,0,4099,4241,8805,0,0,0,0,0,0,0,2775,2775,2775,2775,1,1,1,1,'Padded Box','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (13,0,0,6,0,0,0,0,0,0,0,4098,4240,708,840,0,0,0,0,0,0,17049,17087,17087,17087,1,1,1,1,'Maple Wand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14,0,0,7,2,0,0,0,0,0,0,4099,4241,660,706,706,0,0,0,0,0,12289,12333,12333,12333,1,1,1,1,'Lauan Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (15,0,0,7,0,0,0,0,0,0,0,4099,4241,706,706,706,706,0,0,0,0,22,22,22,22,1,1,1,1,'Workbench',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (16,1,0,7,0,0,0,0,0,0,0,4100,4242,12289,0,0,0,0,0,0,0,706,706,706,706,1,2,2,2,'Lauan Shield (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (17,0,0,8,0,0,0,0,0,0,0,4098,4240,715,715,0,0,0,0,0,0,17095,17122,17122,17122,1,1,1,1,'Ash Pole',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (18,0,1986,8,0,0,0,0,0,0,0,4098,4240,698,698,698,1657,0,0,0,0,715,715,715,715,3,6,9,12,'Ash Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (19,0,1984,8,0,0,0,0,0,0,0,4098,4240,698,1641,1642,1647,0,0,0,0,1671,1671,1671,1671,1,1,1,1,'Bewitched Ash Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20,1,0,8,0,0,0,0,0,0,0,4100,4242,17095,0,0,0,0,0,0,0,715,715,715,715,1,1,2,2,'Ash Pole (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21,0,0,8,0,0,0,0,0,0,0,4098,4240,698,0,0,0,0,0,0,0,715,715,715,715,1,2,3,4,'Ash Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22,0,0,9,0,0,0,0,0,0,0,4103,4245,623,690,0,0,0,0,0,0,17868,17869,17869,17869,2,1,1,1,'Humus',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23,0,0,9,0,0,0,0,0,0,0,4098,4240,715,0,0,0,0,0,0,0,17024,17137,17137,17137,1,1,1,1,'Ash Club',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24,1,0,9,0,0,0,0,0,0,0,4100,4242,17024,0,0,0,0,0,0,0,715,715,715,715,1,1,1,1,'Ash Club (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (25,0,0,9,0,0,0,0,0,0,0,4099,4241,705,1215,1222,0,0,0,0,0,17319,17319,17319,17319,33,66,99,99,'Bone Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (26,0,0,10,0,0,0,0,0,0,0,4102,4244,485,0,0,0,0,0,0,0,17391,17391,17391,17391,1,1,1,1,'Willow Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (27,0,0,10,0,0,0,0,2,0,0,4098,4240,715,817,882,0,0,0,0,0,16832,16862,16862,16862,1,1,1,1,'Harpoon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (28,0,0,10,4,0,0,0,0,7,0,4102,4244,649,706,1156,1886,1887,1894,4310,4311,103,103,103,103,1,1,1,1,'Goldfish Bowl','COP');
|
|
INSERT INTO `synth_recipes` VALUES (29,0,0,10,0,0,0,0,0,0,0,4098,4240,8806,0,0,0,0,0,0,0,17088,17088,17088,17088,1,1,1,1,'Ash Staff','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (30,0,0,10,0,0,0,0,0,0,0,4098,4240,715,891,0,0,0,0,0,0,17088,17123,17123,17123,1,1,1,1,'Ash Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (501,1,0,10,0,0,0,0,0,0,0,4100,4242,17088,0,0,0,0,0,0,0,715,891,891,891,1,1,1,1,'Ash Staff (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (502,0,0,11,0,0,0,0,0,0,0,4102,4244,487,0,0,0,0,0,0,0,17389,17389,17389,17389,1,1,1,1,'Bamboo Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (503,0,0,11,0,0,0,0,0,0,0,4098,4240,715,850,0,0,0,0,0,0,12984,12983,12983,12983,1,1,1,1,'Ash Clogs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (504,0,0,11,0,2,0,0,0,0,0,4099,4241,661,708,708,0,0,0,0,0,12290,12330,12330,12330,1,1,1,1,'Maple Shield',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (505,0,0,11,0,0,0,0,0,0,255,4098,4240,704,4392,4392,4392,4392,0,0,0,3697,3697,3697,3697,1,1,1,1,'Mandarin','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (506,0,1986,12,0,0,0,0,0,0,0,4098,4240,697,697,697,1657,0,0,0,0,714,714,714,714,3,6,9,12,'Holly Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (507,0,0,12,0,0,0,0,0,0,0,4100,4242,627,694,0,0,0,0,0,0,17872,17873,17873,17873,2,1,1,1,'Tree Sap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (508,0,0,12,0,0,0,0,0,0,0,4098,4240,697,0,0,0,0,0,0,0,714,714,714,714,1,2,3,4,'Holly Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (509,0,0,12,3,0,0,0,0,0,0,4099,4241,649,715,817,0,0,0,0,0,17216,17228,17228,17228,1,1,1,1,'Light Crossbow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (510,0,1986,13,0,0,0,0,0,0,0,4098,4240,695,695,695,1657,0,0,0,0,712,712,712,712,3,6,9,12,'Willow Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (511,0,1984,13,0,0,0,0,0,0,0,4098,4240,695,1644,1646,1647,0,0,0,0,2132,2132,2132,2132,1,1,1,1,'Mana Willow Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (512,0,0,13,0,0,0,0,0,0,0,4098,4240,714,714,0,0,0,0,0,0,17096,17124,17124,17124,1,1,1,1,'Holly Pole',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (513,0,0,13,0,0,0,0,0,0,0,4098,4240,695,0,0,0,0,0,0,0,712,712,712,712,1,2,3,4,'Willow Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (514,0,0,13,0,0,0,0,0,0,0,4099,4241,715,17103,0,0,0,0,0,0,17535,17536,17536,17536,1,1,1,1,'Windurstian Pole',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (515,0,0,14,0,0,0,0,0,0,0,4098,4240,712,817,0,0,0,0,0,0,17391,17391,17391,17391,1,1,1,1,'Willow Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (516,0,0,14,0,0,0,0,0,0,0,4098,4240,712,846,0,0,0,0,0,0,17050,17138,17138,17138,1,1,1,1,'Willow Wand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (517,0,0,14,0,0,0,0,0,0,0,4098,4240,715,17028,0,0,0,0,0,0,17444,17445,17445,17445,1,1,1,1,'Windurstian Club',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (518,0,0,14,3,0,0,0,0,0,0,4099,4241,649,721,721,728,2771,0,0,0,372,372,372,372,1,1,1,1,'Cricket Cage','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (519,0,0,14,3,0,0,0,0,0,0,4099,4241,649,721,721,728,2772,0,0,0,373,373,373,373,1,1,1,1,'Glowfly Cage','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (520,0,0,15,5,0,0,0,0,0,0,4099,4241,649,721,721,728,2770,0,0,0,371,371,371,371,1,1,1,1,'Butterfly Cage','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (521,0,0,15,0,0,0,0,0,0,0,4098,4240,712,817,824,0,0,0,0,0,17152,17175,17175,17175,1,1,1,1,'Shortbow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (522,0,0,15,0,0,0,0,0,0,0,4099,4241,715,1211,0,0,0,0,0,0,17339,17339,17339,17339,33,66,99,99,'Bronze Bolt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (523,0,1987,15,0,0,0,0,0,0,0,4099,4241,715,715,715,1211,1211,1211,1657,0,17339,17339,17339,17339,99,99,99,99,'Bronze Bolt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (524,0,0,15,0,0,0,0,0,0,0,4098,4240,704,817,0,0,0,0,0,0,17389,17389,17389,17389,1,1,1,1,'Bamboo Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (525,0,0,15,0,0,0,0,0,0,0,4098,4240,8807,0,0,0,0,0,0,0,17389,17389,17389,17389,1,1,1,1,'Bamboo Fishing Rod','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (526,0,1987,16,0,0,0,0,0,0,0,4099,4241,715,715,715,1242,1242,1242,1657,0,18150,18150,18150,18150,99,99,99,99,'Blind Bolt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (527,0,0,16,0,0,0,0,0,0,0,4099,4241,715,1246,0,0,0,0,0,0,18151,18151,18151,18151,33,66,99,99,'Bloody Bolt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (528,0,1985,16,0,0,0,0,0,0,0,4098,4240,2231,2232,17096,0,0,0,0,0,18586,18586,18586,18586,1,1,1,1,'Flexible Pole','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (529,0,0,16,0,0,0,0,0,0,0,4099,4241,715,1243,0,0,0,0,0,0,18148,18148,18148,18148,33,66,99,99,'Acid Bolt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (530,0,0,16,0,0,0,0,0,0,0,4099,4241,715,1244,0,0,0,0,0,0,18153,18153,18153,18153,33,66,99,99,'Holy Bolt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (531,0,1987,16,0,0,0,0,0,0,0,4099,4241,715,715,715,1243,1243,1243,1657,0,18148,18148,18148,18148,99,99,99,99,'Acid Bolt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (532,0,0,16,0,0,0,0,0,0,0,4099,4241,715,1242,0,0,0,0,0,0,18150,18150,18150,18150,33,66,99,99,'Blind Bolt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (533,0,1987,16,0,0,0,0,0,0,0,4099,4241,715,715,715,1246,1246,1246,1657,0,18151,18151,18151,18151,99,99,99,99,'Bloody Bolt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (534,0,0,16,0,0,0,0,0,0,0,4099,4241,715,1247,0,0,0,0,0,0,18149,18149,18149,18149,33,66,99,99,'Sleep Bolt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (535,0,1987,16,0,0,0,0,0,0,0,4099,4241,715,715,715,1245,1245,1245,1657,0,18152,18152,18152,18152,99,99,99,99,'Venom Bolt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (536,0,0,16,0,0,0,0,0,0,0,4099,4241,715,1245,0,0,0,0,0,0,18152,18152,18152,18152,33,66,99,99,'Venom Bolt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (537,0,1987,16,0,0,0,0,0,0,0,4099,4241,715,715,715,1244,1244,1244,1657,0,18153,18153,18153,18153,99,99,99,99,'Holy Bolt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (538,0,1987,16,0,0,0,0,0,0,0,4099,4241,715,715,715,1247,1247,1247,1657,0,18149,18149,18149,18149,99,99,99,99,'Sleep Bolt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (539,0,0,16,0,0,0,0,0,0,0,4099,4241,708,708,708,708,0,0,0,0,23,23,23,23,1,1,1,1,'Maple Table',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (540,0,0,16,0,0,0,0,5,0,0,4098,4240,712,817,825,893,0,0,0,0,17153,17176,17176,17176,1,1,1,1,'Self Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (541,0,0,17,0,0,0,0,1,0,0,4098,4240,713,713,826,895,927,0,0,0,17160,17177,17177,17177,1,1,1,1,'Longbow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (542,0,0,17,0,0,0,0,0,0,0,4099,4241,715,17223,0,0,0,0,0,0,17238,17239,17239,17239,1,1,1,1,'Bastokan Crossbow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (543,0,0,17,0,0,0,0,0,0,0,4098,4240,708,818,0,0,0,0,0,0,17280,17287,17287,17287,1,1,1,1,'Boomerang',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (544,0,0,17,0,0,0,0,0,0,0,4098,4240,2132,17050,0,0,0,0,0,0,18402,18402,18402,18402,1,1,1,1,'Mana Wand','COP');
|
|
INSERT INTO `synth_recipes` VALUES (545,1,0,17,0,0,0,0,0,0,0,4100,4242,17160,0,0,0,0,0,0,0,713,819,927,895,2,3,1,1,'Longbow (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (546,0,0,18,9,0,0,0,0,0,0,4098,4240,649,715,817,0,0,0,0,0,16833,16859,16859,16859,1,1,1,1,'Bronze Spear',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (547,0,0,18,0,0,0,0,0,0,0,4098,4240,714,850,0,0,0,0,0,0,12985,12991,12991,12991,1,1,1,1,'Holly Clogs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (548,0,1986,19,0,0,0,0,0,0,0,4098,4240,693,693,693,1657,0,0,0,0,711,711,711,711,3,6,9,12,'Walnut Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (549,0,0,19,0,0,0,0,0,0,0,4098,4240,693,0,0,0,0,0,0,0,711,711,711,711,1,2,3,4,'Walnut Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (550,0,0,19,0,0,0,0,0,0,0,4098,4240,714,882,0,0,0,0,0,0,17089,17125,17125,17125,1,1,1,1,'Holly Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (551,0,1985,19,0,0,0,0,0,0,0,4098,4240,693,1644,1644,1648,0,0,0,0,726,726,726,726,3,6,9,12,'Steel Walnut Lumber','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (552,0,0,20,0,0,0,0,0,255,0,4099,4241,711,1886,1887,0,0,0,0,0,3702,3702,3702,3702,1,1,1,1,'Triangular Jalousie','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (553,0,0,20,0,0,0,0,0,0,0,4099,4241,712,17159,0,0,0,0,0,0,17195,17196,17196,17196,1,1,1,1,'Windurstian Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (554,0,0,20,0,0,0,0,0,0,0,4098,4240,714,917,0,0,0,0,0,0,17347,17368,17368,17368,1,1,1,1,'Piccolo',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (555,0,0,20,4,0,0,0,0,7,0,4102,4244,649,706,1156,1886,1887,1894,2216,5139,222,222,222,222,1,1,1,1,'Fighting Fish Tank','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (556,0,0,20,0,0,0,0,0,0,0,4102,4244,486,0,0,0,0,0,0,0,17390,17390,17390,17390,1,1,1,1,'Yew Fishing Rod',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (557,0,0,20,0,0,0,0,0,255,0,4099,4241,718,1886,1887,0,0,0,0,0,3703,3703,3703,3703,1,1,1,1,'Square Jalousie','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (558,0,0,20,0,0,0,0,0,255,0,4099,4241,707,1886,1887,0,0,0,0,0,3701,3701,3701,3701,1,1,1,1,'Awning','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (559,0,0,20,0,0,0,0,0,0,0,4098,4240,8808,0,0,0,0,0,0,0,17347,17347,17347,17347,1,1,1,1,'Piccolo','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (560,0,0,20,0,0,5,0,0,0,0,4099,4241,706,706,714,714,817,824,824,824,2,2,2,2,1,1,1,1,'Simple Bed',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1001,0,0,21,0,0,0,0,0,0,0,4098,4240,710,0,0,0,0,0,0,0,17025,17139,17139,17139,1,1,1,1,'Chestnut Club',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1002,0,1985,21,0,0,0,0,0,0,0,4098,4240,2230,2233,16833,0,0,0,0,0,18117,18117,18117,18117,1,1,1,1,'Gimlet Spear','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (1003,0,0,21,0,0,0,0,0,0,0,4100,4242,691,0,0,0,0,0,0,0,627,627,627,627,3,6,9,12,'Maple Sugar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1004,0,0,22,0,5,0,0,0,0,0,4098,4240,650,715,819,0,0,0,0,0,16834,16864,16864,16864,1,1,1,1,'Brass Spear',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1005,0,0,22,0,0,0,0,0,0,0,4099,4241,713,17167,0,0,0,0,0,0,17197,17198,17198,17198,1,1,1,1,'San d\'Orian Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1006,0,0,22,0,0,0,0,0,0,0,4098,4240,696,0,0,0,0,0,0,0,713,713,713,713,1,2,3,4,'Yew Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1007,0,1986,22,0,0,0,0,0,0,0,4098,4240,696,696,696,1657,0,0,0,0,713,713,713,713,3,6,9,12,'Yew Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (1008,0,0,23,0,0,0,0,0,0,0,4099,4241,708,708,927,0,0,0,0,0,17353,17373,17373,17373,1,1,1,1,'Maple Harp',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1009,0,0,23,0,0,0,0,0,0,0,4098,4240,714,13045,0,0,0,0,0,0,14149,14150,14150,14150,1,1,1,1,'San d\'Orian Clogs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1010,0,0,23,0,0,0,0,0,0,0,4099,4241,715,16852,0,0,0,0,0,0,18068,18069,18069,18069,1,1,1,1,'San d\'Orian Spear',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1011,0,0,23,0,0,0,0,0,0,0,4098,4240,713,841,0,0,0,0,0,0,17051,17140,17140,17140,1,1,1,1,'Yew Wand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1012,0,0,24,0,0,0,0,0,0,0,4099,4241,714,17130,0,0,0,0,0,0,17537,17538,17538,17538,1,1,1,1,'Windurstian Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1013,0,0,24,0,0,0,4,0,0,0,4098,4240,713,820,850,0,0,0,0,0,17154,17172,17172,17172,1,1,1,1,'Wrapped Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1014,0,0,24,0,0,0,0,0,0,0,4098,4240,713,819,0,0,0,0,0,0,17390,17390,17390,17390,1,1,1,1,'Yew Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1015,1,0,24,0,0,0,0,0,0,0,4100,4242,17390,0,0,0,0,0,0,0,713,713,819,819,1,1,1,1,'Yew Fishing Rod (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1016,0,0,25,0,0,0,0,0,0,0,4099,4241,8809,0,0,0,0,0,0,0,92,92,92,92,1,1,1,1,'Tarutaru Stool','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (1017,0,1986,25,0,0,0,0,0,0,0,4098,4240,690,690,690,1657,0,0,0,0,707,707,707,707,3,6,9,12,'Elm Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (1018,0,0,25,0,0,0,0,0,0,0,4098,4240,690,0,0,0,0,0,0,0,707,707,707,707,1,2,3,4,'Elm Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1019,0,0,25,0,0,0,0,0,0,0,4099,4241,706,707,0,0,0,0,0,0,92,92,92,92,1,1,1,1,'Tarutaru Stool',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1020,0,0,26,0,0,0,0,0,0,0,4099,4241,704,824,915,0,0,0,0,0,1161,1161,1161,1161,33,66,99,99,'Uchitake',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1021,0,0,26,6,0,0,0,0,0,0,4099,4241,662,707,707,0,0,0,0,0,12291,12319,12319,12319,1,1,1,1,'Elm Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1022,0,0,27,0,0,0,0,0,0,0,4099,4241,710,710,927,0,0,0,0,0,17354,17374,17374,17374,1,1,1,1,'Harp',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1023,0,0,27,6,0,0,0,0,0,0,4098,4240,651,715,840,840,0,0,0,0,17320,17320,17320,17320,33,66,99,99,'Iron Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1024,0,0,27,0,0,0,0,0,0,0,4099,4241,705,1216,1221,0,0,0,0,0,17320,17320,17320,17320,33,66,99,99,'Iron Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1025,1,0,27,0,0,0,0,0,0,0,4100,4242,17029,0,0,0,0,0,0,0,710,710,710,710,1,1,1,1,'Bouncer Club (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1026,0,0,28,0,0,0,12,0,0,0,4099,4241,715,715,850,1211,1211,1655,0,0,15289,15289,15289,15289,1,1,1,1,'Bolt Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (1027,0,1984,28,0,0,0,0,0,0,0,4098,4240,694,1644,1646,1647,0,0,0,0,2133,2133,2133,2133,1,1,1,1,'Mana Chestnut Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (1028,0,0,28,0,0,0,0,7,0,0,4098,4240,707,707,827,897,927,0,0,0,17161,17178,17178,17178,1,1,1,1,'Power Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1029,0,1986,28,0,0,0,0,0,0,0,4098,4240,694,694,694,1657,0,0,0,0,710,710,710,710,3,6,9,12,'Chestnut Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (1030,0,0,28,0,0,0,0,0,0,0,4099,4241,705,1221,1252,0,0,0,0,0,18157,18157,18157,18157,33,66,99,99,'Poison Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1031,0,0,28,0,0,0,0,0,0,0,4098,4240,694,0,0,0,0,0,0,0,710,710,710,710,1,2,3,4,'Chestnut Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1032,0,0,29,0,0,0,0,0,0,0,4098,4240,707,895,0,0,0,0,0,0,17090,17126,17126,17126,1,1,1,1,'Elm Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1033,0,0,29,0,0,0,0,0,0,0,4098,4240,929,1134,1134,0,0,0,0,0,1179,1179,1179,1179,33,66,99,99,'Shihei',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1034,1,0,29,0,0,0,0,0,0,0,4100,4242,17090,0,0,0,0,0,0,0,707,707,707,895,1,1,1,1,'Elm Staff (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (1035,0,0,30,0,0,0,0,0,255,0,4099,4241,717,1886,1887,1888,17296,0,0,0,3704,3704,3704,3704,1,1,1,1,'Transom','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (1036,0,0,30,0,0,0,0,0,0,0,4099,4241,8810,0,0,0,0,0,0,0,17321,17321,17321,17321,33,33,33,33,'Silver Arrow','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (1037,0,0,30,0,0,0,0,0,0,0,4099,4241,715,1217,1222,0,0,0,0,0,17321,17321,17321,17321,33,66,99,99,'Silver Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1038,0,0,30,0,7,0,0,0,0,0,4098,4240,705,744,841,841,0,0,0,0,17321,17321,17321,17321,33,66,99,99,'Silver Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1039,0,0,0,59,0,0,0,0,0,0,4098,4240,664,0,0,0,0,0,0,0,1773,1773,1773,1773,1,1,1,1,'Dark Scales','COP');
|
|
INSERT INTO `synth_recipes` VALUES (1501,0,0,31,0,0,0,0,0,0,0,4099,4241,706,714,0,0,0,0,0,0,97,97,97,97,1,1,1,1,'Book Holder',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1502,1,0,31,0,0,0,0,0,0,0,4100,4242,17116,0,0,0,0,0,0,0,707,637,793,793,1,1,1,1,'Misery Staff (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1503,0,1986,31,0,0,0,0,0,0,0,4098,4240,727,727,727,1657,0,0,0,0,728,728,728,728,3,6,9,12,'Dogwood Lumber','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (1504,0,0,31,0,0,0,0,0,0,0,4098,4240,727,0,0,0,0,0,0,0,728,728,728,728,1,2,3,4,'Dogwood Lumber','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (1505,0,0,31,7,0,0,0,0,0,0,4098,4240,651,715,819,0,0,0,0,0,16835,16865,16865,16865,1,1,1,1,'Spear',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1506,0,0,32,0,0,0,0,0,0,0,4098,4240,710,847,0,0,0,0,0,0,17052,17141,17141,17141,1,1,1,1,'Chestnut Wand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1507,0,0,32,0,0,0,0,0,0,0,4099,4241,817,929,1134,1134,0,0,0,0,2555,2555,2555,2555,33,66,99,99,'Soshi','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (1508,0,0,32,0,0,0,0,0,0,0,4098,4240,710,850,0,0,0,0,0,0,12986,13022,13022,13022,1,1,1,1,'Chestnut Sabots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1509,0,0,33,8,0,0,0,0,0,0,4098,4240,651,710,933,0,0,0,0,0,17217,17225,17225,17225,1,1,1,1,'Crossbow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1510,0,0,33,5,0,0,0,0,0,0,4098,4240,649,711,711,0,0,0,0,0,17424,17425,17425,17425,1,1,1,1,'Spiked Club',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1511,0,0,34,7,0,0,0,0,0,0,4099,4241,660,710,4509,0,0,0,0,0,1176,1176,1176,1176,33,66,99,99,'Mizu-Deppo',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1512,0,0,34,6,0,0,0,0,0,0,4099,4241,662,717,717,0,0,0,0,0,12292,12334,12334,12334,1,1,1,1,'Mahogany Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1513,0,1984,35,0,0,0,0,0,0,0,4098,4240,716,1642,1644,1647,0,0,0,0,1672,1672,1672,1672,1,1,1,1,'Exorcismal Oak Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (1514,0,0,35,0,0,0,0,0,0,0,4098,4240,2133,17052,0,0,0,0,0,0,18403,18403,18403,18403,1,1,1,1,'High Mana Wand','COP');
|
|
INSERT INTO `synth_recipes` VALUES (1515,0,1986,35,0,0,0,0,0,0,0,4098,4240,699,699,699,1657,0,0,0,0,716,716,716,716,3,6,9,12,'Oak Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (1516,0,0,35,0,0,0,0,0,0,0,4099,4241,2533,2546,0,0,0,0,0,0,19200,19200,19200,19200,33,66,99,99,'Black Bolt','WOTG');
|
|
-- INSERT INTO `synth_recipes` VALUES (1517,0,0,35,0,0,0,0,0,255,0,4099,4241,710,1886,1887,0,0,0,0,0,3709,3709,3709,3709,1,1,1,1,'Valance','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (1518,0,0,35,0,0,0,30,0,0,0,4099,4241,712,721,721,721,851,0,0,0,43,43,43,43,1,1,1,1,'Wicker Box',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1519,0,0,35,0,0,0,0,0,0,0,4099,4241,8811,0,0,0,0,0,0,0,19200,19200,19200,19200,33,33,33,33,'Black Bolt','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (1520,0,0,35,0,0,0,0,0,0,0,4099,4241,1657,2533,2533,2533,2546,2546,2546,0,19200,19200,19200,19200,99,99,99,99,'Black Bolt','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (1521,0,1985,35,0,0,0,0,0,0,0,4098,4240,699,1642,1643,1648,0,0,0,0,1673,1673,1673,1673,1,1,1,1,'Ethereal Oak Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (1522,0,0,35,0,0,0,0,0,0,0,4098,4240,699,0,0,0,0,0,0,0,716,716,716,716,1,2,3,4,'Oak Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1523,0,0,36,0,0,0,0,0,0,0,4099,4241,834,1134,0,0,0,0,0,0,2396,2396,2396,2396,1,1,1,1,'Fairweather Fetish','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (1524,0,0,36,0,0,0,0,0,0,0,4099,4241,706,706,706,706,706,826,826,0,26,26,26,26,1,1,1,1,'Tarutaru Desk',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1525,0,0,36,8,0,0,0,0,0,0,4098,4240,2855,17217,0,0,0,0,0,0,19231,19241,19241,19241,1,1,1,1,'Tracker\'s Bow','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (1526,0,0,37,0,0,0,0,0,0,0,4098,4240,716,917,0,0,0,0,0,0,17348,17375,17845,17845,1,1,1,1,'Traversiere',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1527,0,0,37,0,0,0,0,0,0,0,4098,4240,710,17082,0,0,0,0,0,0,17446,17447,17447,17447,1,1,1,1,'Tactician Magician\'s Wand +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1528,0,0,38,0,0,0,0,15,0,0,4098,4240,710,710,828,897,927,0,0,0,17162,17180,17180,17180,1,1,1,1,'Great Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1529,0,0,38,30,0,0,0,0,0,0,4099,4241,660,660,710,710,0,0,0,0,144,144,144,144,1,1,1,1,'Caisson',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1530,0,0,39,0,0,0,0,0,0,0,4098,4240,712,715,820,826,0,0,0,0,17155,17179,17179,17179,1,1,1,1,'Composite Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1531,0,0,39,0,0,0,0,0,0,0,4099,4241,704,937,1134,0,0,0,0,0,1167,1167,1167,1167,33,66,99,99,'Kawahori-Ogi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1532,0,0,39,0,0,0,0,0,0,0,4099,4241,705,1221,1248,0,0,0,0,0,18154,18154,18154,18154,33,66,99,99,'Beetle Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1533,0,0,39,0,0,0,0,0,0,0,4103,4245,533,0,0,0,0,0,0,0,17894,17894,17894,17894,4,6,8,10,'Vermihumus','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (1534,0,0,39,0,0,0,0,0,0,0,4103,4245,17868,17868,0,0,0,0,0,0,17894,17894,17894,17894,4,6,8,10,'Vermihumus','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (1535,0,0,39,0,0,0,0,0,0,0,4103,4245,17869,17869,0,0,0,0,0,0,17894,17894,17894,17894,6,8,10,12,'Vermihumus','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (1536,0,0,40,0,0,0,0,0,0,0,4099,4241,728,1886,1887,0,0,0,0,0,3710,3710,3710,3710,1,1,1,1,'Windurstian Sill','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (1537,0,0,40,0,0,0,0,0,0,0,4099,4241,719,1886,1887,0,0,0,0,0,3712,3712,3712,3712,1,1,1,1,'Bastokan Sill','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (1538,0,0,40,0,0,0,0,0,0,0,4099,4241,717,1886,1887,0,0,0,0,0,3711,3711,3711,3711,1,1,1,1,'San d\'Orian Sill','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (1539,0,0,40,0,0,0,0,0,0,0,4099,4241,711,711,711,711,711,721,721,721,359,359,359,359,1,1,1,1,'Bahut','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (1540,0,0,40,0,0,0,0,0,0,0,4099,4241,716,716,716,716,0,0,0,0,24,24,24,24,1,1,1,1,'Oak Table',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (1541,0,0,40,0,0,0,0,0,0,0,4099,4241,8812,0,0,0,0,0,0,0,359,359,359,359,1,1,1,1,'Bahut','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (2001,0,0,41,0,0,0,0,0,0,0,4099,4241,819,829,2761,0,0,0,0,0,2970,2970,2970,2970,33,66,99,99,'Mokujin','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (2002,1,0,41,0,0,0,0,0,0,0,4100,4242,17027,0,0,0,0,0,0,0,716,716,716,716,1,1,1,1,'Oak Cudgel (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2003,0,0,41,38,0,0,0,0,0,0,4096,4238,652,652,715,715,0,0,0,0,16845,16876,16876,16876,1,1,1,1,'Lance',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2004,0,0,41,0,0,0,0,0,0,0,4098,4240,716,0,0,0,0,0,0,0,17027,17142,17142,17142,1,1,1,1,'Oak Cudgel',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2005,0,0,42,11,0,0,0,0,0,0,4099,4241,652,715,820,0,0,0,0,0,16836,16866,16866,16866,1,1,1,1,'Halberd',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2006,0,0,42,0,0,0,0,0,0,0,4099,4241,705,1222,1515,0,0,0,0,0,17332,17332,17332,17332,33,66,99,99,'Fang Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2007,0,0,43,19,0,0,0,0,0,0,4098,4240,652,716,927,0,0,0,0,0,17218,17229,17229,17229,1,1,1,1,'Zamburak',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (2008,0,0,43,0,255,0,0,0,0,0,4099,4241,737,3729,0,0,0,0,0,0,3730,3730,3730,3730,1,1,1,1,'Bulky Coffer','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (2009,0,0,43,0,0,0,0,0,0,0,4098,4240,719,850,0,0,0,0,0,0,12987,13023,13023,13023,1,1,1,1,'Ebony Sabots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2010,0,0,44,0,0,0,0,0,0,0,4098,4240,716,884,0,0,0,0,0,0,17091,17127,17127,17127,1,1,1,1,'Oak Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2011,0,0,44,0,0,0,0,0,0,0,4098,4240,1673,17027,0,0,0,0,0,0,17040,17040,17040,17040,1,1,1,1,'Warp Cudgel','COP');
|
|
INSERT INTO `synth_recipes` VALUES (2012,0,0,44,0,0,0,0,0,0,0,4099,4241,706,713,0,0,0,0,0,0,102,102,102,102,1,1,1,1,'Flower Stand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2013,0,0,45,0,0,0,0,0,0,0,4098,4240,701,0,0,0,0,0,0,0,718,718,718,718,1,2,3,4,'Rosewood Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2014,0,0,45,0,0,0,0,0,0,0,4098,4240,8813,0,0,0,0,0,0,0,718,718,718,718,1,1,1,1,'Rosewood Lumber','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (2015,0,0,45,0,0,0,0,0,29,0,4100,4242,690,833,4509,0,0,0,0,0,1134,1134,1134,1134,12,12,12,12,'Bast Parchment',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (2016,0,0,45,255,0,0,0,0,0,0,4099,4241,651,1022,2707,2708,4019,0,0,0,3590,3590,3590,3590,1,1,1,1,'Puce Chest','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (2017,0,1986,45,0,0,0,0,0,0,0,4098,4240,701,701,701,1657,0,0,0,0,718,718,718,718,3,6,9,12,'Rosewood Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (2018,0,0,46,0,0,0,0,0,0,0,4098,4240,707,707,0,0,0,0,0,0,17097,17119,17119,17119,1,1,1,1,'Elm Pole',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2019,0,1987,46,0,0,0,0,0,0,0,4099,4241,711,711,711,1212,1212,1212,1657,0,17337,17337,17337,17337,99,99,99,99,'Mythril Bolt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (2020,0,0,46,0,0,0,0,0,0,0,4099,4241,711,1212,0,0,0,0,0,0,17337,17337,17337,17337,33,66,99,99,'Mythril Bolt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2021,0,0,46,0,0,0,0,0,0,0,4099,4241,715,16851,0,0,0,0,0,0,18072,18073,18073,18073,1,1,1,1,'Royal Knight Army Lance +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2022,0,0,47,0,0,0,0,0,0,0,4098,4240,718,845,0,0,0,0,0,0,17053,17143,17143,17143,1,1,1,1,'Rose Wand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2023,0,0,47,0,0,0,0,0,0,0,4099,4241,715,16844,0,0,0,0,0,0,18070,18071,18071,18071,1,1,1,1,'San d\'Orian Halberd',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2024,0,0,47,0,0,0,0,0,0,0,4099,4241,715,1218,1223,0,0,0,0,0,17322,17322,17322,17322,33,66,99,99,'Fire Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2025,0,0,48,11,0,0,0,0,0,0,4099,4241,662,716,716,0,0,0,0,0,12293,12331,12331,12331,1,1,1,1,'Oak Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2026,0,0,48,0,0,0,0,15,0,0,4098,4240,710,710,829,897,927,0,0,0,17163,17181,17181,17181,1,1,1,1,'Battle Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2027,0,0,48,0,0,0,0,0,0,0,4098,4240,884,2846,0,0,0,0,0,0,18606,18615,18615,18615,1,1,1,1,'Passaddhi Staff','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (2028,0,0,49,0,0,53,0,0,0,0,4099,4241,716,716,716,716,819,826,826,826,3,3,3,3,1,1,1,1,'Oak Bed',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2029,0,0,49,0,0,0,0,0,0,0,4099,4241,705,1223,1249,0,0,0,0,0,18156,18156,18156,18156,33,66,99,99,'Horn Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2030,0,0,50,0,0,0,0,0,0,0,4099,4241,705,1223,1253,0,0,0,0,0,18158,18158,18158,18158,33,66,99,99,'Sleep Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2031,0,0,50,0,0,0,0,0,0,0,4099,4241,8814,0,0,0,0,0,0,0,18158,18158,18158,18158,33,33,33,33,'Sleep Arrow','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (2032,0,0,50,11,0,0,0,0,0,0,4098,4240,651,711,711,0,0,0,0,0,17523,17524,17524,17524,1,1,1,1,'Quarterstaff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2033,0,0,50,0,0,0,0,0,0,0,4099,4241,1672,12293,0,0,0,0,0,0,12406,12406,12406,12406,1,1,1,1,'Coated Shield','COP');
|
|
INSERT INTO `synth_recipes` VALUES (2034,0,0,50,0,0,24,0,0,0,0,4098,4240,649,718,825,825,834,834,17316,0,3696,3696,3696,3696,1,1,1,1,'Kotatsu Table','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (2501,0,0,51,0,0,26,0,0,0,0,4099,4241,706,707,826,0,0,0,0,0,21,21,21,21,1,1,1,1,'Desk',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2502,0,1986,51,0,0,0,0,0,0,0,4098,4240,700,700,700,1657,0,0,0,0,717,717,717,717,3,6,9,12,'Mahogany Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (2503,0,0,51,0,0,0,0,0,0,0,4098,4240,700,0,0,0,0,0,0,0,717,717,717,717,1,2,3,4,'Mahogany Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2504,0,0,52,0,0,0,0,0,0,0,4102,4244,488,0,0,0,0,0,0,0,17388,17388,17388,17388,1,1,1,1,'Fastwater Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2505,0,0,52,41,0,0,0,0,0,0,4099,4241,651,657,716,816,0,0,0,0,16871,16872,16872,16872,1,1,1,1,'Kamayari',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2506,0,0,52,0,0,0,0,0,0,0,4099,4241,728,2292,2294,0,0,0,0,0,18696,18696,18696,18696,33,66,99,99,'Paralysis Arrow','TOAU');
|
|
-- INSERT INTO `synth_recipes` VALUES (2507,0,0,52,0,0,0,0,0,255,0,4099,4241,732,937,4509,8918,0,0,0,0,8804,8804,8804,8804,33,66,66,99,'Furusumi','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (2508,0,0,53,0,255,0,0,0,0,0,4099,4241,737,2706,3729,0,0,0,0,0,3731,3731,3731,3731,1,1,1,1,'Azure Chest','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (2509,0,0,53,0,0,11,0,0,46,0,4099,4241,705,818,947,1240,0,0,0,0,4185,4185,4185,4185,33,66,99,99,'Meifu Goma',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2510,0,0,53,0,0,0,0,0,0,0,4099,4241,718,718,927,0,0,0,0,0,17355,17376,17376,17376,1,1,1,1,'Rose Harp',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2511,0,1985,53,0,0,0,0,0,0,0,4099,4241,2230,2233,17523,0,0,0,0,0,18591,18591,18591,18591,1,1,1,1,'Pastoral Staff','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (2512,0,0,53,0,0,0,0,0,0,0,4099,4241,717,717,718,718,0,0,0,0,423,423,423,423,1,1,1,1,'Tavern Bench','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (2513,0,0,54,0,0,0,0,0,16,0,4101,4243,769,1774,1817,2563,17868,0,0,0,364,364,364,364,1,1,1,1,'Amiga Cactus','WOTG'); -- only one source had earth crystal and ?? ALCH level 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (2514,0,0,54,14,0,0,0,0,0,0,4098,4240,649,717,0,0,0,0,0,0,17030,17408,17408,17408,1,1,1,1,'Great Club',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2515,0,0,54,0,0,0,0,0,16,0,4101,4243,771,1774,1817,2563,17868,0,0,0,363,363,363,363,1,1,1,1,'Amigo Cactus','WOTG'); -- only one source had earth crystal and ?? ALCH level 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (2516,0,0,55,0,0,0,0,0,0,0,4098,4240,716,716,0,0,0,0,0,0,17098,17120,17120,17120,1,1,1,1,'Oak Pole',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2517,0,0,55,0,0,0,0,0,0,0,4099,4241,2533,2547,2548,0,0,0,0,0,18730,18730,18730,18730,33,66,99,99,'Obsidian Arrow','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (2518,0,0,55,0,0,0,0,0,0,0,4098,4240,8815,0,0,0,0,0,0,0,17388,17388,17388,17388,1,1,1,1,'Fastwater Fishing Rod','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (2519,0,0,55,0,0,0,0,0,0,0,4098,4240,731,0,0,0,0,0,0,0,2643,2643,2643,2643,33,66,99,99,'Jinko','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (2520,0,0,56,0,0,0,0,0,0,0,4098,4240,707,820,0,0,0,0,0,0,17388,17388,17388,17388,1,1,1,1,'Fastwater Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2521,0,0,56,0,0,0,0,0,0,0,4099,4241,716,716,716,719,719,0,0,0,3609,3609,3609,3609,1,1,1,1,'Stepping Stool','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (2522,0,0,57,0,0,0,0,0,0,0,4098,4240,704,707,816,827,0,0,0,0,17156,17182,17182,17182,1,1,1,1,'Kaman',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2523,0,0,57,0,0,0,0,0,0,0,4099,4241,728,2291,2299,0,0,0,0,0,18699,18699,18699,18699,33,66,99,99,'Earth Arrow',NULL); -- mulitple sources agreed 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (2524,0,0,57,0,0,0,0,0,0,0,4099,4241,705,1219,1224,0,0,0,0,0,17323,17323,17323,17323,33,66,99,99,'Ice Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2525,0,0,57,0,0,0,0,0,0,0,4099,4241,705,1220,1224,0,0,0,0,0,17324,17324,17324,17324,33,66,99,99,'Lightning Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2526,0,0,57,0,0,0,0,0,0,0,4099,4241,728,2291,2297,0,0,0,0,0,18698,18698,18698,18698,33,66,99,99,'Water Arrow',NULL); -- mulitple sources agreed 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (2527,0,0,57,0,0,0,0,0,0,0,4099,4241,728,2291,2298,0,0,0,0,0,18700,18700,18700,18700,33,66,99,99,'Wind Arrow','TOAU'); -- mulitple sources agreed 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (2528,0,0,58,0,0,0,0,0,25,0,4098,4240,716,716,829,932,933,0,0,0,17164,17173,17173,17173,1,1,1,1,'War Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2529,0,0,59,28,0,0,0,0,0,0,4098,4240,653,717,932,0,0,0,0,0,17219,17226,17226,17226,1,1,1,1,'Arbalest',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2530,0,0,59,0,0,0,0,0,0,0,4099,4241,705,1224,1250,0,0,0,0,0,18155,18155,18155,18155,33,66,99,99,'Scorpion Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2531,0,0,59,0,0,0,0,0,0,0,4099,4241,704,706,714,714,721,721,721,1414,351,351,351,351,1,1,1,1,'Federal Mercenary\'s Hammock','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (2532,0,0,60,42,0,0,0,0,0,0,4096,4238,653,653,715,715,0,0,0,0,16847,16877,16877,16877,1,1,1,1,'Mythril Lance',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2533,0,0,60,0,0,0,0,0,0,0,4101,4243,769,1465,1774,2235,17868,0,0,0,3586,3586,3586,3586,1,1,1,1,'Red Viola','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (2534,0,0,60,0,0,53,0,0,0,0,4099,4241,717,717,717,717,820,827,827,827,4,4,4,4,1,1,1,1,'Mahogany Bed',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (2535,0,0,60,0,0,0,0,0,0,0,4101,4243,770,1465,1774,2235,17868,0,0,0,3587,3587,3587,3587,1,1,1,1,'Blue Viola','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (2536,0,0,60,0,0,0,0,0,0,0,4101,4243,776,1465,1774,2235,17868,0,0,0,3589,3589,3589,3589,1,1,1,1,'White Viola','WOTG');
|
|
-- INSERT INTO `synth_recipes` VALUES (2537,0,0,60,0,255,0,0,0,0,0,4099,4241,711,718,745,0,0,0,0,0,449,449,449,449,1,1,1,1,'Personal Table','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (2538,0,0,60,0,0,0,0,0,0,0,4101,4243,771,1465,1774,2235,17868,0,0,0,3588,3588,3588,3588,1,1,1,1,'Yellow Viola','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (2539,0,0,60,0,0,0,0,0,0,0,4101,4243,8816,0,0,0,0,0,0,0,3589,3589,3589,3589,1,1,1,1,'White Viola','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3001,0,0,61,0,0,0,0,0,0,0,4099,4241,706,706,721,721,721,0,0,0,51,51,51,51,1,1,1,1,'Chest',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3002,0,0,61,0,0,0,0,0,0,0,4098,4240,702,0,0,0,0,0,0,0,719,719,719,719,1,2,3,4,'Ebony Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3003,0,1986,61,0,0,0,0,0,0,0,4098,4240,702,702,702,1657,0,0,0,0,719,719,719,719,3,6,9,12,'Ebony Lumber','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (3004,0,0,61,0,255,0,0,0,0,0,4099,4241,711,711,718,745,0,0,0,0,448,448,448,448,1,1,1,1,'Gueridon','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3005,0,0,62,0,0,0,0,0,0,0,4099,4241,713,1213,0,0,0,0,0,0,17338,17338,17338,17338,33,66,99,99,'Darksteel Bolt',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (3006,0,0,62,0,255,0,0,0,0,0,4099,4241,711,711,717,745,0,0,0,0,443,443,443,443,1,1,1,1,'Aureous Chest','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3007,0,1987,62,0,0,0,0,0,0,0,4099,4241,713,713,713,1213,1213,1213,1657,0,17338,17338,17338,17338,99,99,99,99,'Darksteel Bolt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (3008,0,0,62,0,0,0,0,0,0,0,4098,4240,798,2747,2762,0,0,0,0,0,18602,18602,18602,18602,1,1,1,1,'Fay Staff','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (3009,0,0,63,0,11,0,0,0,0,0,4099,4241,661,713,713,713,713,713,718,0,49,49,49,49,1,1,1,1,'Coffer',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3010,0,0,63,0,0,0,0,0,0,0,4102,4244,484,0,0,0,0,0,0,0,17387,17387,17387,17387,1,1,1,1,'Tarutaru Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3011,0,0,63,0,0,0,0,0,54,0,4099,4241,704,710,927,932,937,4109,0,0,18232,18232,18232,18232,66,99,99,99,'Hydro Pump',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3012,0,0,63,0,0,0,0,0,0,0,4098,4240,2749,2762,0,0,0,0,0,0,18601,18601,18601,18601,1,1,1,1,'Fay Crozier','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (3013,0,0,64,0,0,0,0,0,0,0,4098,4240,717,798,902,0,0,0,0,0,17092,17520,17520,17520,1,1,1,1,'Mahogany Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3014,0,0,64,0,0,0,0,0,0,0,4098,4240,718,917,0,0,0,0,0,0,17350,17378,17378,17378,1,1,1,1,'Angel\'s Flute',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3015,0,0,64,0,0,0,0,0,0,0,4099,4241,1283,17156,0,0,0,0,0,0,17240,17241,17241,17241,1,1,1,1,'Lightning Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3016,0,0,64,0,0,0,0,0,0,0,4099,4241,662,710,711,715,715,827,827,832,349,349,349,349,1,1,1,1,'Royal Squire\'s Bunk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (3017,0,0,64,0,0,0,0,0,0,0,4098,4240,717,902,2847,0,0,0,0,0,18611,18616,18616,18616,1,1,1,1,'Qi Staff','WOTG');
|
|
-- INSERT INTO `synth_recipes` VALUES (3018,0,0,64,0,255,0,0,0,0,0,4099,4241,718,719,745,0,0,0,0,0,437,437,437,437,1,1,1,1,'Floral Nightstand','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3019,0,1987,65,0,0,0,0,0,0,0,4099,4241,1243,1243,1243,1657,3927,3927,3927,0,21323,21323,21323,21323,99,99,99,99,'Oxidant Bolt','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (3020,0,0,65,0,255,0,0,0,0,0,4099,4241,711,717,717,745,0,0,0,0,442,442,442,442,1,1,1,1,'Gilded Chest','ROV'); -- couldn't verify, GS <=27??, JP talk: 0GS"could sit"
|
|
INSERT INTO `synth_recipes` VALUES (3021,0,0,65,0,0,0,0,0,0,0,4099,4241,1243,3927,0,0,0,0,0,0,21323,21323,21323,21323,33,66,99,99,'Oxidant Bolt','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (3022,0,0,65,0,0,0,0,0,0,0,4098,4240,8817,0,0,0,0,0,0,0,17387,17387,17387,17387,1,1,1,1,'Tarutaru Fishing Rod','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3023,0,0,65,0,0,0,0,0,0,0,4099,4241,717,717,717,717,0,0,0,0,29,29,29,29,1,1,1,1,'Secretaire',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3024,0,0,65,0,0,0,0,0,0,0,4098,4240,711,816,0,0,0,0,0,0,17387,17387,17387,17387,1,1,1,1,'Tarutaru Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3025,0,0,65,0,0,0,0,0,0,0,4099,4241,715,1222,1961,0,0,0,0,0,17317,17317,17317,17317,33,66,99,99,'Gold Arrow','COP');
|
|
INSERT INTO `synth_recipes` VALUES (3026,0,0,66,0,0,0,0,0,0,0,4098,4240,719,842,0,0,0,0,0,0,17054,17427,17427,17427,1,1,1,1,'Ebony Wand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3027,0,0,66,0,0,0,0,0,0,0,4098,4240,716,1272,0,0,0,0,0,0,17561,17562,17562,17562,1,1,1,1,'Revenging Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3028,0,0,66,0,0,0,0,0,0,0,4096,4238,654,654,715,2762,0,0,0,0,19303,19303,19303,19303,1,1,1,1,'Fay Lance','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (3029,0,0,66,0,0,0,0,0,0,0,4098,4240,2761,0,0,0,0,0,0,0,2762,2762,2762,2762,1,2,3,4,'Feyweald Lumber','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (3030,0,0,66,0,0,0,0,0,0,0,4103,4245,692,4373,4374,4375,0,0,0,0,17881,17881,17881,17881,4,6,8,10,'Deepbed Soil','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (3031,0,0,66,0,255,0,0,0,0,0,4099,4241,711,711,711,718,745,0,0,0,447,447,447,447,1,1,1,1,'Mensa Lunata','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3032,0,0,67,0,0,0,0,0,0,32,4099,4241,95,716,716,4441,4441,4441,0,0,96,96,96,96,1,1,1,1,'Beverage Barrel','COP');
|
|
INSERT INTO `synth_recipes` VALUES (3033,0,0,67,37,0,0,0,0,0,0,4098,4240,654,715,822,0,0,0,0,0,16839,16874,16874,16874,1,1,1,1,'Partisan',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3034,0,0,67,0,0,46,0,0,7,0,4099,4241,706,826,826,828,828,2476,2533,2712,410,410,410,410,1,1,1,1,'Red Round Table','WOTG'); -- multi sources for subcrafts, though BG was ?? 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (3035,0,0,67,0,0,46,0,0,7,0,4099,4241,706,826,826,828,828,2476,2533,2706,411,411,411,411,1,1,1,1,'Blue Round Table','WOTG'); -- multi sources for subcrafts, though BG was ?? 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (3036,0,0,67,0,0,46,0,0,7,0,4099,4241,706,826,826,828,828,2476,2533,2707,412,412,412,412,1,1,1,1,'Green Round Table','WOTG'); -- multi sources for subcrafts, though BG was ?? 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (3037,0,0,67,0,0,46,0,0,7,0,4099,4241,706,826,826,828,828,2476,2533,2708,413,413,413,413,1,1,1,1,'Yellow Round Table','WOTG'); -- multi sources for subcrafts, though BG was ?? 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (3038,0,0,67,0,0,46,0,0,7,0,4099,4241,706,826,826,828,828,2476,2533,2709,414,414,414,414,1,1,1,1,'White Round Table','WOTG'); -- multi sources for subcrafts, though BG was ?? 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (3039,0,0,67,0,0,0,0,0,0,0,4099,4241,719,719,719,719,0,0,0,0,427,427,427,427,1,1,1,1,'Rococo Table','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3040,0,0,68,0,0,0,0,0,0,0,4099,4241,705,1254,1627,0,0,0,0,0,18178,18178,18178,18178,33,66,99,99,'Bodkin Arrow','COP');
|
|
INSERT INTO `synth_recipes` VALUES (3041,0,0,68,0,0,0,0,0,0,0,4098,4240,717,717,0,0,0,0,0,0,17099,17521,17521,17521,1,1,1,1,'Mahogany Pole',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3042,0,0,69,21,0,0,0,0,0,0,4098,4240,651,651,713,713,713,820,0,0,18259,18259,18259,18259,33,66,99,99,'Angon','TOAU'); -- BG had ?? smith, others agree 10/28/21
|
|
INSERT INTO `synth_recipes` VALUES (3043,0,0,69,40,0,0,0,0,0,0,4099,4241,662,662,728,728,728,0,0,0,128,128,128,128,1,1,1,1,'Console','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (3044,0,0,69,0,0,0,0,0,0,0,4099,4241,705,1251,1254,0,0,0,0,0,18159,18159,18159,18159,33,66,99,99,'Demon Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3045,0,0,69,0,0,0,0,0,0,0,4098,4240,711,719,822,829,0,0,0,0,17157,17189,17189,17189,1,1,1,1,'Rapid Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3046,0,0,70,37,0,0,0,19,0,0,4098,4240,654,717,719,893,932,0,0,0,17220,17227,17227,17227,1,1,1,1,'Heavy Crossbow',NULL); -- one source 32 WW, one ?? Bone, others agree 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (3047,0,0,70,18,0,0,0,0,0,0,4099,4241,662,725,725,0,0,0,0,0,12359,12370,12370,12370,1,1,1,1,'Hickory Shield','COP'); -- ??SM, 8 & 18 posted (typo?), used 18 (iron sheet caps 22)
|
|
INSERT INTO `synth_recipes` VALUES (3048,0,0,70,0,0,0,0,45,0,0,4098,4240,720,830,2513,2747,2762,0,0,0,18736,18736,18736,18736,1,1,1,1,'Fay Gendawa','WOTG'); -- ??BO, 45/53 srcs, old era talk crafted at 39 - used 45
|
|
INSERT INTO `synth_recipes` VALUES (3049,2,0,70,0,0,0,0,0,0,0,4102,4244,489,0,0,0,0,0,0,0,17386,17386,17386,17386,1,1,1,1,'Lu Shang\'s Fishing Rod',NULL); -- multiple source agree 10/29/21
|
|
-- INSERT INTO `synth_recipes` VALUES (3050,0,0,70,0,255,0,0,0,0,0,4099,4241,711,711,711,711,717,717,745,0,444,444,444,444,1,1,1,1,'Luxurious Chest','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3501,0,0,71,0,0,0,0,0,0,0,4099,4241,719,719,927,0,0,0,0,0,17357,17833,17848,17848,1,1,1,1,'Ebony Harp',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3502,0,0,71,0,0,0,0,0,0,0,4099,4241,662,716,716,716,0,0,0,0,95,95,95,95,1,1,1,1,'Water Barrel',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (3503,0,0,71,0,0,0,255,0,0,0,4099,4241,704,857,1629,0,0,0,0,0,3591,3591,3591,3591,1,1,1,1,'Marbled Drawers','ROV'); -- INVALID: bamboo stick, dhalmel hide, buffalo leather. should be ID 4540 below 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (3504,0,0,71,0,0,0,0,0,0,0,4099,4241,8818,0,0,0,0,0,0,0,17357,17357,17357,17357,1,1,1,1,'Ebony Harp','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3505,0,1986,72,0,0,0,0,0,0,0,4098,4240,703,703,703,1657,0,0,0,0,720,720,720,720,3,6,9,12,'Ancient Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (3506,0,0,72,0,0,0,0,0,0,0,4098,4240,703,0,0,0,0,0,0,0,720,720,720,720,1,2,3,4,'Ancient Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3507,0,0,72,0,0,0,0,0,0,0,4102,4244,1832,0,0,0,0,0,0,0,17014,17014,17014,17014,1,1,1,1,'Hume Fishing Rod','COP');
|
|
INSERT INTO `synth_recipes` VALUES (3508,0,0,72,0,0,0,0,0,0,0,4099,4241,721,721,721,917,917,917,0,0,104,104,104,104,1,1,1,1,'Tarutaru Folding Screen',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3509,0,0,73,0,0,0,0,0,0,0,4102,4244,482,0,0,0,0,0,0,0,17383,17383,17383,17383,1,1,1,1,'Clothespole',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3510,0,1984,73,0,0,0,0,0,0,0,4098,4240,703,1642,1646,1647,0,0,0,0,1815,1815,1815,1815,1,2,3,4,'Sanctified Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (3511,1,0,73,0,0,0,0,0,0,0,4100,4242,17383,0,0,0,0,0,0,0,816,816,717,717,1,1,1,1,'Clothespole (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3512,0,0,73,26,0,0,0,0,0,0,4099,4241,662,662,718,718,718,0,0,0,59,59,59,59,1,1,1,1,'Chiffonier',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3513,0,0,73,0,0,0,0,0,0,0,4099,4241,717,17129,0,0,0,0,0,0,17539,17540,17540,17540,1,1,1,1,'Musketeer\'s Pole +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3514,0,0,73,0,0,0,0,0,0,0,4099,4241,715,1222,1962,0,0,0,0,0,17334,17334,17334,17334,33,66,99,99,'Platinum Arrow','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (3515,0,0,73,0,255,0,0,0,0,0,4099,4241,711,711,711,711,717,717,745,745,446,446,446,446,1,1,1,1,'Gilded Shelf','ROV'); -- couldn't verify, GS 27/<37/??, JP talk: 0GS"could sit"
|
|
INSERT INTO `synth_recipes` VALUES (3516,0,0,74,42,5,0,0,0,0,0,4096,4238,650,654,654,715,0,0,0,0,18093,18094,18094,18094,1,1,1,1,'Couse','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (3517,0,0,74,0,255,0,0,0,0,0,4099,4241,711,718,719,719,745,0,0,0,436,436,436,436,1,1,1,1,'Jeunoan Armoire','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3518,0,0,74,0,0,0,0,0,0,0,4098,4240,718,822,0,0,0,0,0,0,17014,17014,17014,17014,1,1,1,1,'Hume Fishing Rod','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (3519,0,0,74,0,255,0,0,0,0,0,4099,4241,711,711,718,719,719,719,719,745,435,435,435,435,1,1,1,1,'Jeunoan Dresser','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3520,0,0,74,19,0,0,0,0,0,0,4099,4241,662,716,717,0,0,0,0,0,12295,12352,12352,12352,1,1,1,1,'Round Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3521,0,0,74,0,0,0,0,0,0,0,4098,4240,9484,0,0,0,0,0,0,0,17014,17014,17014,17014,1,1,1,1,'Hume Fishing Rod','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3522,0,0,75,0,0,0,0,0,0,0,4099,4241,719,17128,0,0,0,0,0,0,17541,17542,17542,17542,1,1,1,1,'Bastokan Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3523,0,0,75,41,0,0,0,0,0,0,4099,4241,664,717,717,718,718,0,0,0,30,30,30,30,1,1,1,1,'Bureau',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3524,0,0,75,0,0,0,0,0,0,0,4098,4240,719,1302,0,0,0,0,0,0,17551,17552,17552,17552,1,1,1,1,'Earth Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3525,0,0,75,0,0,0,0,0,0,0,4098,4240,719,1306,0,0,0,0,0,0,17559,17560,17560,17560,1,1,1,1,'Dark Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3526,0,0,75,0,0,0,0,0,0,0,4098,4240,719,1299,0,0,0,0,0,0,17545,17546,17546,17546,1,1,1,1,'Fire Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3527,0,0,75,0,0,0,0,0,0,0,4098,4240,719,1301,0,0,0,0,0,0,17549,17550,17550,17550,1,1,1,1,'Wind Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3528,0,0,75,0,0,0,0,0,0,0,4098,4240,719,1300,0,0,0,0,0,0,17547,17548,17548,17548,1,1,1,1,'Ice Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3529,0,0,75,0,0,0,0,0,0,0,4098,4240,719,1303,0,0,0,0,0,0,17553,17554,17554,17554,1,1,1,1,'Thunder Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3530,0,0,75,0,0,0,0,0,0,0,4098,4240,719,1305,0,0,0,0,0,0,17557,17558,17558,17558,1,1,1,1,'Light Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3531,0,0,75,0,0,0,0,0,0,0,4098,4240,719,1304,0,0,0,0,0,0,17555,17556,17556,17556,1,1,1,1,'Water Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3532,0,0,76,0,0,0,0,0,54,0,4099,4241,704,710,927,927,932,937,4109,0,18233,18233,18233,18233,66,99,99,99,'Kilo Pump',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3533,0,0,76,51,0,0,0,0,0,0,4096,4238,654,654,715,715,0,0,0,0,16848,16878,16878,16878,1,1,1,1,'Darksteel Lance',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3534,0,0,76,0,0,0,60,0,0,0,4098,4240,722,1629,0,0,0,0,0,0,143,143,143,143,1,1,1,1,'Ngoma','TOAU'); -- BG had ??LE, others agree 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (3535,0,0,77,0,0,0,0,0,0,0,4098,4240,717,816,0,0,0,0,0,0,17383,17383,17383,17383,1,1,1,1,'Clothespole',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3536,0,0,77,0,0,0,0,0,0,0,4098,4240,1671,18093,0,0,0,0,0,0,18095,18095,18095,18095,1,1,1,1,'Dispel Couse','COP');
|
|
INSERT INTO `synth_recipes` VALUES (3537,0,0,77,0,0,0,0,0,0,0,4099,4241,718,718,718,718,718,0,0,0,56,56,56,56,1,1,1,1,'Commode',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3538,0,0,78,0,50,56,0,0,0,0,4099,4241,717,718,718,718,745,823,828,829,6,6,6,6,1,1,1,1,'Noble\'s Bed',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3539,0,0,78,0,0,0,0,0,0,0,4099,4241,1282,17220,0,0,0,0,0,0,17242,17243,17243,17243,1,1,1,1,'Velocity Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3540,0,0,78,44,0,0,0,0,0,0,4099,4241,654,711,711,711,725,725,2533,2533,353,353,353,353,1,1,1,1,'Spence','WOTG'); -- BG had ?? SM, others agree 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (3541,0,0,78,0,0,0,0,0,0,0,4099,4241,717,717,717,717,721,721,721,721,357,357,357,357,1,1,1,1,'Partition','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (3542,0,0,79,20,0,0,0,0,0,0,4101,4243,662,1774,1817,17868,0,0,0,0,98,98,98,98,1,1,1,1,'Scimitar Cactus','COP');
|
|
INSERT INTO `synth_recipes` VALUES (3543,0,0,79,0,0,0,0,0,0,0,4098,4240,1134,2535,0,0,0,0,0,0,370,370,370,370,1,1,1,1,'Windurstian Tea Set','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (3544,0,0,79,0,0,0,0,0,0,0,4098,4240,719,719,0,0,0,0,0,0,17100,17525,17525,17525,1,1,1,1,'Ebony Pole',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (3545,0,0,80,0,255,0,0,0,0,0,4099,4241,718,719,719,719,719,719,745,745,428,428,428,428,1,1,1,1,'Semainier','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (3546,0,1986,80,0,0,0,0,0,0,0,4098,4240,692,692,692,1657,0,0,0,0,709,709,709,709,3,6,9,12,'Beech Lumber','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (3547,0,0,80,0,0,0,0,0,36,0,4102,4244,703,716,1886,1887,1895,4464,4464,4464,120,120,120,120,1,1,1,1,'Freshwater Aquarium','COP');
|
|
INSERT INTO `synth_recipes` VALUES (3548,0,0,80,0,0,0,0,0,0,0,4098,4240,692,0,0,0,0,0,0,0,709,709,709,709,1,2,3,4,'Beech Lumber','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (3549,0,0,80,0,11,0,0,0,0,0,4099,4241,650,661,716,716,717,719,0,0,12324,12354,12354,12354,1,1,1,1,'Tower Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (3550,0,0,80,0,0,0,0,0,36,0,4102,4244,703,716,1886,1887,1895,5460,5460,5460,223,223,223,223,1,1,1,1,'River Aquarium','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (4001,0,0,81,0,0,0,0,0,0,0,4099,4241,715,16837,0,0,0,0,0,0,16888,16889,16889,16889,1,1,1,1,'Battle Fork',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4002,0,0,81,0,0,0,0,0,0,0,4099,4241,9485,0,0,0,0,0,0,0,55,55,55,55,1,1,1,1,'Cabinet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (4003,0,0,81,0,0,0,0,0,0,0,4099,4241,714,716,716,716,716,0,0,0,55,55,55,55,1,1,1,1,'Cabinet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4004,0,0,81,0,0,0,0,0,0,0,4099,4241,728,2292,2293,0,0,0,0,0,18697,18697,18697,18697,33,66,99,99,'Marid Arrow','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (4005,0,0,82,49,50,0,0,0,0,0,4098,4240,654,654,719,746,2304,0,0,0,18118,18119,18119,18119,1,1,1,1,'Dark Mezraq','TOAU'); -- JPwiki, others ?? subs
|
|
INSERT INTO `synth_recipes` VALUES (4006,0,0,82,0,0,0,0,0,0,0,4099,4241,716,12343,0,0,0,0,0,0,12364,12365,12365,12365,1,1,1,1,'Nymph Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4007,0,0,82,0,7,0,0,0,0,0,4099,4241,710,725,728,799,799,2383,0,0,328,328,328,328,1,1,1,1,'Black Hobby Bo','TOAU'); -- BG had ??GS 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4008,0,0,82,0,7,0,0,0,0,0,4099,4241,710,725,728,799,799,2379,0,0,326,326,326,326,1,1,1,1,'Yellow Hobby Bo','TOAU'); -- BG had ??GS 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4009,0,0,82,0,7,0,0,0,0,0,4099,4241,710,725,728,799,799,2382,0,0,330,330,330,330,1,1,1,1,'Green Hobby Bo','TOAU'); -- BG had ??GS 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4010,0,0,82,0,7,0,0,0,0,0,4099,4241,710,725,728,799,799,2381,0,0,329,329,329,329,1,1,1,1,'Blue Hobby Bo','TOAU'); -- BG had ??GS 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4011,0,0,82,0,7,0,0,0,0,0,4099,4241,710,725,728,799,799,2380,0,0,327,327,327,327,1,1,1,1,'Red Hobby Bo','TOAU'); -- BG had ??GS 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4012,0,0,82,0,0,0,0,0,0,0,4099,4241,717,17232,0,0,0,0,0,0,17236,17237,17237,17237,1,1,1,1,'Leo Crossbow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4013,0,0,83,0,0,0,0,0,0,0,4102,4244,483,0,0,0,0,0,0,0,17380,17380,17380,17380,1,1,1,1,'Mithran Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4014,0,0,83,0,0,0,0,0,0,0,4099,4241,712,16845,16856,0,0,0,0,0,16890,16891,16891,16891,1,1,1,1,'Obelisk Lance',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4015,0,0,83,0,0,0,0,0,0,0,4101,4243,695,721,1774,5187,17868,0,0,0,99,99,99,99,1,1,1,1,'Elshimo Palm','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4016,0,0,83,0,0,0,0,0,0,0,4099,4241,721,721,721,2533,2533,2533,2533,2535,358,358,358,358,1,1,1,1,'Credenza','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (4017,0,0,84,0,0,0,0,0,54,0,4099,4241,704,710,927,927,927,932,937,4109,18234,18234,18234,18234,66,99,99,99,'Mega Pump',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4018,1,0,84,0,0,0,0,0,0,0,4100,4242,17056,0,0,0,0,0,0,0,720,720,844,844,1,1,1,1,'Mythic Wand (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4019,0,0,84,0,0,0,0,0,0,0,4099,4241,9486,0,0,0,0,0,0,0,12409,12409,12409,12409,1,1,1,1,'Numinous Shield','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (4020,0,0,84,0,0,0,0,0,0,0,4098,4240,720,844,0,0,0,0,0,0,17056,17433,17433,17433,1,1,1,1,'Mythic Wand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4021,0,0,85,0,49,31,0,0,0,0,4099,4241,663,718,718,718,718,745,823,828,32,32,32,32,1,1,1,1,'Dresser',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4022,0,0,85,0,0,0,0,0,0,0,4099,4241,720,720,12295,0,0,0,0,0,12409,12410,12410,12410,1,1,1,1,'Numinous Shield','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4023,0,1986,85,0,0,0,0,0,0,0,4098,4240,1657,2532,2532,2532,0,0,0,0,2533,2533,2533,2533,3,6,9,12,'Teak Lumber','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (4024,0,0,85,21,0,0,0,0,0,0,4098,4240,652,711,711,0,0,0,0,0,17543,17544,17544,17544,1,1,1,1,'Battle Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4025,0,0,85,0,0,0,0,0,0,0,4098,4240,2532,0,0,0,0,0,0,0,2533,2533,2533,2533,1,2,3,4,'Teak Lumber','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (4026,1,0,85,0,0,0,0,0,0,0,4100,4242,17543,0,0,0,0,0,0,0,711,711,711,1235,1,1,2,4,'Battle Staff (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4027,0,0,85,0,9,0,0,0,0,0,4099,4241,711,711,711,1836,1836,1836,0,0,354,354,354,354,1,1,1,1,'Bookstack','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (4028,0,1985,86,0,0,0,0,0,0,0,4099,4241,2230,2233,16890,0,0,0,0,0,18122,18122,18122,18122,1,1,1,1,'Broach Lance','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (4029,0,0,86,0,0,0,0,0,0,0,4099,4241,712,17413,0,0,0,0,0,0,17441,17442,17442,17442,1,1,1,1,'Eremite\'s Wand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4030,0,0,86,0,0,0,0,0,57,0,4096,4238,715,715,931,931,0,0,0,0,16849,16879,16879,16879,1,1,1,1,'Cermet Lance',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4031,0,0,87,0,54,59,0,0,0,0,4099,4241,717,719,720,745,786,823,829,836,8,8,8,8,1,1,1,1,'Royal Bed',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4032,0,0,87,0,0,0,0,0,0,0,4099,4241,1815,12409,0,0,0,0,0,0,12411,12411,12411,12411,1,1,1,1,'Dominus Shield','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4033,0,0,87,0,0,0,0,0,0,0,4098,4240,721,821,0,0,0,0,0,0,17380,17380,17380,17380,1,1,1,1,'Mithran Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4034,0,0,87,0,0,0,0,0,0,0,4098,4240,715,17134,0,0,0,0,0,0,17533,17534,17534,17534,1,1,1,1,'Whale Staff',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4035,0,0,87,0,32,0,0,0,0,0,4099,4241,745,2533,2533,2535,0,0,0,0,424,424,424,424,1,1,1,1,'Feasting Table','WOTG'); -- BG had 29+ GS, others agree 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4036,0,0,88,0,0,0,0,0,0,0,4099,4241,717,717,717,717,717,717,2533,2533,374,374,374,374,1,1,1,1,'Parclose','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (4037,0,0,88,0,0,0,0,0,59,0,4103,4245,914,923,924,941,1263,17157,0,0,17200,17201,17201,17201,1,1,1,1,'Rosenbogen',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4038,0,0,88,0,0,40,0,0,0,0,4099,4241,711,717,2010,0,0,0,0,0,343,343,343,343,1,1,1,1,'Harp Stool','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (4039,0,0,88,59,0,0,0,46,0,0,4098,4240,654,717,718,897,927,932,0,0,17221,17233,17233,17233,1,1,1,1,'Repeating Crossbow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4040,0,0,88,0,0,0,0,0,0,0,4099,4241,717,717,717,717,717,717,0,0,352,352,352,352,1,1,1,1,'Half Partition','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (4041,0,0,89,0,0,0,0,0,39,0,4102,4244,716,887,1886,1887,1896,5121,5121,5121,121,121,121,121,1,1,1,1,'Saltwater Aquarium','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4042,0,0,89,0,0,0,0,0,39,0,4102,4244,716,887,1886,1887,1896,4314,4314,4314,224,224,224,224,1,1,1,1,'Bay Aquarium','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (4043,0,0,89,0,0,0,0,0,0,0,4098,4240,720,720,0,0,0,0,0,0,17101,17526,17526,17526,1,1,1,1,'Mythic Pole',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4044,0,0,89,0,0,0,0,0,39,0,4102,4244,716,887,1886,1887,1896,4580,4580,4580,225,225,225,225,1,1,1,1,'Reef Aquarium','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (4045,0,0,90,0,0,0,0,0,0,0,4099,4241,720,720,927,0,0,0,0,0,17359,17834,17834,17834,1,1,1,1,'Mythic Harp',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4046,0,0,90,0,0,60,0,0,0,0,4099,4241,720,725,2010,0,0,0,0,0,3678,3678,3678,3678,1,1,1,1,'Recital Bench','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (4047,0,0,90,0,0,0,0,0,255,0,4096,4238,709,709,947,2533,0,0,0,0,295,295,295,295,1,1,1,1,'Bonfire','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (4048,0,0,90,51,60,0,0,0,0,0,4096,4238,652,654,728,2275,0,0,0,0,18115,18116,18116,18116,1,1,1,1,'Engetsuto','TOAU'); -- JPWiki, others ?? subs
|
|
INSERT INTO `synth_recipes` VALUES (4049,0,0,90,0,49,0,0,0,0,0,4099,4241,719,719,719,719,719,719,719,745,61,61,61,61,1,1,1,1,'Armoire',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4050,0,0,90,0,0,0,0,0,0,0,4099,4241,9487,0,0,0,0,0,0,0,17359,17359,17359,17359,1,1,1,1,'Mythic Harp','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (4501,0,0,91,0,0,45,0,0,0,0,4099,4241,717,717,719,720,823,829,0,0,316,316,316,316,1,1,1,1,'3-Drawer Almirah','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (4502,0,0,91,0,0,0,0,0,0,0,4098,4240,1446,0,0,0,0,0,0,0,1447,1447,1447,1447,1,2,3,4,'Lacquer Tree Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4503,0,0,91,0,0,45,0,0,0,0,4099,4241,717,717,717,717,719,720,823,829,314,314,314,314,1,1,1,1,'9-Drawer Almirah','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (4504,0,0,91,0,0,0,0,53,0,0,4099,4241,704,895,1416,1417,0,0,0,0,17325,17325,17325,17325,33,66,99,99,'Kabura Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4505,0,0,91,0,0,45,0,0,0,0,4099,4241,717,717,717,719,720,823,829,0,315,315,315,315,1,1,1,1,'6-Drawer Almirah','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (4506,0,1986,91,0,0,0,0,0,0,0,4098,4240,1446,1446,1446,1657,0,0,0,0,1447,1447,1447,1447,3,6,9,12,'Lacquer Tree Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4507,0,0,91,0,0,0,0,0,0,0,4098,4240,1353,9130,0,0,0,0,0,0,27390,27391,27391,27391,1,1,1,1,'Bewitched Sune-Ate','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (4508,0,0,92,50,39,0,0,0,0,0,4096,4238,654,654,715,715,745,0,0,0,18082,18083,18083,18083,1,1,1,1,'Barchha',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4509,0,0,92,0,0,0,0,0,0,0,4098,4240,722,0,0,0,0,0,0,0,723,723,723,723,1,2,3,4,'Divine Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4510,0,0,92,0,0,0,0,0,0,0,4098,4240,3926,0,0,0,0,0,0,0,3927,3927,3927,3927,1,2,3,4,'Urunday Lumber','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (4511,0,1986,92,0,0,0,0,0,0,0,4098,4240,1657,3926,3926,3926,0,0,0,0,3927,3927,3927,3927,3,6,9,12,'Urunday Lumber','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (4512,0,0,92,0,0,0,0,0,0,0,4098,4240,729,0,0,0,0,0,0,0,730,730,730,730,1,2,3,4,'Bloodwood Lumber','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (4513,0,0,92,0,0,0,0,0,0,0,4098,4240,1349,9130,0,0,0,0,0,0,27038,27039,27039,27039,1,1,1,1,'Bewitched Kote','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (4514,0,1986,92,0,0,0,0,0,0,0,4098,4240,722,722,722,1657,0,0,0,0,723,723,723,723,3,6,9,12,'Divine Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4515,0,0,92,48,0,53,0,0,0,0,4098,4240,664,719,719,843,843,843,1163,1626,200,200,200,200,1,1,1,1,'Tsahyan Mask','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4516,0,0,93,0,0,0,0,33,0,0,4098,4240,711,718,718,718,776,1163,1163,2426,201,201,201,201,1,1,1,1,'Totem Pole',NULL); -- BG had ??BO, others agree 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4517,0,0,93,0,0,0,0,41,0,0,4098,4240,720,720,830,927,1620,0,0,0,17205,17206,17206,17206,1,1,1,1,'Gendawa','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4518,0,0,93,0,0,0,0,0,0,0,4099,4241,723,937,1415,12843,0,0,0,0,1350,1351,1351,1351,1,1,1,1,'Cursed Haidate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4519,0,0,93,46,0,0,0,0,0,0,4099,4241,651,657,717,823,1122,0,0,0,16841,16873,16873,16873,1,1,1,1,'Wyvern Spear',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4520,0,0,93,0,0,0,0,0,0,0,4099,4241,1351,9130,0,0,0,0,0,0,27214,27215,27215,27215,1,1,1,1,'Bewitched Haidate','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (4521,0,0,94,0,0,0,0,0,0,0,4098,4240,723,937,1415,12974,0,0,0,0,1352,1353,1353,1353,1,1,1,1,'Cursed Sune-Ate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4522,0,0,94,0,41,0,0,0,52,0,4097,4239,717,719,752,834,913,937,1110,5120,195,195,195,195,1,1,1,1,'The Big One','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4523,0,0,94,31,0,0,0,0,0,0,4098,4240,653,711,711,0,0,0,0,0,17102,17568,17568,17568,1,1,1,1,'Eight-Sided Pole',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4524,0,0,94,0,0,0,0,0,0,0,4099,4241,1345,9130,0,0,0,0,0,0,26686,26687,26687,26687,1,1,1,1,'Bewitched Kabuto','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (4525,0,0,94,0,0,0,0,0,0,0,4098,4240,9488,0,0,0,0,0,0,0,21134,21134,21134,21134,1,1,1,1,'Sasah Wand','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (4526,1,0,94,0,0,0,0,0,0,0,4100,4242,17102,0,0,0,0,0,0,0,711,711,711,1226,1,1,2,6,'Eight-Sided Pole (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4527,0,0,94,0,0,0,0,0,0,0,4098,4240,844,3927,0,0,0,0,0,0,21134,21133,21133,21133,1,1,1,1,'Sasah Wand','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (4528,0,1986,95,0,0,0,0,0,0,0,4098,4240,729,729,729,1657,0,0,0,0,730,730,730,730,3,6,9,12,'Bloodwood Lumber','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (4529,0,0,95,0,44,55,0,0,0,0,4099,4241,745,823,1462,1462,1462,1991,0,0,127,127,127,127,1,1,1,1,'Coffee Table','TOAU'); -- only BG had wind crystal and ?? on subcrafts, others agree 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4530,0,0,95,0,39,0,0,0,0,0,4098,4240,704,752,1414,1414,1415,17152,0,0,18142,18143,18143,18143,1,1,1,1,'Shigeto Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4531,0,0,95,0,5,0,0,0,0,0,4099,4241,717,717,717,1588,1588,1588,0,0,77,77,77,77,1,1,1,1,'Bookshelf',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4532,0,0,95,0,0,0,0,0,0,0,4098,4240,3927,3932,0,0,0,0,0,0,21206,21207,21207,21207,1,1,1,1,'Hemolele Staff','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (4533,0,0,95,0,0,0,0,0,0,0,4098,4240,1347,9130,0,0,0,0,0,0,26862,26863,26863,26863,1,1,1,1,'Bewitched Togi','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (4534,0,0,96,0,0,0,0,0,0,0,4098,4240,720,723,937,1415,12715,0,0,0,1348,1349,1349,1349,1,1,1,1,'Cursed Kote',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4535,0,0,96,0,23,0,0,0,0,0,4098,4240,718,790,823,937,1134,1134,1414,1447,139,139,139,139,1,1,1,1,'Star Globe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4536,0,0,96,35,0,0,0,0,0,0,4099,4241,662,662,717,717,717,730,1762,1762,148,148,148,148,1,1,1,1,'Cartonnier','TOAU'); -- only BG ?? SM, others agree 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4537,0,0,96,0,0,0,0,0,0,0,4101,4243,1446,0,0,0,0,0,0,0,1448,1448,1448,1448,4,6,8,10,'Lacquer Tree Sap',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (4538,0,0,96,255,0,0,0,0,0,0,4099,4241,757,893,932,3927,3927,0,0,0,21258,21259,21259,21259,1,1,1,1,'Malayo Crossbow','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (4539,0,0,96,255,0,0,0,0,0,0,4096,4238,3919,3919,3927,3927,0,0,0,0,20969,20968,20968,20968,1,1,1,1,'Chanar Xyston','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (4541,0,0,97,0,0,0,0,55,0,0,4098,4240,730,730,927,2168,2288,0,0,0,18695,18701,18701,18701,1,1,1,1,'Cerberus Bow','TOAU'); -- WW 96/97, BO 55 were the more common values 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4542,0,0,96,0,0,0,0,41,0,0,4098,4240,824,927,3927,3927,3932,0,0,0,21243,21244,21244,21244,1,1,1,1,'Ahkormaar Bow','SOA'); -- BG had ??BO, others agree 10/29/21
|
|
INSERT INTO `synth_recipes` VALUES (4543,0,0,97,0,0,0,0,0,0,0,4098,4240,732,0,0,0,0,0,0,0,733,733,733,733,1,2,3,4,'Kapor Lumber','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (4544,0,0,97,0,0,0,0,0,0,0,4099,4241,720,723,937,1415,12459,0,0,0,1344,1345,1345,1345,1,1,1,1,'Cursed Kabuto',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4545,0,0,97,0,0,0,0,0,0,0,4101,4243,722,0,0,0,0,0,0,0,1444,1444,1444,1444,4,8,10,12,'Divine Sap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4546,0,1986,97,0,0,0,0,0,0,0,4098,4240,732,732,732,1657,0,0,0,0,733,733,733,733,3,6,9,12,'Kapor Lumber','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (4547,0,0,98,0,10,0,0,0,0,0,4099,4241,650,717,717,717,719,719,1447,1447,76,76,76,76,1,1,1,1,'Royal Bookshelf',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4548,0,0,98,0,58,0,0,0,0,0,4099,4241,711,711,711,711,1887,2418,2419,2419,124,124,124,124,1,1,1,1,'Wardrobe',NULL); -- 2 src agree, xiclopedia has 1 TAU sheet, others 2
|
|
INSERT INTO `synth_recipes` VALUES (4549,0,0,98,0,0,0,0,0,0,0,4099,4241,719,719,720,720,927,0,0,0,17364,17837,17837,17837,1,1,1,1,'Cythara Anglica',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4550,1,0,98,0,0,0,0,0,0,0,4100,4242,17364,0,0,0,0,0,0,0,927,719,720,720,1,1,1,1,'Cythara Anglica (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4551,0,0,99,47,53,0,0,0,0,0,4098,4240,654,745,771,771,914,1762,1762,1813,17590,17591,17591,17591,1,1,1,1,'Primate Staff','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4552,0,0,99,0,0,0,0,0,0,0,4098,4240,1464,0,0,0,0,0,0,0,1462,1462,1462,1462,1,2,3,4,'Lancewood Lumber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4553,0,1986,99,0,0,0,0,0,0,0,4098,4240,1464,1464,1464,1657,0,0,0,0,1462,1462,1462,1462,3,6,9,12,'Lancewood Lumber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4554,0,0,99,0,0,0,41,0,0,0,4098,4240,720,720,723,723,855,937,1415,12587,1346,1347,1347,1347,1,1,1,1,'Cursed Togi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4555,0,0,100,0,0,0,0,0,0,0,4098,4240,726,17569,0,0,0,0,0,0,17596,17596,17596,17596,1,1,1,1,'Steel-splitter','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4556,0,0,100,0,0,0,0,0,0,0,4098,4240,733,845,0,0,0,0,0,0,18884,18885,18885,18885,1,1,1,1,'Vejovis Wand','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (4557,0,0,100,60,60,0,0,0,0,0,4096,4238,654,715,715,747,786,0,0,0,18105,18106,18106,18106,1,1,1,1,'Orichalcum Lance','COP');
|
|
INSERT INTO `synth_recipes` VALUES (4558,0,0,100,60,57,0,0,0,0,0,4098,4240,655,715,745,791,823,0,0,0,16840,16894,16894,16894,1,1,1,1,'Ox Tongue',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (4559,0,0,100,0,0,60,0,0,0,0,4098,4240,720,1462,2288,3550,0,0,0,0,19784,19785,19785,19785,1,1,1,1,'Lanner Bow','ABYSSEA'); -- BG ?? CL, others agree 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (4560,0,0,100,51,0,0,0,60,0,0,4098,4240,654,717,719,721,932,1282,1841,0,17213,17214,17214,17214,1,1,1,1,'Staurobow','COP'); -- BG had BO 59 vs 60, JP had SM 51 (others ??) 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (4561,0,0,100,60,0,0,0,0,0,0,4098,4240,655,711,711,0,0,0,0,0,17569,17570,17570,17570,1,1,1,1,'Iron-splitter',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (5001,0,0,102,60,52,0,0,0,0,0,4098,4240,686,686,730,746,2304,0,0,0,18110,18111,18111,18111,1,1,1,1,'Mezraq','TOAU'); -- JP: SM 60, others ??, WW 102 more common 10/30/21
|
|
-- INSERT INTO `synth_recipes` VALUES (5002,0,0,102,0,255,0,0,0,0,0,4096,4238,786,3923,4019,0,0,0,0,0,21865,21866,21866,21866,1,1,1,1,'Arasy Lance','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5003,0,0,102,60,48,0,0,0,0,0,4096,4238,654,715,715,2275,2655,2735,0,0,18129,18130,18130,18130,1,1,1,1,'Dabo','WOTG'); -- BG ?? On subs, else mult src agree 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (5004,0,0,102,0,0,0,0,50,0,0,4098,4240,4019,8709,0,0,0,0,0,0,22074,22075,22075,22075,1,1,1,1,'Arasy Staff','ROV'); -- 50 BO most common, AH had post of attempt w/ 22 10/30/21
|
|
-- INSERT INTO `synth_recipes` VALUES (5005,0,0,102,0,0,0,0,0,255,0,4098,4240,932,933,4019,4028,0,0,0,0,22122,22123,22123,22123,1,1,1,1,'Arasy Bow','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5006,0,0,102,0,0,0,0,0,21,0,4098,4240,1814,17590,0,0,0,0,0,0,17592,17592,17592,17592,1,1,1,1,'Kinkobo','COP'); -- BG: AL??, others agree !WW 102 desynth?? 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (5007,0,0,103,60,30,0,0,0,0,0,4098,4240,655,715,735,781,3550,4159,0,0,19796,19797,19797,19797,1,1,1,1,'Rosschinder','ABYSSEA'); -- BG ?? the subs and used earth 10/31/21
|
|
INSERT INTO `synth_recipes` VALUES (5008,0,0,103,0,0,0,0,0,0,0,4098,4240,2534,0,0,0,0,0,0,0,2535,2535,2535,2535,1,2,3,4,'Jacaranda Lumber','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (5009,0,1986,103,0,0,0,0,0,0,0,4098,4240,1657,2534,2534,2534,0,0,0,0,2535,2535,2535,2535,3,6,9,12,'Jacaranda Lumber','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (5010,0,1986,104,0,0,0,0,0,0,0,4098,4240,1657,4018,4018,4018,0,0,0,0,4019,4019,4019,4019,3,6,9,12,'Guatambu Lumber','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (5011,0,0,104,0,60,60,0,0,0,0,4096,4238,653,746,747,786,1999,2533,2535,2535,331,331,331,331,1,1,1,1,'Winged Altar','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (5012,0,0,104,0,0,0,0,0,0,0,4098,4240,4018,0,0,0,0,0,0,0,4019,4019,4019,4019,1,2,3,4,'Guatambu Lumber','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (5013,0,0,105,0,46,0,0,0,0,0,4098,4240,704,755,1414,1414,1415,17205,0,0,19786,19787,19787,19787,1,1,1,1,'Nurigomeyumi','ABYSSEA'); -- BG had GS ?? And earth 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (5014,0,0,105,0,0,0,0,0,0,0,4099,4241,723,933,8726,8726,9075,21392,0,0,21458,21459,21459,21459,1,1,1,1,'Animator P II','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5015,0,1986,105,0,0,0,0,0,0,0,4098,4240,1657,8725,8725,8725,0,0,0,0,8726,8726,8726,8726,3,6,9,12,'Exalted Lumber','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (5016,0,0,105,0,0,0,0,0,0,0,4098,4240,8725,0,0,0,0,0,0,0,8726,8726,8726,8726,1,2,3,4,'Exalted Lumber','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (5017,0,0,105,0,0,0,0,0,0,0,4102,4244,1444,4154,4154,0,0,0,0,0,21488,21489,21489,21489,4,2,4,8,'Pristine Sap','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5018,0,0,105,0,0,0,0,0,0,0,4099,4241,723,8726,8726,9075,21392,0,0,0,21456,21457,21457,21457,1,1,1,1,'Animator P','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5019,0,1986,105,0,0,0,0,0,0,0,4098,4240,1657,9245,9245,9245,0,0,0,0,9246,9246,9246,9246,3,6,9,12,'Cypress Lumber','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5020,0,0,105,0,0,0,0,0,0,0,4098,4240,9245,0,0,0,0,0,0,0,9246,9246,9246,9246,1,2,3,4,'Cypress Lumber','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5021,0,0,106,0,0,0,0,0,0,0,4098,4240,4027,4028,8726,8726,0,0,0,0,22125,22126,22126,22126,1,1,1,1,'Exalted Bow','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5022,0,0,106,0,0,0,0,0,0,0,4098,4240,4027,8704,8726,0,0,0,0,0,22137,22138,22138,22138,1,1,1,1,'Exalted Crossbow','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5023,0,0,106,0,0,0,0,0,0,0,4098,4240,4027,8726,8748,0,0,0,0,0,21869,21870,21870,21870,1,1,1,1,'Exalted Spear','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5024,0,0,106,0,0,0,0,0,0,0,4098,4240,8726,8726,0,0,0,0,0,0,22078,22079,22079,22079,1,1,1,1,'Exalted Staff','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5025,0,0,106,0,32,0,0,0,0,0,4099,4241,745,2535,2535,2535,2535,2535,0,0,434,434,434,434,1,1,1,1,'Isula Sideboard','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (5026,0,0,106,60,60,0,0,0,0,0,4098,4240,655,655,2275,2304,2535,0,0,0,18123,18124,18124,18124,1,1,1,1,'Thalassocrat','WOTG'); -- BG had SM ?? 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (5027,0,0,108,0,50,0,0,0,0,0,4098,4240,733,733,2275,0,0,0,0,0,18628,18629,18629,18629,1,1,1,1,'Flete Pole','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (5028,0,0,109,0,0,0,0,0,0,0,4098,4240,786,2535,2535,3893,0,0,0,0,18634,18635,18635,18635,1,1,1,1,'Zamzummim Staff','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (5029,0,0,110,0,0,55,0,0,0,0,4102,4244,4013,9062,9251,9846,9870,0,0,0,25417,25418,25419,25419,1,1,1,1,'Warrior\'s Beads','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5030,0,0,110,0,0,255,0,0,0,0,4099,4241,745,829,829,1409,1462,1462,1462,1700,439,439,439,439,1,1,1,1,'Planus Table','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (5031,0,0,110,0,0,0,0,0,0,0,4099,4241,2880,3549,17108,0,0,0,0,0,18630,18631,18631,18631,1,1,1,1,'Nathushne','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (5032,0,0,110,0,0,55,0,0,0,0,4102,4244,4013,9062,9251,9852,9870,0,0,0,25453,25454,25455,25455,1,1,1,1,'Knight\'s Beads','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5033,0,0,110,0,0,55,0,0,0,0,4102,4244,4013,9062,9251,9853,9870,0,0,0,25459,25460,25461,25461,1,1,1,1,'Abyssal Beads','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5034,0,0,255,255,0,0,0,0,0,0,4096,4238,658,658,745,914,4014,0,0,0,20950,20951,20951,20951,1,1,1,1,'Terebrokath','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (5035,0,0,255,255,0,0,0,0,0,0,4098,4240,658,719,932,3933,4014,0,0,0,21249,21250,21250,21250,1,1,1,1,'Iqonde Crossbow','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (5036,0,0,255,0,0,0,0,0,0,0,4100,4242,627,627,627,3926,0,0,0,0,21468,21469,21469,21469,4,1,1,1,'Zestful Sap','TVR');
|
|
INSERT INTO `synth_recipes` VALUES (5501,0,0,111,70,0,0,0,0,0,0,4098,4240,1352,4014,9058,9130,0,0,0,0,27390,27391,27391,27391,1,1,1,1,'Bewitched Sune-Ate','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5502,0,0,112,70,0,0,0,0,0,0,4098,4240,1348,4014,9058,9130,0,0,0,0,27038,27039,27039,27039,1,1,1,1,'Bewitched Kote','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5503,0,0,113,0,0,255,0,0,0,0,4098,4240,730,730,836,3870,3977,0,0,0,21239,21240,21240,21240,1,1,1,1,'Echidna\'s Bow','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (5504,0,0,113,70,0,0,0,0,0,0,4099,4241,1350,4014,9058,9130,0,0,0,0,27214,27215,27215,27215,1,1,1,1,'Bewitched Haidate','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5505,0,0,113,0,0,0,0,0,255,0,4098,4240,3549,3927,3977,0,0,0,0,0,21200,21201,21201,21201,1,1,1,1,'Atinian Staff','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (5506,0,0,113,0,0,0,0,255,0,0,4098,4240,3925,3927,3979,0,0,0,0,0,21202,21203,21203,21203,1,1,1,1,'Balsam Staff','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (5507,0,0,114,70,0,0,0,0,0,0,4099,4241,1344,4014,9058,9130,0,0,0,0,26686,26687,26687,26687,1,1,1,1,'Bewitched Kabuto','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (5508,0,0,115,70,0,0,0,0,0,0,4098,4240,1346,4014,9058,9130,0,0,0,0,26862,26863,26863,26863,1,1,1,1,'Bewitched Togi','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5509,0,1990,255,255,0,0,0,0,0,0,4102,4244,9004,9062,9255,9843,9844,9845,9845,9856,22147,22148,22149,22149,1,1,1,1,'Scout\'s Crossbow','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5510,0,1990,255,0,0,0,0,0,255,0,4102,4244,9002,9062,9251,9841,9844,9845,9845,9849,22091,22092,22093,22093,1,1,1,1,'Sorcerer\'s Staff','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5511,0,1990,255,0,0,0,0,0,255,0,4102,4244,9002,9062,9251,9841,9844,9845,9845,9865,22097,22098,22099,22099,1,1,1,1,'Argute Staff','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5512,0,1989,255,0,0,0,0,0,0,0,4096,4238,4075,9246,9246,9246,18084,0,0,0,21871,21872,21872,21872,1,1,1,1,'Raetic Halberd','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5513,0,0,255,0,0,255,0,0,0,0,4099,4241,4078,4080,9252,17528,0,0,0,0,22076,22077,22077,22077,1,1,1,1,'Was','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5514,0,1989,255,0,0,0,255,0,0,0,4099,4241,752,752,4013,9003,9246,9246,0,0,25976,25977,25977,25977,1,1,1,1,'Oshosi Gloves','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5515,0,1989,255,0,0,0,0,0,0,0,4096,4238,4076,9246,9246,9246,17093,0,0,0,22080,22081,22081,22081,1,1,1,1,'Raetic Staff','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5516,0,1989,255,0,0,0,255,0,0,0,4099,4241,752,4013,9003,9246,9246,0,0,0,25956,25957,25957,25957,1,1,1,1,'Oshosi Leggings','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5517,0,1989,255,0,0,0,0,0,255,0,4099,4241,821,830,8754,9007,9007,9246,9246,9246,26527,26528,26528,26528,1,1,1,1,'Kendatsuba Samue','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5518,0,1989,255,0,0,0,0,0,255,0,4099,4241,821,821,8754,9007,9246,9246,0,0,25978,25979,25979,25979,1,1,1,1,'Kendatsuba Tekko','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5519,0,1989,255,0,0,0,0,0,0,0,4096,4238,4074,9246,9246,9246,17158,0,0,0,22127,22128,22128,22128,1,1,1,1,'Raetic Bow','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5520,0,1989,255,0,0,0,255,0,0,0,4099,4241,752,761,4013,9003,9246,9246,0,0,25549,25550,25550,25550,1,1,1,1,'Oshosi Mask','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5521,0,1989,255,0,0,0,0,0,255,0,4099,4241,821,830,8754,9007,9246,9246,9246,0,25891,25892,25892,25892,1,1,1,1,'Kendatsuba Hakama','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5522,0,1989,255,0,0,0,255,0,0,0,4099,4241,752,761,4013,9003,9246,9246,9246,0,25889,25890,25890,25890,1,1,1,1,'Oshosi Trousers','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5523,0,1990,255,0,0,0,0,0,255,0,4102,4244,9002,9062,9251,9841,9844,9845,9845,9860,22094,22095,22096,22096,1,1,1,1,'Summoner\'s Staff','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5524,0,1989,255,0,0,0,0,0,255,0,4099,4241,821,8754,9007,9246,9246,0,0,0,25958,25959,25959,25959,1,1,1,1,'Kendatsuba Sune-Ate','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5525,0,0,255,0,255,0,0,0,0,0,4099,4241,4080,4081,9250,17073,0,0,0,0,22021,22022,22022,22022,1,1,1,1,'Ames','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5526,0,1989,255,0,0,0,255,0,0,0,4099,4241,752,761,4013,9003,9003,9246,9246,9246,26525,26526,26526,26526,1,1,1,1,'Oshosi Vest','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5527,0,1989,255,0,0,0,0,0,255,0,4099,4241,821,830,8754,9007,9246,9246,0,0,25551,25552,25552,25552,1,1,1,1,'Kendatsuba Jinpachi','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (5528,0,1989,255,0,0,0,0,0,0,0,4096,4238,4074,9246,9247,17333,17333,17333,0,0,21310,21310,21310,21310,33,33,33,33,'Raetic Arrow','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (9901,1,0,28,0,0,0,0,0,0,0,4100,4242,15289,0,0,0,0,0,0,0,856,850,850,850,1,2,3,4,'Bolt Belt (desynth)','COP'); -- based on synth - results varied, scaled HQ's 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9902,1,0,2,0,0,0,0,0,0,0,4100,4242,17345,0,0,0,0,0,0,0,917,708,708,708,1,1,1,1,'Flute (desynth)',NULL); -- based on synth lvl 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9903,1,0,18,0,0,0,0,0,0,0,4100,4242,16833,0,0,0,0,0,0,0,715,817,649,649,1,1,1,1,'Bronze Spear (desynth)',NULL); -- use synth lvl, xiclopedia HQ results
|
|
INSERT INTO `synth_recipes` VALUES (9904,1,0,54,0,0,0,0,0,0,0,4100,4242,17030,0,0,0,0,0,0,0,649,649,717,717,1,1,1,1,'Great Club (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9905,1,0,23,0,0,0,0,0,0,0,4100,4242,17051,0,0,0,0,0,0,0,841,713,713,713,1,1,1,1,'Yew Wand (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9906,1,0,102,0,0,0,0,0,0,0,4100,4242,17592,0,0,0,0,0,0,0,771,771,1228,1225,1,1,4,4,'Kinkobo (desynth)','COP'); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9907,1,0,11,0,0,0,0,0,0,0,4100,4242,12984,0,0,0,0,0,0,0,715,715,850,850,1,1,1,1,'Ash Clogs (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9908,1,0,19,0,0,0,0,0,0,0,4100,4242,17089,0,0,0,0,0,0,0,714,714,714,882,1,1,2,1,'Holly Staff (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9909,1,0,24,0,0,0,0,0,0,0,4100,4242,17154,0,0,0,0,0,0,0,850,820,820,820,1,1,1,1,'Wrapped Bow (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9910,1,0,46,0,0,0,0,0,0,0,4100,4242,17097,0,0,0,0,0,0,0,707,707,707,707,1,1,2,2,'Elm Pole (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9911,1,0,15,0,0,0,0,0,0,0,4100,4242,17152,0,0,0,0,0,0,0,817,712,712,712,4,1,1,1,'Shortbow (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9912,1,0,50,0,0,0,0,0,0,0,4100,4242,17523,0,0,0,0,0,0,0,651,711,711,711,1,1,1,1,'Quarterstaff (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9913,1,0,11,0,0,0,0,0,0,0,4100,4242,12290,0,0,0,0,0,0,0,708,650,708,708,1,1,2,2,'Maple Shield (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9914,1,0,20,0,0,0,0,0,0,0,4100,4242,17347,0,0,0,0,0,0,0,917,714,714,714,1,1,1,1,'Piccolo (desynth)',NULL); -- based on synth, kept BG HQ results 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9915,1,0,99,0,0,0,0,0,0,0,4100,4242,17590,0,0,0,0,0,0,0,771,771,1228,1228,1,1,6,6,'Primate Staff (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (9916,1,0,89,0,0,0,0,0,0,0,4100,4242,17101,0,0,0,0,0,0,0,720,720,720,720,1,1,2,2,'Mythic Pole (desynth)',NULL); -- used synth lvl, mirrored other pole results 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9917,1,0,70,0,0,0,0,0,0,0,4100,4242,12359,0,0,0,0,0,0,0,1234,1234,1234,1234,4,6,6,6,'Hickory Shield (desynth)','COP'); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9918,1,0,34,0,0,0,0,0,0,0,4100,4242,12292,0,0,0,0,0,0,0,717,717,651,651,1,2,1,1,'Mahogany Shield (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (9919,1,0,255,0,0,0,0,0,0,0,4100,4242,17292,0,0,0,0,0,0,0,715,718,819,819,1,1,1,1,'Long Boomerang (desynth)',NULL); -- no desynth lvl, no synth for subst 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9920,1,0,32,0,0,0,0,0,0,0,4100,4242,17052,0,0,0,0,0,0,0,710,710,847,847,1,1,1,1,'Chestnut Wand (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9921,1,0,56,0,0,0,0,0,0,0,4100,4242,17388,0,0,0,0,0,0,0,707,707,820,820,1,1,1,1,'Fastwater F. Rod (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9922,1,0,59,0,0,0,0,0,0,0,4100,4242,17219,0,0,0,0,0,0,0,932,717,1226,1226,1,1,4,6,'Arbalest (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (9923,1,0,79,0,0,0,0,0,0,0,4100,4242,17100,0,0,0,0,0,0,0,719,719,719,719,1,1,2,2,'Ebony Pole (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9924,1,0,67,0,0,0,0,0,0,0,4100,4242,16839,0,0,0,0,0,0,0,715,822,1228,1228,1,1,4,6,'Partisan (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9925,1,0,27,0,0,0,0,0,0,0,4100,4242,17354,0,0,0,0,0,0,0,927,927,927,927,2,2,2,2,'Harp (desynth)',NULL); -- Level based on level to synth, BGWiki reports HQ of only 1 whisker?
|
|
INSERT INTO `synth_recipes` VALUES (9926,1,0,37,0,0,0,0,0,0,0,4100,4242,17348,0,0,0,0,0,0,0,917,917,716,716,1,1,1,1,'Traversiere (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (9927,1,0,255,0,0,0,0,0,0,0,4100,4242,17117,0,0,0,0,0,0,0,714,714,714,788,1,1,1,1,'Hypno Staff (desynth)',NULL); -- no desynth lvl, no synth for subst 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9928,1,0,43,0,0,0,0,0,0,0,4100,4242,17218,0,0,0,0,0,0,0,927,716,716,716,1,1,1,1,'Zamburak (desynth)',NULL); -- Level based on level to synth
|
|
-- INSERT INTO `synth_recipes` VALUES (9929,1,0,255,0,0,0,0,0,0,0,4100,4242,17170,0,0,0,0,0,0,0,712,816,816,816,1,3,3,3,'Speed Bow (desynth)',NULL); -- no desynth lvl, no synth for subst 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9930,1,0,74,0,0,0,0,0,0,0,4100,4242,17014,0,0,0,0,0,0,0,718,822,822,822,1,1,1,1,'Hume Fishing Rod (desynth)','COP'); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9931,1,0,44,0,0,0,0,0,0,0,4100,4242,17040,0,0,0,0,0,0,0,716,716,716,716,1,1,1,1,'Warp Cudgel (desynth)','COP'); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9932,1,0,68,0,0,0,0,0,0,0,4100,4242,17099,0,0,0,0,0,0,0,717,717,717,717,1,1,2,2,'Mahogany Pole (desynth)',NULL); -- Level based on level to synth
|
|
-- INSERT INTO `synth_recipes` VALUES (9933,1,0,255,0,0,0,0,0,0,0,4100,4242,17104,0,0,0,0,0,0,0,715,715,715,715,1,1,1,1,'Onion Staff (desynth)',NULL); -- no desynth lvl, no synth for subst 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9934,1,0,14,0,0,0,0,0,0,0,4100,4242,17050,0,0,0,0,0,0,0,712,712,712,846,1,1,1,1,'Willow Wand (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9935,1,0,100,0,0,0,0,0,0,0,4100,4242,17596,0,0,0,0,0,0,0,711,711,711,1229,1,2,2,6,'Steel-splitter (desynth)','COP'); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9936,1,0,23,0,0,0,0,0,0,0,4100,4242,17353,0,0,0,0,0,0,0,708,927,927,927,1,1,2,2,'Maple Harp (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9937,1,0,93,0,0,0,0,0,0,0,4100,4242,17205,0,0,0,0,0,0,0,821,927,1620,720,1,1,1,2,'Gendawa (desynth)','COP'); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9938,1,0,88,0,0,0,0,0,0,0,4100,4242,17221,0,0,0,0,0,0,0,718,927,654,654,1,1,1,1,'Rpt. Crossbow (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9939,1,0,58,0,0,0,0,0,0,0,4100,4242,17164,0,0,0,0,0,0,0,816,933,932,932,3,1,1,1,'War Bow (desynth)',NULL); -- Level based on level to synth
|
|
-- INSERT INTO `synth_recipes` VALUES (9940,1,0,255,0,0,0,0,0,0,0,4100,4242,12316,0,0,0,0,0,0,0,708,650,807,809,1,1,1,1,'Fish Scale Shield (desynth)',NULL); -- no desynth lvl, no synth for subst 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9941,1,0,47,0,0,0,0,0,0,0,4100,4242,17053,0,0,0,0,0,0,0,718,845,845,845,1,1,1,1,'Rose Wand (desynth)',NULL); -- Level based on level to synth
|
|
-- INSERT INTO `synth_recipes` VALUES (9942,1,0,255,0,0,0,0,0,0,0,4100,4242,17349,0,0,0,0,0,0,0,917,792,792,792,1,1,1,1,'Faerie Piccolo (desynth)',NULL); -- no desynth lvl, no synth for subst 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9943,1,0,50,0,0,0,0,0,0,0,4100,4242,12406,0,0,0,0,0,0,0,716,716,716,716,1,1,1,1,'Coated Shield (desynth)','COP'); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9944,1,0,65,0,0,0,0,0,0,0,4100,4242,17387,0,0,0,0,0,0,0,816,816,711,711,1,1,1,1,'Tarutaru F. Rod (desynth)',NULL); -- Level based on level to synth
|
|
-- INSERT INTO `synth_recipes` VALUES (9945,1,0,255,0,0,0,0,0,0,0,4100,4242,12338,0,0,0,0,0,0,0,930,717,809,809,1,1,1,1,'Frost Shield (desynth)',NULL); -- no desynth lvl, no synth for subst 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9946,1,0,70,0,0,0,0,0,0,0,4098,4240,2336,0,0,0,0,0,0,0,730,730,804,804,1,1,1,1,'Soulflayer Staff (desynth)','TOAU'); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (9947,1,0,74,0,0,0,0,0,0,0,4100,4242,12295,0,0,0,0,0,0,0,651,718,662,662,1,1,1,1,'Round Shield (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9948,1,0,16,0,0,0,0,0,0,0,4100,4242,17153,0,0,0,0,0,0,0,712,712,712,712,1,1,1,1,'Self Bow (desynth)',NULL); -- Level based on level to synth
|
|
-- INSERT INTO `synth_recipes` VALUES (9949,1,0,255,0,0,0,0,0,0,0,4100,4242,17134,0,0,0,0,0,0,0,715,715,715,715,1,1,1,1,'Dolphin Staff (desynth)',NULL); -- no desynth lvl, no synth for subst 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9950,1,0,27,0,0,0,0,0,0,0,4100,4242,17076,0,0,0,0,0,0,0,712,712,712,712,1,1,1,1,'Earth Wand (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (9951,1,0,54,0,0,0,0,0,0,0,4100,4242,17415,0,0,0,0,0,0,0,717,717,1226,1226,1,1,4,6,'Shellbuster (desynth)',NULL); -- xiclopedia data, others ?? lvl 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (9952,1,0,6,0,0,0,0,0,0,0,4100,4242,17049,0,0,0,0,0,0,0,708,708,840,840,1,1,1,1,'Maple Wand (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9953,1,0,100,0,0,0,0,0,0,0,4100,4242,17569,0,0,0,0,0,0,0,711,711,711,1229,1,1,2,6,'Iron-splitter (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (9954,1,0,18,0,0,0,0,0,0,0,4100,4242,12985,0,0,0,0,0,0,0,850,850,850,850,1,1,1,1,'Holly Clogs (desynth)',NULL); -- Level based on level to synth
|
|
-- INSERT INTO `synth_recipes` VALUES (9955,1,0,255,0,0,0,0,0,0,0,4100,4242,12338,0,0,0,0,0,0,0,809,930,851,717,1,1,1,1,'Frost Shield (desynth)',NULL); -- Dupe entry? diff results on ID 9945? 10/30/21
|
|
-- INSERT INTO `synth_recipes` VALUES (9956,1,0,255,0,0,0,0,0,0,0,4100,4242,17356,0,0,0,0,0,0,0,927,927,717,797,1,1,1,1,'Lamia Harp (desynth)',NULL); -- no desynth lvl, no synth for subst 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (10001,0,0,0,1,0,0,0,0,0,0,4096,4238,656,656,656,656,0,0,0,0,649,649,649,649,1,1,1,1,'Bronze Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10002,0,0,0,2,0,0,0,0,0,0,4096,4238,640,640,640,641,0,0,0,0,649,649,649,649,1,1,1,1,'Bronze Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10003,0,0,0,2,0,0,0,0,0,0,4102,4244,14117,0,0,0,0,0,0,0,12960,12951,12951,12951,1,1,1,1,'Bronze Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10004,0,0,0,3,0,0,0,0,0,0,4096,4238,648,649,0,0,0,0,0,0,16448,16492,16492,16492,1,1,1,1,'Bronze Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10005,0,0,0,3,0,0,0,0,0,0,4096,4238,641,1232,1232,1232,1232,1232,1232,0,649,649,649,649,1,1,1,1,'Bronze Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10006,0,0,0,4,0,0,3,0,0,0,4099,4241,660,850,850,0,0,0,0,0,12448,12463,12463,12463,1,1,1,1,'Bronze Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10007,0,0,0,4,0,0,0,0,0,0,4102,4244,14242,0,0,0,0,0,0,0,12832,12823,12823,12823,1,1,1,1,'Bronze Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10008,0,0,0,4,0,0,0,0,0,0,4096,4238,649,0,0,0,0,0,0,0,660,660,660,660,1,1,1,1,'Bronze Sheet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10009,0,1995,0,4,0,0,0,0,0,0,4096,4238,649,649,649,649,649,649,2144,0,660,660,660,660,6,6,6,6,'Bronze Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (10010,0,0,0,5,0,0,0,0,0,0,4096,4238,649,715,0,0,0,0,0,0,16465,16491,16491,16491,1,1,1,1,'Bronze Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10011,0,0,2,5,0,0,0,0,0,0,4096,4238,649,708,0,0,0,0,0,0,605,605,605,605,1,2,3,4,'Pickaxe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10012,0,0,2,5,0,0,0,0,0,0,4096,4238,649,715,824,0,0,0,0,0,1020,1020,1020,1020,1,2,3,4,'Sickle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10013,0,0,0,5,0,0,3,0,0,0,4099,4241,660,850,0,0,0,0,0,0,12704,12695,12695,12695,1,1,1,1,'Bronze Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10014,0,0,0,5,0,0,0,0,0,0,4096,4238,8819,0,0,0,0,0,0,0,16465,16465,16465,16465,1,1,1,1,'Bronze Knife','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (10015,0,0,0,6,0,0,0,0,0,0,4096,4238,649,649,850,0,0,0,0,0,16535,16623,16623,16623,1,1,1,1,'Bronze Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10016,0,0,2,6,0,0,0,0,0,0,4096,4238,649,660,715,0,0,0,0,0,16390,16440,16440,16440,1,1,1,1,'Bronze Knuckles',NULL); -- mult. sources use only 1 sheet 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (10017,0,0,2,7,0,0,0,0,0,0,4096,4238,649,649,715,0,0,0,0,0,16640,16646,16646,16646,1,1,1,1,'Bronze Axe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10018,1,0,0,7,0,0,0,0,0,0,4100,4242,12960,0,0,0,0,0,0,0,649,649,850,850,1,2,1,2,'Bronze Leggings (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10019,0,0,0,7,0,0,3,0,0,0,4099,4241,660,660,850,850,0,0,0,0,12960,12951,12951,12951,1,1,1,1,'Bronze Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10020,0,0,3,8,0,0,0,0,0,0,4096,4238,649,649,708,0,0,0,0,0,1021,1021,1021,1021,1,2,3,4,'Hatchet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10021,0,0,0,8,0,0,0,2,0,0,4096,4238,649,649,893,0,0,0,0,0,16530,16624,16624,16624,1,1,1,1,'Xiphos',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10022,0,0,6,8,0,0,0,0,0,0,4096,4238,649,649,715,824,0,0,0,0,16768,16778,16778,16778,1,1,1,1,'Bronze Zaghnal',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10023,0,0,0,9,0,0,0,0,0,0,4098,4240,660,850,0,0,0,0,0,0,12432,12487,12487,12487,1,1,1,1,'Faceguard',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10024,0,0,0,9,0,0,3,0,0,0,4099,4241,660,824,850,0,0,0,0,0,12832,12823,12823,12823,1,1,1,1,'Bronze Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10025,0,0,0,10,0,0,0,0,0,0,4096,4238,649,649,649,0,0,0,0,0,17034,17086,17086,17086,1,1,1,1,'Bronze Mace',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10026,0,0,0,10,0,0,0,0,0,0,4098,4240,660,0,0,0,0,0,0,0,672,672,672,672,1,1,1,1,'Bronze Scales',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10027,0,0,0,10,0,0,0,0,0,0,4096,4238,8820,0,0,0,0,0,0,0,17034,17034,17034,17034,1,1,1,1,'Bronze Mace','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (10501,0,0,0,11,0,0,3,0,0,0,4099,4241,660,660,660,850,850,0,0,0,12576,12607,12607,12607,1,1,1,1,'Bronze Harness',NULL); -- mult sources agree 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (10502,0,0,0,11,0,0,0,0,0,0,4099,4241,672,672,818,12696,0,0,0,0,12688,12768,12768,12768,1,1,1,1,'Scale Finger Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10503,0,0,0,12,0,0,0,0,0,0,4096,4238,648,649,649,0,0,0,0,0,17059,17111,17111,17111,1,1,1,1,'Bronze Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10504,0,0,0,13,0,0,0,0,0,0,4099,4241,672,672,818,12952,0,0,0,0,12944,13024,13024,13024,1,1,1,1,'Scale Greaves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10505,0,0,0,14,0,0,0,0,0,0,4098,4240,649,0,0,0,0,0,0,0,1211,1211,1211,1211,6,8,10,12,'Bronze Bolt Heads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10506,0,0,0,14,0,0,0,0,0,0,4096,4238,649,649,710,0,0,0,0,0,17042,17144,17144,17144,1,1,1,1,'Bronze Hammer',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10507,0,0,0,15,0,0,0,0,0,0,4102,4244,16447,0,0,0,0,0,0,0,16450,16736,16736,16736,1,1,1,1,'Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10508,0,0,0,15,0,0,5,0,0,0,4099,4241,672,672,818,12824,0,0,0,0,12816,12863,12863,12863,1,1,1,1,'Scale Cuisses',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10509,0,0,0,15,0,0,0,0,0,0,4096,4238,641,641,641,641,0,0,0,0,659,659,659,659,1,1,1,1,'Tin Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10510,0,0,0,15,0,0,0,0,0,0,4096,4238,651,714,0,0,0,0,0,0,8740,8740,8740,8740,6,8,10,12,'Pizza Cutter','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (10511,0,0,0,15,0,0,0,0,0,0,4096,4238,8821,0,0,0,0,0,0,0,659,659,659,659,1,1,1,1,'Tin Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (10512,0,0,4,16,0,0,0,0,0,0,4098,4240,649,715,0,0,0,0,0,0,17336,17336,17336,17336,33,66,99,99,'Crossbow Bolt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10513,0,0,0,17,0,0,0,0,0,0,4099,4241,672,672,672,672,818,850,12568,0,12560,12661,12661,12661,1,1,1,1,'Scale Mail',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10514,1,0,0,17,0,0,0,0,0,0,4100,4242,16667,0,0,0,0,0,0,0,706,649,806,806,1,2,1,1,'Light Axe (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10515,0,0,0,18,0,0,0,0,0,0,4096,4238,660,660,715,0,0,0,0,0,12299,12325,12325,12325,1,1,1,1,'Aspis',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10516,1,0,0,19,0,0,0,0,0,0,4100,4242,508,0,0,0,0,0,0,0,649,651,652,652,1,2,1,1,'Goblin Helm (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10517,0,0,0,19,0,19,0,0,0,0,4096,4238,649,649,649,649,817,825,825,834,5,5,5,5,1,1,1,1,'Bronze Bed',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10518,1,0,0,19,0,0,0,0,0,0,4100,4242,507,0,0,0,0,0,0,0,649,651,652,652,3,2,1,1,'Goblin Mail (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10519,0,0,0,20,0,0,0,0,0,0,4098,4240,648,651,0,0,0,0,0,0,1216,1216,1216,1216,6,8,10,12,'Iron Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10520,0,1992,0,20,0,0,0,0,0,0,4096,4238,643,643,643,643,1644,1645,1647,0,2134,2134,2134,2134,1,1,1,1,'Lucent Iron Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (10521,0,1992,0,20,0,0,0,0,0,0,4096,4238,643,643,643,643,1642,1645,1647,0,1681,1681,1681,1681,1,1,1,1,'Light Steel Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (10522,0,0,0,20,0,0,0,0,0,0,4098,4240,8822,0,0,0,0,0,0,0,1216,1216,1216,1216,6,6,6,6,'Iron Arrowheads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (10523,0,0,0,20,0,0,0,0,0,0,4096,4238,640,640,642,1650,0,0,0,0,1635,1635,1635,1635,1,1,1,1,'Paktong Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (10524,0,0,0,20,0,0,0,0,0,0,4096,4238,643,643,643,643,0,0,0,0,651,652,652,652,1,1,1,1,'Iron Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (10525,0,0,0,20,0,0,0,0,0,0,4096,4238,649,651,0,0,0,0,0,0,16450,16736,16736,16736,1,1,1,1,'Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11001,1,0,0,20,0,0,0,0,0,0,4098,4240,508,0,0,0,0,0,0,0,660,662,662,662,1,1,1,1,'Goblin Helm (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11002,0,0,0,21,0,0,0,0,0,0,4096,4238,651,707,0,0,0,0,0,0,16466,16614,16614,16614,1,1,1,1,'Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11003,0,0,6,21,0,0,0,0,0,0,4096,4238,651,662,714,0,0,0,0,0,16392,16437,16437,16437,1,1,1,1,'Metal Knuckles',NULL); -- JPWiki data, other ??WW 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11004,1,0,0,21,0,0,0,0,0,0,4098,4240,507,0,0,0,0,0,0,0,660,662,662,662,3,1,1,1,'Goblin Mail (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11005,0,0,0,21,0,0,0,0,0,0,4096,4238,643,1234,1234,1234,1234,1234,1234,0,651,652,652,652,1,1,1,1,'Iron Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11006,0,0,0,21,0,0,10,0,0,0,4099,4241,850,1654,1654,1655,0,0,0,0,15288,15288,15288,15288,1,1,1,1,'Pellet Belt','COP'); -- mult. sources use earth 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11007,0,0,0,22,0,0,0,0,0,0,4098,4240,652,818,0,0,0,0,0,0,17301,17301,17301,17301,33,66,99,99,'Shuriken',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11008,0,1995,0,22,0,0,0,0,0,0,4096,4238,651,651,651,651,651,651,2144,0,662,662,662,662,6,6,6,6,'Iron Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (11009,0,0,0,22,0,0,0,0,0,0,4096,4238,651,0,0,0,0,0,0,0,662,662,662,662,1,1,1,1,'Iron Sheet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11010,0,0,6,23,0,0,0,0,0,0,4096,4238,649,649,651,708,0,0,0,0,16704,16716,16716,16716,1,1,1,1,'Butterfly Axe',NULL); -- mult. src agree 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11011,0,0,0,23,0,0,0,0,0,0,4098,4240,674,0,0,0,0,0,0,0,1170,1170,1170,1170,33,66,99,99,'Makibishi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11012,0,0,0,23,0,0,0,0,0,0,4096,4238,651,662,0,0,0,0,0,0,16406,16444,16444,16444,1,1,1,1,'Baghnakhs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11013,0,0,0,24,6,0,0,0,0,0,4096,4238,650,652,652,0,0,0,0,0,16552,16625,16625,16625,1,1,1,1,'Scimitar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11014,0,0,0,24,0,0,0,0,0,0,4096,4238,651,651,651,0,0,0,0,0,17035,17145,17145,17145,1,1,1,1,'Mace',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11015,0,0,0,24,0,0,0,0,0,0,4096,4238,651,712,0,0,0,0,0,0,21923,21924,21924,21924,1,1,1,1,'Debahocho','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (11016,0,0,0,25,0,0,0,0,0,0,4096,4238,8823,0,0,0,0,0,0,0,16565,16565,16565,16565,1,1,1,1,'Spatha','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (11017,0,0,0,25,0,0,0,0,0,0,4096,4238,651,652,0,0,0,0,0,0,16455,16737,16737,16737,1,1,1,1,'Baselard',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11018,0,0,0,25,0,0,0,0,0,0,4096,4238,649,649,649,852,0,0,0,0,16565,16627,16627,16627,1,1,1,1,'Spatha',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11019,0,0,0,25,0,0,0,0,0,0,4096,4238,651,651,852,0,0,0,0,0,16536,16626,16626,16626,1,1,1,1,'Iron Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11020,0,1993,0,26,0,0,0,0,0,0,4096,4238,2231,2233,16704,0,0,0,0,0,18488,18488,18488,18488,1,1,1,1,'Assailant\'s Axe','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (11021,0,0,0,26,0,0,0,0,0,0,4096,4238,651,16746,0,0,0,0,0,0,17976,17977,17977,17977,1,1,1,1,'Windurstian Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11022,0,0,4,26,0,0,0,0,0,0,4096,4238,651,651,714,0,0,0,0,0,16643,16663,16663,16663,1,1,1,1,'Battleaxe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11023,0,0,0,26,0,0,0,0,0,0,4098,4240,662,0,0,0,0,0,0,0,674,674,674,674,1,1,1,1,'Iron Scales',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11024,0,0,9,27,26,0,0,0,0,0,4096,4238,651,662,708,2418,0,0,0,0,123,123,123,123,1,1,1,1,'Athenienne','TOAU'); -- mult. src but 2 flags on subs 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11025,0,0,0,27,0,0,0,0,0,0,4096,4238,651,651,651,848,0,0,0,0,16566,16628,16628,16628,1,1,1,1,'Longsword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11026,0,0,0,28,0,0,0,0,0,0,4096,4238,652,652,744,0,0,0,0,0,16517,16633,16633,16633,1,1,1,1,'Degen',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11027,0,0,0,28,0,0,0,0,0,0,4096,4238,651,651,714,824,0,0,0,0,16770,16779,16779,16779,1,1,1,1,'Zaghnal',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11028,0,0,0,28,7,0,0,0,0,0,4096,4238,651,744,0,0,0,0,0,0,16512,16632,16632,16632,1,1,1,1,'Bilbo',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11029,0,0,0,29,0,0,0,0,0,0,4098,4240,662,674,850,0,0,0,0,0,13871,13872,13872,13872,1,1,1,1,'Iron Visor',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11030,0,0,0,29,0,0,0,0,0,0,4099,4241,661,662,0,0,0,0,0,0,12424,12524,12524,12524,1,1,1,1,'Iron Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11031,0,0,0,29,0,0,0,8,0,0,4096,4238,651,651,895,0,0,0,0,0,16532,16608,16608,16608,1,1,1,1,'Gladius',NULL); -- mult. src but 2 flags on subs 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11032,0,0,0,30,0,0,0,0,0,0,4096,4238,651,653,0,0,0,0,0,0,16451,16738,16738,16738,1,1,1,1,'Mythril Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11033,0,0,0,30,0,0,0,0,0,0,4098,4240,652,0,0,0,0,0,0,0,17298,17298,17298,17298,8,12,16,20,'Tathlum',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11034,0,0,0,30,0,0,0,0,0,0,4096,4238,652,852,0,0,0,0,0,0,16896,16914,16914,16914,1,1,1,1,'Kunai',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11035,0,0,0,30,0,0,0,0,0,0,4099,4241,651,651,0,0,0,0,0,0,680,680,680,680,1,2,3,4,'Iron Chain',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11036,0,0,0,30,0,0,0,0,0,0,4098,4240,8824,0,0,0,0,0,0,0,17298,17298,17298,17298,8,8,8,8,'Tathlum','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (11037,0,1994,0,30,0,0,0,0,0,0,4099,4241,651,651,651,651,651,651,2143,0,680,680,680,680,3,6,9,12,'Iron Chain','COP');
|
|
INSERT INTO `synth_recipes` VALUES (11501,0,0,0,31,0,0,5,0,0,0,4099,4241,680,680,851,0,0,0,0,0,12680,12769,12769,12769,1,1,1,1,'Chain Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11502,0,0,0,31,0,0,0,0,0,0,4099,4241,674,674,818,12696,0,0,0,0,14001,14002,14002,14002,1,1,1,1,'Iron Finger Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11503,0,0,8,31,0,0,0,0,0,0,4096,4238,651,651,653,714,0,0,0,0,16705,16717,16717,16717,1,1,1,1,'Greataxe',NULL); -- JPWiki 8WW, xiclopedia 15WW - other similar holly subs <10
|
|
INSERT INTO `synth_recipes` VALUES (11504,1,0,0,31,0,0,0,0,0,0,4100,4242,12680,0,0,0,0,0,0,0,851,851,651,651,1,2,3,4,'Chain Mittens (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11505,0,0,0,31,0,0,0,0,0,0,4096,4238,649,651,651,0,0,0,0,0,17060,17146,17146,17146,1,1,1,1,'Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11506,0,0,0,31,8,0,0,0,0,0,4096,4238,653,744,0,0,0,0,0,0,16513,16617,16617,16617,1,1,1,1,'Tuck',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11507,0,0,6,32,0,0,7,0,0,0,4096,4238,652,652,652,652,715,852,0,0,16583,16638,16638,16638,1,1,1,1,'Claymore',NULL); -- JP:also had alt w/iron, all steel more common 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11508,0,0,3,32,6,0,0,0,0,0,4096,4238,650,652,715,0,0,0,0,0,17942,17943,17943,17943,1,1,1,1,'Tomahawk','COP'); -- JP とまほーく SM32,GS6,WW3-old posts: skillups on 0 subs 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11509,1,0,0,32,0,0,0,0,0,0,4100,4242,16583,0,0,0,0,0,0,0,715,852,651,652,1,1,3,4,'Claymore (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11510,0,0,0,32,0,0,0,0,0,0,4096,4238,651,16571,0,0,0,0,0,0,17670,17671,17671,17671,1,1,1,1,'Temple Knight Army Sword +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11511,0,0,0,32,0,0,0,8,0,0,4096,4238,652,894,0,0,0,0,0,0,16411,16445,16445,16445,1,1,1,1,'Claws',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11512,0,0,7,32,0,0,0,0,0,0,4096,4238,651,651,651,714,824,0,0,0,16774,16781,16781,16781,1,1,1,1,'Scythe',NULL); -- JP サイズ SM32,WW7-old posts crafting on 5 WW 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11513,0,0,0,33,0,0,0,0,0,0,4096,4238,652,710,852,0,0,0,0,0,16473,16748,16748,16748,1,1,1,1,'Kukri',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11514,0,0,0,33,0,0,0,0,0,0,4096,4238,651,16516,0,0,0,0,0,0,17666,17667,17667,17667,1,1,1,1,'Junior Musketeer\'s Tuck +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11515,0,0,0,33,0,0,0,0,0,0,4102,4244,16655,0,0,0,0,0,0,0,17955,17955,17955,17955,1,1,1,1,'Plain Pick',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11516,0,0,0,33,0,0,6,0,0,0,4099,4241,662,680,851,0,0,0,0,0,12936,13025,13025,13025,1,1,1,1,'Greaves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11517,0,0,4,33,0,0,7,0,0,0,4096,4238,648,651,651,651,657,715,818,852,16966,16981,16981,16981,1,1,1,1,'Tachi',NULL); -- mult. src but 2 flags on subs 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11518,0,0,0,31,0,0,0,0,0,0,4102,4244,16606,0,0,0,0,0,0,0,16593,16593,16593,16593,1,1,1,1,'Plain Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11519,0,0,0,34,0,0,0,0,0,0,4102,4244,12522,0,0,0,0,0,0,0,12450,12525,12525,12525,1,1,1,1,'Padded Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11520,0,0,0,34,0,0,0,0,0,0,4096,4238,653,710,0,0,0,0,0,0,16467,16739,16739,16739,1,1,1,1,'Mythril Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11521,0,0,0,34,0,0,0,0,0,0,4102,4244,12522,0,0,0,0,0,0,0,16110,16110,16110,16110,1,1,1,1,'Plain Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11522,0,0,0,34,0,0,0,0,0,0,4096,4238,651,651,707,0,0,0,0,0,17044,17115,17115,17115,1,1,1,1,'Warhammer',NULL); -- 3 src agree - no ref why BG/AH add ??WW MAR_2013
|
|
INSERT INTO `synth_recipes` VALUES (11523,0,0,0,35,0,0,7,0,0,0,4099,4241,680,680,826,851,851,0,0,0,12808,12890,12890,12890,1,1,1,1,'Chain Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11524,0,0,0,35,0,0,0,0,0,0,4096,4238,2134,16774,0,0,0,0,0,0,18062,18062,18062,18062,1,1,1,1,'Lucent Scythe','COP');
|
|
INSERT INTO `synth_recipes` VALUES (11525,0,0,0,35,0,0,5,0,0,0,4099,4241,674,674,818,12824,0,0,0,0,14243,14244,14244,14244,1,1,1,1,'Iron Cuisses',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11526,0,0,0,35,0,0,0,0,0,0,4096,4238,653,16745,0,0,0,0,0,0,17974,17975,17975,17975,1,1,1,1,'Bastokan Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11527,0,0,0,35,0,0,0,0,0,0,4096,4238,8825,0,0,0,0,0,0,0,12300,12300,12300,12300,1,1,1,1,'Targe','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (11528,0,0,0,36,0,0,2,0,0,0,4099,4241,674,674,818,12952,0,0,0,0,14118,14119,14119,14119,1,1,1,1,'Iron Greaves',NULL); -- 2 src agree, old talk: no skillup @ 5LE, others ??LE 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11529,0,0,0,36,0,0,0,0,0,0,4096,4238,1681,0,0,0,0,0,0,0,2008,2008,2008,2008,1,1,1,1,'Lt. Steel Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (11530,0,0,0,36,0,0,0,0,0,0,4096,4238,652,0,0,0,0,0,0,0,666,666,666,666,1,1,1,1,'Steel Sheet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11531,0,0,0,36,0,0,0,0,0,0,4096,4238,662,662,714,0,0,0,0,0,12300,12335,12335,12335,1,1,1,1,'Targe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11532,0,0,8,36,25,0,0,0,0,0,4096,4238,650,652,652,653,714,0,0,0,18214,18215,18215,18215,1,1,1,1,'Voulge','COP'); -- mult. src but 2 flags on subs 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (11533,0,1995,0,36,0,0,0,0,0,0,4096,4238,652,652,652,652,652,652,2144,0,666,666,666,666,6,6,6,6,'Steel Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (11534,0,1995,0,36,0,0,0,0,0,0,4096,4238,1681,1681,1681,1681,1681,1681,2144,0,2008,2008,2008,2008,6,6,6,6,'Lt. Steel Sheet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (11535,0,0,11,36,0,0,7,0,0,0,4096,4238,648,651,657,707,816,852,0,0,16900,16918,16918,16918,1,1,1,1,'Wakizashi',NULL); -- 2 src. agree, others ??subs
|
|
INSERT INTO `synth_recipes` VALUES (11536,0,0,0,37,0,0,0,0,0,0,4096,4238,652,652,660,851,0,0,0,0,16399,16695,16695,16695,1,1,1,1,'Katars',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11537,1,0,0,37,0,0,0,0,0,0,4101,4243,1162,0,0,0,0,0,0,0,660,660,933,933,1,1,9,12,'Tonberry Lantern (desynth)','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (11538,0,0,0,37,0,0,14,0,0,0,4096,4238,660,662,848,850,0,0,0,0,14329,14332,14332,14332,1,1,1,1,'Eisendiechlings','COP'); -- 2 src. agree, others ??LE
|
|
INSERT INTO `synth_recipes` VALUES (11539,0,0,0,37,0,0,0,0,0,0,4096,4238,651,16930,0,0,0,0,0,0,16946,16947,16947,16947,1,1,1,1,'Windurstian Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11540,0,0,0,37,0,0,0,0,0,0,4099,4241,674,674,674,674,818,850,12568,0,13783,13784,13784,13784,1,1,1,1,'Iron Scale Mail',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11541,0,0,0,37,0,0,0,0,0,0,4096,4238,652,652,851,2848,0,0,0,0,18766,18772,18772,18772,1,1,1,1,'Tyro Katars','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (11542,0,0,0,37,0,0,8,0,0,0,4099,4241,662,680,680,680,680,851,0,0,12552,12662,12662,12662,1,1,1,1,'Chainmail',NULL); -- Only JPWiki had sub lvl
|
|
INSERT INTO `synth_recipes` VALUES (11543,0,0,0,38,15,0,0,0,0,0,4096,4238,651,652,793,0,0,0,0,0,16460,16749,16749,16749,1,1,1,1,'Kris',NULL); -- 2 src. agree, others ??GS
|
|
INSERT INTO `synth_recipes` VALUES (11544,0,0,0,38,12,0,0,0,0,0,4096,4238,648,662,662,744,850,914,0,0,15167,15171,15171,15171,1,1,1,1,'Eisenschaller','COP'); -- Only JPWiki had sub lvl
|
|
INSERT INTO `synth_recipes` VALUES (11545,0,0,6,38,0,0,0,0,0,0,4096,4238,652,715,0,0,0,0,0,0,16650,16664,16664,16664,1,1,1,1,'War Pick',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11546,1,0,0,38,0,0,0,0,0,0,4100,4242,12450,0,0,0,0,0,0,0,852,651,651,651,2,1,1,1,'Padded Cap (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11547,0,0,0,38,0,0,0,0,0,0,4096,4238,652,16747,0,0,0,0,0,0,17978,17979,17979,17979,1,1,1,1,'Windurstian Kukri',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11548,0,0,0,39,0,0,0,0,0,0,4096,4238,1681,18214,0,0,0,0,0,0,18216,18216,18216,18216,1,1,1,1,'Twicer','COP');
|
|
INSERT INTO `synth_recipes` VALUES (11549,0,0,4,39,0,0,7,0,0,0,4096,4238,648,653,715,818,852,2857,0,0,19276,19281,19281,19281,1,1,1,1,'Midare','WOTG'); -- 2 src. had subs, others ?? Subs
|
|
INSERT INTO `synth_recipes` VALUES (11550,0,0,0,39,25,0,20,0,0,0,4096,4238,652,652,652,653,714,792,848,0,18375,18376,18376,18376,1,1,1,1,'Falx','COP'); -- 2 src. agree, BG/FFXIAH ??SM, 13LE
|
|
INSERT INTO `synth_recipes` VALUES (11551,0,0,0,39,0,0,9,0,0,0,4099,4241,662,852,852,0,0,0,0,0,12450,12525,12525,12525,1,1,1,1,'Padded Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11552,0,0,0,39,19,0,0,0,0,0,4096,4238,652,652,744,796,0,0,0,0,16524,16803,16803,16803,1,1,1,1,'Fleuret',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11553,0,1993,0,40,0,0,0,0,0,0,4099,4241,2230,2233,12552,0,0,0,0,0,14531,14531,14531,14531,1,1,1,1,'Bannaret Mail','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (11554,0,0,0,40,0,0,0,0,0,0,4096,4238,653,653,848,0,0,0,0,0,16537,16635,16635,16635,1,1,1,1,'Mythril Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11555,0,0,0,40,0,0,0,0,0,0,4098,4240,8826,0,0,0,0,0,0,0,676,676,676,676,1,1,1,1,'Steel Scales','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (11556,0,0,0,40,0,0,0,0,0,0,4098,4240,666,0,0,0,0,0,0,0,676,676,676,676,1,1,1,1,'Steel Scales',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (11557,0,0,0,40,0,0,0,0,0,0,4096,4238,653,653,653,0,0,0,0,0,17036,17147,17147,17147,1,1,1,1,'Mythril Mace',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12001,0,0,0,41,0,0,10,0,0,0,4099,4241,662,852,0,0,0,0,0,0,12706,12718,12718,12718,1,1,1,1,'Iron Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12002,0,0,9,41,0,0,11,0,0,0,4096,4238,653,653,653,653,714,848,0,0,16584,16639,16639,16639,1,1,1,1,'Mythril Claymore',NULL); -- 2 src. agree, others ??subs
|
|
INSERT INTO `synth_recipes` VALUES (12003,0,0,0,41,11,0,0,0,0,0,4096,4238,653,653,744,0,0,0,0,0,16553,16636,16636,16636,1,1,1,1,'Tulwar',NULL); -- 2 src. agree, others ?? Subs
|
|
INSERT INTO `synth_recipes` VALUES (12004,0,0,14,41,0,0,0,0,0,0,4096,4238,652,652,652,716,0,0,0,0,16706,16718,16718,16718,1,1,1,1,'Heavy Axe',NULL);-- JPWiki lvls - FFXIAH post: WW gains b/t 13/14
|
|
INSERT INTO `synth_recipes` VALUES (12005,0,0,0,41,9,0,15,0,0,0,4096,4238,662,662,744,848,850,914,0,0,15317,15321,15321,15321,1,1,1,1,'Eisenschuhs','COP'); -- higher JPWiki sub lvls-- others mixed and ??
|
|
INSERT INTO `synth_recipes` VALUES (12006,0,0,0,41,0,0,0,0,0,0,4096,4238,2135,16845,0,0,0,0,0,0,18108,18108,18108,18108,1,1,1,1,'Lucent Lance','COP');
|
|
INSERT INTO `synth_recipes` VALUES (12007,0,0,0,41,0,0,0,0,0,0,4099,4241,662,12337,0,0,0,0,0,0,12372,12373,12373,12373,1,1,1,1,'Bastokan Targe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12008,0,0,0,42,14,0,0,0,0,0,4096,4238,660,662,744,914,12696,12696,0,0,14860,14863,14863,14863,1,1,1,1,'Eisenhentzes','COP'); -- higher JPwiki sub lves-- others mixed and ??
|
|
INSERT INTO `synth_recipes` VALUES (12009,0,0,11,42,0,0,0,0,0,0,4096,4238,653,653,710,0,0,0,0,0,16644,16665,16665,16665,1,1,1,1,'Mythril Axe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12010,0,0,0,42,0,0,0,0,0,0,4096,4238,653,16463,0,0,0,0,0,0,17990,17991,17991,17991,1,1,1,1,'Combat Caster\'s Dagger +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12011,0,0,27,42,0,0,0,0,0,0,4096,4238,652,652,710,710,0,0,0,0,18258,18258,18258,18258,33,66,99,99,'Throwing Tomahawk','TOAU'); -- only JPWiki had WW lvl
|
|
INSERT INTO `synth_recipes` VALUES (12012,0,0,6,36,0,0,7,0,0,0,4096,4238,652,652,652,652,652,715,852,0,16589,16931,16931,16931,1,1,1,1,'Two-Handed Sword',NULL); -- Steel Ingots ver, mult. src. agree
|
|
INSERT INTO `synth_recipes` VALUES (12013,0,0,0,42,0,0,0,0,0,0,4096,4238,653,716,853,0,0,0,0,0,16475,16750,16750,16750,1,1,1,1,'Mythril Kukri',NULL); -- mult. src agree - no ref why some put WW 11 in 2013
|
|
INSERT INTO `synth_recipes` VALUES (12014,0,0,0,43,15,0,5,0,0,0,4096,4238,660,660,662,662,744,850,914,0,14431,14435,14435,14435,1,1,1,1,'Eisenbrust','COP'); -- JPWiki used - FFXIAH post: GS skillup @12
|
|
INSERT INTO `synth_recipes` VALUES (12015,0,0,0,43,0,0,0,0,0,0,4096,4238,651,652,652,652,0,0,0,0,16558,16615,16615,16615,1,1,1,1,'Falchion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12016,0,0,0,43,0,0,11,0,0,0,4099,4241,662,662,852,852,0,0,0,0,12962,13026,13026,13026,1,1,1,1,'Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12017,0,0,21,43,0,0,0,0,0,0,4096,4238,649,649,650,712,0,0,0,0,19224,19225,19225,19225,1,1,1,1,'Musketoon','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (12018,0,0,11,43,0,0,7,0,0,0,4096,4238,648,651,657,707,818,852,0,0,16919,16920,16920,16920,1,1,1,1,'Shinobi-Gatana',NULL); -- JPWiki used, others ??subs
|
|
INSERT INTO `synth_recipes` VALUES (12019,0,0,0,44,0,0,0,0,0,0,4098,4240,652,662,0,0,0,0,0,0,17302,17302,17302,17302,33,66,99,99,'Juji Shuriken',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12020,0,0,0,44,0,0,0,0,0,0,4096,4238,2135,16706,0,0,0,0,0,0,18481,18481,18481,18481,1,1,1,1,'Lucent Axe','COP');
|
|
INSERT INTO `synth_recipes` VALUES (12021,0,0,12,44,0,0,0,0,0,0,4096,4238,652,663,710,0,0,0,0,0,16393,16446,16446,16446,1,1,1,1,'Mythril Knuckles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12022,0,0,0,44,0,0,0,0,0,0,4098,4240,653,0,0,0,0,0,0,0,1212,1212,1212,1212,6,8,10,12,'Mythril Bolt Heads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12023,0,1993,0,44,0,0,0,0,0,0,4096,4238,2230,2233,16584,0,0,0,0,0,16603,16603,16603,16603,1,1,1,1,'Halo Claymore','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (12024,0,0,0,45,0,0,12,0,0,0,4099,4241,662,825,852,0,0,0,0,0,12836,12891,12891,12891,1,1,1,1,'Iron Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12025,0,0,0,45,0,0,0,0,0,0,4096,4238,2134,16589,0,0,0,0,0,0,18384,18384,18384,18384,1,1,1,1,'Lucent Sword','COP');
|
|
INSERT INTO `synth_recipes` VALUES (12026,0,0,0,45,0,0,0,0,0,0,4096,4238,653,16806,0,0,0,0,0,0,17672,17673,17673,17673,1,1,1,1,'Bastokan Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12027,0,1993,0,45,0,0,0,0,0,0,4096,4238,2230,2233,16644,0,0,0,0,0,17957,17957,17957,17957,1,1,1,1,'Navy Axe','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (12028,0,0,0,45,0,0,0,0,0,0,4096,4238,8827,0,0,0,0,0,0,0,17061,17061,17061,17061,1,1,1,1,'Mythril Rod','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (12029,0,0,0,45,0,0,0,0,0,0,4096,4238,652,653,653,0,0,0,0,0,17061,17409,17409,17409,1,1,1,1,'Mythril Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12030,0,0,0,45,0,0,0,0,0,0,4096,4238,653,17150,0,0,0,0,0,0,17448,17449,17449,17449,1,1,1,1,'San d\'Orian Mace',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12031,0,0,12,46,0,0,0,0,0,0,4098,4240,653,710,0,0,0,0,0,0,17337,17337,17337,17337,33,66,99,99,'Mythril Bolt',NULL); -- wind/ingot/chestnut version
|
|
INSERT INTO `synth_recipes` VALUES (12032,0,0,0,46,0,0,0,0,0,0,4096,4238,653,16807,0,0,0,0,0,0,17674,17675,17675,17675,1,1,1,1,'Combat Caster\'s Scimitar +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12033,0,0,0,46,0,0,0,0,0,0,4096,4238,652,16712,0,0,0,0,0,0,16732,16733,16733,16733,1,1,1,1,'Bastokan Greataxe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12034,0,0,0,46,0,0,0,0,0,0,4096,4238,657,852,0,0,0,0,0,0,17776,17777,17777,17777,1,1,1,1,'Hibari',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12035,0,0,0,46,0,0,0,0,0,0,4096,4238,653,653,716,0,0,0,0,0,17045,17121,17121,17121,1,1,1,1,'Maul',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12036,0,0,0,47,0,0,0,0,0,0,4096,4238,653,16648,0,0,0,0,0,0,17929,17930,17930,17930,1,1,1,1,'Bastokan Axe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12037,0,0,0,47,0,0,12,0,0,0,4099,4241,662,662,662,852,852,0,0,0,12578,12663,12663,12663,1,1,1,1,'Padded Armor',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12038,0,0,8,47,0,0,0,0,0,0,4096,4238,653,707,0,0,0,0,0,0,16651,16670,16670,16670,1,1,1,1,'Mythril Pick',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12039,0,0,19,48,0,0,0,0,0,0,4096,4238,653,653,653,713,824,0,0,0,16775,16782,16782,16782,1,1,1,1,'Mythril Scythe',NULL); -- 2 src agree, others ?? WW
|
|
INSERT INTO `synth_recipes` VALUES (12040,0,0,0,48,0,37,0,0,0,0,4099,4241,651,652,662,662,710,826,826,834,350,350,350,350,1,1,1,1,'Republican Legionnaire\'s Bedding','WOTG'); -- 2 src agree, others ?? CL
|
|
INSERT INTO `synth_recipes` VALUES (12041,0,0,4,48,0,0,7,0,0,0,4096,4238,648,651,651,657,657,715,818,852,16982,16983,16983,16983,1,1,1,1,'Nodachi',NULL); -- JPWiki 48SM, 7LE, 4WW, others ?? Subs
|
|
INSERT INTO `synth_recipes` VALUES (12042,0,0,0,48,0,0,0,13,0,0,4096,4238,653,894,0,0,0,0,0,0,16412,16688,16688,16688,1,1,1,1,'Mythril Claws',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12043,1,0,0,49,0,0,0,0,0,0,4100,4242,18366,0,0,0,0,0,0,0,659,715,852,652,1,1,1,5,'Gust Claymore (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12044,0,0,0,49,0,0,0,0,0,0,4096,4238,653,653,653,851,0,0,0,0,16567,16800,16800,16800,1,1,1,1,'Knight\'s Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12045,1,0,0,49,0,0,0,0,0,0,4100,4242,501,0,0,0,0,0,0,0,649,651,652,654,1,1,1,1,'Quadav Helm (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12046,0,0,0,49,0,0,0,0,0,0,4098,4240,666,674,850,0,0,0,0,0,13873,13874,13874,13874,1,1,1,1,'Steel Visor',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12047,0,0,0,49,0,0,0,0,0,0,4099,4241,659,662,16583,0,0,0,0,0,18366,18367,18367,18367,1,1,1,1,'Gust Claymore',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12048,0,0,0,50,0,0,0,0,0,0,4099,4241,8828,0,0,0,0,0,0,0,12306,12306,12306,12306,1,1,1,1,'Kite Shield','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (12049,0,0,40,50,0,0,12,0,0,0,4096,4238,652,652,652,652,653,653,717,852,16957,16958,16958,16958,1,1,1,1,'Faussar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12050,0,0,0,50,0,0,0,0,0,0,4099,4241,662,662,664,715,0,0,0,0,12306,12326,12326,12326,1,1,1,1,'Kite Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12051,0,0,38,50,19,0,0,0,0,0,4096,4238,650,652,652,717,0,0,0,0,17248,17254,17254,17254,1,1,1,1,'Arquebus',NULL); -- JPWiki used, others ?? Subs
|
|
INSERT INTO `synth_recipes` VALUES (12501,0,0,0,51,0,0,0,0,0,0,4096,4238,654,17048,0,0,0,0,0,0,17452,17453,17453,17453,1,1,1,1,'Bastokan Hammer',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12502,0,0,0,51,0,0,0,0,0,0,4096,4238,652,652,662,932,0,0,0,0,16419,16696,16696,16696,1,1,1,1,'Patas',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12503,0,0,0,51,0,0,0,0,0,0,4096,4238,653,653,653,710,0,0,0,0,16657,16671,16671,16671,1,1,1,1,'Tabar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12504,1,0,0,51,0,0,0,0,0,0,4100,4242,596,0,0,0,0,0,0,0,649,651,651,654,1,1,1,1,'Quadav Backplate (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12505,1,0,0,51,0,0,0,0,0,0,4098,4240,501,0,0,0,0,0,0,0,660,662,666,664,1,1,1,1,'Quadav Helm (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12506,0,0,0,51,0,0,0,0,0,0,4099,4241,676,676,818,12696,0,0,0,0,14003,14004,14004,14004,1,1,1,1,'Steel Finger Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12507,0,0,0,51,0,0,0,0,0,0,4096,4238,653,653,852,0,0,0,0,0,16545,16634,16634,16634,1,1,1,1,'Broadsword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12508,0,0,19,52,0,0,0,0,0,0,4096,4238,2852,16775,0,0,0,0,0,0,18957,18960,18960,18960,1,1,1,1,'Smiting Scythe','WOTG'); -- 2src agree, others ?? WW
|
|
INSERT INTO `synth_recipes` VALUES (12509,0,0,0,52,0,0,0,0,0,0,4096,4238,643,643,643,645,0,0,0,0,654,654,654,654,1,1,1,1,'Darksteel Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12510,0,0,9,52,0,0,11,0,0,0,4096,4238,653,653,653,653,653,714,848,0,16590,16932,16932,16932,1,1,1,1,'Greatsword',NULL); -- 2 src agree, others ?? Subs
|
|
INSERT INTO `synth_recipes` VALUES (12511,0,0,0,53,0,0,0,0,0,0,4096,4238,645,1228,1228,1228,1228,1228,1228,0,654,654,654,654,1,1,1,1,'Darksteel Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12512,0,0,0,53,0,0,0,0,0,0,4096,4238,662,850,0,0,0,0,0,0,13080,13065,13065,13065,1,1,1,1,'Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12513,1,0,0,53,0,0,0,0,0,0,4098,4240,596,0,0,0,0,0,0,0,660,662,662,664,1,1,1,1,'Quadav Backplate (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12514,0,0,0,53,0,0,0,0,0,0,4096,4238,654,716,0,0,0,0,0,0,16468,16751,16751,16751,1,1,1,1,'Darksteel Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12515,0,0,11,53,0,0,7,0,0,0,4096,4238,648,651,651,657,707,816,852,0,16960,16978,16978,16978,1,1,1,1,'Uchigatana',NULL); -- JPWiki 58SM/11WW,/7LE, 53SM more common, ??subs
|
|
INSERT INTO `synth_recipes` VALUES (12516,0,0,7,53,0,0,4,0,0,0,4096,4238,648,653,657,715,818,852,0,0,16901,16921,16921,16921,1,1,1,1,'Kodachi',NULL); -- JPWiki used, others ?? Subs
|
|
INSERT INTO `synth_recipes` VALUES (12517,0,0,30,54,9,0,0,0,0,0,4096,4238,648,652,652,716,0,0,0,0,17265,17266,17266,17266,1,1,1,1,'Tanegashima',NULL); -- 2src agree, others ?? GS
|
|
INSERT INTO `synth_recipes` VALUES (12518,0,0,0,54,0,0,0,0,0,0,4096,4238,928,928,928,928,1155,1155,1155,1155,652,657,657,657,1,1,1,1,'Steel Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12519,0,0,0,54,0,0,0,0,0,0,4096,4238,662,662,850,0,0,0,0,0,12800,12916,12916,12916,1,1,1,1,'Cuisses',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12520,0,0,0,55,0,0,0,0,0,0,4096,4238,648,662,662,850,0,0,0,0,12416,13831,13831,13831,1,1,1,1,'Sallet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12521,0,1995,0,55,0,0,0,0,0,0,4096,4238,654,654,654,654,654,654,2144,0,664,664,664,664,6,6,6,6,'Darksteel Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (12522,0,0,0,55,0,0,5,0,0,0,4099,4241,676,676,818,12824,0,0,0,0,14245,14246,14246,14246,1,1,1,1,'Steel Cuisses',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12523,0,0,0,55,0,0,0,0,0,0,4096,4238,8829,0,0,0,0,0,0,0,12416,12416,12416,12416,1,1,1,1,'Sallet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (12524,0,0,0,55,0,0,0,0,0,0,4096,4238,928,1155,1155,1155,1155,1630,0,0,652,657,657,657,1,1,1,1,'Steel Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (12525,0,0,0,55,0,0,0,0,0,0,4096,4238,654,0,0,0,0,0,0,0,664,664,664,664,1,1,1,1,'Darksteel Sheet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12526,0,0,0,55,0,0,0,0,0,0,4096,4238,654,654,853,0,0,0,0,0,16538,16811,16811,16811,1,1,1,1,'Darksteel Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12527,0,0,0,55,0,0,0,0,0,0,4096,4238,643,1235,1235,1235,1235,1235,1235,0,652,657,657,657,1,1,1,1,'Steel Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12528,0,0,0,56,0,0,0,0,0,0,4096,4238,1155,1155,1155,1155,2549,0,0,0,652,657,657,657,1,1,1,1,'Steel Ingot','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (12529,0,0,0,56,0,0,0,14,0,0,4096,4238,654,894,0,0,0,0,0,0,16413,16697,16697,16697,1,1,1,1,'Darksteel Claws',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12530,0,0,0,56,0,0,0,0,0,0,4096,4238,653,16669,0,0,0,0,0,0,17931,17932,17932,17932,1,1,1,1,'Combat Caster\'s Axe +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12531,0,0,0,56,0,0,0,0,0,0,4096,4238,662,662,662,850,850,0,0,0,12928,13046,13046,13046,1,1,1,1,'Plate Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12532,0,0,0,56,0,0,0,0,0,0,4099,4241,676,676,818,12952,0,0,0,0,14120,14121,14121,14121,1,1,1,1,'Steel Greaves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12533,0,0,0,56,0,0,0,0,0,0,4099,4241,664,670,12680,0,0,0,0,0,14051,14052,14052,14052,1,1,1,1,'Alumine Moufles','COP');
|
|
INSERT INTO `synth_recipes` VALUES (12534,0,0,33,57,16,0,0,0,0,0,4096,4238,652,652,718,718,744,0,0,0,18715,18716,18716,18716,1,1,1,1,'Mars\'s Hexagun','TOAU'); -- 2 src agree, others ?? Subs
|
|
INSERT INTO `synth_recipes` VALUES (12535,0,0,0,57,0,0,0,0,0,0,4096,4238,653,653,653,848,0,0,0,0,16576,16812,16812,16812,1,1,1,1,'Hunting Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12536,0,0,0,60,0,0,0,14,0,0,4096,4238,654,2849,0,0,0,0,0,0,18769,18773,18773,18773,1,1,1,1,'Severus Claws','WOTG'); -- JPWiki 57SM, 14BO, 60SM more common, but ??BO
|
|
INSERT INTO `synth_recipes` VALUES (12537,0,0,0,57,0,0,0,0,0,0,4096,4238,653,16601,0,0,0,0,0,0,16948,16949,16949,16949,1,1,1,1,'Royal Swordsman\'s Blade +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12538,0,0,0,57,0,0,0,0,0,0,4099,4241,676,676,676,676,818,850,12568,0,13785,13786,13786,13786,1,1,1,1,'Steel Scale Mail',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12539,0,0,0,57,0,0,0,0,0,0,4096,4238,662,662,12696,12696,0,0,0,0,12672,12791,12791,12791,1,1,1,1,'Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12540,0,0,0,57,0,0,0,0,0,0,4099,4241,664,670,12936,0,0,0,0,0,15341,15342,15342,15342,1,1,1,1,'Alumine Sollerets','COP');
|
|
INSERT INTO `synth_recipes` VALUES (12541,0,0,4,58,0,0,30,0,0,0,4096,4238,648,651,651,657,657,715,818,853,16984,16985,16985,16985,1,1,1,1,'Jindachi',NULL); -- JPWiki used, others ?? Subs
|
|
INSERT INTO `synth_recipes` VALUES (12542,0,0,0,58,0,0,0,0,0,0,4096,4238,662,662,662,662,850,850,0,0,12544,13724,13724,13724,1,1,1,1,'Breastplate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12543,0,0,0,58,0,0,0,0,0,0,4099,4241,659,662,16919,0,0,0,0,0,17780,17781,17781,17781,1,1,1,1,'Kyofu',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12544,0,0,0,58,0,0,0,0,34,0,4096,4238,662,664,666,932,2290,0,0,0,2251,2251,2251,2251,12,12,12,12,'Armor Plate','TOAU'); -- 2 src agree, others ??AL, FFXAH cites 34AL - NOTE all versions use same AL items/qty
|
|
INSERT INTO `synth_recipes` VALUES (12545,0,0,25,59,18,0,0,0,0,0,4096,4238,650,652,652,707,744,0,0,0,19226,19227,19227,19227,1,1,1,1,'Blunderbuss','WOTG'); -- JPWiki 58SM,20WW,17GS, others 59?,25?,18?
|
|
INSERT INTO `synth_recipes` VALUES (12546,0,0,0,59,0,0,0,0,0,0,4099,4241,659,666,16590,0,0,0,0,0,18368,18369,18369,18369,1,1,1,1,'Gust Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12547,0,0,0,59,0,0,0,0,0,0,4099,4241,662,662,664,664,716,0,0,0,12323,12339,12339,12339,1,1,1,1,'Scutum',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12548,0,0,0,59,0,0,0,0,0,0,4098,4240,664,0,0,0,0,0,0,0,1773,1773,1773,1773,1,1,1,1,'Darksteel Scales',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12549,0,0,0,59,14,0,0,0,0,0,4096,4238,654,654,744,0,0,0,0,0,16519,16813,16813,16813,1,1,1,1,'Schlaeger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12550,0,0,23,60,0,0,0,0,0,0,4096,4238,654,664,716,0,0,0,0,0,16394,16698,16698,16698,1,1,1,1,'Darksteel Knuckles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12551,0,0,0,60,0,0,0,0,0,0,4098,4240,664,664,0,0,0,0,0,0,2006,2006,2006,2006,1,1,1,1,'Iyo Scale','COP');
|
|
INSERT INTO `synth_recipes` VALUES (12552,0,0,0,60,0,0,0,0,0,0,4096,4238,652,654,654,654,0,0,0,0,16559,16814,16814,16814,1,1,1,1,'Darksteel Falchion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (12553,0,0,0,60,0,0,0,0,0,0,4096,4238,652,654,654,2764,0,0,0,0,17763,17763,17763,17763,1,1,1,1,'Erlking\'s Blade','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (12554,0,0,0,60,0,0,0,0,0,0,4096,4238,8830,0,0,0,0,0,0,0,17037,17037,17037,17037,1,1,1,1,'Darksteel Mace','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (12555,0,0,8,60,25,0,0,0,0,0,4096,4238,651,652,652,714,2845,0,0,0,18506,18509,18509,18509,1,1,1,1,'Tewhatewha','WOTG'); -- 2 src agree, others 23GS or ??subs
|
|
INSERT INTO `synth_recipes` VALUES (12556,0,0,14,60,0,0,18,0,0,0,4096,4238,654,654,654,654,710,851,0,0,16585,16933,16933,16933,1,1,1,1,'Darksteel Claymore',NULL); -- mult src agree
|
|
INSERT INTO `synth_recipes` VALUES (13001,0,0,0,61,54,0,0,0,0,0,4096,4238,2748,2756,2764,0,0,0,0,0,19275,19275,19275,19275,1,1,1,1,'Tsukumo','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (13002,0,0,0,61,0,0,0,0,0,0,4096,4238,654,654,654,0,0,0,0,0,17037,17428,17428,17428,1,1,1,1,'Darksteel Mace',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13003,0,0,0,61,0,0,32,0,0,0,4099,4241,682,684,826,851,851,0,0,0,15402,15403,15403,15403,1,1,1,1,'Alumine Brayettes','COP'); -- ??LE lvls (25-32), Ram Leather is 35
|
|
INSERT INTO `synth_recipes` VALUES (13004,0,0,0,61,0,0,37,0,0,0,4096,4238,652,652,822,1765,0,0,0,0,17795,17796,17796,17796,1,1,1,1,'Sai','COP');
|
|
INSERT INTO `synth_recipes` VALUES (13005,0,0,19,64,0,0,0,0,52,0,4096,4238,652,654,654,713,824,924,2764,0,18955,18955,18955,18955,1,1,1,1,'Dweomer Scythe','WOTG'); -- Mixed values across sources, used most common cited
|
|
INSERT INTO `synth_recipes` VALUES (13006,0,0,19,61,0,0,0,0,0,0,4096,4238,653,653,711,824,0,0,0,0,16796,16797,16797,16797,1,1,1,1,'Mythril Zaghnal',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13007,0,0,29,62,0,0,0,0,0,0,4096,4238,654,654,716,0,0,0,0,0,16645,16677,16677,16677,1,1,1,1,'Darksteel Axe',NULL); -- JPWiki 29WW, others ??WW
|
|
INSERT INTO `synth_recipes` VALUES (13008,0,0,0,62,0,0,0,0,0,0,4098,4240,654,0,0,0,0,0,0,0,1213,1213,1213,1213,6,8,10,12,'Darksteel Bolt Heads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13009,0,0,0,62,21,0,0,0,0,0,4096,4238,648,664,670,682,850,0,0,0,15205,15206,15206,15206,1,1,1,1,'Alumine Salade','COP'); -- 2 src. agree, others ??GS
|
|
INSERT INTO `synth_recipes` VALUES (13010,0,0,0,62,0,0,0,0,0,0,4099,4241,664,664,12936,0,0,0,0,0,12939,14084,14084,14084,1,1,1,1,'Darksteel Sollerets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13011,0,0,35,62,50,0,0,0,0,0,4096,4238,652,652,679,679,718,800,811,879,17739,17740,17740,17740,1,1,1,1,'Steel Kilij','TOAU'); -- talk pages vary on subs… used higest values implied.
|
|
INSERT INTO `synth_recipes` VALUES (13012,0,0,0,62,0,0,0,0,0,0,4096,4238,653,16810,0,0,0,0,0,0,17676,17677,17677,17677,1,1,1,1,'Tactician Magician\'s Espadon +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13013,0,0,0,62,0,44,0,0,0,0,4099,4241,662,662,816,829,850,0,0,0,12843,14236,14236,14236,1,1,1,1,'Haidate',NULL); -- JPWiki 44CL, other ??CL, FFXIAH post skillup at 43
|
|
INSERT INTO `synth_recipes` VALUES (13014,0,0,11,63,0,0,0,0,51,0,4096,4238,648,657,707,816,853,931,0,0,16902,16922,16922,16922,1,1,1,1,'Sakurafubuki',NULL); -- JPWiki used, ??WW, FFXIAH post skillup on break 8WW
|
|
INSERT INTO `synth_recipes` VALUES (13015,0,0,0,63,0,0,0,0,0,0,4096,4238,653,654,0,0,0,0,0,0,16457,16758,16758,16758,1,1,1,1,'Darksteel Baselard',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13016,0,0,0,63,0,0,0,0,0,0,4099,4241,654,654,0,0,0,0,0,0,682,682,682,682,1,2,3,4,'Darksteel Chain',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13017,0,1994,0,63,0,0,0,0,0,0,4099,4241,654,654,654,654,654,654,2143,0,682,682,682,682,3,6,9,12,'Darksteel Chain','COP');
|
|
INSERT INTO `synth_recipes` VALUES (13018,0,0,0,63,0,0,0,0,0,0,4096,4238,2535,2764,0,0,0,0,0,0,19116,19116,19116,19116,1,1,1,1,'Dweomer Knife','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (13019,0,0,0,64,0,0,0,0,0,0,4096,4238,654,717,2764,0,0,0,0,0,18870,18870,18870,18870,1,1,1,1,'Dweomer Maul','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (13020,0,0,0,64,0,41,0,0,0,0,4096,4238,662,662,816,829,850,0,0,0,12974,14112,14112,14112,1,1,1,1,'Sune-Ate',NULL); -- CL 40/41/??… used JPWiki's 41
|
|
INSERT INTO `synth_recipes` VALUES (13021,0,0,0,64,0,0,0,0,0,0,4099,4241,664,664,12680,0,0,0,0,0,12683,13976,13976,13976,1,1,1,1,'Darksteel Mufflers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13022,0,0,0,64,28,25,0,0,0,0,4099,4241,664,670,679,682,682,682,828,829,14444,14445,14445,14445,1,1,1,1,'Alumine Haubert','COP'); -- 2 src. agree, others ??subs
|
|
INSERT INTO `synth_recipes` VALUES (13023,0,0,0,64,0,0,0,0,0,0,4099,4241,659,666,16901,0,0,0,0,0,17782,17783,17783,17783,1,1,1,1,'Reppu',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13024,0,0,26,64,0,0,0,0,0,0,4098,4240,654,718,0,0,0,0,0,0,17338,17338,17338,17338,33,66,99,99,'Darksteel Bolt',NULL); -- Rosewood recipe, JPWiki 26WW, others ??WW
|
|
INSERT INTO `synth_recipes` VALUES (13025,0,0,0,65,0,0,0,0,0,0,4096,4238,654,717,854,0,0,0,0,0,16476,16763,16763,16763,1,1,1,1,'Darksteel Kukri',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13026,0,0,0,65,0,0,0,0,0,0,4098,4240,657,664,0,0,0,0,0,0,17303,17303,17303,17303,33,66,99,99,'Manji Shuriken',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13027,0,0,23,65,0,0,0,0,0,0,4096,4238,654,654,716,2764,0,0,0,0,17966,17966,17966,17966,1,1,1,1,'Erlking\'s Tabar','WOTG'); -- JPWiki, others ??, old era talk: success 1st try 21WW
|
|
INSERT INTO `synth_recipes` VALUES (13028,0,0,0,65,0,0,0,0,0,0,4096,4238,2000,2764,0,0,0,0,0,0,19115,19115,19115,19115,1,1,1,1,'Fane Baselard','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (13029,0,0,0,66,0,28,39,0,0,0,4099,4241,666,879,2152,2166,2288,0,0,0,15689,15694,15694,15694,1,1,1,1,'Jaridah Nails','TOAU'); -- JPWiki/ffxiclopedia, others 65SM and ??subs
|
|
INSERT INTO `synth_recipes` VALUES (13030,0,0,0,65,0,0,0,0,0,0,4096,4238,8831,0,0,0,0,0,0,0,16476,16476,16476,16476,1,1,1,1,'Darksteel Kukri','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (13031,0,0,0,66,0,0,0,0,0,0,4099,4241,662,816,0,0,0,0,0,0,13111,13124,13124,13124,1,1,1,1,'Nodowa',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13032,0,0,0,66,0,0,27,0,0,0,4099,4241,682,682,826,851,851,0,0,0,12811,14209,14209,14209,1,1,1,1,'Darksteel Breeches',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13033,0,1993,0,66,0,0,0,0,0,0,4096,4238,2230,2233,16902,0,0,0,0,0,18427,18427,18427,18427,1,1,1,1,'Hanafubuki','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (13034,0,0,30,66,9,0,0,0,0,0,4096,4238,648,652,654,716,0,0,0,0,17267,17268,17268,17268,1,1,1,1,'Negoroshiki',NULL); -- JPWiki/ffxiclopedia, others ??subs
|
|
INSERT INTO `synth_recipes` VALUES (13035,0,0,0,67,0,0,0,0,0,0,4096,4238,643,643,643,2763,0,0,0,0,2764,2764,2764,2764,1,1,1,1,'Dweomer Steel','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (13036,0,0,0,67,0,46,0,0,0,0,4096,4238,662,662,680,680,816,829,0,0,12715,13996,13996,13996,1,1,1,1,'Kote',NULL); -- JPWiki 46CL, mult. talk pages imply 42-48
|
|
INSERT INTO `synth_recipes` VALUES (13037,0,0,0,67,0,0,0,0,0,0,4096,4238,648,662,664,682,850,0,0,0,12427,12439,12439,12439,1,1,1,1,'Bascinet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13038,0,0,37,67,16,0,0,0,0,0,4096,4238,652,654,719,719,744,0,0,0,18704,18705,18705,18705,1,1,1,1,'Darksteel Hexagun','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (13039,0,0,37,67,16,0,0,0,0,0,4096,4238,654,719,719,744,2764,0,0,0,18737,18737,18737,18737,1,1,1,1,'Fane Hexagun','WOTG'); -- JPWiki used, others 60+,67SM, 31-45??WW, ??GS
|
|
INSERT INTO `synth_recipes` VALUES (13040,0,0,0,67,0,0,0,0,0,0,4099,4241,682,12942,0,0,0,0,0,0,14137,14138,14138,14138,1,1,1,1,'Royal Knight\'s Sollerets +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13041,0,0,0,68,0,0,0,0,0,0,4096,4238,654,654,662,855,0,0,0,0,16400,17475,17475,17475,1,1,1,1,'Darksteel Katars',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13042,0,0,0,68,0,0,0,0,34,0,4096,4238,664,664,666,932,2290,0,0,0,2253,2253,2253,2253,12,12,12,12,'Armor Plate II','TOAU'); -- JPWiki, others ??AL-- FFXIAH cites 34AL on 1st tier, same mats/qty for II/III/IV versions
|
|
INSERT INTO `synth_recipes` VALUES (13043,0,0,0,68,0,49,0,0,0,0,4096,4238,662,662,662,680,680,816,829,850,12587,13769,13769,13769,1,1,1,1,'Hara-Ate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13044,0,0,0,68,0,22,31,0,0,0,4099,4241,666,666,879,2166,2274,0,0,0,14934,14939,14939,14939,1,1,1,1,'Jaridah Bazubands','TOAU'); -- JPWiki/xiclopedia, others ??subs
|
|
INSERT INTO `synth_recipes` VALUES (13045,0,0,24,69,0,0,0,0,0,0,4096,4238,652,654,718,2764,0,0,0,0,18505,18505,18505,18505,1,1,1,1,'Erlking\'s Kheten','WOTG'); -- JPWiki, others >23WW, talks: skillups 22WW and on breaks at 67SM
|
|
INSERT INTO `synth_recipes` VALUES (13046,0,0,4,69,0,0,53,0,0,0,4096,4238,648,651,654,657,715,818,853,2764,18452,18452,18452,18452,1,1,1,1,'Rindomaru','WOTG'); -- JPWiki higher #'s, talk: skillups/crit breaks >67SM, >50LE
|
|
INSERT INTO `synth_recipes` VALUES (13047,0,0,0,69,0,38,0,0,0,0,4099,4241,658,664,664,682,682,682,828,829,12555,13735,13735,13735,1,1,1,1,'Haubergeon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13048,0,0,0,69,0,34,0,0,0,0,4096,4238,648,662,662,816,829,0,0,0,12459,13865,13865,13865,1,1,1,1,'Zunari Kabuto',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13049,0,0,0,69,0,0,0,0,0,0,4099,4241,682,12686,0,0,0,0,0,0,14029,14030,14030,14030,1,1,1,1,'Royal Knight\'s Mufflers +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13050,0,0,25,70,0,0,0,0,0,0,4096,4238,654,677,724,0,0,0,0,0,18014,18016,18016,18016,1,1,1,1,'Odorous Knife','COP');
|
|
INSERT INTO `synth_recipes` VALUES (13051,0,0,0,70,0,0,0,0,0,0,4096,4238,652,664,664,711,0,0,0,0,12302,12347,12347,12347,1,1,1,1,'Darksteel Buckler',NULL); -- mult src agree, only 1 cited any CL skill
|
|
INSERT INTO `synth_recipes` VALUES (13052,0,0,0,70,0,0,0,0,0,0,4096,4238,654,2538,2764,0,0,0,0,0,17762,17762,17762,17762,1,1,1,1,'Erlking\'s Sword','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (13053,0,0,0,70,0,0,0,0,0,0,4096,4238,654,852,0,0,0,0,0,0,16915,16916,16916,16916,1,1,1,1,'Hien',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13054,0,0,0,70,0,0,0,0,0,0,4099,4241,659,664,16596,0,0,0,0,0,18370,18371,18371,18371,1,1,1,1,'Gust Tongue',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13055,0,0,0,70,0,0,0,0,0,0,4096,4238,8832,0,0,0,0,0,0,0,16915,16915,16915,16915,1,1,1,1,'Hien','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (13501,0,0,0,71,0,0,0,0,0,0,4096,4238,653,654,659,0,0,0,0,0,126,126,126,126,1,1,1,1,'Falsiam Vase','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (13502,0,0,44,71,0,0,30,0,0,0,4096,4238,653,653,653,653,653,653,717,853,16595,16939,16939,16939,1,1,1,1,'Ram-Dao',NULL); -- 2 src aggree, others ??subs, 2015 talk could try at 13LE
|
|
INSERT INTO `synth_recipes` VALUES (13503,0,0,0,71,38,0,0,0,56,0,4096,4238,652,652,653,802,931,0,0,0,16526,17635,17635,17635,1,1,1,1,'Schwert',NULL); -- 2 src agree, talk notess >51AL, >37GS
|
|
INSERT INTO `synth_recipes` VALUES (13504,0,0,0,72,0,0,38,0,0,0,4099,4241,664,855,855,0,0,0,0,0,12452,13863,13863,13863,1,1,1,1,'Darksteel Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13505,0,0,0,72,15,0,0,0,0,0,4096,4238,652,654,797,0,0,0,0,0,16759,16760,16760,16760,1,1,1,1,'Darksteel Kris',NULL); -- multi src agree
|
|
INSERT INTO `synth_recipes` VALUES (13506,0,0,41,72,49,0,0,0,0,0,4096,4238,653,653,719,745,745,795,798,2152,17660,17663,17663,17663,1,1,1,1,'Kilij','TOAU'); -- 2 agree, others ??subs
|
|
-- INSERT INTO `synth_recipes` VALUES (13507,0,0,0,73,0,0,0,0,34,0,4096,4238,665,665,932,2001,2290,0,0,0,9039,9039,9039,9039,12,12,12,12,'Armor Plate III','SOA'); -- JPWiki BUT ??AL-- FFXIAH cites 34AL on 1st tier, same mats/qty for II/III/IV versions
|
|
INSERT INTO `synth_recipes` VALUES (13508,0,0,0,73,0,0,41,0,0,0,4099,4241,664,855,0,0,0,0,0,0,12708,13994,13994,13994,1,1,1,1,'Darksteel Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13509,0,0,8,73,0,0,0,0,0,0,4096,4238,654,707,0,0,0,0,0,0,16652,16682,16682,16682,1,1,1,1,'Darksteel Pick',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13510,0,0,0,73,0,0,0,0,0,0,4096,4238,652,16902,0,0,0,0,0,0,17778,17779,17779,17779,1,1,1,1,'Muketsu',NULL); -- multi src agree, no ref why BG add 41LE Jun2016
|
|
INSERT INTO `synth_recipes` VALUES (13511,0,0,0,74,0,0,0,0,0,0,4096,4238,640,640,641,645,0,0,0,0,1989,1989,1989,1989,1,1,1,1,'Dark Bronze Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (13512,0,0,0,74,0,0,42,0,0,0,4099,4241,664,826,855,0,0,0,0,0,12839,14234,14234,14234,1,1,1,1,'Darksteel Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13513,0,0,11,74,0,0,40,0,0,0,4096,4238,648,654,657,707,818,853,0,0,16903,16923,16923,16923,1,1,1,1,'Kabutowari',NULL); -- use JPWiki, mostly others just ??WW
|
|
INSERT INTO `synth_recipes` VALUES (13514,0,0,24,75,0,0,0,0,0,0,4096,4238,652,652,654,718,0,0,0,0,18207,18208,18208,18208,1,1,1,1,'Kheten',NULL); -- use JPWiki, others 74/75SM, ??WW, no useful talks
|
|
INSERT INTO `synth_recipes` VALUES (13515,0,0,0,75,0,0,0,0,0,0,4096,4238,1989,0,0,0,0,0,0,0,1990,1990,1990,1990,1,1,1,1,'Dark Bronze Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (13516,0,1995,0,75,0,0,0,0,0,0,4096,4238,1989,1989,1989,1989,1989,1989,2144,0,1990,1990,1990,1990,6,6,6,6,'Dark Bronze Sheet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (13517,0,0,0,75,0,0,0,0,0,0,4099,4241,664,664,855,855,0,0,0,0,12964,14110,14110,14110,1,1,1,1,'Darksteel Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13518,0,0,47,76,51,0,0,0,0,0,4096,4238,650,654,654,719,745,0,0,0,18226,18227,18227,18227,1,1,1,1,'Darksteel Voulge','COP'); -- only JPWiki had full craft
|
|
INSERT INTO `synth_recipes` VALUES (13519,0,0,0,76,0,0,0,0,0,0,4099,4241,659,664,17778,0,0,0,0,0,17784,17785,17785,17785,1,1,1,1,'Keppu',NULL); -- more src, smith kit 76, & talk support earth not fire crystal
|
|
INSERT INTO `synth_recipes` VALUES (13520,0,0,0,76,0,0,0,0,0,0,4096,4238,645,756,756,756,0,0,0,0,757,757,757,757,1,1,1,1,'Durium Ingot','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (13521,0,0,4,76,0,0,7,0,0,0,4096,4238,648,653,653,653,657,715,818,852,16967,16989,16989,16989,1,1,1,1,'Mikazuki',NULL); -- 2 src agree, 2013 talk: 5/5 no skillup 19WW, 15LE
|
|
INSERT INTO `synth_recipes` VALUES (13522,1,0,0,76,0,0,0,0,0,0,4100,4242,1118,0,0,0,0,0,0,0,649,654,654,654,2,1,1,1,'Antican Pauldron (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13523,0,0,0,76,0,0,0,0,0,0,4099,4241,9489,0,0,0,0,0,0,0,17784,17784,17784,17784,1,1,1,1,'Keppu','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (13524,0,0,0,77,0,0,0,0,0,0,4096,4238,654,654,654,851,0,0,0,0,16577,16828,16828,16828,1,1,1,1,'Bastard Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13525,0,0,43,77,45,0,0,0,0,0,4096,4238,652,654,711,730,745,914,0,0,17222,18687,18687,18687,1,1,1,1,'Hexagun','TOAU'); -- JPWiki/xiclopedia, others ??subs, no useful talk
|
|
INSERT INTO `synth_recipes` VALUES (13526,0,0,0,77,0,0,0,0,0,0,4096,4238,757,0,0,0,0,0,0,0,758,758,758,758,1,1,1,1,'Durium Sheet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (13527,0,0,0,77,0,0,0,0,0,0,4096,4238,652,654,654,0,0,0,0,0,17063,17435,17435,17435,1,1,1,1,'Darksteel Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13528,0,1995,0,77,0,0,0,0,0,0,4096,4238,757,757,757,757,757,757,2144,0,758,758,758,758,6,6,6,6,'Durium Sheet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (13529,0,0,19,78,0,0,0,0,0,0,4096,4238,654,654,654,713,824,0,0,0,16789,16790,16790,16790,1,1,1,1,'Darksteel Scythe',NULL); -- JPWiki recipe… most others only ??WW
|
|
INSERT INTO `synth_recipes` VALUES (13530,1,0,0,78,0,0,0,0,0,0,4098,4240,1118,0,0,0,0,0,0,0,660,664,664,664,2,1,1,1,'Antican Pauldron (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13531,0,0,0,78,0,0,45,0,0,0,4099,4241,664,664,664,855,855,0,0,0,12580,13765,13765,13765,1,1,1,1,'Darksteel Harness',NULL); -- FFXIAH post tested LE to be 45, not 43?
|
|
INSERT INTO `synth_recipes` VALUES (13532,0,1993,0,78,0,0,0,0,0,0,4096,4238,2230,2233,18207,0,0,0,0,0,18493,18493,18493,18493,1,1,1,1,'Regiment Kheten','TOAU');
|
|
-- INSERT INTO `synth_recipes` VALUES (13533,0,0,0,78,0,0,0,0,34,0,4096,4238,665,932,2001,2290,4022,0,0,0,9138,9138,9138,9138,12,12,12,12,'Armor Plate IV','ROV'); -- JPWiki BUT ??AL-- FFXIAH cites 34AL on 1st tier, same mats/qty for II/III/IV versions
|
|
INSERT INTO `synth_recipes` VALUES (13534,0,0,41,79,29,0,0,0,0,0,4096,4238,650,652,654,711,0,0,0,0,17250,17261,17261,17261,1,1,1,1,'Matchlock Gun',NULL); -- 2 src agree, old era talks imply >27GS, >40WW
|
|
INSERT INTO `synth_recipes` VALUES (13535,0,0,0,79,0,0,0,0,0,0,4098,4240,651,657,0,0,0,0,0,0,1416,1416,1416,1416,6,8,10,12,'Karimata Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (13536,0,0,42,79,49,0,0,0,0,0,4096,4238,653,654,654,654,719,793,1629,0,18382,18383,18383,18383,1,1,1,1,'Darksteel Falx','COP'); -- JPWiki used, others looking to verify 3 diff subs
|
|
INSERT INTO `synth_recipes` VALUES (13537,0,1994,0,80,0,0,0,0,0,0,4096,4238,757,757,757,757,757,757,2143,0,759,759,759,759,3,6,9,12,'Durium Chain','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (13538,0,0,0,80,0,0,0,0,0,0,4096,4238,757,757,0,0,0,0,0,0,759,759,759,759,1,2,3,4,'Durium Chain','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (13539,0,0,37,80,41,0,0,0,0,0,4096,4238,652,652,654,654,719,744,790,1858,18489,18490,18490,18490,1,1,1,1,'Dark Amood','TOAU'); -- 2 src agree, old era talk: no skillup 81 SM, 43GS, 40WW
|
|
INSERT INTO `synth_recipes` VALUES (13540,0,0,0,80,37,0,34,0,0,0,4099,4241,664,667,667,667,744,850,851,851,13812,13813,13813,13813,1,1,1,1,'Holy Breastplate',NULL); -- 2 src agree, various talks support these values
|
|
INSERT INTO `synth_recipes` VALUES (13541,0,0,0,80,0,0,0,0,0,0,4096,4238,9490,0,0,0,0,0,0,0,16546,16546,16546,16546,1,1,1,1,'Katzbalger','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (13542,0,0,0,80,0,0,0,0,0,0,4096,4238,654,853,16545,0,0,0,0,0,16546,17638,17638,17638,1,1,1,1,'Katzbalger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14001,0,0,0,81,0,0,0,0,0,0,4096,4238,664,664,851,0,0,0,0,0,12803,14229,14229,14229,1,1,1,1,'Darksteel Cuisses',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14002,0,0,0,81,0,0,0,0,0,0,4096,4238,664,851,0,0,0,0,0,0,13079,13131,13131,13131,1,1,1,1,'Darksteel Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14003,0,0,18,81,0,0,21,0,0,0,4096,4238,653,654,654,654,654,710,851,0,16591,16616,16616,16616,1,1,1,1,'Zweihander',NULL); -- JPWiki/xiclopedia, no useful talks
|
|
INSERT INTO `synth_recipes` VALUES (14004,0,0,0,82,51,0,0,0,0,0,4096,4238,648,664,664,745,850,914,0,0,12419,12423,12423,12423,1,1,1,1,'Darksteel Armet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14005,0,0,41,82,53,0,0,0,0,0,4096,4238,654,654,719,746,746,786,790,2152,17724,17725,17725,17725,1,1,1,1,'Darksteel Kilij','TOAU'); -- JPWiki used, others ?? Subs
|
|
INSERT INTO `synth_recipes` VALUES (14006,0,0,0,82,0,0,0,0,0,0,4096,4238,654,654,717,0,0,0,0,0,17046,17432,17432,17432,1,1,1,1,'Darksteel Maul',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14007,0,0,0,82,0,0,0,0,0,0,4096,4238,2302,0,0,0,0,0,0,0,2303,2303,2303,2303,1,1,1,1,'Troll Bronze Sheet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (14008,0,0,0,83,0,0,0,0,0,0,4096,4238,653,16944,0,0,0,0,0,0,16950,16951,16951,16951,1,1,1,1,'Mythril Heart',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14009,0,0,23,83,0,0,0,0,0,0,4096,4238,654,654,654,716,0,0,0,0,16658,16683,16683,16683,1,1,1,1,'Darksteel Tabar',NULL); -- 2 src agree, others 22-26WW verify flags
|
|
INSERT INTO `synth_recipes` VALUES (14010,0,0,0,83,0,0,0,0,0,0,4096,4238,654,16776,0,0,0,0,0,0,18036,18037,18037,18037,1,1,1,1,'Windurstian Scythe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14011,0,0,0,83,0,0,0,0,0,0,4099,4241,664,816,0,0,0,0,0,0,13088,13133,13133,13133,1,1,1,1,'Darksteel Nodowa',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14012,0,0,0,83,0,0,0,0,0,0,4099,4241,666,12939,0,0,0,0,0,0,12940,14127,14127,14127,1,1,1,1,'Thick Sollerets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14013,0,0,0,84,0,0,0,0,0,0,4099,4241,666,12683,0,0,0,0,0,0,12684,14012,14012,14012,1,1,1,1,'Thick Mufflers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14014,0,0,0,84,0,0,0,0,0,0,4099,4241,9491,0,0,0,0,0,0,0,12684,12684,12684,12684,1,1,1,1,'Thick Mufflers','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14015,0,0,0,84,54,0,0,0,0,0,4096,4238,664,664,664,745,851,851,914,0,12931,14105,14105,14105,1,1,1,1,'Darksteel Sabatons',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14016,0,0,15,84,0,0,0,0,0,0,4096,4238,651,718,822,16988,0,0,0,0,17816,17817,17817,17817,1,1,1,1,'Kotetsu +1',NULL); -- JPWiki only, others ??subs, no useful talks
|
|
INSERT INTO `synth_recipes` VALUES (14017,0,0,0,85,42,0,0,0,0,0,4098,4240,657,663,745,914,0,0,0,0,17304,17304,17304,17304,33,66,99,99,'Fuma Shuriken',NULL); -- JPWiki only, others ??subs, no useful talks
|
|
INSERT INTO `synth_recipes` VALUES (14018,0,0,0,85,0,0,0,0,0,0,4096,4238,655,0,0,0,0,0,0,0,665,665,665,665,1,1,1,1,'Adaman Sheet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14019,0,0,7,84,37,0,0,0,0,0,4096,4238,651,651,654,717,745,2529,0,0,18858,18860,18860,18860,1,1,1,1,'Flanged Mace','WOTG'); -- JPWiki/ffxiclopedia used
|
|
INSERT INTO `synth_recipes` VALUES (14020,0,0,0,85,0,0,0,0,0,0,4096,4238,654,17253,0,0,0,0,0,0,17269,17270,17270,17270,1,1,1,1,'Musketeer Gun +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14021,0,1995,0,85,0,0,0,0,0,0,4096,4238,655,655,655,655,655,655,2144,0,665,665,665,665,6,6,6,6,'Adaman Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14022,0,0,0,86,0,0,0,0,0,0,4099,4241,681,12811,0,0,0,0,0,0,12812,14252,14252,14252,1,1,1,1,'Thick Breeches',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14023,0,0,0,86,0,0,0,0,0,0,4096,4238,643,645,645,646,0,0,0,0,2000,2000,2000,2000,1,1,1,1,'Dark Adaman Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14024,0,0,0,86,45,0,0,0,0,0,4096,4238,664,664,745,914,12696,12696,0,0,12675,13989,13989,13989,1,1,1,1,'Darksteel Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14025,0,0,0,87,0,0,0,0,0,0,4096,4238,648,664,666,682,850,0,0,0,12428,13845,13845,13845,1,1,1,1,'Celata',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14026,0,0,0,87,49,0,0,0,0,0,4096,4238,664,664,664,664,745,851,851,914,12547,13756,13756,13756,1,1,1,1,'Darksteel Cuirass',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14027,0,0,11,87,56,0,0,0,0,0,4096,4238,648,686,707,821,877,2418,0,0,18423,18424,18424,18424,1,1,1,1,'Izayoi','TOAU'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14028,0,0,0,87,51,0,0,0,0,0,4098,4240,657,745,914,0,0,0,0,0,17286,17295,17295,17295,1,1,1,1,'Rising Sun',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14029,0,0,15,88,0,0,0,0,0,0,4096,4238,652,718,822,16975,0,0,0,0,17818,17819,17819,17819,1,1,1,1,'Kanesada +1',NULL); -- multi src agree, only FFXIAH had 29WW
|
|
INSERT INTO `synth_recipes` VALUES (14030,0,0,0,88,55,0,0,0,0,0,4096,4238,686,877,2275,0,0,0,0,0,18420,18421,18421,18421,1,1,1,1,'Hayabusa','TOAU'); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (14031,0,0,0,88,0,0,0,0,0,0,4096,4238,652,16710,0,0,0,0,0,0,16730,16731,16731,16731,1,1,1,1,'Colossal Axe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14032,0,0,31,88,0,0,0,0,0,0,4096,4238,654,654,654,717,0,0,0,0,16724,16725,16725,16725,1,1,1,1,'Heavy Darksteel Axe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14033,0,0,0,89,0,0,0,0,0,0,4096,4238,2000,0,0,0,0,0,0,0,2001,2001,2001,2001,1,1,1,1,'Drk. Adm. Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14034,0,0,0,89,0,0,0,0,0,0,4098,4240,2000,0,0,0,0,0,0,0,3306,3306,3306,3306,6,8,10,12,'Dark Adaman Bolt Heads','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (14035,0,1995,0,89,0,0,0,0,0,0,4096,4238,2000,2000,2000,2000,2000,2000,2144,0,2001,2001,2001,2001,6,6,6,6,'Drk. Adm. Sheet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (14036,0,0,41,89,54,0,0,0,0,0,4096,4238,650,654,654,711,745,0,0,0,17251,17264,17264,17264,1,1,1,1,'Hellfire',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14037,0,0,4,89,0,0,40,0,0,0,4096,4238,648,651,654,654,657,715,818,853,16964,17803,17803,17803,1,1,1,1,'Zanbato',NULL); -- JPWiki/ffxiclopedia used
|
|
INSERT INTO `synth_recipes` VALUES (14038,0,0,0,89,0,38,0,0,0,0,4099,4241,666,682,828,829,12555,0,0,0,12556,13793,13793,13793,1,1,1,1,'Hauberk',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14039,0,0,0,90,0,0,0,0,0,0,4098,4240,3919,0,0,0,0,0,0,0,3945,3945,3945,3945,6,8,10,12,'Midrium Bolt Heads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14040,0,0,51,90,0,0,60,0,0,0,4096,4238,654,654,654,654,654,654,717,854,16596,16941,16941,16941,1,1,1,1,'Flamberge',NULL); -- JPWiki/ffxiclopedia Discrepancies between pages, but highest value used.
|
|
INSERT INTO `synth_recipes` VALUES (14041,0,0,0,90,58,0,4,0,0,0,4096,4238,663,664,664,664,745,754,850,914,12383,12384,12384,12384,1,1,1,1,'General\'s Shield',NULL); -- JPWiki data, ffxiclopedia agree since 10/2018 revision,subs unconfirmed elsewhere
|
|
INSERT INTO `synth_recipes` VALUES (14042,0,1993,0,90,0,0,0,0,0,0,4096,4238,643,646,646,646,1642,1642,1648,0,1287,1287,1287,1287,1,1,1,1,'Frigid Core','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14043,0,0,0,90,0,0,0,0,0,0,4096,4238,643,646,646,646,0,0,0,0,655,655,655,655,1,1,1,1,'Adaman Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14044,0,1993,0,90,0,0,0,0,0,0,4096,4238,643,646,646,646,1645,1645,1648,0,1285,1285,1285,1285,1,1,1,1,'Luminous Core','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14045,0,1993,0,90,0,0,0,0,0,0,4096,4238,643,646,646,646,1644,1644,1648,0,1286,1286,1286,1286,1,1,1,1,'Spirit Core','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14046,0,1993,0,90,0,0,0,0,0,0,4096,4238,643,646,646,646,1641,1641,1648,0,1284,1284,1284,1284,1,1,1,1,'Inferno Core','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14047,0,0,0,90,0,0,0,0,0,0,4096,4238,645,1703,1703,1703,0,0,0,0,1704,1704,1704,1704,1,1,1,1,'Kunwu Iron','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14501,0,0,0,91,0,0,0,0,0,0,4096,4238,646,1229,1229,1229,1229,1229,1229,0,655,655,655,655,1,1,1,1,'Adaman Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14502,0,0,42,91,45,0,0,0,0,0,4096,4238,650,655,719,745,745,914,0,0,18745,18746,18746,18746,1,1,1,1,'Adaman Sainti','TOAU'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14503,0,0,0,91,0,0,0,0,0,0,4096,4238,655,717,0,0,0,0,0,0,16470,17621,17621,17621,1,1,1,1,'Gully',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14504,0,0,0,91,0,0,0,0,0,0,4096,4238,2302,2302,18409,0,0,0,0,0,18405,18406,18406,18406,1,1,1,1,'Jadagna','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (14505,0,0,0,91,42,0,0,0,0,0,4096,4238,664,745,914,16395,0,0,0,0,16396,17481,17481,17481,1,1,1,1,'Koenigs Knuckles',NULL); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14506,1,0,0,91,0,0,0,0,0,0,4100,4242,18409,0,0,0,0,0,0,0,2302,2302,2302,2302,1,1,2,2,'Jadagna -1 (desynth)','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (14507,0,0,0,91,0,0,0,0,0,0,4096,4238,643,643,643,647,0,0,0,0,1711,1711,1711,1711,1,1,1,1,'Molybdenum Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14508,0,0,0,91,0,0,0,0,0,0,4099,4241,1363,9130,0,0,0,0,0,0,27388,27389,27389,27389,1,1,1,1,'Bewitched Sollerets','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14509,0,0,0,91,40,0,30,0,0,0,4096,4238,820,851,2001,2001,2275,2823,0,0,12261,12261,12261,12261,1,1,1,1,'Ebon Leggings','WOTG'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14510,0,0,0,91,0,0,0,0,0,0,4096,4238,9130,10359,0,0,0,0,0,0,27481,27482,27482,27482,1,1,1,1,'Vexed Sune-Ate','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14511,0,0,0,91,0,0,0,0,0,0,4096,4238,9492,0,0,0,0,0,0,0,16470,16470,16470,16470,1,1,1,1,'Gully','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14512,1,0,0,91,0,0,0,0,0,0,4100,4242,16470,0,0,0,0,0,0,0,717,655,655,655,1,1,1,1,'Gully (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14513,0,0,0,92,0,0,0,0,0,0,4096,4238,654,655,0,0,0,0,0,0,16452,17620,17620,17620,1,1,1,1,'Misericorde',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14514,0,0,0,92,0,45,0,0,0,0,4098,4240,666,683,829,1415,1764,0,0,0,15188,15187,15187,15187,1,1,1,1,'Hachiman Jinpachi','COP'); -- wiki(CC??), BG(CC??), JPwiki(CC45), AH(CC??) checked 25/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14515,0,0,0,92,0,0,0,0,0,0,4096,4238,1711,0,0,0,0,0,0,0,669,669,669,669,1,1,1,1,'Molybdenum Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14516,0,0,0,92,0,0,44,0,0,0,4099,4241,682,683,826,855,855,0,0,0,1360,1361,1361,1361,1,1,1,1,'Cursed Breeches',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14517,0,0,0,92,0,0,0,0,0,0,4098,4240,665,0,0,0,0,0,0,0,675,675,675,675,1,1,1,1,'Adaman Scales',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14518,0,0,0,92,0,0,0,0,0,0,4098,4240,655,0,0,0,0,0,0,0,3507,3507,3507,3507,6,8,10,12,'Adaman Bolt Heads','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (14519,0,0,0,92,0,0,0,0,0,0,4099,4241,1359,9130,0,0,0,0,0,0,27036,27037,27037,27037,1,1,1,1,'Bewitched Mufflers','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14520,0,1995,0,92,0,0,0,0,0,0,4096,4238,1711,1711,1711,1711,1711,1711,2144,0,669,669,669,669,6,6,6,6,'Mlbd. Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14521,0,0,0,92,0,0,0,0,0,0,4096,4238,1286,16470,0,0,0,0,0,0,17625,17625,17625,17625,1,1,1,1,'Ponderous Gully','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14522,0,0,20,93,0,0,0,0,59,0,4096,4238,652,654,654,654,713,824,924,0,16777,16791,16791,16791,1,1,1,1,'Death Scythe',NULL); -- JPWiki/ffxiclopedia Discrepancies between pages, but highest value used.
|
|
INSERT INTO `synth_recipes` VALUES (14523,0,0,0,93,0,58,0,0,0,0,4098,4240,664,682,1764,1764,0,0,0,0,12490,15192,15192,15192,1,1,1,1,'Yasha Jinpachi','COP'); -- BGwiki and JP wiki
|
|
INSERT INTO `synth_recipes` VALUES (14524,0,0,0,93,40,0,25,0,0,0,4096,4238,2001,2001,2275,2823,12698,0,0,0,12189,12189,12189,12189,1,1,1,1,'Ebon Gauntlets',NULL); -- JPWiki data, ffxiclopedia agree since 07/2019 revision,subs unconfirmed elsewhere
|
|
INSERT INTO `synth_recipes` VALUES (14525,0,0,0,93,0,0,0,0,0,0,4096,4238,3918,3918,3918,3918,0,0,0,0,3919,3919,3919,3919,1,1,1,1,'Midrium Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14526,0,0,13,93,49,0,0,0,0,0,4096,4238,655,716,745,914,0,0,0,0,16653,16685,16685,16685,1,1,1,1,'Nadziak',NULL); -- BGwiki and JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (14527,0,0,0,93,23,0,0,0,0,0,4099,4241,650,665,683,12940,0,0,0,0,1362,1363,1363,1363,1,1,1,1,'Cursed Sollerets',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14528,0,0,0,93,0,0,0,0,0,0,4098,4240,652,8748,0,0,0,0,0,0,8750,8750,8750,8750,6,8,10,12,'Ra\'Kaznar Arrowheads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14529,0,0,0,93,0,0,47,0,0,0,4096,4238,664,855,855,1705,0,0,0,0,15400,15401,15401,15401,1,1,1,1,'Black Cuisses','COP'); -- JPWiki data, ffxiclopedia agree since 12/2009 revision based on BG posts,subs unconfirmed elsewhere
|
|
INSERT INTO `synth_recipes` VALUES (14530,0,0,0,93,0,0,0,0,0,0,4099,4241,1361,9130,0,0,0,0,0,0,27212,27213,27213,27213,1,1,1,1,'Bewitched Breeches','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14531,0,0,0,93,0,0,46,0,0,0,4096,4238,664,664,682,682,745,855,1763,0,14876,14878,14878,14878,1,1,1,1,'Hachiman Kote','COP'); -- wiki(LC40+), BG(LC??), JPwiki(LC46), AH(LC??) checked 25/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14532,0,0,0,93,0,0,0,0,0,0,4096,4238,1704,0,0,0,0,0,0,0,1705,1705,1705,1705,1,1,1,1,'Kunwu Iron Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14533,0,0,0,94,0,0,0,0,0,0,4096,4238,3919,3927,0,0,0,0,0,0,20644,20642,20642,20642,1,1,1,1,'Tzustes Knife','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14534,0,0,0,94,23,0,0,0,0,0,4099,4241,650,665,12684,0,0,0,0,0,1358,1359,1359,1359,1,1,1,1,'Cursed Mufflers',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14535,0,0,0,94,0,0,0,0,0,0,4099,4241,655,655,0,0,0,0,0,0,683,683,683,683,1,2,3,4,'Adaman Chain',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14536,0,0,0,94,51,0,49,0,0,0,4099,4241,665,665,745,914,1629,1699,1699,0,14848,14849,14849,14849,1,1,1,1,'Barone Manopolas','COP'); -- BGwiki and JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (14537,0,0,0,94,0,0,0,0,0,0,4096,4238,664,664,1705,12958,0,0,0,0,15339,15340,15340,15340,1,1,1,1,'Black Sollerets','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14538,0,1994,0,94,0,0,0,0,0,0,4099,4241,655,655,655,655,655,655,2143,0,683,683,683,683,3,6,9,12,'Adaman Chain','COP'); -- mult. sources agree
|
|
INSERT INTO `synth_recipes` VALUES (14539,0,0,0,94,0,0,0,0,0,0,4096,4238,9493,0,0,0,0,0,0,0,16547,16547,16547,16547,1,1,1,1,'Anelace','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14540,0,0,41,95,60,0,0,0,0,0,4096,4238,655,655,719,791,812,2152,2275,2275,17727,17728,17728,17728,1,1,1,1,'Adaman Kilij','TOAU'); -- JPWiki/xiclopedia agree from OCT2018, FFXIAH has post of skillup at 94SM in 2008
|
|
INSERT INTO `synth_recipes` VALUES (14541,0,0,0,94,0,0,0,0,0,0,4096,4238,9130,10425,0,0,0,0,0,0,25621,25622,25622,25622,1,1,1,1,'Vexed Somen','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14542,0,0,0,94,0,0,0,0,0,0,4096,4238,655,655,745,854,914,0,0,0,16547,17657,17657,17657,1,1,1,1,'Anelace',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14543,0,0,0,94,0,0,0,0,0,0,4096,4238,1355,9130,0,0,0,0,0,0,26684,26685,26685,26685,1,1,1,1,'Bewitched Celata','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14544,0,0,0,95,44,0,0,0,0,0,4096,4238,652,654,654,719,745,914,0,0,16707,18197,18197,18197,1,1,1,1,'Bhuj',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14545,0,0,0,95,59,0,56,0,0,0,4099,4241,664,669,745,763,914,1304,1629,1699,14416,14417,14417,14417,1,1,1,1,'Barone Corazza','COP'); -- TODO: Hone in on exact level of GSmith, it is either 59 or 60. We also need a more accurate level for Leather, but it appears to be >= 55. Alla and FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (14546,0,0,0,95,0,0,0,0,0,0,4096,4238,2538,3919,3919,0,0,0,0,0,20744,20743,20743,20743,1,1,1,1,'Bihkah Sword','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14547,0,0,0,95,52,41,0,0,0,0,4096,4238,655,664,664,745,821,828,855,914,15330,15332,15332,15332,1,1,1,1,'Hachiman Sune-Ate','COP'); -- wiki(GS52+,CC??), BG(GS51,CC??), JPwiki(GS52,CC41), AH(GS51,CC??) checked 25/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14548,0,0,0,95,26,0,0,0,0,0,4096,4238,648,661,665,683,850,0,0,0,1354,1355,1355,1355,1,1,1,1,'Cursed Celata',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14549,0,0,0,95,0,0,0,0,0,0,4096,4238,664,1705,12702,0,0,0,0,0,14010,14011,14011,14011,1,1,1,1,'Black Gadlings','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14550,0,0,0,95,40,0,0,0,0,0,4096,4238,2001,2001,2275,2275,2823,0,0,0,12117,12117,12117,12117,1,1,1,1,'Ebon Armet','WOTG'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14551,0,0,0,95,0,0,0,0,0,0,4096,4238,4021,0,0,0,0,0,0,0,4022,4022,4022,4022,1,1,1,1,'Titanium Sheet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14552,0,0,0,95,0,0,0,0,0,0,4099,4241,1357,9130,0,0,0,0,0,0,26860,26861,26861,26861,1,1,1,1,'Bewitched Hauberk','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14553,0,0,0,95,18,0,0,0,0,0,4099,4241,661,665,665,715,850,0,0,0,12309,12358,12358,12358,1,1,1,1,'Ritter Shield',NULL); -- BGwiki and JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (14554,0,0,0,95,0,0,0,0,0,0,4096,4238,9130,10246,0,0,0,0,0,0,25694,25695,25695,25695,1,1,1,1,'Vexed Domaru','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (14555,0,1995,0,95,0,0,0,0,0,0,4096,4238,2144,4021,4021,4021,4021,4021,4021,0,4022,4022,4022,4022,6,6,6,6,'Titanium Sheet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14556,0,0,0,95,0,0,0,0,0,0,4096,4238,664,3927,3963,3963,0,0,0,0,28671,28669,28669,28669,1,1,1,1,'Butznar Shield','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14557,0,0,0,96,0,0,38,0,0,0,4096,4238,665,682,682,823,855,1763,1773,1773,14437,14439,14439,14439,1,1,1,1,'Hachiman Domaru','COP'); -- wiki(LC??), BG(LC??), JPwiki(LC38), AH(LC??) checked 25/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14558,0,0,0,96,0,0,0,0,0,0,4099,4241,2303,2303,16166,0,0,0,0,0,16161,16163,16163,16163,1,1,1,1,'Januwiyah','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (14559,0,0,0,96,55,0,0,0,0,0,4096,4238,648,664,747,850,1705,0,0,0,13887,13888,13888,13888,1,1,1,1,'Black Sallet','COP'); -- BGwiki and JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (14560,0,0,0,96,0,0,0,0,0,0,4096,4238,654,655,655,745,914,0,0,0,17064,17459,17459,17459,1,1,1,1,'Scepter',NULL); -- JPWiki 96SM, xiclopedia agrees since removing ??GS flag DEC2019, others ?? GS
|
|
INSERT INTO `synth_recipes` VALUES (14561,0,0,0,96,0,0,0,0,0,0,4096,4238,852,3919,3919,3919,3919,3927,3931,0,20783,20784,20784,20784,1,1,1,1,'Uruz Blade','SOA'); -- JPWiki 96SM, xiclopedia agrees since removing ??AL JUL2021, others ??AL
|
|
INSERT INTO `synth_recipes` VALUES (14562,0,0,0,96,30,48,0,0,0,0,4099,4241,650,665,683,823,830,850,1274,12556,1356,1357,1357,1357,1,1,1,1,'Cursed Hauberk',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14563,1,0,0,96,0,0,0,0,0,0,4100,4242,16161,0,0,0,0,0,0,0,2303,2303,2303,2303,1,1,2,2,'Januwiyah (desynth)','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (14564,0,0,60,96,0,0,0,0,0,0,4096,4238,654,654,3919,3927,0,0,0,0,20831,20832,20832,20832,1,1,1,1,'Aalak\' Axe','SOA'); -- BGwiki and JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (14565,0,0,0,96,0,0,0,0,0,0,4096,4238,3919,0,0,0,0,0,0,0,3963,3963,3963,3963,1,1,1,1,'Midrium Sheet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14566,0,0,44,97,0,0,48,0,0,0,4096,4238,655,655,655,655,655,655,717,1122,16597,16955,16955,16955,1,1,1,1,'Nagan',NULL); -- BGwiki and JP Wiki (duplicate recipe 14578)
|
|
-- INSERT INTO `synth_recipes` VALUES (14567,0,0,255,96,0,0,0,0,0,0,4096,4238,657,720,818,853,3919,3939,0,0,21011,21012,21012,21012,1,1,1,1,'Enju','SOA'); -- JPWiki data 96SM, ??LE, ??WW, no sub level data confirmed yet
|
|
-- INSERT INTO `synth_recipes` VALUES (14568,0,0,0,96,0,0,255,0,0,0,4096,4238,657,720,877,2275,2304,3919,3919,3939,21056,21057,21057,21057,1,1,1,1,'Tomonari','SOA'); -- JPWiki data 96SM, ??LE, no sub level data confirmed yet
|
|
INSERT INTO `synth_recipes` VALUES (14569,0,1995,0,96,0,0,0,0,0,0,4096,4238,2144,3919,3919,3919,3919,3919,3919,0,3963,3963,3963,3963,6,6,6,6,'Midrium Sheet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14570,0,0,0,96,0,0,0,0,0,0,4096,4238,3919,3919,3923,3927,0,0,0,0,20878,20879,20879,20879,1,1,1,1,'Nohkux Axe','SOA'); -- JPWiki 96SM, xiclopedia edited to match AUG2020, others ??WW
|
|
INSERT INTO `synth_recipes` VALUES (14571,0,0,0,97,0,0,0,0,0,0,4098,4240,658,0,0,0,0,0,0,0,3947,3947,3947,3947,6,8,10,12,'Damascus Bolt Heads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14572,0,0,0,97,60,0,35,0,0,0,4096,4238,851,851,2001,2001,2275,2823,0,0,12225,12225,12225,12225,1,1,1,1,'Ebon Hose','WOTG'); -- FFXIclopedia and JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (14573,0,0,0,97,0,0,0,0,0,0,4096,4238,2538,3919,3919,3919,3919,3927,0,0,20789,20788,20788,20788,1,1,1,1,'Hatzoaar Sword','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14574,0,0,0,97,58,0,0,0,0,0,4096,4238,664,665,745,855,914,0,0,0,12804,14312,14312,14312,1,1,1,1,'Adaman Cuisses',NULL); -- wiki, BG, JPwiki, AH checked 25/Nov/2021
|
|
-- INSERT INTO `synth_recipes` VALUES (14575,0,0,0,97,255,0,0,0,0,0,4096,4238,650,711,3919,3923,0,0,0,0,21292,21293,21293,21293,1,1,1,1,'Bandeiras Gun','SOA'); -- JPWiki data 97SM, ??WW, ??GS, no sub level data confirmed yet
|
|
-- INSERT INTO `synth_recipes` VALUES (14576,0,0,0,97,0,0,255,0,0,0,4096,4238,1629,2170,8990,8992,0,0,0,0,27224,27225,27225,27225,1,1,1,1,'Gefechtdiechlings','SOA'); -- JPWiki data 97SM, ??LE, no sub level data confirmed yet
|
|
INSERT INTO `synth_recipes` VALUES (14577,0,0,0,97,0,0,0,0,0,0,4096,4238,1285,16547,0,0,0,0,0,0,17703,17703,17703,17703,1,1,1,1,'Pealing Anelace','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (14578,0,0,255,97,0,0,255,0,0,0,4096,4238,655,655,655,655,655,655,717,1122,16597,16955,16955,16955,1,1,1,1,'Nagan',NULL); -- duplicate recipe (14566)? JPWiki 97SM, 48LE, 44WW xiclopedia edit AUG2020 matches, others ??subs
|
|
INSERT INTO `synth_recipes` VALUES (14579,0,0,0,97,0,0,0,0,0,0,4096,4238,1284,16659,0,0,0,0,0,0,17949,17949,17949,17949,1,1,1,1,'Furnace Tabarzin','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14580,0,0,0,97,0,0,0,0,0,0,4096,4238,1466,1466,0,0,0,0,0,0,1467,1467,1467,1467,1,1,1,1,'Relic Steel',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (14581,0,0,0,97,0,0,0,0,0,0,4096,4238,1286,16423,0,0,0,0,0,0,18361,18361,18361,18361,1,1,1,1,'Ponderous Manoples','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14582,0,0,0,97,59,0,39,0,0,0,4096,4238,664,664,682,747,855,855,1704,1705,14382,14383,14383,14383,1,1,1,1,'Plastron','COP'); -- BGwiki and JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (14583,0,0,0,97,0,0,0,0,0,0,4096,4238,1285,17038,0,0,0,0,0,0,17470,17470,17470,17470,1,1,1,1,'Pealing Buzdygan','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14584,0,0,0,98,0,0,0,0,0,0,4096,4238,734,734,734,734,0,0,0,0,735,735,735,735,1,1,1,1,'Thokcha Ingot','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (14585,0,0,0,98,60,0,0,0,0,0,4096,4238,648,664,665,745,850,914,0,0,12420,13941,13941,13941,1,1,1,1,'Adaman Barbuta',NULL); -- wiki, BG, JPwiki, AH checked 25/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14586,0,0,0,98,0,0,0,0,0,0,4102,4244,25864,0,0,0,0,0,0,0,25849,25849,25849,25849,1,1,1,1,'Dashing Subligar','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (14587,0,0,0,98,0,0,0,0,255,0,4096,4238,654,654,2274,3923,3923,3927,3935,0,20922,20923,20923,20923,1,1,1,1,'Aak\'ab Scythe','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (14588,0,0,0,98,255,0,0,0,0,0,4096,4238,747,914,2170,2275,3935,8990,8992,0,26722,26723,26723,26723,1,1,1,1,'Gefechtschaller','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14589,0,0,0,98,0,0,0,0,0,0,4098,4240,657,745,755,914,0,0,0,0,19783,19783,19783,19783,33,66,99,99,'Iga Shuriken','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (14590,0,0,0,98,0,0,0,0,0,0,4096,4238,655,655,655,1640,0,0,0,0,16579,17712,17712,17712,1,1,1,1,'Kaskara','COP'); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14591,0,0,0,98,49,0,0,0,0,0,4096,4238,655,655,655,745,914,0,0,0,17038,17460,17460,17460,1,1,1,1,'Buzdygan',NULL); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (14592,0,0,0,98,0,0,0,0,0,0,4096,4238,655,655,664,932,2275,0,0,0,16423,17518,17518,17518,1,1,1,1,'Manoples',NULL); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14593,0,0,0,98,60,0,0,0,0,0,4096,4238,668,2001,2152,2275,2468,0,0,0,2445,2446,2446,2446,1,1,1,1,'Cursed Cuishes',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14594,0,0,0,99,0,0,0,0,0,0,4096,4238,643,685,685,1469,0,0,0,0,686,686,686,686,1,1,1,1,'Imperial Wootz Ingot','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (14595,0,0,33,99,52,0,0,0,0,0,4096,4238,654,655,655,717,745,914,0,0,16659,17935,17935,17935,1,1,1,1,'Tabarzin',NULL); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14596,0,0,0,99,60,0,0,0,0,0,4096,4238,648,668,879,2001,2275,2465,0,0,2439,2440,2440,2440,1,1,1,1,'Cursed Helm',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14597,0,0,0,99,0,0,0,0,0,0,4096,4238,652,718,1469,0,0,0,0,0,1461,1461,1461,1461,1,1,1,1,'Wootz Ingot',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (14598,0,0,0,99,255,0,0,0,0,0,4096,4238,686,2001,2303,2418,0,0,0,0,317,317,317,317,1,1,1,1,'Bronze Rose','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (14599,0,0,0,99,0,0,0,0,0,0,4096,4238,1287,18223,0,0,0,0,0,0,18225,18225,18225,18225,1,1,1,1,'Blizzard Toporok','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14600,0,0,48,99,51,0,0,0,0,0,4096,4238,655,655,655,719,745,797,797,914,18223,18224,18224,18224,1,1,1,1,'Toporok','COP'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14601,0,0,30,100,0,0,0,0,0,0,4096,4238,710,742,757,757,757,757,1629,4159,19177,19178,19178,19178,1,1,1,1,'Etourdissante','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (14602,0,0,0,100,0,0,0,0,0,0,4096,4238,720,735,1459,0,0,0,0,0,19788,19789,19789,19789,1,1,1,1,'Gorkhali Kukri','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (14603,0,0,0,100,0,0,0,0,0,0,4096,4238,648,657,707,735,862,2372,0,0,19299,19300,19300,19300,1,1,1,1,'Aisa','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (14604,0,0,0,100,60,0,0,0,0,0,4096,4238,668,668,2001,2001,2275,2275,2823,0,12153,12153,12153,12153,1,1,1,1,'Ebon Breastplate','WOTG');
|
|
-- INSERT INTO `synth_recipes` VALUES (14605,0,0,0,100,255,0,0,0,255,0,4096,4238,852,3923,3923,3923,3923,3927,3931,0,20785,20786,20786,20786,1,1,1,1,'Thurisaz Blade','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (14606,0,0,0,100,255,0,0,0,0,0,4096,4238,653,653,653,653,659,1163,1711,2275,321,321,321,321,1,1,1,1,'Mythril Bell','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (14607,0,0,0,100,0,0,0,0,0,0,4096,4238,655,745,812,0,0,0,0,0,16461,18022,18022,18022,1,1,1,1,'Adaman Kris','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14608,0,0,51,100,29,0,0,0,0,0,4096,4238,650,654,654,655,717,0,0,0,17252,18147,18147,18147,1,1,1,1,'Culverin',NULL); -- FFXIClopedia & JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14609,0,0,0,100,0,0,0,0,0,0,4096,4238,4020,4020,4020,4020,0,0,0,0,4021,4021,4021,4021,1,1,1,1,'Titanium Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (14610,0,0,0,100,0,0,0,0,0,0,4096,4238,1285,16597,0,0,0,0,0,0,16954,16954,16954,16954,1,1,1,1,'Pealing Nagan','COP');
|
|
INSERT INTO `synth_recipes` VALUES (14611,0,0,0,100,59,0,0,0,0,0,4096,4238,664,664,665,745,855,855,914,0,12932,14193,14193,14193,1,1,1,1,'Adaman Sabatons',NULL); -- wiki(GS??), BG(GS??), JPwiki(GS59), AH(GS??) checked 25/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (14612,0,0,44,100,0,0,51,0,0,0,4096,4238,650,654,655,655,657,720,818,877,18431,18432,18432,18432,1,1,1,1,'Butachi','COP'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (14613,0,0,0,100,0,0,0,0,0,0,4098,4240,657,914,4022,0,0,0,0,0,21351,21351,21351,21352,33,66,99,99,'Roppo Shuriken','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15001,0,0,0,101,60,0,0,0,0,0,4096,4238,668,2001,2001,2152,2152,2275,2469,0,2447,2448,2448,2448,1,1,1,1,'Cursed Sabatons',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (15002,0,0,0,101,0,0,0,0,0,0,4096,4238,641,642,4058,4058,0,0,0,0,8704,8704,8704,8704,1,1,1,1,'Bismuth Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15003,0,0,0,101,0,0,0,0,0,0,4096,4238,745,851,4095,4095,0,0,0,0,28178,28179,28179,28179,1,1,1,1,'Shabti Cuisses','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15004,0,0,0,101,0,0,0,60,0,0,4096,4238,735,735,1615,0,0,0,0,0,18910,18911,18911,18911,1,1,1,1,'Apaisante','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (15005,0,0,0,101,255,0,0,0,0,0,4096,4238,666,666,667,667,668,754,794,2275,332,332,332,332,1,1,1,1,'Winged Plaque','WOTG');
|
|
-- INSERT INTO `synth_recipes` VALUES (15006,0,0,0,101,0,0,255,0,0,0,4096,4238,747,914,1629,2170,8990,8992,0,0,27396,27397,27397,27397,1,1,1,1,'Gefechtschuhs','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15007,0,0,0,101,0,0,0,0,0,0,4096,4238,654,735,16724,0,0,0,0,0,18522,18523,18523,18523,1,1,1,1,'Firnaxe','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (15008,0,0,0,102,255,0,0,0,0,0,4096,4238,655,1122,2536,8704,0,0,0,0,21604,21605,21605,21605,1,1,1,1,'Arasy Sword','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15009,0,0,255,102,0,0,0,0,0,0,4096,4238,655,719,8704,0,0,0,0,0,21504,21505,21505,21505,1,1,1,1,'Arasy Sainti','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15010,0,0,0,102,0,0,0,0,0,0,4098,4240,4021,0,0,0,0,0,0,0,3949,3949,3949,3949,6,8,10,12,'Titanium Bolt Heads','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (15011,0,0,255,102,0,0,0,0,0,0,4096,4238,730,8704,0,0,0,0,0,0,21554,21555,21555,21555,1,1,1,1,'Arasy Knife','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15012,0,0,0,102,0,0,0,0,0,0,4096,4238,645,645,645,8747,0,0,0,0,8748,8748,8748,8748,1,1,1,1,'Ra\'Kaznar Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15013,0,1995,0,102,0,0,0,0,0,0,4096,4238,2144,8704,8704,8704,8704,8704,8704,0,4095,4095,4095,4095,6,6,6,6,'Bismuth Sheet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15014,0,0,24,102,0,0,55,0,0,0,4096,4238,657,720,735,735,745,821,2275,2529,18462,18463,18463,18463,1,1,1,1,'Sasanuki','ABYSSEA'); -- JP Wiki
|
|
-- INSERT INTO `synth_recipes` VALUES (15015,0,0,0,102,255,0,0,0,0,0,4096,4238,655,2536,8704,0,0,0,0,0,22015,22016,22016,22016,1,1,1,1,'Arasy Rod','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15016,0,0,255,102,0,0,0,0,0,0,4096,4238,654,655,719,8704,0,0,0,0,22135,22136,22136,22136,1,1,1,1,'Arasy Gun','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15017,0,0,0,102,0,0,0,0,0,0,4096,4238,8704,0,0,0,0,0,0,0,4095,4095,4095,4095,1,1,1,1,'Bismuth Sheet','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (15018,0,0,0,102,0,0,255,0,0,0,4096,4238,657,719,821,1122,8704,0,0,0,21909,21910,21910,21910,1,1,1,1,'Yoshikiri','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15019,0,0,0,102,60,0,0,0,0,0,4096,4238,664,665,745,914,12696,12696,0,0,12676,14828,14828,14828,1,1,1,1,'Adaman Gauntlets',NULL); -- wiki(GS60), BG(GS60), JPwiki(GS59), AH(GS60) checked 25/Nov/2021
|
|
-- INSERT INTO `synth_recipes` VALUES (15020,0,0,0,102,255,0,0,0,0,0,4096,4238,655,657,719,821,1122,8704,0,0,21960,21961,21961,21961,1,1,1,1,'Ashijiro No Tachi','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15021,0,0,0,102,255,0,0,0,0,0,4096,4238,747,914,8990,8992,12696,12696,0,0,27987,27988,27988,27988,1,1,1,1,'Gefechthentzes','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (15022,0,0,0,102,255,0,0,0,0,0,4096,4238,655,719,2536,8704,0,0,0,0,21704,21705,21705,21705,1,1,1,1,'Arasy Tabar','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15023,0,0,0,102,0,0,255,0,0,0,4096,4238,655,655,719,1122,8704,0,0,0,21654,21655,21655,21655,1,1,1,1,'Arasy Claymore','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15024,0,0,0,102,255,0,0,0,0,0,4096,4238,655,719,812,2536,8704,0,0,0,21762,21763,21763,21763,1,1,1,1,'Arasy Axe','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15025,0,0,45,103,0,0,0,0,0,0,4096,4238,718,735,735,2000,0,0,0,0,18543,18544,18544,18544,1,1,1,1,'Breidox','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (15026,0,0,0,103,0,0,0,0,0,0,4096,4238,1466,1469,3920,3920,0,0,0,0,658,658,658,658,1,1,1,1,'Damascus Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15027,0,0,0,103,60,0,0,0,0,0,4096,4238,668,2001,2275,2467,12696,12696,0,0,2443,2444,2444,2444,1,1,1,1,'Cursed Gauntlets',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
-- INSERT INTO `synth_recipes` VALUES (15028,0,0,0,103,0,0,255,0,0,0,4096,4238,747,914,2170,8990,8990,8992,8992,0,26881,26882,26882,26882,1,1,1,1,'Gefechtbrust','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15029,0,0,0,103,0,0,0,0,0,0,4096,4238,745,914,4095,4095,12696,12696,0,0,28038,28039,28039,28039,1,1,1,1,'Shabti Gauntlets','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15030,0,0,0,103,0,0,0,0,0,0,4098,4240,8704,0,0,0,0,0,0,0,8705,8705,8705,8705,6,8,10,12,'Bismuth Bolt Heads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15031,0,0,0,103,60,0,0,0,0,0,4096,4238,664,664,665,665,745,855,855,914,12548,13746,13746,13746,1,1,1,1,'Adaman Cuirass',NULL); -- wiki, BG, JPwiki, AH checked 25/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (15032,0,0,0,104,60,0,60,0,0,0,4096,4238,668,668,2001,2001,2170,2170,2275,2466,2441,2442,2442,2442,1,1,1,1,'Cursed Breastplate',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (15033,0,0,60,104,0,0,0,0,0,0,4096,4238,723,735,735,735,826,0,0,0,18561,18562,18562,18562,1,1,1,1,'Yhatdhara','ABYSSEA'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (15034,0,0,0,104,51,0,0,0,0,0,4096,4238,655,655,655,655,745,745,745,2535,19151,19152,19152,19152,1,1,1,1,'Bahadur','WOTG'); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (15035,0,0,30,104,58,0,0,0,0,0,4096,4238,650,711,735,735,742,0,0,0,19743,19744,19744,19744,1,1,1,1,'Opprimo','ABYSSEA'); -- BGwiki and JP Wiki
|
|
-- INSERT INTO `synth_recipes` VALUES (15036,0,0,255,104,0,0,0,0,0,0,4096,4238,4019,4023,21191,0,0,0,0,0,21192,21193,21193,21193,1,1,1,1,'Voay Staff','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15037,0,0,0,104,0,0,0,0,0,0,4098,4240,8748,0,0,0,0,0,0,0,8749,8749,8749,8749,6,8,10,12,'Ra\'Kaznar Bolt Heads','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (15038,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,17364,0,0,0,0,21400,21401,21401,21401,1,1,1,1,'Blurred Harp','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15039,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,16597,0,0,0,0,21700,21701,21701,21701,1,1,1,1,'Blurred Claymore','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15040,0,0,0,105,0,0,0,0,0,0,4096,4238,643,643,643,8723,0,0,0,0,8724,8724,8724,8724,1,1,1,1,'Beryllium Ingot','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (15041,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,16452,0,0,0,0,20601,20602,20602,20602,1,1,1,1,'Blurred Knife','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15042,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,16659,0,0,0,0,20802,20803,20803,20803,1,1,1,1,'Blurred Axe','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15043,0,0,0,105,255,0,0,0,0,0,4096,4238,650,652,652,686,686,2275,2275,2535,18495,18496,18496,18496,1,1,1,1,'Wootz Amood','WOTG');
|
|
-- INSERT INTO `synth_recipes` VALUES (15044,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,18223,0,0,0,0,20849,20850,20850,20850,1,1,1,1,'Blurred Cleaver','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15045,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,17221,0,0,0,0,21480,21481,21481,21481,1,1,1,1,'Blurred Crossbow','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15046,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,16416,0,0,0,0,20525,20526,20526,20526,1,1,1,1,'Blurred Claws','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15047,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,19263,0,0,0,0,21217,21218,21218,21218,1,1,1,1,'Blurred Bow','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15048,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,12387,0,0,0,0,27643,27644,27644,27644,1,1,1,1,'Blurred Shield','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15049,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,17101,0,0,0,0,21157,21158,21158,21158,1,1,1,1,'Blurred Staff','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15050,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,17064,0,0,0,0,21093,21094,21094,21094,1,1,1,1,'Blurred Rod','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15051,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,18413,0,0,0,0,20984,20985,20985,20985,1,1,1,1,'Kujaku','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15052,0,0,0,105,0,0,0,0,0,0,4096,4238,9247,9247,9247,9247,0,0,0,0,9248,9248,9248,9248,1,1,1,1,'Niobium Ingot','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15053,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,17727,0,0,0,0,20711,20712,20712,20712,1,1,1,1,'Blurred Sword','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15054,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,18431,0,0,0,0,21032,21033,21033,21033,1,1,1,1,'Kunitsuna','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15055,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,18129,0,0,0,0,20940,20941,20941,20941,1,1,1,1,'Blurred Lance','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15056,0,0,0,105,255,0,0,0,0,0,4096,4238,9062,9075,9075,16777,0,0,0,0,20896,20897,20897,20897,1,1,1,1,'Blurred Scythe','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15057,0,0,255,105,0,0,0,0,0,0,4096,4238,4019,4020,20772,0,0,0,0,0,20773,20774,20774,20774,1,1,1,1,'Voay Sword','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15058,0,0,0,106,0,0,0,0,0,0,4098,4240,652,8724,0,0,0,0,0,0,4083,4083,4083,4083,6,8,10,12,'Beryllium Arrowheads','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15059,0,0,0,106,0,0,0,0,0,0,4098,4240,8724,0,0,0,0,0,0,0,4085,4085,4085,4085,6,8,10,12,'Beryllium Bolt Heads','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15060,0,0,0,106,0,0,0,0,0,0,4096,4238,3927,8708,8724,8724,8724,0,0,0,21659,21660,21660,21660,1,1,1,1,'Beryllium Sword','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15061,0,0,0,106,0,0,0,0,0,0,4096,4238,657,3927,4027,8708,8724,8724,8748,0,21963,21964,21964,21964,1,1,1,1,'Beryllium Tachi','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15062,0,0,0,106,0,0,0,0,0,0,4096,4238,8724,8724,8724,0,0,0,0,0,22023,22024,22024,22024,1,1,1,1,'Beryllium Mace','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15063,0,0,0,106,0,0,0,0,0,0,4096,4238,3927,8724,0,0,0,0,0,0,21708,21709,21709,21709,1,1,1,1,'Beryllium Pick','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15064,0,0,0,106,30,0,60,0,0,0,4096,4238,687,752,1279,2751,3548,0,0,0,10354,10359,10359,10359,1,1,1,1,'Hexed Sune-Ate','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (15065,0,0,0,106,0,0,0,0,0,0,4096,4238,648,745,850,914,4095,4095,0,0,27748,27749,27749,27749,1,1,1,1,'Shabti Armet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15066,0,0,0,106,0,0,0,0,0,0,4096,4238,793,8724,8748,0,0,0,0,0,21556,21557,21557,21557,1,1,1,1,'Beryllium Kris','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15067,0,0,0,107,0,0,0,255,0,0,4098,4240,657,914,4012,4095,0,0,0,0,21353,21353,21353,21354,33,66,99,99,'Happo Shuriken','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15068,0,0,0,107,0,0,0,0,0,0,4096,4238,745,851,851,914,4095,4095,4095,0,28316,28317,28317,28317,1,1,1,1,'Shabti Sabatons','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15069,0,0,0,107,0,30,60,0,0,0,4096,4238,687,745,1279,1415,3548,0,0,0,10420,10425,10425,10425,1,1,1,1,'Hexed Somen','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (15070,0,0,0,107,0,0,0,0,0,0,4096,4238,816,8724,8739,0,0,0,0,0,28374,28375,28375,28375,1,1,1,1,'Dakatsu-No-Nodowa','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15071,0,0,0,109,0,0,0,0,0,0,4096,4238,745,851,851,914,4095,4095,4095,4095,27891,27892,27892,27892,1,1,1,1,'Shabti Cuirass','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15072,0,0,0,110,0,0,0,0,55,0,4102,4244,4015,9062,9257,9858,9868,0,0,0,25489,25490,25491,25491,1,1,1,1,'Ninja Nodowa','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15073,0,0,0,110,0,0,0,0,55,0,4102,4244,4015,9062,9257,9857,9868,0,0,0,25483,25484,25485,25485,1,1,1,1,'Samurai\'s Nodowa','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15074,0,0,0,110,0,0,60,0,0,0,4096,4238,687,687,745,1279,1415,3548,0,0,10241,10246,10246,10246,1,1,1,1,'Hexed Domaru','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (15075,0,0,0,110,0,0,0,0,55,0,4102,4244,4015,9062,9257,9847,9868,0,0,0,25423,25424,25425,25425,1,1,1,1,'Monk\'s Nodowa','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15076,0,0,255,255,0,0,0,0,0,0,4096,4238,650,655,655,655,818,877,1704,4014,21041,21042,21042,21042,1,1,1,1,'Sukezane','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (15077,0,0,0,255,255,0,0,0,0,0,4098,4240,657,914,4095,0,0,0,0,0,22276,22276,22276,22277,33,66,99,99,'Sasuke Shuriken','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15501,0,0,0,111,70,0,0,0,0,0,4099,4241,1362,8992,9064,9130,0,0,0,0,27388,27389,27389,27389,1,1,1,1,'Bewitched Sollerets','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15502,0,0,0,111,0,70,0,0,0,0,4096,4238,8724,9048,9130,10354,0,0,0,0,27481,27482,27482,27482,1,1,1,1,'Vexed Sune-Ate','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15503,0,0,0,112,70,0,0,0,0,0,4099,4241,1358,8992,9064,9130,0,0,0,0,27036,27037,27037,27037,1,1,1,1,'Bewitched Mufflers','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15504,0,0,0,113,255,0,0,255,0,0,4096,4238,653,658,658,766,3927,3979,0,0,20874,20875,20875,20875,1,1,1,1,'Razorfury','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15505,0,0,70,113,0,0,0,70,0,0,4096,4238,658,658,658,658,687,1122,3927,3977,20779,20780,20780,20780,1,1,1,1,'Senbaak Nagan','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15506,0,0,0,113,0,0,70,0,0,0,4099,4241,1360,8988,9064,9130,0,0,0,0,27212,27213,27213,27213,1,1,1,1,'Bewitched Breeches','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15507,0,0,0,113,255,0,0,0,0,0,4096,4238,658,766,1765,3981,0,0,0,0,21006,21007,21007,21007,1,1,1,1,'Pamun','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15508,0,0,0,114,0,70,0,0,0,0,4096,4238,8724,9048,9130,10420,0,0,0,0,25621,25622,25622,25622,1,1,1,1,'Vexed Somen','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15509,0,0,0,114,0,0,70,0,0,0,4096,4238,1354,8988,9064,9130,0,0,0,0,26684,26685,26685,26685,1,1,1,1,'Bewitched Celata','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15510,0,0,0,115,0,0,0,0,255,0,4096,4238,658,658,766,3552,4014,9061,9063,0,20754,20755,20755,20755,1,1,1,1,'Malfeasance','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (15511,0,0,0,115,0,70,0,0,0,0,4099,4241,1356,8728,9064,9130,0,0,0,0,26860,26861,26861,26861,1,1,1,1,'Bewitched Hauberk','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15512,0,0,0,115,0,70,0,0,0,0,4096,4238,8724,9048,9130,10241,0,0,0,0,25694,25695,25695,25695,1,1,1,1,'Vexed Domaru','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15513,0,0,0,116,0,0,0,0,0,0,4099,4241,3548,8748,9004,0,0,0,0,0,26337,26338,26338,26338,1,1,1,1,'Kwahu Kachina Belt','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (15514,0,0,0,118,0,0,0,0,0,0,4096,4238,687,8724,9064,0,0,0,0,0,26179,26180,26180,26180,1,1,1,1,'Varar Ring','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15515,0,1998,0,255,0,0,0,0,0,0,4102,4244,9062,9773,9845,9856,0,0,0,0,22287,22287,22287,22287,99,99,99,99,'Scout\'s Bolt','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15516,0,1998,0,255,0,0,0,255,0,0,4102,4244,9005,9062,9249,9831,9844,9845,9845,9855,21576,21577,21578,21578,1,1,1,1,'Bard\'s Knife','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15517,0,1998,0,255,0,0,0,255,0,0,4102,4244,9005,9062,9249,9831,9844,9845,9845,9862,21579,21580,21581,21581,1,1,1,1,'Commodore\'s Knife','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15518,0,0,0,255,0,255,0,0,0,0,4099,4241,4077,4082,9251,0,0,0,0,0,26034,26035,26035,26035,1,1,1,1,'Moonbeam Nodowa','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15519,0,0,0,255,0,0,255,0,0,0,4096,4238,4077,4079,9254,17928,0,0,0,0,21706,21707,21707,21707,1,1,1,1,'Barbarity','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15520,0,1997,0,255,0,0,0,0,0,0,4096,4238,4075,9248,16647,0,0,0,0,0,21710,21711,21711,21711,1,1,1,1,'Raetic Axe','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15521,0,1997,0,255,0,255,0,0,0,0,4096,4238,752,3980,9006,9247,9247,9247,0,0,25960,25961,25961,25961,1,1,1,1,'Ea Pigaches','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15522,0,0,0,255,255,0,0,0,0,0,4099,4241,4077,4081,9250,17472,0,0,0,0,21506,21507,21507,21507,1,1,1,1,'Jolt Counter','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15523,0,1998,0,255,0,0,255,0,0,0,4102,4244,9003,9062,9251,9835,9844,9845,9845,9846,21772,21773,21774,21774,1,1,1,1,'Warrior\'s Chopper','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15524,0,1997,0,255,0,255,0,0,0,0,4096,4238,752,752,3980,9006,9247,9247,9247,0,25980,25981,25981,25981,1,1,1,1,'Ea Cuffs','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15525,0,1997,0,255,0,255,0,0,0,0,4096,4238,752,761,3980,9006,9006,9247,9248,0,26529,26530,26530,26530,1,1,1,1,'Ea Houppelande','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15526,0,1997,0,255,0,255,0,0,0,0,4096,4238,752,761,3980,9006,9247,9248,0,0,25893,25894,25894,25894,1,1,1,1,'Ea Slops','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15527,0,1997,0,255,0,0,0,0,0,0,4096,4238,4074,9248,17461,0,0,0,0,0,22025,22026,22026,22026,1,1,1,1,'Raetic Rod','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15528,0,1997,0,255,0,255,0,0,0,0,4096,4238,752,761,3980,9006,9247,9247,9247,0,25553,25554,25554,25554,1,1,1,1,'Ea Hat','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15529,0,1997,0,255,0,0,0,0,0,0,4096,4238,4076,9248,18206,0,0,0,0,0,21767,21768,21768,21768,1,1,1,1,'Raetic Chopper','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15530,0,1998,0,255,0,0,0,255,0,0,4102,4244,9005,9062,9249,9831,9844,9845,9845,9851,21573,21574,21575,21575,1,1,1,1,'Assassin\'s Knife','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15531,0,1997,0,255,0,0,0,0,0,0,4096,4238,4075,9248,21558,0,0,0,0,0,21559,21560,21560,21560,1,1,1,1,'Raetic Kris','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15532,0,0,255,255,0,0,0,0,0,0,4096,4238,4077,4080,9246,16942,0,0,0,0,21656,21657,21657,21657,1,1,1,1,'Dyrnwyn','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (15533,0,1998,0,255,0,0,0,255,0,0,4102,4244,9005,9062,9249,9831,9844,9845,9845,9864,21582,21583,21584,21584,1,1,1,1,'Etoile Knife','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (19901,1,0,0,21,0,0,0,0,0,0,4100,4242,15288,0,0,0,0,0,0,0,672,850,850,850,1,1,2,4,'Pellet Belt (desynth)','COP'); -- use synth lvl, scaled xiclopedia data from 1/1/1/4
|
|
INSERT INTO `synth_recipes` VALUES (19902,1,0,0,18,0,0,0,0,0,0,4100,4242,12299,0,0,0,0,0,0,0,715,649,649,649,1,3,2,3,'Aspis (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (19903,1,0,0,25,0,0,0,0,0,0,4100,4242,16565,0,0,0,0,0,0,0,649,649,649,852,1,2,3,1,'Spatha (desynth)',NULL); -- based on synth lvl, xiclopedia results data
|
|
INSERT INTO `synth_recipes` VALUES (19904,1,0,0,19,0,0,0,0,0,0,4100,4242,16531,0,0,0,0,0,0,0,649,893,650,650,1,1,1,1,'Brass Xiphos (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19905,1,0,0,24,0,0,0,0,0,0,4100,4242,16552,0,0,0,0,0,0,0,650,650,652,652,1,1,1,2,'Scimitar (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19906,1,0,0,31,0,0,0,0,0,0,4100,4242,17060,0,0,0,0,0,0,0,649,649,651,651,1,2,2,2,'Rod (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19907,1,0,0,78,0,0,0,0,0,0,4100,4242,16789,0,0,0,0,0,0,0,713,817,654,654,1,1,1,1,'Darksteel Scythe (desynth)',NULL); -- use synth lvl, xiclopedia results
|
|
INSERT INTO `synth_recipes` VALUES (19908,1,0,0,55,0,0,0,0,0,0,4100,4242,14245,0,0,0,0,0,0,0,850,818,818,818,1,1,1,1,'Steel Cuisses (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19909,1,0,0,41,0,0,0,0,0,0,4100,4242,12706,0,0,0,0,0,0,0,852,852,651,651,1,1,1,1,'Iron Mittens (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19910,1,0,0,3,0,0,0,0,0,0,4100,4242,16448,0,0,0,0,0,0,0,649,649,648,648,1,1,1,1,'Bronze Dagger (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19911,1,0,0,12,0,0,0,0,0,0,4100,4242,17059,0,0,0,0,0,0,0,649,649,649,648,1,1,2,1,'Bronze Rod (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19912,1,0,0,29,0,0,0,0,0,0,4100,4242,12424,0,0,0,0,0,0,0,650,650,651,651,1,1,1,1,'Iron Mask (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19913,1,0,0,89,0,0,0,0,0,0,4100,4242,17251,0,0,0,0,0,0,0,650,654,1225,719,1,1,6,1,'Hellfire (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19914,1,0,0,51,0,0,0,0,0,0,4100,4242,14003,0,0,0,0,0,0,0,850,850,818,652,1,1,1,1,'Steel Fng. Gnt. (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (19915,1,0,0,255,0,0,0,0,0,0,4100,4242,16721,0,0,0,0,0,0,0,717,652,652,652,1,1,2,3,'Huge Moth Axe (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia Unknown recipe level
|
|
INSERT INTO `synth_recipes` VALUES (19916,1,0,0,43,0,0,0,0,0,0,4100,4242,16919,0,0,0,0,0,0,0,852,651,707,657,1,1,1,1,'Shinobi-Gatana (desynth)',NULL); -- use synth lvl, ffxiclopedia results
|
|
INSERT INTO `synth_recipes` VALUES (19917,1,0,0,13,0,0,0,0,0,0,4100,4242,12944,0,0,0,0,0,0,0,649,818,850,850,3,1,2,3,'Scale Greaves (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19918,1,0,0,50,0,0,0,0,0,0,4100,4242,17248,0,0,0,0,0,0,0,652,652,652,652,1,1,1,1,'Arquebus (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia no HQ result stated
|
|
INSERT INTO `synth_recipes` VALUES (19919,1,0,0,41,0,0,0,0,0,0,4100,4242,16706,0,0,0,0,0,0,0,716,652,652,652,1,1,2,2,'Heavy Axe (desynth)',NULL); -- use synth lvl, ffxiclopedia results
|
|
INSERT INTO `synth_recipes` VALUES (19920,1,0,0,23,0,0,0,0,0,0,4100,4242,16704,0,0,0,0,0,0,0,708,649,649,651,1,1,2,1,'Butterfly Axe (desynth)',NULL); -- use synth lvl, ffxiclopedia/FFXIAH results
|
|
INSERT INTO `synth_recipes` VALUES (19921,1,0,0,70,0,0,0,0,0,0,4100,4242,18014,0,0,0,0,0,0,0,654,654,654,654,1,1,1,1,'Odorous Knife (desynth)','COP'); -- 2022.03.05 Base on FFXIclopedia no HQ result stated
|
|
INSERT INTO `synth_recipes` VALUES (19922,1,0,0,46,0,0,0,0,0,0,4100,4242,17776,0,0,0,0,0,0,0,657,657,852,852,1,1,1,1,'Hibari (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19923,1,0,0,63,0,0,0,0,0,0,4100,4242,16457,0,0,0,0,0,0,0,1226,1226,1226,1226,4,4,4,4,'Dst. Baselard (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia no HQ result stated
|
|
INSERT INTO `synth_recipes` VALUES (19924,1,0,0,45,0,0,0,0,0,0,4100,4242,12836,0,0,0,0,0,0,0,852,651,818,818,1,1,1,1,'Iron Subligar (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19925,1,0,0,6,0,0,0,0,0,0,4100,4242,16535,0,0,0,0,0,0,0,649,649,850,850,1,2,1,1,'Bronze Sword (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19926,1,0,0,15,0,0,0,0,0,0,4100,4242,12816,0,0,0,0,0,0,0,649,649,649,649,2,2,2,2,'Scale Cuisses (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia no HQ result stated
|
|
INSERT INTO `synth_recipes` VALUES (19927,1,0,0,21,0,0,0,0,0,0,4100,4242,16466,0,0,0,0,0,0,0,707,707,651,651,1,1,1,1,'Knife (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (19928,1,0,0,255,0,0,0,0,0,0,4100,4242,16631,0,0,0,0,0,0,0,895,801,651,651,1,1,1,2,'Kaiser Sword (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia Unknown recipe level
|
|
INSERT INTO `synth_recipes` VALUES (19929,1,0,0,42,0,0,0,0,0,0,4100,4242,16475,0,0,0,0,0,0,0,853,716,653,653,1,1,1,1,'Mythril Kukri (desynth)',NULL); -- use synth lvl, ffxiclopedia results
|
|
INSERT INTO `synth_recipes` VALUES (19930,1,0,0,36,0,0,0,0,0,0,4100,4242,16900,0,0,0,0,0,0,0,852,707,651,657,1,1,1,1,'Wakizashi (desynth)',NULL); -- use desynth lvl, multi src agree
|
|
INSERT INTO `synth_recipes` VALUES (19931,1,0,0,25,0,0,0,0,0,0,4100,4242,16536,0,0,0,0,0,0,0,852,651,651,651,1,1,2,2,'Iron Sword (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19932,1,0,0,29,0,0,0,0,0,0,4100,4242,16896,0,0,0,0,0,0,0,852,852,652,652,1,1,1,1,'Kunai (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19933,1,0,0,58,0,0,0,0,0,0,4100,4242,17780,0,0,0,0,0,0,0,659,651,707,852,1,1,1,1,'Kyofu (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19934,1,0,0,35,0,0,0,0,0,0,4100,4242,12300,0,0,0,0,0,0,0,714,714,651,651,1,2,1,2,'Targe (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19935,1,0,0,46,0,0,0,0,0,0,4100,4242,17045,0,0,0,0,0,0,0,716,716,1226,653,1,1,6,2,'Maul (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19936,1,0,0,8,0,0,0,0,0,0,4100,4242,16768,0,0,0,0,0,0,0,817,715,649,649,3,1,1,2,'Bronze Zaghnal (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19937,1,0,0,7,0,0,0,0,0,0,4100,4242,16640,0,0,0,0,0,0,0,715,715,649,649,1,1,1,2,'Bronze Axe (desynth)',NULL); -- use synth lvl, ffxiclopedia results
|
|
INSERT INTO `synth_recipes` VALUES (19938,1,0,0,51,0,0,0,0,0,0,4100,4242,16545,0,0,0,0,0,0,0,852,852,1226,653,1,1,10,2,'Broadsword (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19939,1,0,0,5,0,0,0,0,0,0,4100,4242,12704,0,0,0,0,0,0,0,649,649,850,850,1,1,1,1,'Bronze Mittens (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19940,1,0,0,29,0,0,0,0,0,0,4100,4242,13871,0,0,0,0,0,0,0,850,850,652,652,1,1,1,1,'Iron Visor (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19941,1,0,0,44,0,0,0,0,0,0,4100,4242,16393,0,0,0,0,0,0,0,710,652,1226,1226,1,1,6,6,'Mythril Knuckles (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19942,1,0,0,93,0,0,0,0,0,0,4100,4242,16777,0,0,0,0,0,0,0,713,652,654,654,1,1,1,2,'Death Scythe (desynth)',NULL); -- JPWiki/ffxiclopedia used
|
|
-- INSERT INTO `synth_recipes` VALUES (19943,0,0,0,255,0,0,0,0,0,0,4096,4238,1284,18431,0,0,0,0,0,0,18433,18433,18433,18433,1,1,1,1,'Kagiroi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (19944,1,0,0,34,0,0,0,0,0,0,4100,4242,17044,0,0,0,0,0,0,0,707,707,651,651,1,1,2,2,'Warhammer (desynth)',NULL); -- use synth lvl, ffxiclopedia results
|
|
INSERT INTO `synth_recipes` VALUES (19945,1,0,0,102,0,0,0,0,0,0,4100,4242,12676,0,0,0,0,0,0,0,914,1225,654,655,1,6,1,1,'Adaman Gauntlets (desynth)',NULL); -- use synth lvl
|
|
-- INSERT INTO `synth_recipes` VALUES (19946,1,0,0,255,0,0,0,0,0,0,4100,4242,16745,0,0,0,0,0,0,0,651,651,651,651,1,1,1,1,'Decurion\'s Dagger (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia Unknown recipe level
|
|
INSERT INTO `synth_recipes` VALUES (19947,1,0,0,57,0,0,0,0,0,0,4100,4242,12672,0,0,0,0,0,0,0,817,850,850,651,6,3,4,2,'Gauntlets (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19948,1,0,0,88,0,0,0,0,0,0,4100,4242,17818,0,0,0,0,0,0,0,652,715,852,657,1,1,1,1,'Kanesada +1 (desynth)',NULL); -- at synth llvl, multi src agree on results
|
|
-- INSERT INTO `synth_recipes` VALUES (19949,1,0,0,79,0,0,0,0,0,0,4098,4240,2160,0,0,0,0,0,0,0,660,2303,2303,2303,1,1,1,1,'Troll Pauldron (desynth)','TOAU'); -- 2022.03.05 Recipe need comfirmation
|
|
-- INSERT INTO `synth_recipes` VALUES (19950,1,0,0,255,0,0,0,0,0,0,4100,4242,16533,0,0,0,0,0,0,0,649,649,893,797,1,2,2,2,'Ancient Sword (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia Unknown recipe level
|
|
INSERT INTO `synth_recipes` VALUES (19951,1,0,0,45,0,0,0,0,0,0,4100,4242,17061,0,0,0,0,0,0,0,652,652,1226,653,1,2,6,2,'Mythril Rod (desynth)',NULL); -- 2022.03.05 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (19952,1,0,0,255,0,0,0,0,0,0,4100,4242,16702,0,0,0,0,0,0,0,649,649,649,649,1,1,1,1,'Cougar Baghnakhs (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia Unknown recipe level
|
|
INSERT INTO `synth_recipes` VALUES (19953,1,0,0,79,0,0,0,0,0,0,4100,4242,2160,0,0,0,0,0,0,0,649,2302,2302,2302,1,1,1,1,'Troll Pauldron (desynth)','TOAU'); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19954,1,0,0,73,0,0,0,0,0,0,4100,4242,12708,0,0,0,0,0,0,0,855,855,654,654,1,1,1,1,'Darksteel Mittens (desynth)',NULL); -- use synth lvl, xiclopedia results
|
|
INSERT INTO `synth_recipes` VALUES (19955,1,0,0,39,0,0,0,0,0,0,4100,4242,16524,0,0,0,0,0,0,0,744,744,744,744,1,1,1,1,'Fleuret (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia no Hq listed
|
|
-- INSERT INTO `synth_recipes` VALUES (19956,1,0,0,255,0,0,0,0,0,0,4100,4242,566,0,0,0,0,0,0,0,649,649,649,649,1,1,1,1,'Goblin Cup (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia Unknown recipe level
|
|
INSERT INTO `synth_recipes` VALUES (19957,1,0,0,61,0,0,0,0,0,0,4100,4242,16796,0,0,0,0,0,0,0,817,1226,717,717,3,10,1,1,'Mythril Zaghnal (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (19958,1,0,0,255,0,0,0,0,0,0,4100,4242,16544,0,0,0,0,0,0,0,649,649,649,649,1,1,1,1,'Ryl.Arc. Sword (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia Unknown recipe level
|
|
-- INSERT INTO `synth_recipes` VALUES (19959,1,0,0,255,0,0,0,0,0,0,4100,4242,16719,0,0,0,0,0,0,0,649,649,649,649,2,2,2,2,'Moth Axe (desynth)',NULL); -- 2022.03.04 no data
|
|
-- INSERT INTO `synth_recipes` VALUES (19960,1,0,0,255,0,0,0,0,0,0,4100,4242,16783,0,0,0,0,0,0,0,817,651,715,715,3,3,3,3,'Plantreaper (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia Unknown recipe level
|
|
INSERT INTO `synth_recipes` VALUES (19961,1,0,0,59,0,0,0,0,0,0,4100,4242,14051,0,0,0,0,0,0,0,651,651,654,654,1,1,1,1,'Alumine Moufles (desynth)','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (19962,1,0,0,255,0,0,0,0,0,0,4100,4242,16433,0,0,0,0,0,0,0,649,649,649,649,1,1,1,1,'Lgn. Knuckles (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia Unknown recipe level
|
|
INSERT INTO `synth_recipes` VALUES (19963,1,0,0,79,0,0,0,0,0,0,4100,4242,2161,0,0,0,0,0,0,0,649,2302,2302,2302,1,1,2,2,'Troll Vambrace (desynth)','TOAU');
|
|
-- INSERT INTO `synth_recipes` VALUES (19964,1,0,0,255,0,0,0,0,0,0,4098,4240,1162,0,0,0,0,0,0,0,660,660,933,933,1,1,9,12,'Tonberry Lantern (desynth)',NULL); -- BGWiki lists level s "37~"
|
|
-- INSERT INTO `synth_recipes` VALUES (19965,1,0,0,255,0,0,0,0,0,0,4100,4242,16575,0,0,0,0,0,0,0,744,1226,1226,1226,1,6,6,6,'Curtana (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia Unknown recipe level
|
|
INSERT INTO `synth_recipes` VALUES (19966,1,0,0,92,0,0,0,0,0,0,4100,4242,16452,0,0,0,0,0,0,0,654,654,655,655,1,1,1,1,'Misericorde (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19967,1,0,0,48,0,0,0,0,0,0,4100,4242,16412,0,0,0,0,0,0,0,894,894,1226,1226,1,1,4,6,'Mythril Claws (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19968,1,0,0,51,0,0,0,0,0,0,4100,4242,17487,0,0,0,0,0,0,0,937,649,649,649,1,1,1,1,'Corrosive Claws (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19969,1,0,0,19,0,0,0,0,0,0,4100,4242,2162,0,0,0,0,0,0,0,651,652,652,652,1,1,1,1,'Mamool Ja Helmet (desynth)','TOAU'); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19970,1,0,0,42,0,0,0,0,0,0,4100,4242,16589,0,0,0,0,0,0,0,715,852,651,651,1,1,4,5,'Two-Hand. Sword (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (19971,1,0,0,95,0,0,0,0,0,0,4100,4242,16707,0,0,0,0,0,0,0,1235,719,1228,1228,6,6,6,8,'Bhuj (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (19972,1,0,0,21,0,0,0,0,0,0,4100,4242,16392,0,0,0,0,0,0,0,714,651,651,651,1,1,2,2,'Metal Knuckles (desynth)',NULL); -- use synth lvl, ffxiclopedia/FFXIAH data 10/30/21
|
|
INSERT INTO `synth_recipes` VALUES (19973,1,0,0,27,0,0,0,0,0,0,4100,4242,16566,0,0,0,0,0,0,0,651,651,651,651,2,2,2,2,'Longsword (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia no Hq listed
|
|
INSERT INTO `synth_recipes` VALUES (19974,1,0,0,23,0,0,0,0,0,0,4100,4242,16406,0,0,0,0,0,0,0,651,651,651,651,1,1,1,1,'Baghnakhs (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (19975,1,0,0,255,0,0,0,0,0,0,4100,4242,17083,0,0,0,0,0,0,0,651,652,654,654,1,1,1,1,'Time Hammer (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia Unknown recipe level
|
|
INSERT INTO `synth_recipes` VALUES (19976,1,0,0,28,0,0,0,0,0,0,4100,4242,16512,0,0,0,0,0,0,0,744,744,651,651,1,1,1,1,'Bilbo (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19977,1,0,0,10,0,0,0,0,0,0,4100,4242,17034,0,0,0,0,0,0,0,649,649,649,649,1,1,2,3,'Bronze Mace (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19978,1,0,0,54,0,0,0,0,0,0,4100,4242,12800,0,0,0,0,0,0,0,850,651,651,651,1,1,1,1,'Cuisses (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19979,1,0,0,64,0,0,0,0,0,0,4100,4242,14444,0,0,0,0,0,0,0,816,654,654,654,3,2,7,7,'Alumine Haubert (desynth)','COP'); -- use synth lvl, xiclopedia results
|
|
-- INSERT INTO `synth_recipes` VALUES (19980,1,0,0,255,0,0,0,0,0,0,4100,4242,2504,0,0,0,0,0,0,0,652,653,654,1711,1,1,1,1,'H. Qdv. Chestplate (desynth)','WOTG'); -- 2022.03.04 Base on FFXIclopedia not obtainable anymore
|
|
INSERT INTO `synth_recipes` VALUES (19981,1,0,0,11,0,0,0,0,0,0,4100,4242,12576,0,0,0,0,0,0,0,649,649,850,850,2,3,1,2,'Bronze Harness (desynth)',NULL); -- use synth lvl, ffxiclopedia/FFXIAH results
|
|
INSERT INTO `synth_recipes` VALUES (19982,1,0,0,35,0,0,0,0,0,0,4100,4242,14243,0,0,0,0,0,0,0,850,850,850,850,1,1,1,1,'Iron Cuisses (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia no Hq listed
|
|
INSERT INTO `synth_recipes` VALUES (19983,1,0,0,83,0,0,0,0,0,0,4100,4242,13088,0,0,0,0,0,0,0,816,816,654,654,1,1,1,1,'Darksteel Nodowa (desynth)',NULL); -- use synth lvl, xiclopedia results
|
|
INSERT INTO `synth_recipes` VALUES (19984,1,0,0,66,0,0,0,0,0,0,4100,4242,13111,0,0,0,0,0,0,0,816,816,651,651,1,1,1,1,'Nodowa (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19985,1,0,0,84,0,0,0,0,0,0,4100,4242,12684,0,0,0,0,0,0,0,850,651,654,654,1,1,1,1,'Thick Mufflers (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (19986,1,0,0,38,0,0,0,0,0,0,4100,4242,16650,0,0,0,0,0,0,0,715,715,652,652,1,1,1,1,'War Pick (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (19987,1,0,0,9,0,0,0,0,0,0,4100,4242,12832,0,0,0,0,0,0,0,649,817,850,850,1,3,1,1,'Bronze Subligar (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (20001,0,0,0,0,1,0,0,0,0,0,4096,4238,642,642,642,0,0,0,0,0,1884,1884,1884,1884,1,1,1,1,'Zinc Oxide','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20002,1,0,0,0,1,0,0,0,0,0,4100,4242,498,0,0,0,0,0,0,0,648,648,648,648,1,1,1,1,'Yagudo Necklace (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20003,0,0,0,0,2,0,0,0,0,0,4098,4240,768,768,0,0,0,0,0,0,1214,1214,1214,1214,6,8,10,12,'Stone Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20004,0,0,0,0,3,0,0,0,0,0,4096,4238,640,640,640,640,0,0,0,0,648,648,648,648,1,1,1,1,'Copper Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20005,0,0,0,0,4,0,0,0,0,0,4096,4238,640,1230,1230,1230,1230,1230,1230,0,648,648,648,648,1,1,1,1,'Copper Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20006,0,0,0,0,5,0,0,0,0,0,4096,4238,8833,0,0,0,0,0,0,0,13454,13454,13454,13454,1,1,1,1,'Copper Ring','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (20007,0,0,0,0,5,0,0,0,0,0,4096,4238,648,648,0,0,0,0,0,0,13454,13492,13492,13492,1,1,1,1,'Copper Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20008,1,0,0,0,5,0,0,0,0,0,4100,4242,13454,0,0,0,0,0,0,0,648,648,648,648,1,1,2,2,'Copper Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20009,0,0,0,0,6,0,0,0,0,0,4098,4240,2531,0,0,0,0,0,0,0,2546,2546,2546,2546,6,8,10,12,'Black Bolt Heads','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (20010,0,0,0,0,7,0,0,0,0,0,4098,4240,648,0,0,0,0,0,0,0,12496,12526,12526,12526,1,1,1,1,'Copper Hairpin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20011,0,0,0,0,8,0,0,0,0,0,4096,4238,650,650,744,0,0,0,0,0,16551,16801,16801,16801,1,1,1,1,'Sapara',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20012,1,0,0,0,8,0,0,0,0,0,4100,4242,16551,0,0,0,0,0,0,0,650,650,744,744,1,2,1,1,'Sapara (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20013,0,0,0,0,8,0,0,0,0,0,4096,4238,2417,2417,2417,2417,0,0,0,0,2418,2418,2418,2418,1,1,1,1,'Aht Urhgan Brass Ingot','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (20014,0,0,0,0,9,0,0,0,0,0,4096,4238,648,650,0,0,0,0,0,0,12472,12527,12527,12527,1,1,1,1,'Circlet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20015,0,0,0,0,9,0,0,0,0,0,4096,4238,640,640,640,642,0,0,0,0,650,650,650,650,1,1,1,1,'Brass Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20016,0,0,0,0,10,0,0,0,0,0,4096,4238,642,1231,1231,1231,1231,1231,1231,0,650,650,650,650,1,1,1,1,'Brass Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20017,0,1995,0,0,10,0,0,0,0,0,4096,4238,2144,2418,2418,2418,2418,2418,2418,0,2419,2419,2419,2419,6,6,6,6,'Aht Urhgan Brass Sheet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (20018,0,0,0,0,10,0,0,0,0,0,4099,4241,650,12448,0,0,0,0,0,0,12449,12528,12528,12528,1,1,1,1,'Brass Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20019,0,0,0,0,10,0,0,0,0,0,4096,4238,2418,0,0,0,0,0,0,0,2419,2419,2419,2419,1,1,1,1,'Aht Urhgan Brass Sheet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (20020,0,0,0,0,10,0,0,0,0,0,4096,4238,8834,0,0,0,0,0,0,0,650,650,650,650,1,1,1,1,'Brass Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (20501,0,0,0,0,11,0,0,0,0,0,4096,4238,650,0,0,0,0,0,0,0,661,661,661,661,1,1,1,1,'Brass Sheet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20502,0,1995,0,0,11,0,0,0,0,0,4096,4238,650,650,650,650,650,650,2144,0,661,661,661,661,6,6,6,6,'Brass Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20503,0,0,0,0,12,0,0,0,0,0,4099,4241,650,12704,0,0,0,0,0,0,12705,12770,12770,12770,1,1,1,1,'Brass Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20504,0,0,0,0,12,0,0,0,0,0,4096,4238,650,16640,0,0,0,0,0,0,16641,16661,16661,16661,1,1,1,1,'Brass Axe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20505,0,0,0,0,13,0,0,0,0,0,4098,4240,661,0,0,0,0,0,0,0,673,673,673,673,1,1,1,1,'Brass Scales',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20506,0,0,0,0,13,0,0,0,0,0,4096,4238,650,16448,0,0,0,0,0,0,16449,16740,16740,16740,1,1,1,1,'Brass Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20507,0,0,0,0,14,0,0,0,0,0,4099,4241,661,12960,0,0,0,0,0,0,12961,13027,13027,13027,1,1,1,1,'Brass Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20508,0,0,0,0,14,0,0,0,0,0,4096,4238,650,16390,0,0,0,0,0,0,16391,16689,16689,16689,1,1,1,1,'Brass Knuckles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20509,0,0,0,0,14,0,0,0,0,0,4098,4240,2531,2531,0,0,0,0,0,0,2547,2547,2547,2547,6,8,10,12,'Obsidian Arrowheads','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (20510,0,0,0,0,15,0,0,0,0,0,4096,4238,8835,0,0,0,0,0,0,0,16769,16769,16769,16769,1,1,1,1,'Brass Zaghnal','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (20511,0,0,0,0,15,0,0,0,0,0,4096,4238,650,16768,0,0,0,0,0,0,16769,16772,16772,16772,1,1,1,1,'Brass Zaghnal',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20512,0,0,0,0,15,0,0,0,0,0,4096,4238,650,650,0,0,0,0,0,0,13465,13493,13493,13493,1,1,1,1,'Brass Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20513,0,0,0,0,15,0,0,0,0,0,4096,4238,650,12509,0,0,0,0,0,0,13889,13890,13890,13890,1,1,1,1,'Bastokan Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20514,0,0,0,0,16,0,0,0,0,0,4096,4238,661,12832,0,0,0,0,0,0,12833,12892,12892,12892,1,1,1,1,'Brass Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20515,0,0,0,0,16,0,0,0,0,0,4096,4238,661,661,661,0,0,0,0,0,217,217,217,217,1,1,1,1,'Brass Flowerpot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20516,0,2001,0,0,16,0,0,0,0,0,4096,4238,2231,2233,16449,0,0,0,0,0,18029,18029,18029,18029,1,1,1,1,'Piercing Dagger','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (20517,0,1994,0,0,16,0,0,0,0,0,4096,4238,650,650,2143,0,0,0,0,0,19009,19010,19010,19010,1,1,1,1,'Brass Grip','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (20518,0,0,0,0,17,0,0,0,0,0,4098,4240,650,0,0,0,0,0,0,0,12497,12529,12529,12529,1,1,1,1,'Brass Hairpin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20519,0,0,0,0,17,0,0,0,0,0,4096,4238,650,16405,0,0,0,0,0,0,16407,16441,16441,16441,1,1,1,1,'Brass Baghnakhs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20520,0,0,0,0,17,0,0,0,0,0,4096,4238,650,12752,0,0,0,0,0,0,14031,14032,14032,14032,1,1,1,1,'Bastokan Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20521,0,0,0,0,18,0,0,0,0,0,4099,4241,650,661,12576,0,0,0,0,0,12577,12664,12664,12664,1,1,1,1,'Brass Harness',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20522,0,0,0,0,18,0,0,0,0,0,4096,4238,750,750,750,750,0,0,0,0,744,744,744,744,1,1,1,1,'Silver Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20523,0,2001,0,0,18,0,0,0,0,0,4096,4238,2230,2232,16769,0,0,0,0,0,18067,18067,18067,18067,1,1,1,1,'Keen Zaghnal','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (20524,0,0,0,0,19,0,0,0,0,0,4096,4238,650,16530,0,0,0,0,0,0,16531,16802,16802,16802,1,1,1,1,'Brass Xiphos',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20525,0,0,0,0,19,0,0,0,0,0,4099,4241,650,650,0,0,0,0,0,0,764,764,764,764,1,2,3,4,'Brass Chain','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20526,0,1994,0,0,19,0,0,0,0,0,4099,4241,650,650,650,650,650,650,2143,0,764,764,764,764,3,6,9,12,'Brass Chain','COP'); -- BGwiki and JPwiki
|
|
INSERT INTO `synth_recipes` VALUES (20527,0,0,0,0,19,0,0,0,0,0,4096,4238,650,16433,0,0,0,0,0,0,17499,17500,17500,17500,1,1,1,1,'Bastokan Knuckles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20528,0,0,0,0,19,0,0,0,0,0,4096,4238,650,13003,0,0,0,0,0,0,14139,14140,14140,14140,1,1,1,1,'Bastokan Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20529,0,0,0,0,20,0,0,0,0,0,4099,4241,661,661,661,937,0,0,0,0,1656,1656,1656,1656,1,1,1,1,'Brass Tank','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20530,0,0,0,0,20,0,0,0,0,0,4096,4238,736,736,736,736,0,0,0,0,744,744,744,744,1,1,1,1,'Silver Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20531,0,2001,0,0,20,0,0,0,0,0,4096,4238,736,736,736,736,1642,1645,1648,0,1678,1678,1678,1678,1,1,1,1,'Rogue\'s Silver Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20532,0,0,0,0,20,0,0,0,0,0,4098,4240,774,0,0,0,0,0,0,0,800,811,810,804,1,1,1,1,'Amethyst',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20533,0,0,0,0,20,0,0,0,0,0,4098,4240,771,0,0,0,0,0,0,0,814,815,801,789,1,1,1,1,'Amber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20534,0,0,0,0,20,0,0,0,0,0,4098,4240,769,0,0,0,0,0,0,0,807,790,803,786,1,1,1,1,'Sardonyx',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20535,0,0,0,0,20,0,0,0,0,0,4098,4240,770,0,0,0,0,0,0,0,795,798,791,794,1,1,1,1,'Lapis Lazuli',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20536,0,2000,0,0,20,0,0,0,0,0,4096,4238,736,736,736,736,1641,1646,1647,0,1675,1675,1675,1675,1,1,1,1,'Neutralizing Silver Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20537,0,0,0,0,20,0,0,0,0,0,4098,4240,772,0,0,0,0,0,0,0,806,788,784,785,1,1,1,1,'Tourmaline',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20538,0,0,0,0,20,0,0,0,0,0,4098,4240,773,0,0,0,0,0,0,0,809,808,805,787,1,1,1,1,'Clear Topaz',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20539,0,2001,0,0,20,0,0,0,0,0,4098,4240,800,1644,1645,1648,0,0,0,0,2137,2137,2137,2137,1,1,1,1,'Vision Amethyst Stone','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20540,0,0,0,0,20,0,0,0,0,0,4098,4240,776,0,0,0,0,0,0,0,796,796,802,813,1,1,1,1,'Light Opal',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20541,0,0,0,0,20,0,0,0,0,0,4098,4240,1649,0,0,0,0,0,0,0,1634,1634,1634,1634,1,1,1,1,'Rhodonite','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20542,0,2001,0,0,20,0,0,0,0,0,4098,4240,784,1641,1646,1648,0,0,0,0,1834,1834,1834,1834,1,1,1,1,'Ardent Jadeite','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20543,0,0,0,0,20,0,0,0,0,0,4096,4238,8836,0,0,0,0,0,0,0,744,744,744,744,1,1,1,1,'Silver Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (20544,0,0,0,0,20,0,0,0,0,0,4096,4238,651,651,745,1886,0,0,0,0,3700,3700,3700,3700,1,1,1,1,'Shower Stand','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (20545,0,0,0,0,20,0,0,0,0,0,4096,4238,650,16780,0,0,0,0,0,0,18038,18039,18039,18039,1,1,1,1,'Bastokan Scythe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20546,0,0,0,0,20,0,0,0,0,0,4098,4240,775,0,0,0,0,0,0,0,799,799,797,812,1,1,1,1,'Onyx',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (20547,0,2001,0,0,20,0,0,0,0,0,4098,4240,807,1641,1644,1648,0,0,0,0,2136,2136,2136,2136,1,1,1,1,'Mighty Sardonyx','COP');
|
|
INSERT INTO `synth_recipes` VALUES (20548,1,0,0,0,20,0,0,0,0,0,4100,4242,19009,0,0,0,0,0,0,0,650,650,650,650,1,1,1,1,'Brass Grip (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (21001,0,0,0,0,19,0,0,0,0,0,4099,4241,661,13003,0,0,0,0,0,0,14139,14140,14140,14140,1,1,1,1,'Bastokan Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21002,0,0,0,0,21,0,0,0,0,0,4096,4238,648,653,0,0,0,0,0,0,12473,12530,12530,12530,1,1,1,1,'Poet\'s Circlet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21003,0,0,0,0,21,0,0,0,0,0,4099,4241,661,12881,0,0,0,0,0,0,14259,14260,14260,14260,1,1,1,1,'Bastokan Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21004,0,0,0,0,21,6,0,0,0,0,4099,4241,648,648,818,818,818,0,0,0,17399,17398,17398,17398,1,1,1,1,'Sabiki Rig',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21005,0,0,0,0,21,0,0,0,0,0,4096,4238,736,1233,1233,1233,1233,1233,1233,0,744,744,744,744,1,1,1,1,'Silver Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21006,0,0,0,0,22,0,0,0,0,0,4098,4240,1470,0,0,0,0,0,0,0,809,808,805,1460,1,1,1,1,'Clear Topaz',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21007,0,0,0,0,22,0,0,0,0,0,4098,4240,744,744,0,0,0,0,0,0,13327,13370,13370,13370,1,1,1,1,'Silver Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21008,0,0,0,0,22,0,0,0,0,0,4096,4238,744,0,0,0,0,0,0,0,671,671,671,671,1,1,1,1,'Silver Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (21009,0,1995,0,0,22,0,0,0,0,0,4096,4238,744,744,744,744,744,744,2144,0,671,671,671,671,6,6,6,6,'Silver Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (21010,0,0,0,0,23,0,0,0,0,0,4099,4241,661,12629,0,0,0,0,0,0,14338,14339,14339,14339,1,1,1,1,'Bastokan Harness',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21011,0,0,0,0,23,0,0,0,0,0,4096,4238,650,17059,0,0,0,0,0,0,17081,17148,17148,17148,1,1,1,1,'Brass Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21012,1,0,0,0,23,0,0,0,0,0,4100,4242,1625,0,0,0,0,0,0,0,650,650,650,745,1,1,1,1,'Moblin Helm (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (21013,0,0,0,0,24,0,0,0,0,0,4096,4238,650,17042,0,0,0,0,0,0,17043,17149,17149,17149,1,1,1,1,'Brass Hammer',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21014,0,0,0,0,24,0,0,0,0,0,4096,4238,650,16544,0,0,0,0,0,0,17678,17679,17679,17679,1,1,1,1,'San d\'Orian Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21015,1,0,0,0,24,0,0,0,0,0,4100,4242,17043,0,0,0,0,0,0,0,649,649,710,650,1,2,1,1,'Brass Hammer (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21016,1,0,0,0,24,0,0,0,0,0,4100,4242,1632,0,0,0,0,0,0,0,650,650,650,745,3,3,3,1,'Moblin Mail (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (21017,0,0,0,0,25,0,0,0,0,0,4099,4241,796,13327,0,0,0,0,0,0,13337,13380,13380,13380,1,1,1,1,'Opal Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21018,0,0,0,0,25,0,0,0,0,0,4099,4241,799,13327,0,0,0,0,0,0,13336,13379,13379,13379,1,1,1,1,'Onyx Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21019,0,0,0,0,25,0,0,0,0,0,4099,4241,809,13327,0,0,0,0,0,0,13332,13375,13375,13375,1,1,1,1,'Clear Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21020,0,0,0,0,25,0,0,0,0,0,4099,4241,806,13327,0,0,0,0,0,0,13330,13373,13373,13373,1,1,1,1,'Tourmaline Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21021,0,0,0,0,25,0,0,0,0,0,4099,4241,807,13327,0,0,0,0,0,0,13331,13374,13374,13374,1,1,1,1,'Sardonyx Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21022,0,0,0,0,25,0,0,0,0,0,4099,4241,800,13327,0,0,0,0,0,0,13333,13376,13376,13376,1,1,1,1,'Amethyst Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21023,0,0,0,0,25,0,0,0,0,0,4099,4241,814,13327,0,0,0,0,0,0,13335,13378,13378,13378,1,1,1,1,'Amber Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21024,0,0,0,0,25,0,0,0,0,0,4099,4241,795,13327,0,0,0,0,0,0,13334,13377,13377,13377,1,1,1,1,'Lapis Lazuli Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21025,0,0,0,0,25,0,0,0,0,0,4099,4241,8837,0,0,0,0,0,0,0,13196,13196,13196,13196,1,1,1,1,'Silver Belt','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (21026,0,0,0,0,26,0,0,0,0,0,4099,4241,744,13193,0,0,0,0,0,0,13196,13223,13223,13223,1,1,1,1,'Silver Belt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21027,0,0,0,0,27,0,0,0,0,0,4098,4240,744,0,0,0,0,0,0,0,12495,12531,12531,12531,1,1,1,1,'Silver Hairpin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21028,0,0,0,0,27,0,0,0,0,0,4098,4240,648,744,0,0,0,0,0,0,1217,1217,1217,1217,6,8,10,12,'Silver Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21029,0,0,0,0,28,0,0,0,0,0,4096,4238,653,13830,0,0,0,0,0,0,13899,13900,13900,13900,1,1,1,1,'Bastokan Circlet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21030,0,0,13,19,28,0,0,0,0,0,4096,4238,648,651,713,0,0,0,0,0,1022,1022,1022,1022,4,4,4,4,'Thief\'s Tools',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21031,0,0,0,0,29,0,0,0,0,0,4099,4241,661,848,12432,0,0,0,0,0,12433,12532,12532,12532,1,1,1,1,'Brass Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21032,0,0,0,0,30,0,0,0,0,0,4099,4241,8838,0,0,0,0,0,0,0,12689,12689,12689,12689,1,1,1,1,'Brass Finger Gauntlets','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (21033,0,0,0,0,30,0,0,0,0,0,4099,4241,799,13370,0,0,0,0,0,0,13336,14694,14694,14694,1,1,1,1,'Onyx Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21034,0,0,0,0,30,0,0,0,0,0,4099,4241,807,13370,0,0,0,0,0,0,13331,14689,14689,14689,1,1,1,1,'Sardonyx Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21035,0,0,0,0,30,0,0,0,0,0,4099,4241,795,13370,0,0,0,0,0,0,13334,14692,14692,14692,1,1,1,1,'Lapis Lazuli Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21036,0,0,0,0,30,0,0,0,0,0,4099,4241,796,13370,0,0,0,0,0,0,13337,14695,14695,14695,1,1,1,1,'Opal Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21037,0,0,0,0,30,0,0,0,0,0,4099,4241,673,673,818,848,12696,0,0,0,12689,12771,12771,12771,1,1,1,1,'Brass Finger Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21038,0,0,0,0,30,0,0,0,0,0,4099,4241,814,13370,0,0,0,0,0,0,13335,14693,14693,14693,1,1,1,1,'Amber Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21039,0,0,0,0,30,0,0,0,0,0,4099,4241,800,13370,0,0,0,0,0,0,13333,14691,14691,14691,1,1,1,1,'Amethyst Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21040,0,0,0,0,30,0,0,0,0,0,4099,4241,806,13370,0,0,0,0,0,0,13330,14688,14688,14688,1,1,1,1,'Tourmaline Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21041,0,0,0,0,30,0,0,0,0,0,4099,4241,809,13370,0,0,0,0,0,0,13332,14690,14690,14690,1,1,1,1,'Clear Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21501,0,0,0,0,31,0,0,0,0,0,4096,4238,648,744,0,0,0,0,0,0,1173,1173,1173,1173,33,66,99,99,'Hiraishin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21502,1,0,0,0,31,0,0,0,0,0,4100,4242,17071,0,0,0,0,0,0,0,649,651,800,800,1,2,1,1,'Heat Rod (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21503,0,0,3,0,31,0,0,0,0,0,4096,4238,650,706,0,0,0,0,0,0,18868,18869,18869,18869,1,1,1,1,'Lady Bell','WOTG'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (21504,1,0,0,0,32,0,0,0,0,0,4100,4242,13456,0,0,0,0,0,0,0,744,744,744,744,1,1,2,2,'Silver Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21505,0,0,0,0,32,0,0,0,0,0,4096,4238,744,744,0,0,0,0,0,0,13456,13518,13518,13518,1,1,1,1,'Silver Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21506,0,0,0,0,32,0,0,0,0,0,4099,4241,673,673,818,848,12952,0,0,0,12945,13028,13028,13028,1,1,1,1,'Brass Greaves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21507,0,1994,0,0,33,0,0,0,0,0,4099,4241,744,744,744,744,744,744,2143,0,760,760,760,760,3,6,9,12,'Silver Chain','COP'); -- JPWiki/ffxiclopedia used
|
|
INSERT INTO `synth_recipes` VALUES (21508,0,0,0,0,33,0,0,0,0,0,4099,4241,744,744,0,0,0,0,0,0,760,760,760,760,1,2,3,4,'Silver Chain',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21509,0,0,0,0,34,0,0,0,0,0,4099,4241,673,673,818,848,12824,0,0,0,12817,12893,12893,12893,1,1,1,1,'Brass Cuisses',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21510,0,0,0,0,34,0,0,0,0,0,4099,4241,744,760,760,760,0,0,0,0,13209,13213,13213,13213,1,1,1,1,'Chain Belt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21511,0,0,0,0,34,0,0,0,0,0,4099,4241,648,16834,0,0,0,0,0,0,18076,18077,18077,18077,1,1,1,1,'Spark Spear',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21512,0,0,0,0,35,0,0,0,0,0,4099,4241,800,13456,0,0,0,0,0,0,13471,13524,13524,13524,1,1,1,1,'Amethyst Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21513,0,0,0,0,35,0,0,0,0,0,4099,4241,8839,0,0,0,0,0,0,0,15801,15801,15801,15801,1,1,1,1,'Tigereye Ring','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (21514,0,0,0,0,35,0,0,0,0,0,4099,4241,814,13456,0,0,0,0,0,0,13473,13526,13526,13526,1,1,1,1,'Amber Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21515,0,0,0,0,35,0,0,0,0,0,4099,4241,809,13456,0,0,0,0,0,0,13470,13523,13523,13523,1,1,1,1,'Clear Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21516,0,0,0,0,35,0,0,0,0,0,4099,4241,807,13456,0,0,0,0,0,0,13444,13522,13522,13522,1,1,1,1,'Sardonyx Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21517,0,0,0,0,35,0,0,0,0,0,4099,4241,1766,13456,0,0,0,0,0,0,15801,15802,15802,15802,1,1,1,1,'Tigereye Ring','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (21518,0,0,0,0,35,0,0,0,0,0,4096,4238,1675,13456,0,0,0,0,0,0,14654,14654,14654,14654,1,1,1,1,'Poisona Ring','COP');
|
|
INSERT INTO `synth_recipes` VALUES (21519,0,0,0,0,35,0,0,0,0,0,4099,4241,795,13456,0,0,0,0,0,0,13472,13525,13525,13525,1,1,1,1,'Lapis Lazuli Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21520,0,0,0,0,35,0,0,0,0,0,4099,4241,799,13456,0,0,0,0,0,0,13474,13527,13527,13527,1,1,1,1,'Onyx Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21521,0,0,0,0,35,0,0,0,0,0,4099,4241,796,13456,0,0,0,0,0,0,13443,13528,13528,13528,1,1,1,1,'Opal Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21522,0,0,0,0,35,0,0,0,0,0,4099,4241,806,13456,0,0,0,0,0,0,13468,13521,13521,13521,1,1,1,1,'Tourmaline Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21523,0,0,0,0,36,0,0,0,0,0,4099,4241,760,760,760,2841,0,0,0,0,15939,15947,15947,15947,1,1,1,1,'Griot Belt','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (21524,0,0,0,0,36,0,0,0,0,0,4099,4241,673,673,673,673,818,848,12568,0,12561,12665,12665,12665,1,1,1,1,'Brass Scale Mail',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21525,0,0,0,0,37,0,0,0,0,0,4099,4241,648,16512,0,0,0,0,0,0,17686,17687,17687,17687,1,1,1,1,'Spark Bilbo',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21526,0,0,0,0,37,0,0,0,0,0,4099,4241,760,760,760,0,0,0,0,0,13082,13059,13059,13059,1,1,1,1,'Chain Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21527,0,0,0,0,38,0,0,0,0,0,4096,4238,749,749,749,749,0,0,0,0,653,653,653,653,1,1,1,1,'Mythril Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21528,0,0,0,0,38,0,0,0,0,0,4099,4241,2136,13444,0,0,0,0,0,0,15558,15558,15558,15558,1,1,1,1,'Mighty Ring','COP');
|
|
INSERT INTO `synth_recipes` VALUES (21529,0,0,0,0,38,0,0,0,0,0,4099,4241,648,16450,0,0,0,0,0,0,17984,17985,17985,17985,1,1,1,1,'Spark Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21530,0,0,0,0,38,0,0,0,0,0,4099,4241,2137,13471,0,0,0,0,0,0,15559,15559,15559,15559,1,1,1,1,'Vision Ring','COP');
|
|
INSERT INTO `synth_recipes` VALUES (21531,0,1994,0,0,39,0,0,0,0,0,4096,4238,653,653,2143,0,0,0,0,0,19013,19014,19014,19014,1,1,1,1,'Mythril Grip','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (21532,0,0,0,0,39,0,0,0,0,0,4096,4238,744,914,12424,0,0,0,0,0,12425,12533,12533,12533,1,1,1,1,'Silver Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21533,0,0,0,0,39,0,0,0,0,0,4099,4241,760,760,2842,0,0,0,0,0,16301,16304,16304,16304,1,1,1,1,'Focus Collar','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (21534,0,0,0,0,39,0,0,0,0,0,4099,4241,760,760,790,0,0,0,0,0,13083,13066,13066,13066,1,1,1,1,'Chain Choker',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21535,0,0,0,0,40,0,0,0,0,0,4099,4241,800,13518,0,0,0,0,0,0,13471,14595,14595,14595,1,1,1,1,'Amethyst Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21536,0,0,0,0,40,0,0,0,0,0,4099,4241,796,13518,0,0,0,0,0,0,13443,14599,14599,14599,1,1,1,1,'Opal Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21537,1,0,0,0,40,0,0,0,0,0,4100,4242,12681,0,0,0,0,0,0,0,744,744,744,744,1,1,1,1,'Silver Mittens (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21538,0,0,0,0,40,0,0,0,0,0,4099,4241,814,13518,0,0,0,0,0,0,13473,14597,14597,14597,1,1,1,1,'Amber Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21539,0,0,0,0,40,0,0,0,0,0,4099,4241,807,13518,0,0,0,0,0,0,13444,14593,14593,14593,1,1,1,1,'Sardonyx Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21540,0,0,0,0,40,0,0,0,0,0,4099,4241,760,12680,0,0,0,0,0,0,12681,12772,12772,12772,1,1,1,1,'Silver Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21541,0,0,0,0,40,0,0,0,0,0,4099,4241,806,13518,0,0,0,0,0,0,13468,14592,14592,14592,1,1,1,1,'Tourmaline Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21542,0,0,0,0,40,0,0,0,0,0,4099,4241,799,13518,0,0,0,0,0,0,13474,14598,14598,14598,1,1,1,1,'Onyx Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21543,0,2000,0,0,40,0,0,0,0,0,4096,4238,644,644,644,644,1645,1646,1647,0,1835,1835,1835,1835,1,1,1,1,'Vivified Mythril','COP');
|
|
INSERT INTO `synth_recipes` VALUES (21544,0,0,0,0,40,0,0,0,0,0,4099,4241,795,13518,0,0,0,0,0,0,13472,14596,14596,14596,1,1,1,1,'Lapis Lazuli Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21545,0,0,0,0,40,0,0,0,0,0,4099,4241,809,13518,0,0,0,0,0,0,13470,14594,14594,14594,1,1,1,1,'Clear Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (21546,0,0,0,0,40,0,0,0,0,0,4096,4238,8840,0,0,0,0,0,0,0,653,653,653,653,1,1,1,1,'Mythril Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (21547,0,0,0,0,40,0,0,0,0,0,4096,4238,644,644,644,644,0,0,0,0,653,653,653,653,1,1,1,1,'Mythril Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22001,0,0,0,0,41,0,0,0,0,0,4096,4238,644,1226,1226,1226,1226,1226,1226,0,653,653,653,653,1,1,1,1,'Mythril Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22002,0,0,0,0,41,0,0,0,0,0,4096,4238,653,0,0,0,0,0,0,0,663,663,663,663,1,1,1,1,'Mythril Sheet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22003,0,1995,0,0,41,0,0,0,0,0,4096,4238,653,653,653,653,653,653,2144,0,663,663,663,663,6,6,6,6,'Mythril Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22004,0,2000,0,0,41,0,0,0,0,0,4096,4238,653,1643,1643,1647,0,0,0,0,2422,2422,2422,2422,1,1,1,1,'Mythril Mesh Sheet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22005,0,0,0,0,42,0,0,0,0,0,4098,4240,653,653,0,0,0,0,0,0,13328,13371,13371,13371,1,1,1,1,'Mythril Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22006,0,0,0,0,42,0,0,0,0,0,4096,4238,744,914,12936,0,0,0,0,0,12937,13029,13029,13029,1,1,1,1,'Silver Greaves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22007,1,0,0,0,42,0,0,0,0,0,4100,4242,13328,0,0,0,0,0,0,0,653,653,653,653,1,1,2,2,'Mythril Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22008,0,0,0,0,42,0,0,0,0,0,4096,4238,736,737,737,737,0,0,0,0,2536,2536,2536,2536,1,1,1,1,'Electrum Ingot','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (22009,0,1994,0,0,43,0,0,0,0,0,4099,4241,653,653,653,653,653,653,2143,0,681,681,681,681,3,6,9,12,'Mythril Chain','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22010,0,1994,0,0,43,0,0,0,0,0,4098,4240,653,653,2143,0,0,0,0,0,2308,2308,2308,2308,3,6,9,12,'Mythril Coil','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22011,0,0,0,0,43,0,0,0,0,0,4096,4238,2844,16641,0,0,0,0,0,0,17968,18531,18531,18531,1,1,1,1,'Veldt Axe','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (22012,0,0,0,0,43,0,0,0,0,0,4099,4241,653,653,0,0,0,0,0,0,681,681,681,681,1,2,3,4,'Mythril Chain',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22013,0,1994,0,0,44,0,0,0,0,0,4096,4238,653,663,0,0,0,0,0,0,2311,2311,2311,2311,1,2,3,4,'Mythril Gear Machine','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22014,0,0,0,0,44,0,0,0,0,0,4099,4241,744,16845,0,0,0,0,0,0,18078,18079,18079,18079,1,1,1,1,'Spark Lance',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22015,0,0,0,0,44,0,0,0,0,0,4096,4238,652,653,0,0,0,0,0,0,16456,16752,16752,16752,1,1,1,1,'Mythril Baselard',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22016,0,0,0,0,44,0,0,0,0,0,4099,4241,760,12808,0,0,0,0,0,0,12809,12894,12894,12894,1,1,1,1,'Silver Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22017,1,0,0,0,44,0,0,0,0,0,4100,4242,17291,0,0,0,0,0,0,0,807,744,653,790,1,1,1,1,'Flame Boomerang (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22018,0,0,0,0,45,0,0,0,0,0,4099,4241,793,13328,0,0,0,0,0,0,13320,13387,13387,13387,1,1,1,1,'Black Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22019,0,0,0,0,45,0,0,0,0,0,4099,4241,8841,0,0,0,0,0,0,0,13319,13319,13319,13319,1,1,1,1,'Peridot Earring','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (22020,0,0,0,0,45,0,0,0,0,0,4099,4241,792,13328,0,0,0,0,0,0,13317,13388,13388,13388,1,1,1,1,'Pearl Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22021,0,0,0,0,45,0,0,0,0,0,4098,4240,1835,13328,0,0,0,0,0,0,14790,14790,14790,14790,1,1,1,1,'Reraise Earring','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22022,0,0,0,0,45,0,0,0,0,0,4099,4241,2536,2536,0,0,0,0,0,0,2551,2551,2551,2551,1,2,3,4,'Electrum Chain','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (22023,0,0,0,0,45,0,0,0,0,0,4099,4241,790,13328,0,0,0,0,0,0,13338,13382,13382,13382,1,1,1,1,'Blood Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22024,0,1994,0,0,45,0,0,0,0,0,4099,4241,2143,2536,2536,2536,2536,2536,2536,0,2551,2551,2551,2551,3,6,9,12,'Electrum Chain','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (22025,0,0,0,0,45,0,0,0,0,0,4099,4241,811,13328,0,0,0,0,0,0,13340,13384,13384,13384,1,1,1,1,'Ametrine Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22026,0,0,0,0,45,0,0,0,0,0,4099,4241,788,13328,0,0,0,0,0,0,13319,13381,13381,13381,1,1,1,1,'Peridot Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22027,0,0,0,0,45,0,0,0,0,0,4099,4241,815,13328,0,0,0,0,0,0,13342,13386,13386,13386,1,1,1,1,'Sphene Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22028,0,0,0,0,45,0,0,0,0,0,4099,4241,808,13328,0,0,0,0,0,0,13339,13383,13383,13383,1,1,1,1,'Goshenite Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22029,0,0,0,0,45,0,0,0,0,0,4099,4241,798,13328,0,0,0,0,0,0,13341,13385,13385,13385,1,1,1,1,'Turquoise Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22030,0,0,0,0,46,0,0,0,0,0,4096,4238,663,937,16705,0,0,0,0,0,18200,18201,18201,18201,1,1,1,1,'Hydro Axe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22031,0,0,0,0,46,0,0,0,0,0,4099,4241,760,760,12552,0,0,0,0,0,12553,12666,12666,12666,1,1,1,1,'Silver Mail',NULL); -- JPWiki/ffxiclopedia used
|
|
INSERT INTO `synth_recipes` VALUES (22032,1,0,0,0,46,0,0,0,0,0,4100,4242,12938,0,0,0,0,0,0,0,851,651,651,651,1,1,2,3,'Sollerets (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22033,0,0,0,0,46,0,0,0,0,0,4096,4238,663,663,12936,0,0,0,0,0,12938,13047,13047,13047,1,1,1,1,'Sollerets',NULL); -- FFXIclopedia and BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (22034,0,2002,0,0,47,0,0,0,11,0,4099,4241,661,933,1109,1109,2311,0,0,0,2247,2247,2247,2247,12,12,12,12,'Scope','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22035,0,0,0,0,47,0,0,0,0,0,4099,4241,663,663,12680,0,0,0,0,0,12682,12792,12792,12792,1,1,1,1,'Mufflers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22036,0,0,0,0,47,0,0,0,0,0,4096,4238,653,653,0,0,0,0,0,0,13446,13519,13519,13519,1,1,1,1,'Mythril Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22037,0,0,0,0,47,0,0,0,0,0,4098,4240,648,650,0,0,0,0,0,0,2508,2508,2508,2508,12,12,12,12,'Gold Dust','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (22038,1,0,0,0,47,0,0,0,0,0,4100,4242,13446,0,0,0,0,0,0,0,653,653,653,653,1,1,2,2,'Mythril Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22039,0,0,0,19,48,0,0,0,0,0,4096,4238,648,662,663,681,850,0,0,0,12426,13832,13832,13832,1,1,1,1,'Banded Helm',NULL); -- FFXIclopedia and JPwiki
|
|
INSERT INTO `synth_recipes` VALUES (22040,0,0,0,0,48,0,0,0,0,0,4096,4238,678,678,678,678,0,0,0,0,679,679,679,679,1,1,1,1,'Aluminum Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22041,0,0,0,0,48,0,9,0,0,0,4099,4241,681,681,826,851,851,0,0,0,12810,12895,12895,12895,1,1,1,1,'Breeches',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22042,0,0,0,0,49,0,0,0,0,0,4099,4241,663,663,12300,0,0,0,0,0,12301,12327,12327,12327,1,1,1,1,'Buckler',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22043,0,0,0,0,49,0,0,0,0,0,4099,4241,744,16518,0,0,0,0,0,0,17688,17689,17689,17689,1,1,1,1,'Spark Degen',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22044,0,0,0,0,49,0,0,0,0,0,4096,4238,744,744,744,0,0,0,0,0,13979,13980,13980,13980,1,1,1,1,'Silver Bangles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22045,0,2002,0,0,49,0,0,0,0,0,4099,4241,663,1886,2311,13683,18232,0,0,0,2259,2259,2259,2259,12,12,12,12,'Heatsink','TOAU'); -- FFXIclopedia and BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (22046,0,0,0,0,49,0,0,0,0,0,4096,4238,653,16744,0,0,0,0,0,0,17972,17973,17973,17973,1,1,1,1,'San d\'Orian Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22047,0,0,0,0,50,0,0,0,0,0,4099,4241,815,13371,0,0,0,0,0,0,13342,14701,14701,14701,1,1,1,1,'Sphene Earring',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (22048,0,0,0,0,50,0,0,0,0,0,4099,4241,788,13371,0,0,0,0,0,0,13319,14696,14696,14696,1,1,1,1,'Peridot Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22049,0,0,0,0,50,0,0,0,0,0,4099,4241,811,13371,0,0,0,0,0,0,13340,14699,14699,14699,1,1,1,1,'Ametrine Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22050,0,0,0,0,50,0,0,0,0,0,4099,4241,793,13371,0,0,0,0,0,0,13320,14702,14702,14702,1,1,1,1,'Black Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22051,0,0,0,0,50,0,0,0,0,0,4099,4241,792,13371,0,0,0,0,0,0,13317,14703,14703,14703,1,1,1,1,'Pearl Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22052,0,0,0,0,50,0,0,0,0,0,4099,4241,790,13371,0,0,0,0,0,0,13338,14697,14697,14697,1,1,1,1,'Blood Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22053,0,0,0,0,50,0,0,0,0,0,4096,4238,679,0,0,0,0,0,0,0,670,670,670,670,1,1,1,1,'Aluminum Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22054,0,0,0,0,50,0,0,0,0,0,4099,4241,2422,12682,0,0,0,0,0,0,14989,14989,14989,14989,1,1,1,1,'Aero Mufflers','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22055,0,0,0,0,50,0,0,0,0,0,4096,4238,8842,0,0,0,0,0,0,0,670,670,670,670,1,1,1,1,'Aluminum Sheet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (22056,0,0,0,0,50,0,0,0,0,0,4099,4241,808,13371,0,0,0,0,0,0,13339,14698,14698,14698,1,1,1,1,'Goshenite Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22057,0,0,0,0,50,0,0,0,0,0,4099,4241,744,16456,0,0,0,0,0,0,17986,17987,17987,17987,1,1,1,1,'Spark Baselard',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22058,0,0,0,0,50,13,0,0,0,0,4099,4241,663,663,681,681,681,681,826,0,12554,12667,12667,12667,1,1,1,1,'Banded Mail',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22059,0,1995,0,0,50,0,0,0,0,0,4096,4238,679,679,679,679,679,679,2144,0,670,670,670,670,6,6,6,6,'Aluminum Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22060,0,0,0,0,50,0,0,0,0,0,4099,4241,798,13371,0,0,0,0,0,0,13341,14700,14700,14700,1,1,1,1,'Turquoise Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22501,0,0,0,0,51,0,0,0,0,0,4099,4241,681,12943,0,0,0,0,0,0,14141,14142,14142,14142,1,1,1,1,'San d\'Orian Sollerets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22502,0,0,0,0,51,0,0,0,0,0,4098,4240,3297,0,0,0,0,0,0,0,807,790,803,3316,1,1,1,1,'Sardonyx','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (22503,0,2002,0,0,51,0,0,0,0,0,4099,4241,637,654,2308,2308,2311,0,0,0,2239,2239,2239,2239,12,12,12,12,'Tension Spring','TOAU'); -- FFXIclopedia and BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (22504,0,0,0,0,51,0,0,0,0,0,4096,4238,748,748,748,748,0,0,0,0,745,745,745,745,1,1,1,1,'Gold Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22505,0,0,0,0,51,0,0,0,0,0,4098,4240,3302,0,0,0,0,0,0,0,795,798,791,3321,1,1,1,1,'Lapis Lazuli','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (22506,0,0,0,0,51,0,0,0,0,0,4096,4238,663,937,16407,0,0,0,0,0,17512,17513,17513,17513,1,1,1,1,'Hydro Baghnakhs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22507,0,0,0,0,51,0,0,0,0,0,4098,4240,3304,0,0,0,0,0,0,0,799,799,797,3323,1,1,1,1,'Onyx','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (22508,0,0,0,0,51,0,0,0,0,0,4098,4240,3301,0,0,0,0,0,0,0,800,811,810,3320,1,1,1,1,'Amethyst','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (22509,0,0,0,0,51,0,0,0,0,0,4098,4240,3303,0,0,0,0,0,0,0,796,796,802,3322,1,1,1,1,'Light Opal','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (22510,0,0,0,0,51,0,0,0,0,0,4098,4240,653,744,818,0,0,0,0,0,17281,17288,17288,17288,1,1,1,1,'Wingedge',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22511,0,2002,0,0,51,0,0,0,29,0,4096,4238,663,933,1887,13688,18233,0,0,0,2262,2262,2262,2262,12,12,12,12,'Auto-Repair Kit','TOAU'); -- BGwiki and JPwiki
|
|
INSERT INTO `synth_recipes` VALUES (22512,0,0,0,0,51,0,0,0,0,0,4098,4240,3299,0,0,0,0,0,0,0,806,788,784,3318,1,1,1,1,'Tourmaline','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (22513,0,0,0,0,51,0,0,0,0,0,4098,4240,3298,0,0,0,0,0,0,0,809,808,805,3317,1,1,1,1,'Clear Topaz','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (22514,0,0,0,0,51,0,0,0,0,0,4098,4240,3300,0,0,0,0,0,0,0,814,815,801,3319,1,1,1,1,'Amber','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (22515,0,0,0,0,52,0,0,0,0,0,4096,4238,663,937,16706,0,0,0,0,0,18202,18203,18203,18203,1,1,1,1,'Hydro Cutter',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22516,0,0,0,0,52,0,0,0,0,0,4096,4238,1678,13979,0,0,0,0,0,0,14864,14864,14864,14864,1,1,1,1,'Palmer\'s Bangles','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22517,0,0,0,21,52,0,0,0,0,0,4096,4238,651,653,653,0,0,0,0,0,16518,16815,16815,16815,1,1,1,1,'Mythril Degen',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22518,1,0,0,0,52,0,0,0,0,0,4100,4242,554,0,0,0,0,0,0,0,745,745,745,745,1,1,1,1,'Gold Orcmask (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (22519,0,2002,0,0,52,0,0,0,255,0,4099,4241,933,1109,1109,2360,2419,0,0,0,9036,9036,9036,9036,12,12,12,12,'Scope II','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (22520,0,0,0,0,52,0,0,0,0,0,4099,4241,681,12687,0,0,0,0,0,0,14033,14034,14034,14034,1,1,1,1,'San d\'Orian Mufflers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22521,0,2002,0,30,52,0,0,0,19,0,4096,4238,662,664,928,932,2290,0,0,0,2250,2250,2250,2250,12,12,12,12,'Shock Absorber','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22522,0,2000,0,0,53,0,0,0,0,0,4096,4238,737,737,737,737,1641,1642,1647,0,1679,1679,1679,1679,1,1,1,1,'Bewitched Gold Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22523,0,0,0,0,53,0,0,0,0,0,4096,4238,737,737,737,737,0,0,0,0,745,745,745,745,1,1,1,1,'Gold Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22524,0,2000,0,0,53,0,0,0,0,0,4096,4238,737,737,737,737,1644,1644,1647,0,1674,1674,1674,1674,1,1,1,1,'Indurated Gold Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22525,0,0,0,0,53,0,0,0,0,0,4099,4241,681,12815,0,0,0,0,0,0,14261,14262,14262,14262,1,1,1,1,'Royal Squire\'s Breeches +1',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (22526,0,2002,0,0,53,0,0,0,255,0,4096,4238,667,1520,2300,13683,18232,0,0,0,9070,9070,9070,9070,12,12,12,12,'Resister','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (22527,0,0,0,0,53,0,0,0,0,0,4099,4241,653,16888,0,0,0,0,0,0,18080,18081,18081,18081,1,1,1,1,'Spark Fork',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22528,0,1994,0,0,53,0,0,0,0,0,4098,4240,745,745,2143,0,0,0,0,0,9052,9052,9052,9052,3,6,9,12,'Golden Coil','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (22529,0,0,0,0,53,0,0,0,0,0,4099,4241,663,12431,0,0,0,0,0,0,13891,13892,13892,13892,1,1,1,1,'San d\'Orian Helm',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22530,0,0,0,0,54,0,0,0,0,0,4096,4238,2305,2305,2305,2305,0,0,0,0,1225,1225,1225,1225,1,1,1,1,'Gold Nugget','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22531,0,0,0,0,54,0,0,0,0,0,4096,4238,737,1225,1225,1225,1225,1225,1225,0,745,745,745,745,1,1,1,1,'Gold Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22532,0,0,0,0,54,0,0,0,0,0,4096,4238,745,0,0,0,0,0,0,0,752,752,752,752,1,1,1,1,'Gold Sheet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22533,0,1995,0,0,54,0,0,0,0,0,4096,4238,745,745,745,745,745,745,2144,0,752,752,752,752,6,6,6,6,'Gold Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22534,0,0,0,0,54,0,0,0,5,0,4096,4238,650,650,650,745,913,0,0,0,459,459,459,459,1,1,1,1,'Candle Holder','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (22535,0,2002,0,0,54,0,0,0,0,0,4096,4238,653,752,0,0,0,0,0,0,2360,2360,2360,2360,1,2,3,4,'Golden Gear','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22536,0,2002,0,0,54,0,0,0,27,0,4096,4238,752,1173,2300,2311,18228,0,0,0,2255,2255,2255,2255,12,12,12,12,'Volt Gun','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22537,0,0,0,0,55,0,0,0,0,0,4099,4241,793,13446,0,0,0,0,0,0,13482,13535,13535,13535,1,1,1,1,'Black Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22538,0,0,0,0,55,0,0,0,0,0,4099,4241,811,13446,0,0,0,0,0,0,13479,13532,13532,13532,1,1,1,1,'Ametrine Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22539,0,0,0,0,55,0,0,0,0,0,4099,4241,790,13446,0,0,0,0,0,0,13477,13530,13530,13530,1,1,1,1,'Garnet Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22540,0,0,0,0,55,0,0,0,0,0,4099,4241,792,13446,0,0,0,0,0,0,13483,13536,13536,13536,1,1,1,1,'Pearl Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22541,0,0,0,0,55,0,0,0,0,0,4099,4241,788,13446,0,0,0,0,0,0,13476,13529,13529,13529,1,1,1,1,'Peridot Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22542,0,0,0,0,55,0,0,0,0,0,4099,4241,808,13446,0,0,0,0,0,0,13478,13531,13531,13531,1,1,1,1,'Goshenite Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22543,0,0,0,0,55,0,0,0,0,0,4099,4241,815,13446,0,0,0,0,0,0,13481,13534,13534,13534,1,1,1,1,'Sphene Ring',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (22544,0,2002,0,0,55,0,0,0,255,0,4096,4238,637,933,2308,2311,0,0,0,0,9068,9068,9068,9068,12,12,12,12,'Barrier Module','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (22545,0,0,0,0,55,0,0,0,0,0,4099,4241,798,13446,0,0,0,0,0,0,13480,13533,13533,13533,1,1,1,1,'Turquoise Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22546,0,0,0,0,55,0,0,0,0,0,4099,4241,745,745,0,0,0,0,0,0,761,761,761,761,1,2,3,4,'Gold Chain',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22547,0,1994,0,0,55,0,0,0,0,0,4099,4241,745,745,745,745,745,745,2143,0,761,761,761,761,3,6,9,12,'Gold Chain','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22548,0,0,0,0,55,0,0,0,0,0,4099,4241,681,12559,0,0,0,0,0,0,14340,14341,14341,14341,1,1,1,1,'Royal Squire\'s Chainmail +1',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (22549,0,2002,0,0,55,0,0,0,255,0,4096,4238,637,663,933,2308,2311,0,0,0,9229,9229,9229,9229,12,12,12,12,'Speedloader','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (22550,0,0,0,0,55,0,0,0,0,0,4099,4241,8843,0,0,0,0,0,0,0,12307,12307,12307,12307,1,1,1,1,'Heater Shield','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (22551,0,0,0,0,56,0,0,0,0,0,4096,4238,653,17282,0,0,0,0,0,0,18132,18133,18133,18133,1,1,1,1,'Combat Caster\'s Boomerang +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22552,0,0,0,0,56,0,0,0,0,0,4099,4241,663,663,12306,0,0,0,0,0,12307,12328,12328,12328,1,1,1,1,'Heater Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22553,0,2002,0,0,56,0,0,0,29,0,4096,4238,914,1886,1887,13689,18232,0,0,0,2266,2266,2266,2266,12,12,12,12,'Mana Tank','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22554,0,0,0,0,56,0,0,0,0,0,4096,4238,663,681,745,784,914,0,0,0,13084,13067,13067,13067,1,1,1,1,'Mythril Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22555,0,1994,0,0,57,0,0,0,0,0,4099,4241,653,653,2853,0,0,0,0,0,19046,19047,19047,19047,1,1,1,1,'Reaver Grip','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (22556,0,0,0,0,57,0,0,0,0,0,4099,4241,1274,13328,0,0,0,0,0,0,14725,14726,14726,14726,1,1,1,1,'Melody Earring',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (22557,0,2002,0,255,57,0,0,0,0,0,4096,4238,665,932,1630,2000,2290,0,0,0,9038,9038,9038,9038,12,12,12,12,'Shock Absorber II','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (22558,0,0,0,0,57,0,0,0,0,0,4098,4240,745,745,0,0,0,0,0,0,13315,13372,13372,13372,1,1,1,1,'Gold Earring',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (22559,0,2002,0,0,57,0,0,0,255,0,4099,4241,933,1109,1109,2419,9053,0,0,0,9137,9137,9137,9137,12,12,12,12,'Scope III','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (22560,0,0,0,0,58,0,0,0,0,0,4099,4241,679,679,0,0,0,0,0,0,684,684,684,684,1,2,3,4,'Aluminum Chain','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22561,0,2002,0,0,58,0,0,0,29,0,4096,4238,927,1520,2290,2311,18236,0,0,0,2246,2246,2246,2246,12,12,12,12,'Accelerator','TOAU'); -- BGwiki and JPwiki
|
|
INSERT INTO `synth_recipes` VALUES (22562,0,1995,0,0,58,0,0,0,0,0,4099,4241,679,679,679,679,679,679,2143,0,684,684,684,684,3,6,9,12,'Aluminum Chain','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (22563,0,2002,0,0,58,0,0,0,255,0,4096,4238,667,1520,2300,13683,18233,0,0,0,9071,9071,9071,9071,12,12,12,12,'Resister II','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (22564,0,0,0,0,58,0,0,0,0,0,4098,4240,745,0,0,0,0,0,0,0,12494,13849,13849,13849,1,1,1,1,'Gold Hairpin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22565,0,0,0,0,58,0,0,0,0,0,4099,4241,653,16521,0,0,0,0,0,0,17690,17691,17691,17691,1,1,1,1,'Spark Rapier',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22566,0,0,0,39,59,0,0,0,0,0,4099,4241,652,745,914,0,0,0,0,0,17284,17289,17289,17289,1,1,1,1,'Chakram',NULL); -- FFXIclopedia and JPwiki
|
|
INSERT INTO `synth_recipes` VALUES (22567,0,0,0,0,59,0,0,0,0,0,4099,4241,1834,13084,0,0,0,0,0,0,13144,13144,13144,13144,1,1,1,1,'Wing Gorget','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22568,0,0,0,0,59,0,0,0,0,0,4096,4238,663,937,16411,0,0,0,0,0,17514,17515,17515,17515,1,1,1,1,'Hydro Claws',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22569,0,2002,0,0,59,0,0,0,12,0,4096,4238,667,1109,1886,13683,18232,0,0,0,2258,2258,2258,2258,12,12,12,12,'Mana Jammer','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (22570,0,0,0,0,60,0,0,0,0,0,4099,4241,811,13519,0,0,0,0,0,0,13479,14603,14603,14603,1,1,1,1,'Ametrine Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22571,0,0,0,0,60,0,0,0,0,0,4099,4241,793,13519,0,0,0,0,0,0,13482,14606,14606,14606,1,1,1,1,'Black Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22572,0,0,0,0,60,0,0,0,0,0,4098,4240,648,745,0,0,0,0,0,0,1961,1961,1961,1961,6,8,10,12,'Gold Arrowheads','COP');
|
|
INSERT INTO `synth_recipes` VALUES (22573,0,0,0,0,60,0,0,0,0,0,4099,4241,808,13519,0,0,0,0,0,0,13478,14602,14602,14602,1,1,1,1,'Goshenite Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22574,0,0,0,0,60,0,0,0,0,0,4096,4238,8844,0,0,0,0,0,0,0,12801,12801,12801,12801,1,1,1,1,'Mythril Cuisses','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (22575,0,0,0,0,60,0,0,0,0,0,4099,4241,790,13519,0,0,0,0,0,0,13477,14601,14601,14601,1,1,1,1,'Garnet Ring',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (22576,0,2002,0,0,60,0,0,0,255,0,4096,4238,637,752,933,2308,2311,0,0,0,9230,9230,9230,9230,12,12,12,12,'Speedloader II','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (22577,0,0,0,0,60,0,0,0,0,0,4096,4238,745,745,0,0,0,0,0,0,13445,13520,13520,13520,1,1,1,1,'Gold Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22578,0,0,0,0,60,0,0,0,0,0,4098,4240,3924,0,0,0,0,0,0,0,791,794,3925,3925,1,1,1,1,'Aquamarine','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (22579,0,0,0,0,60,0,0,0,0,0,4099,4241,815,13519,0,0,0,0,0,0,13481,14605,14605,14605,1,1,1,1,'Sphene Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22580,0,0,0,0,60,0,0,0,0,0,4099,4241,798,13519,0,0,0,0,0,0,13480,14604,14604,14604,1,1,1,1,'Turquoise Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22581,0,0,0,0,60,0,0,0,0,0,4099,4241,653,16759,0,0,0,0,0,0,17988,17989,17989,17989,1,1,1,1,'Spark Kris',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22582,0,0,0,0,60,0,0,0,0,0,4099,4241,788,13519,0,0,0,0,0,0,13476,14600,14600,14600,1,1,1,1,'Peridot Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (22583,0,0,0,0,60,0,0,0,0,0,4099,4241,792,13519,0,0,0,0,0,0,13483,14607,14607,14607,1,1,1,1,'Pearl Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23001,0,2002,0,0,61,0,0,0,29,0,4096,4238,752,933,1887,13688,18233,0,0,0,2265,2265,2265,2265,12,12,12,12,'Auto-Repair Kit II','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (23002,0,0,0,0,61,0,0,0,0,0,4096,4238,663,663,851,0,0,0,0,0,12801,14211,14211,14211,1,1,1,1,'Mythril Cuisses',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23003,0,2002,0,0,61,0,0,0,0,0,4099,4241,637,654,2308,2308,2360,0,0,0,2241,2241,2241,2241,12,12,12,12,'Tension Spring II','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (23004,0,0,0,0,61,0,0,0,0,0,4096,4238,751,751,751,751,0,0,0,0,746,746,746,746,1,1,1,1,'Platinum Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23005,0,0,0,0,62,0,0,0,0,0,4096,4238,648,663,664,850,0,0,0,0,12417,13847,13847,13847,1,1,1,1,'Mythril Sallet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23006,0,0,0,0,62,0,0,0,0,0,4096,4238,663,937,16724,0,0,0,0,0,18204,18205,18205,18205,1,1,1,1,'Hydro Chopper',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (23007,0,2002,0,0,62,0,0,0,255,0,4096,4238,933,1109,1109,2419,9145,0,0,0,9884,9884,9884,9884,12,12,12,12,'Scope IV','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (23008,0,2002,0,255,62,0,0,0,0,0,4096,4238,932,2001,2290,2549,4022,0,0,0,9139,9139,9139,9139,12,12,12,12,'Shock Absorber III','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23009,0,1994,0,0,62,0,0,0,0,0,4096,4238,746,746,2143,0,0,0,0,0,19019,19020,19020,19020,1,1,1,1,'Platinum Grip','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (23010,0,0,0,0,63,0,0,0,0,0,4096,4238,738,738,738,738,0,0,0,0,746,746,746,746,1,1,1,1,'Platinum Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23011,0,0,31,53,63,0,0,0,0,0,4096,4238,654,717,2749,2749,2766,0,0,0,18764,18764,18764,18764,1,1,1,1,'Oberon\'s Knuckles','WOTG'); -- BGwiki, FFXIclopedia and JP Wiki (highest level used)
|
|
INSERT INTO `synth_recipes` VALUES (23012,0,2000,0,0,64,0,0,0,0,0,4096,4238,738,738,738,738,1643,1646,1647,0,1879,1879,1879,1879,1,1,1,1,'Vivio Platinum Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (23013,0,0,0,0,63,0,0,0,0,0,4098,4240,4057,0,0,0,0,0,0,0,809,808,805,780,1,1,1,1,'Clear Topaz','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (23014,0,0,31,45,63,0,0,0,0,0,4096,4238,652,654,719,746,914,2766,0,0,18765,18765,18765,18765,1,1,1,1,'Oberon\'s Sainti','WOTG'); -- BGwiki, FFXIclopedia and JP Wiki (highest level used)
|
|
INSERT INTO `synth_recipes` VALUES (23015,0,1994,0,0,64,0,0,0,0,0,4096,4238,746,754,0,0,0,0,0,0,9053,9053,9053,9053,1,2,3,4,'Platinum Gear','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (23016,0,1995,0,0,64,0,0,0,0,0,4096,4238,746,746,746,746,746,746,2144,0,754,754,754,754,6,6,6,6,'Platinum Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (23017,1,0,0,0,64,0,0,0,0,0,4100,4242,17072,0,0,0,0,0,0,0,895,797,797,797,1,1,1,1,'Lilith\'s Rod (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23018,0,0,0,0,64,0,0,0,0,0,4096,4238,746,0,0,0,0,0,0,0,754,754,754,754,1,1,1,1,'Platinum Sheet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23019,0,0,0,0,64,0,0,0,0,0,4096,4238,663,663,664,851,851,0,0,0,12929,14086,14086,14086,1,1,1,1,'Mythril Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23020,0,0,0,0,64,0,0,0,0,0,4096,4238,738,1227,1227,1227,1227,1227,1227,0,746,746,746,746,1,1,1,1,'Platinum Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23021,0,0,0,0,64,0,40,0,57,0,4096,4238,651,651,657,715,744,822,853,931,16970,17800,17800,17800,1,1,1,1,'Hosodachi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23022,0,0,0,0,65,0,0,0,0,0,4099,4241,797,13315,0,0,0,0,0,0,13349,13395,13395,13395,1,1,1,1,'Night Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23023,0,1994,0,0,65,0,0,0,0,0,4099,4241,746,746,746,746,746,746,2143,0,762,762,762,762,3,6,9,12,'Platinum Chain','COP');
|
|
INSERT INTO `synth_recipes` VALUES (23024,0,0,0,0,65,0,0,0,0,0,4099,4241,8845,0,0,0,0,0,0,0,13350,13350,13350,13350,1,1,1,1,'Moon Earring','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23025,0,0,0,0,65,0,0,0,0,0,4096,4238,745,914,17283,0,0,0,0,0,18134,18135,18135,18135,1,1,1,1,'Junior Musketeer\'s Chakram +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23026,0,0,0,0,65,0,0,0,0,0,4099,4241,784,13315,0,0,0,0,0,0,13343,13389,13389,13389,1,1,1,1,'Green Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23027,0,0,0,0,65,0,0,0,0,0,4099,4241,805,13315,0,0,0,0,0,0,13345,13391,13391,13391,1,1,1,1,'Zircon Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23028,0,0,0,0,65,0,0,0,0,0,4099,4241,803,13315,0,0,0,0,0,0,13344,13390,13390,13390,1,1,1,1,'Sun Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23029,0,0,0,0,65,0,0,0,0,0,4099,4241,791,13315,0,0,0,0,0,0,13347,13393,13393,13393,1,1,1,1,'Aquamarine Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23030,0,0,0,0,65,0,0,0,0,0,4099,4241,746,746,0,0,0,0,0,0,762,762,762,762,1,2,3,4,'Platinum Chain',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23031,0,0,0,0,65,0,0,0,0,0,4099,4241,802,13315,0,0,0,0,0,0,13350,13396,13396,13396,1,1,1,1,'Moon Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23032,0,0,0,0,65,0,0,0,0,0,4099,4241,801,13315,0,0,0,0,0,0,13348,13394,13394,13394,1,1,1,1,'Yellow Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23033,0,0,0,0,65,0,0,0,0,0,4099,4241,810,13315,0,0,0,0,0,0,13346,13392,13392,13392,1,1,1,1,'Purple Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23034,0,0,32,0,66,0,0,0,0,0,4096,4238,650,652,718,745,745,914,0,0,18362,18363,18363,18363,1,1,1,1,'Sainti','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (23035,0,0,0,0,66,0,0,0,0,0,4096,4238,663,664,12696,12696,0,0,0,0,12673,13958,13958,13958,1,1,1,1,'Mythril Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23036,0,2002,0,0,66,0,0,0,29,0,4096,4238,914,1886,1887,13689,18233,0,0,0,2269,2269,2269,2269,12,12,12,12,'Mana Tank II','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (23037,0,0,0,0,66,0,0,0,10,0,4096,4238,745,745,913,913,0,0,0,0,425,425,425,425,1,1,1,1,'Girandola','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (23038,0,2002,0,0,66,0,0,0,0,0,4099,4241,637,654,2308,2308,9053,0,0,0,9033,9033,9033,9033,12,12,12,12,'Tension Spring III','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (23039,0,2002,0,0,66,0,0,0,255,0,4096,4238,754,933,1887,13688,18234,0,0,0,9044,9044,9044,9044,12,12,12,12,'Auto-Repair Kit III','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (23040,0,0,0,0,67,0,0,0,0,0,4096,4238,663,937,16420,0,0,0,0,0,17516,17517,17517,17517,1,1,1,1,'Hydro Patas',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23041,0,0,0,0,67,0,0,0,0,0,4096,4238,663,663,664,664,851,851,0,0,12545,13737,13737,13737,1,1,1,1,'Mythril Breastplate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23042,0,2001,0,0,67,0,0,0,0,0,4096,4238,2230,2233,16970,0,0,0,0,0,18444,18444,18444,18444,1,1,1,1,'Tsurugitachi','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (23043,0,0,0,0,68,0,0,0,0,0,4098,4240,746,746,0,0,0,0,0,0,13316,13397,13397,13397,1,1,1,1,'Platinum Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23044,0,2002,0,0,68,0,0,0,29,0,4096,4238,927,1520,2290,2360,18237,0,0,0,2249,2249,2249,2249,12,12,12,12,'Accelerator II','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (23045,0,0,0,28,68,0,0,0,0,0,4096,4238,652,652,810,914,2766,0,0,0,17761,17761,17761,17761,1,1,1,1,'Oberon\'s Rapier','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (23046,0,0,0,33,69,0,0,50,0,0,4096,4238,652,744,1622,1766,0,0,0,0,17701,17702,17702,17702,1,1,1,1,'Shotel',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23047,0,2002,0,0,69,0,0,0,12,0,4096,4238,667,1109,1886,13683,18237,0,0,0,2261,2261,2261,2261,12,12,12,12,'Mana Jammer II','TOAU'); -- FFXIclopedia and BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (23048,0,0,0,0,69,0,0,0,0,0,4096,4238,1858,0,0,0,0,0,0,0,1859,1859,1859,1859,1,1,1,1,'Moblumin Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (23049,0,0,0,0,69,0,0,0,0,0,4096,4238,737,737,737,2765,0,0,0,0,2766,2766,2766,2766,1,1,1,1,'Oberon\'s Gold','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (23050,0,2002,0,0,69,0,0,0,0,0,4096,4238,668,747,0,0,0,0,0,0,9145,9145,9145,9145,1,2,3,4,'Orichalcum Gearbox','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23051,0,0,0,0,69,0,0,0,0,0,4096,4238,745,914,16512,0,0,0,0,0,16514,16618,16618,16618,1,1,1,1,'Mailbreaker',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23052,0,0,0,0,70,0,0,0,0,0,4099,4241,802,13372,0,0,0,0,0,0,13350,14711,14711,14711,1,1,1,1,'Moon Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23053,0,0,0,0,70,0,0,0,0,0,4096,4238,746,746,0,0,0,0,0,0,13447,13498,13498,13498,1,1,1,1,'Platinum Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23054,0,0,0,0,70,0,0,0,0,0,4099,4241,810,13372,0,0,0,0,0,0,13346,14707,14707,14707,1,1,1,1,'Purple Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23055,0,0,0,0,70,0,0,0,0,0,4099,4241,797,13372,0,0,0,0,0,0,13349,14710,14710,14710,1,1,1,1,'Night Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23056,0,0,0,0,70,0,0,0,0,0,4099,4241,805,13372,0,0,0,0,0,0,13345,14706,14706,14706,1,1,1,1,'Zircon Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23057,0,0,0,0,70,0,0,0,0,0,4099,4241,803,13372,0,0,0,0,0,0,13344,14705,14705,14705,1,1,1,1,'Sun Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23058,0,2002,0,0,70,0,0,0,0,0,4096,4238,754,1641,9052,9052,9145,0,0,0,9132,9132,9132,9132,12,12,12,12,'Heat Capacitor II','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23059,0,0,0,0,70,0,0,0,0,0,4099,4241,791,13372,0,0,0,0,0,0,13347,14708,14708,14708,1,1,1,1,'Aquamarine Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23060,0,0,0,0,70,0,0,0,0,0,4096,4238,8846,0,0,0,0,0,0,0,13983,13983,13983,13983,1,1,1,1,'Gold Bangles','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23061,0,0,0,0,70,0,0,0,0,0,4096,4238,745,745,745,0,0,0,0,0,13983,13984,13984,13984,1,1,1,1,'Gold Bangles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23062,0,0,0,0,70,0,0,0,0,0,4098,4240,648,746,0,0,0,0,0,0,1962,1962,1962,1962,6,8,10,12,'Platinum Arrowheads','COP');
|
|
INSERT INTO `synth_recipes` VALUES (23063,0,0,0,0,70,0,0,0,0,0,4096,4238,2766,0,0,0,0,0,0,0,2767,2767,2767,2767,1,1,1,1,'Ob. Gold Sheet','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (23064,0,0,0,0,70,0,0,0,0,0,4099,4241,801,13372,0,0,0,0,0,0,13348,14709,14709,14709,1,1,1,1,'Yellow Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23065,0,0,0,0,70,0,0,0,0,0,4099,4241,784,13372,0,0,0,0,0,0,13343,14704,14704,14704,1,1,1,1,'Green Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23501,1,0,0,0,70,0,0,0,0,0,4100,4242,13447,0,0,0,0,0,0,0,746,746,746,746,1,1,2,2,'Platinum Ring (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (23502,0,2002,0,0,71,0,0,0,255,0,4096,4238,668,933,1887,13688,18233,18234,0,0,9143,9143,9143,9143,12,12,12,12,'Auto-Repair Kit IV','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23503,0,0,0,0,71,0,0,0,51,0,4096,4238,745,851,914,931,931,0,0,0,12802,14212,14212,14212,1,1,1,1,'Gold Cuisses',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (23504,0,2002,0,0,71,0,0,0,255,0,4096,4238,914,1886,1887,13689,18234,0,0,0,9045,9045,9045,9045,12,12,12,12,'Mana Tank III','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (23505,0,0,0,0,71,0,0,0,0,0,4096,4238,648,745,789,0,0,0,0,0,12477,12483,12483,12483,1,1,1,1,'Noble\'s Crown',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23506,0,0,0,0,71,0,0,0,0,0,4099,4241,2840,13447,0,0,0,0,0,0,15849,15855,15855,15855,1,1,1,1,'Krousis Ring','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (23507,0,2002,0,0,71,0,0,0,0,0,4099,4241,637,654,2308,2308,9145,0,0,0,9131,9131,9131,9131,12,12,12,12,'Tension Spring IV','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23508,0,0,0,0,72,0,0,0,0,0,4098,4240,3921,0,0,0,0,0,0,0,773,773,773,1836,1,1,1,1,'Translucent Rock','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (23509,0,0,255,0,72,0,0,0,0,0,4099,4241,728,728,2340,2418,2419,2419,0,0,125,125,125,125,1,1,1,1,'Reliquary','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (23510,0,0,0,0,72,0,0,0,0,0,4096,4238,648,745,850,914,931,931,0,0,12418,13848,13848,13848,1,1,1,1,'Gold Armet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23511,0,0,0,0,72,0,0,0,0,0,4096,4238,745,745,914,16568,0,0,0,0,16569,17641,17641,17641,1,1,1,1,'Gold Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23512,0,0,0,31,73,0,0,0,45,0,4096,4238,659,913,1859,1860,0,0,0,0,1823,1823,1823,1823,1,1,1,1,'Shrimp Lantern','COP');
|
|
INSERT INTO `synth_recipes` VALUES (23513,0,0,0,53,73,0,0,0,0,0,4098,4240,651,657,745,914,0,0,0,0,17285,17279,17279,17279,1,1,1,1,'Moonring Blade',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23514,0,2002,0,44,74,0,0,0,0,0,4096,4238,652,927,1520,2311,17044,17044,18236,0,2412,2412,2412,2412,12,12,12,12,'Hammermill','TOAU'); -- BGwiki and JPwiki
|
|
INSERT INTO `synth_recipes` VALUES (23515,0,0,0,0,74,0,0,0,54,0,4096,4238,745,851,851,914,931,931,931,0,12930,14087,14087,14087,1,1,1,1,'Gold Sabatons',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (23516,0,2002,0,0,74,0,0,0,255,0,4096,4238,667,1109,1886,13683,18234,0,0,0,9042,9042,9042,9042,12,12,12,12,'Mana Jammer III','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (23517,0,0,0,0,75,0,0,0,0,0,4099,4241,791,13445,0,0,0,0,0,0,13488,13541,13541,13541,1,1,1,1,'Aquamarine Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23518,0,0,0,0,75,0,0,0,0,0,4099,4241,810,13445,0,0,0,0,0,0,13487,13540,13540,13540,1,1,1,1,'Fluorite Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23519,0,0,0,0,75,0,0,0,0,0,4099,4241,805,13445,0,0,0,0,0,0,13486,13539,13539,13539,1,1,1,1,'Zircon Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23520,0,0,0,0,75,0,0,0,0,0,4099,4241,801,13445,0,0,0,0,0,0,13489,13542,13542,13542,1,1,1,1,'Chrysoberyl Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23521,0,0,0,0,75,0,0,0,0,0,4099,4241,784,13445,0,0,0,0,0,0,13484,13537,13537,13537,1,1,1,1,'Jadeite Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23522,0,0,0,0,75,0,0,0,0,0,4096,4238,745,823,16960,0,0,0,0,0,16962,16979,16979,16979,1,1,1,1,'Ashura',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23523,0,0,0,0,75,0,0,0,0,0,4099,4241,803,13445,0,0,0,0,0,0,13485,13538,13538,13538,1,1,1,1,'Sun Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23524,0,0,0,0,75,0,0,0,0,0,4099,4241,802,13445,0,0,0,0,0,0,13491,13544,13544,13544,1,1,1,1,'Moon Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23525,0,0,0,0,75,0,0,0,0,0,4096,4238,9494,0,0,0,0,0,0,0,16962,16962,16962,16962,1,1,1,1,'Ashura','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23526,0,0,0,0,75,0,0,0,0,0,4099,4241,797,13445,0,0,0,0,0,0,13490,13543,13543,13543,1,1,1,1,'Painite Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23527,0,0,0,0,76,0,0,0,0,0,4096,4238,745,914,16419,0,0,0,0,0,16421,17489,17489,17489,1,1,1,1,'Gold Patas',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23528,0,0,0,0,76,0,0,0,0,0,4096,4238,745,914,12806,0,0,0,0,0,14263,14264,14264,14264,1,1,1,1,'Iron Musketeer\'s Cuisses +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23529,0,0,0,0,76,31,48,0,0,0,4099,4241,663,663,663,879,2152,2152,2289,0,15687,15693,15693,15693,1,1,1,1,'Sipahi Boots','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (23530,0,2002,0,0,76,0,0,0,0,0,4099,4241,637,654,9052,9052,9145,0,0,0,9880,9880,9880,9880,12,12,12,12,'Tension Spring V','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (23531,0,2002,0,0,76,0,0,0,255,0,4096,4238,914,1886,1887,13689,18233,18234,0,0,9144,9144,9144,9144,12,12,12,12,'Mana Tank IV','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23532,0,0,0,0,77,0,0,0,0,0,4096,4238,745,745,745,745,0,0,0,0,13125,13126,13126,13126,1,1,1,1,'Torque',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23533,0,0,0,0,77,0,0,0,0,0,4096,4238,745,914,12422,0,0,0,0,0,13893,13894,13894,13894,1,1,1,1,'Iron Musketeer\'s Armet +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23534,0,0,0,0,77,0,0,0,54,0,4096,4238,745,914,931,931,12696,12696,0,0,12674,13959,13959,13959,1,1,1,1,'Gold Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23535,0,0,0,0,78,0,0,0,54,0,4096,4238,745,851,851,914,931,931,931,931,12546,13738,13738,13738,1,1,1,1,'Gold Cuirass',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23536,0,0,0,0,78,0,0,0,0,0,4099,4241,13315,18136,0,0,0,0,0,0,14720,14721,14721,14721,1,1,1,1,'Morion Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23537,0,0,0,0,78,0,0,0,0,0,4096,4238,745,914,12934,0,0,0,0,0,14143,14144,14144,14144,1,1,1,1,'Iron Musketeer\'s Sabatons +1',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (23538,0,2002,0,0,78,0,0,0,255,0,4096,4238,927,1520,2290,9145,18237,18238,0,0,9136,9136,9136,9136,12,12,12,12,'Accelerator IV','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23539,0,0,0,0,78,0,0,0,0,0,4098,4240,679,0,0,0,0,0,0,0,2651,2651,2651,2651,6,8,10,12,'Fusion Bolt Heads','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (23540,0,0,0,0,78,0,0,0,0,0,4099,4241,13315,18140,0,0,0,0,0,0,14727,14728,14728,14728,1,1,1,1,'Phantom Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23541,0,0,0,0,79,0,0,0,0,0,4096,4238,653,655,744,0,0,0,0,0,369,369,369,369,1,1,1,1,'Bastokan Tea Set','WOTG');
|
|
-- INSERT INTO `synth_recipes` VALUES (23542,0,2002,0,0,79,0,0,0,255,0,4096,4238,667,1109,1886,13683,18233,18234,0,0,9142,9142,9142,9142,12,12,12,12,'Mana Jammer IV','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23543,0,0,0,0,79,59,0,0,0,0,4096,4238,730,823,1999,2288,2418,2418,2418,2418,122,122,122,122,1,1,1,1,'Amir Bed','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (23544,0,0,31,51,79,0,0,0,0,0,4096,4238,664,717,754,787,787,0,0,0,16395,17480,17480,17480,1,1,1,1,'Diamond Knuckles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23545,0,0,0,0,80,0,0,0,0,0,4099,4241,791,13520,0,0,0,0,0,0,13488,14612,14612,14612,1,1,1,1,'Aquamarine Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23546,0,0,0,0,80,0,0,0,0,0,4099,4241,801,13520,0,0,0,0,0,0,13489,14613,14613,14613,1,1,1,1,'Chrysoberyl Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23547,0,0,0,0,80,0,0,0,0,0,4096,4238,1674,13125,0,0,0,0,0,0,13170,13170,13170,13170,1,1,1,1,'Stoneskin Torque','COP');
|
|
INSERT INTO `synth_recipes` VALUES (23548,0,0,0,0,80,0,0,0,0,0,4099,4241,810,13520,0,0,0,0,0,0,13487,14611,14611,14611,1,1,1,1,'Fluorite Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23549,0,0,0,0,80,0,0,0,0,0,4096,4238,745,914,12300,0,0,0,0,0,12303,12353,12353,12353,1,1,1,1,'Gold Buckler',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23550,0,0,0,0,80,0,0,0,0,0,4099,4241,784,13520,0,0,0,0,0,0,13484,14608,14608,14608,1,1,1,1,'Jadeite Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23551,0,0,0,0,80,0,0,0,0,0,4099,4241,802,13520,0,0,0,0,0,0,13491,14615,14615,14615,1,1,1,1,'Moon Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23552,0,0,0,0,80,0,0,0,0,0,4096,4238,9495,0,0,0,0,0,0,0,12303,12303,12303,12303,1,1,1,1,'Gold Buckler','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (23553,0,0,0,0,80,0,0,0,0,0,4099,4241,797,13520,0,0,0,0,0,0,13490,14614,14614,14614,1,1,1,1,'Painite Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23554,0,0,0,0,80,0,0,0,0,0,4099,4241,803,13520,0,0,0,0,0,0,13485,14609,14609,14609,1,1,1,1,'Sun Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (23555,0,0,0,0,80,0,0,0,0,0,4099,4241,805,13520,0,0,0,0,0,0,13486,14610,14610,14610,1,1,1,1,'Zircon Ring',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (23556,0,2002,0,0,255,0,0,0,255,0,4096,4238,927,1520,2290,9053,18238,0,0,0,9037,9037,9037,9037,12,12,12,12,'Accelerator III','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24001,0,0,0,0,81,0,0,58,0,0,4096,4238,745,746,785,786,789,914,1123,16538,16541,17636,17636,17636,1,1,1,1,'Jagdplaute',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24002,0,0,0,0,81,0,0,0,0,0,4096,4238,745,745,914,12803,0,0,0,0,15395,15399,15399,15399,1,1,1,1,'Lord\'s Cuisses','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24003,0,0,0,0,81,0,0,0,0,0,4096,4238,740,740,740,740,0,0,0,0,743,743,743,743,1,1,1,1,'Phrygian Gold Ingot','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (24004,0,0,0,0,81,0,0,0,0,0,4098,4240,3520,0,0,0,0,0,0,0,803,786,767,8919,1,1,1,1,'Sunstone','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24005,0,0,0,0,81,0,0,0,0,0,4098,4240,3525,0,0,0,0,0,0,0,791,794,781,8920,1,1,1,1,'Aquamarine','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24006,0,0,0,0,81,0,0,0,0,0,4098,4240,3524,0,0,0,0,0,0,0,810,804,777,8921,1,1,1,1,'Fluorite','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24007,0,0,0,0,81,0,0,0,0,0,4098,4240,3522,0,0,0,0,0,0,0,784,785,779,8922,1,1,1,1,'Jadeite','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24008,0,0,0,0,81,0,0,0,0,0,4098,4240,3523,0,0,0,0,0,0,0,801,789,778,8923,1,1,1,1,'Chrysoberyl','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24009,0,0,0,0,81,0,0,0,0,0,4098,4240,3521,0,0,0,0,0,0,0,805,787,780,8924,1,1,1,1,'Zircon','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24010,0,0,0,0,81,0,0,0,0,0,4098,4240,3526,0,0,0,0,0,0,0,802,813,782,8925,1,1,1,1,'Moonstone','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24011,0,0,0,0,81,0,0,0,0,0,4098,4240,3527,0,0,0,0,0,0,0,797,812,783,8926,1,1,1,1,'Painite','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24012,0,0,0,0,82,0,0,0,0,0,4096,4238,743,0,0,0,0,0,0,0,753,753,753,753,1,1,1,1,'Phrygian Gold Sheet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (24013,0,1995,0,0,82,0,0,0,0,0,4096,4238,743,743,743,743,743,743,2144,0,753,753,753,753,6,6,6,6,'Phrygian Gold Sheet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (24014,0,0,0,0,82,0,0,0,0,0,4096,4238,745,746,914,17037,0,0,0,0,17039,17431,17431,17431,1,1,1,1,'Platinum Mace',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24015,0,0,0,0,82,0,0,0,15,0,4096,4238,650,745,745,745,913,913,913,0,450,450,450,450,1,1,1,1,'Candelabrum','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (24016,0,0,0,0,82,0,46,0,0,0,4096,4238,879,2418,18405,0,0,0,0,0,18848,18849,18849,18849,1,1,1,1,'Brass Jadagna','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24017,0,0,0,0,82,0,0,0,0,0,4096,4238,745,914,16839,0,0,0,0,0,16842,16875,16875,16875,1,1,1,1,'Golden Spear',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24018,0,0,0,0,82,0,0,0,0,0,4096,4238,745,914,12678,0,0,0,0,0,14035,14036,14036,14036,1,1,1,1,'Iron Musketeer\'s Gauntlets +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24019,0,0,0,0,83,0,0,0,0,0,4096,4238,745,914,12550,0,0,0,0,0,14342,14343,14343,14343,1,1,1,1,'Iron Musketeer\'s Cuirass +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24020,0,0,0,0,83,0,0,0,0,0,4096,4238,745,745,914,12419,0,0,0,0,15189,15193,15193,15193,1,1,1,1,'Lord\'s Armet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24021,0,0,0,28,83,0,0,0,0,0,4096,4238,652,652,745,810,914,0,0,0,16521,17633,17633,17633,1,1,1,1,'Rapier',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24022,0,0,0,0,84,0,0,0,0,0,4096,4238,745,746,914,16560,0,0,0,0,16562,17640,17640,17640,1,1,1,1,'Platinum Cutlass',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24023,0,0,41,0,84,32,0,0,0,0,4096,4238,650,663,718,745,752,798,1634,1699,186,186,186,186,1,1,1,1,'Shield Plaque','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24024,0,0,0,0,85,0,0,0,0,0,4099,4241,786,13316,0,0,0,0,0,0,13352,13408,13408,13408,1,1,1,1,'Ruby Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24025,0,0,0,0,85,0,0,0,0,0,4099,4241,813,13316,0,0,0,0,0,0,13357,13414,13414,13414,1,1,1,1,'Angel\'s Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24026,0,0,0,0,85,0,0,0,0,0,4096,4238,745,914,12313,0,0,0,0,0,12376,12377,12377,12377,1,1,1,1,'Temple Knight Army Shield +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24027,0,0,0,0,85,0,0,0,0,0,4096,4238,745,914,12931,0,0,0,0,0,15333,15337,15337,15337,1,1,1,1,'Lord\'s Sabatons','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24028,0,0,0,0,85,0,0,0,0,0,4099,4241,804,13316,0,0,0,0,0,0,13354,13410,13410,13410,1,1,1,1,'Spinel Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24029,1,0,0,0,85,0,0,0,0,0,4100,4242,13355,0,0,0,0,0,0,0,794,794,746,746,1,1,1,2,'Sapphire Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24030,0,0,0,0,85,0,0,0,0,0,4098,4240,800,929,1134,1836,0,0,0,0,348,348,348,348,1,1,1,1,'Marble Plaque','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24031,0,0,0,0,85,0,0,0,0,0,4099,4241,789,13316,0,0,0,0,0,0,13318,13412,13412,13412,1,1,1,1,'Topaz Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24032,0,0,0,0,85,0,0,0,0,0,4099,4241,794,13316,0,0,0,0,0,0,13355,13411,13411,13411,1,1,1,1,'Sapphire Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24033,0,0,0,56,85,0,0,0,0,0,4096,4238,652,653,745,746,813,914,0,0,16527,16619,16619,16619,1,1,1,1,'Epee',NULL); -- BGwiki and FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (24034,0,0,0,0,85,0,0,0,0,0,4096,4238,9496,0,0,0,0,0,0,0,13985,13985,13985,13985,1,1,1,1,'Platinum Bangles','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24035,0,0,0,0,85,0,0,0,0,0,4099,4241,787,13316,0,0,0,0,0,0,13353,13409,13409,13409,1,1,1,1,'Diamond Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24036,0,0,0,0,85,0,0,0,0,0,4099,4241,785,13316,0,0,0,0,0,0,13351,13407,13407,13407,1,1,1,1,'Emerald Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24037,0,0,0,0,85,0,0,0,0,0,4096,4238,746,746,746,746,0,0,0,0,13985,13986,13986,13986,1,1,1,1,'Platinum Bangles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24038,0,0,0,0,85,0,0,0,0,0,4099,4241,812,13316,0,0,0,0,0,0,13356,13413,13413,13413,1,1,1,1,'Death Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24039,0,0,0,0,85,0,0,0,0,0,4096,4238,745,914,12312,0,0,0,0,0,12368,12369,12369,12369,1,1,1,1,'Royal Knight Army Shield +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24040,0,0,0,0,86,55,0,0,0,0,4098,4240,745,745,791,821,829,1280,1836,1836,130,130,130,130,1,1,1,1,'Marble Bed','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24041,0,0,42,45,86,0,0,0,0,0,4096,4238,652,654,719,746,746,914,0,0,18743,18744,18744,18744,1,1,1,1,'Darksteel Sainti','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24042,0,0,0,0,86,0,0,0,0,0,4096,4238,652,745,746,0,0,0,0,0,17065,17436,17436,17436,1,1,1,1,'Platinum Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24043,0,0,0,0,87,0,0,0,0,0,4098,4240,1255,0,0,0,0,0,0,0,1299,1299,1299,1299,1,1,1,1,'Fire Bead',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24044,0,0,0,0,87,0,0,0,0,0,4098,4240,1260,0,0,0,0,0,0,0,1304,1304,1304,1304,1,1,1,1,'Water Bead',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24045,0,0,0,0,87,0,0,0,0,0,4098,4240,1259,0,0,0,0,0,0,0,1303,1303,1303,1303,1,1,1,1,'Lightning Bead',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24046,0,0,0,0,87,0,0,0,0,0,4098,4240,1261,0,0,0,0,0,0,0,1305,1305,1305,1305,1,1,1,1,'Light Bead',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24047,0,0,0,0,87,0,0,0,0,0,4098,4240,1256,0,0,0,0,0,0,0,1300,1300,1300,1300,1,1,1,1,'Ice Bead',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24048,0,0,0,0,87,0,0,0,0,0,4098,4240,1257,0,0,0,0,0,0,0,1301,1301,1301,1301,1,1,1,1,'Wind Bead',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24049,0,0,54,46,87,0,0,0,0,0,4096,4238,651,651,651,657,720,745,823,1122,16972,17805,17805,17805,1,1,1,1,'Kazaridachi',NULL); -- All sources agree http://wiki.ffo.jp/html/8546.html
|
|
INSERT INTO `synth_recipes` VALUES (24050,0,0,0,0,87,0,0,0,0,0,4098,4240,1262,0,0,0,0,0,0,0,1306,1306,1306,1306,1,1,1,1,'Dark Bead',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24051,0,0,0,0,87,0,0,0,0,0,4098,4240,1258,0,0,0,0,0,0,0,1302,1302,1302,1302,1,1,1,1,'Earth Bead',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24052,0,0,0,0,88,0,0,0,0,0,4096,4238,745,745,914,12675,0,0,0,0,14879,14883,14883,14883,1,1,1,1,'Lord\'s Gauntlets','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24053,0,0,0,0,88,0,0,0,0,0,4096,4238,745,914,16529,0,0,0,0,0,17680,17681,17681,17681,1,1,1,1,'Musketeer\'s Sword +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24054,0,0,0,0,88,0,0,0,0,0,4096,4238,745,812,16514,0,0,0,0,0,16515,17632,17632,17632,1,1,1,1,'Colichemarde',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24055,0,0,0,0,88,0,0,0,0,0,4099,4241,1271,13316,0,0,0,0,0,0,14722,14723,14723,14723,1,1,1,1,'Pigeon Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24056,0,0,0,0,89,0,0,0,0,0,4096,4238,745,745,746,752,752,752,914,12547,13757,13758,13758,13758,1,1,1,1,'Lord\'s Cuirass',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24057,0,0,0,0,89,0,0,0,0,0,4096,4238,738,739,739,739,1645,1646,1648,0,1677,1677,1677,1677,1,1,1,1,'Aqueous Orichalcum Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24058,0,0,0,0,89,0,0,0,0,0,4096,4238,738,739,739,739,0,0,0,0,747,747,747,747,1,1,1,1,'Orichalcum Ingot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24059,0,0,0,45,89,0,38,0,0,0,4096,4238,668,668,745,754,914,1629,1629,0,15305,15306,15306,15306,1,1,1,1,'Barone Gambieras','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24060,0,0,0,0,90,0,0,0,0,0,4099,4241,787,13397,0,0,0,0,0,0,13353,14714,14714,14714,1,1,1,1,'Diamond Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24061,0,0,0,0,90,0,0,0,0,0,4099,4241,1271,13329,0,0,0,0,0,0,15993,15994,15994,15994,1,1,1,1,'Crimson Earring','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24062,0,0,0,0,90,0,0,0,0,0,4096,4238,738,739,739,739,1642,1642,1648,0,1676,1676,1676,1676,1,1,1,1,'Frigid Orichalcum Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24063,0,0,0,0,90,0,0,0,0,0,4099,4241,752,785,786,787,789,794,804,13125,13087,13130,13130,13130,1,1,1,1,'Jeweled Collar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24064,0,0,0,0,90,0,0,0,0,0,4099,4241,804,13397,0,0,0,0,0,0,13354,14715,14715,14715,1,1,1,1,'Spinel Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24065,0,0,0,0,90,0,0,0,0,0,4096,4238,653,745,746,786,16541,0,0,0,16542,17637,17637,17637,1,1,1,1,'Wing Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24066,0,0,0,0,90,0,0,0,0,0,4099,4241,794,13397,0,0,0,0,0,0,13355,14716,14716,14716,1,1,1,1,'Sapphire Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24067,0,0,0,0,90,0,0,0,0,0,4099,4241,812,13397,0,0,0,0,0,0,13356,14718,14718,14718,1,1,1,1,'Death Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24068,0,0,0,0,90,0,0,0,0,0,4099,4241,754,754,787,787,787,787,12306,0,12310,12355,12355,12355,1,1,1,1,'Diamond Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24069,0,0,0,0,90,0,0,0,0,0,4099,4241,2359,13329,0,0,0,0,0,0,15991,15992,15992,15992,1,1,1,1,'Star Earring','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24070,0,0,0,0,90,0,0,0,0,0,4096,4238,738,739,739,739,1644,1644,1648,0,1670,1670,1670,1670,1,1,1,1,'Spirit Orichalcum Ingot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24071,0,0,0,0,90,0,0,0,0,0,4099,4241,786,13397,0,0,0,0,0,0,13352,14713,14713,14713,1,1,1,1,'Ruby Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24072,0,0,0,0,90,0,0,0,0,0,4096,4238,1679,16972,0,0,0,0,0,0,17826,17826,17826,17826,1,1,1,1,'Messhikimaru','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24073,0,0,0,0,90,0,0,0,0,0,4099,4241,789,13397,0,0,0,0,0,0,13318,14717,14717,14717,1,1,1,1,'Topaz Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24074,0,0,0,0,90,0,0,0,0,0,4099,4241,9497,0,0,0,0,0,0,0,13087,13087,13087,13087,1,1,1,1,'Jeweled Collar','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24075,0,0,0,0,90,0,0,0,0,0,4099,4241,813,13397,0,0,0,0,0,0,13357,14719,14719,14719,1,1,1,1,'Angel\'s Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24076,0,0,0,0,90,0,0,0,0,0,4099,4241,785,13397,0,0,0,0,0,0,13351,14712,14712,14712,1,1,1,1,'Emerald Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24077,0,0,0,0,92,0,0,0,0,0,4096,4238,747,0,0,0,0,0,0,0,668,668,668,668,1,1,1,1,'Orichalcum Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24078,0,1995,0,0,92,0,0,0,0,0,4096,4238,747,747,747,747,747,747,2144,0,668,668,668,668,6,6,6,6,'Orichalcum Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24501,0,0,0,41,91,0,0,0,0,0,4096,4238,648,664,668,745,794,850,914,0,15155,15156,15156,15156,1,1,1,1,'Barone Zucchetto','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24502,0,0,0,0,91,0,0,0,0,0,4099,4241,747,747,0,0,0,0,0,0,763,763,763,763,1,2,3,4,'Orichalcum Chain',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24503,0,0,0,0,91,0,0,0,0,0,4096,4238,1383,9130,0,0,0,0,0,0,27386,27387,27387,27387,1,1,1,1,'Bewitched Schuhs','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24504,0,0,0,0,91,0,0,0,0,0,4096,4238,648,745,1313,0,0,0,0,0,1364,1365,1365,1365,1,1,1,1,'Cursed Crown',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24505,0,0,0,0,91,0,0,0,0,0,4099,4241,9130,10358,0,0,0,0,0,0,27479,27480,27480,27480,1,1,1,1,'Vexed Gambieras','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24506,0,0,0,0,91,0,0,0,0,0,4098,4240,747,747,0,0,0,0,0,0,13329,13434,13434,13434,1,1,1,1,'Orichalcum Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24507,0,0,0,41,92,0,0,0,0,0,4096,4238,654,747,786,0,0,0,0,0,16453,17992,17992,17992,1,1,1,1,'Orichalcum Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24508,0,0,0,0,92,0,0,0,0,0,4096,4238,1879,13757,0,0,0,0,0,0,13823,13823,13823,13823,1,1,1,1,'Regen Cuirass','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24509,0,0,0,0,92,0,0,0,0,0,4096,4238,650,745,1117,0,0,0,0,0,13185,13279,13279,13279,1,1,1,1,'Muscle Belt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24510,0,0,0,0,92,0,0,0,0,0,4096,4238,1670,18105,0,0,0,0,0,0,18107,18107,18107,18107,1,1,1,1,'Ponderous Lance','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24511,0,0,0,0,92,0,0,0,0,0,4096,4238,1379,9130,0,0,0,0,0,0,27034,27035,27035,27035,1,1,1,1,'Bewitched Handschuhs','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24512,0,0,0,0,92,0,0,0,0,0,4099,4241,9130,10308,0,0,0,0,0,0,27123,27124,27124,27124,1,1,1,1,'Vexed Gauntlets','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24513,0,0,0,0,92,0,0,0,0,0,4098,4240,743,743,0,0,0,0,0,0,11725,11726,11726,11726,1,1,1,1,'Phrygian Earring','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (24514,0,0,0,0,93,0,0,0,0,0,4096,4238,1381,9130,0,0,0,0,0,0,27210,27211,27211,27211,1,1,1,1,'Bewitched Diechlings','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24515,0,0,11,0,93,0,41,0,0,0,4096,4238,648,657,707,747,786,816,877,0,18413,18414,18414,18414,1,1,1,1,'Hirenjaku','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24516,0,0,0,0,93,0,0,0,0,0,4096,4238,747,747,0,0,0,0,0,0,13466,14616,14616,14616,1,1,1,1,'Orichalcum Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24517,0,0,0,0,93,0,0,0,41,0,4096,4238,746,754,931,12803,0,0,0,0,1380,1381,1381,1381,1,1,1,1,'Cursed Diechlings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24518,0,0,0,0,93,0,0,0,0,0,4096,4238,3922,3922,3922,3922,0,0,0,0,3923,3923,3923,3923,1,1,1,1,'Rhodium Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24519,0,0,52,0,93,0,0,0,0,0,4096,4238,668,720,745,752,752,0,0,0,146,146,146,146,1,1,1,1,'Walahra Burner','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24520,0,0,0,0,94,0,0,0,0,0,4096,4238,1375,9130,0,0,0,0,0,0,26682,26683,26683,26683,1,1,1,1,'Bewitched Schaller','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24521,0,0,54,60,94,0,0,0,0,0,4096,4238,651,651,657,720,744,877,2275,2304,18439,18440,18440,18440,1,1,1,1,'Shirogatana',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24522,0,0,0,0,94,0,0,0,0,0,4096,4238,743,743,0,0,0,0,0,0,11664,11665,11665,11665,1,1,1,1,'Phrygian Ring','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (24523,0,0,37,0,94,45,0,0,0,0,4096,4238,653,671,717,746,754,810,810,1996,187,187,187,187,1,1,1,1,'Buckler Plaque','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24524,0,0,0,0,94,0,46,0,0,0,4096,4238,879,2850,18405,0,0,0,0,0,18873,18874,18874,18874,1,1,1,1,'Brise-os','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (24525,0,0,0,0,94,0,0,0,0,0,4096,4238,1365,9130,0,0,0,0,0,0,26688,26689,26689,26689,1,1,1,1,'Bewitched Crown','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24526,0,0,0,0,94,0,0,0,0,0,4096,4238,9498,0,0,0,0,0,0,0,11664,11664,11664,11664,1,1,1,1,'Phrygian Ring','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24527,0,0,19,51,94,0,0,0,0,0,4096,4238,654,654,713,747,786,824,0,0,18058,18059,18059,18059,1,1,1,1,'Orichalcum Scythe','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24528,0,0,0,0,94,0,0,0,41,0,4096,4238,746,746,931,931,12931,0,0,0,1382,1383,1383,1383,1,1,1,1,'Cursed Schuhs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24529,0,0,0,0,94,0,0,0,0,0,4096,4238,9130,10424,0,0,0,0,0,0,25619,25620,25620,25620,1,1,1,1,'Vexed Coronet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24530,0,0,0,0,95,0,0,0,0,0,4099,4241,794,13447,0,0,0,0,0,0,13452,13308,13308,13308,1,1,1,1,'Sapphire Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24531,0,0,0,0,95,0,0,0,0,0,4099,4241,787,13447,0,0,0,0,0,0,13450,13306,13306,13306,1,1,1,1,'Diamond Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24532,0,0,0,0,95,0,0,0,0,0,4099,4241,786,13447,0,0,0,0,0,0,13449,13305,13305,13305,1,1,1,1,'Ruby Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24533,0,0,0,0,95,0,0,0,0,0,4099,4241,785,13447,0,0,0,0,0,0,13448,13304,13304,13304,1,1,1,1,'Emerald Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24534,0,0,0,0,95,0,0,0,0,0,4099,4241,812,13447,0,0,0,0,0,0,13462,13310,13310,13310,1,1,1,1,'Death Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24535,0,0,0,0,95,0,0,0,0,0,4099,4241,9130,10245,0,0,0,0,0,0,25692,25693,25693,25693,1,1,1,1,'Vexed Haubert','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24536,0,0,0,0,95,0,0,0,0,0,4099,4241,813,13447,0,0,0,0,0,0,13463,13311,13311,13311,1,1,1,1,'Angel\'s Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24537,0,0,0,0,95,0,0,0,0,0,4096,4238,1377,9130,0,0,0,0,0,0,26858,26859,26859,26859,1,1,1,1,'Bewitched Cuirass','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (24538,0,0,0,0,95,0,0,0,0,0,4099,4241,804,13447,0,0,0,0,0,0,13451,13307,13307,13307,1,1,1,1,'Spinel Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24539,0,0,0,0,95,0,0,0,0,0,4096,4238,4024,0,0,0,0,0,0,0,4025,4025,4025,4025,1,1,1,1,'Snowsteel Sheet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24540,0,0,0,0,95,60,0,0,0,0,4099,4241,752,786,794,823,823,828,828,1714,14414,14415,14415,14415,1,1,1,1,'Sha\'ir Manteel','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24541,0,1995,0,0,95,0,0,0,0,0,4096,4238,2144,4024,4024,4024,4024,4024,4024,0,4025,4025,4025,4025,6,6,6,6,'Snowsteel Sheet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24542,0,0,0,0,95,0,0,0,0,0,4099,4241,789,13447,0,0,0,0,0,0,13453,13309,13309,13309,1,1,1,1,'Topaz Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24543,0,0,0,0,96,0,0,0,0,0,4096,4238,1670,18413,0,0,0,0,0,0,18415,18415,18415,18415,1,1,1,1,'Tojaku','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24544,0,0,0,0,96,0,0,0,0,0,4096,4238,3923,3923,0,0,0,0,0,0,28542,28543,28543,28543,1,1,1,1,'Rhodium Ring','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (24545,0,0,0,255,96,0,0,0,0,0,4096,4238,652,654,914,3923,3923,3927,0,0,20551,20552,20552,20552,1,1,1,1,'Akua Sainti','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24546,0,0,0,0,96,0,0,0,0,0,4096,4238,3923,0,0,0,0,0,0,0,3964,3964,3964,3964,1,1,1,1,'Rhodium Sheet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24547,0,1995,0,0,96,0,0,0,0,0,4096,4238,2144,3923,3923,3923,3923,3923,3923,0,3964,3964,3964,3964,6,6,6,6,'Rhodium Sheet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (24548,0,0,0,0,96,0,0,0,0,0,4096,4238,1677,13466,0,0,0,0,0,0,14656,14656,14656,14656,1,1,1,1,'Poseidon\'s Ring','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24549,0,0,59,42,96,0,0,0,0,0,4099,4241,664,720,752,752,754,1465,1465,1465,33,33,33,33,1,1,1,1,'Millionaire Desk',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24550,0,0,0,0,96,0,0,0,44,0,4096,4238,746,746,931,12675,0,0,0,0,1378,1379,1379,1379,1,1,1,1,'Cursed Handschuhs',NULL); -- wiki, BG, jpwiki, AH checked 12/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (24551,0,0,0,56,97,0,0,0,0,0,4099,4241,665,745,752,12383,0,0,0,0,12387,12388,12388,12388,1,1,1,1,'Koenig Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24552,0,0,0,0,97,0,0,0,0,0,4096,4238,747,2275,0,0,0,0,0,0,15771,15772,15772,15772,1,1,1,1,'Shining Ring','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24553,0,0,0,0,97,0,0,0,0,0,4096,4238,1676,18058,0,0,0,0,0,0,18060,18060,18060,18060,1,1,1,1,'Blizzard Scythe','COP');
|
|
INSERT INTO `synth_recipes` VALUES (24554,0,0,0,51,97,0,0,0,48,0,4096,4238,648,664,745,754,762,850,931,0,1374,1375,1375,1375,1,1,1,1,'Cursed Schaller',NULL); -- wiki, BG, jpwiki, AH checked 12/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (24555,0,0,0,41,97,0,0,0,0,0,4096,4238,2275,2302,2419,2419,2419,0,0,0,145,145,145,145,1,1,1,1,'Thurible','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24556,0,0,0,0,98,0,0,0,0,0,4096,4238,1255,2275,2418,0,0,0,0,0,207,207,207,207,1,1,1,1,'Fire Lamp','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24557,0,0,0,0,98,0,0,0,0,0,4096,4238,1256,2275,2418,0,0,0,0,0,208,208,208,208,1,1,1,1,'Ice Lamp','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24558,0,0,0,0,98,0,0,0,0,0,4096,4238,1262,2275,2418,0,0,0,0,0,214,214,214,214,1,1,1,1,'Dark Lamp','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24559,0,0,0,0,98,0,0,0,59,0,4096,4238,746,747,754,762,931,931,931,12547,1376,1377,1377,1377,1,1,1,1,'Cursed Cuirass',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24560,0,0,0,0,98,0,0,0,0,0,4096,4238,1258,2275,2418,0,0,0,0,0,210,210,210,210,1,1,1,1,'Earth Lamp','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24561,0,0,0,0,98,0,0,0,0,0,4096,4238,1261,2275,2418,0,0,0,0,0,213,213,213,213,1,1,1,1,'Light Lamp','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24562,0,0,0,0,98,0,0,0,0,0,4096,4238,739,2228,2228,2228,0,0,0,0,2275,2275,2275,2275,1,1,1,1,'Scintillant Ingot','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24563,0,0,0,0,98,0,0,0,0,0,4096,4238,1259,2275,2418,0,0,0,0,0,211,211,211,211,1,1,1,1,'Lightning Lamp','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24564,0,0,0,0,98,0,0,0,0,0,4096,4238,1260,2275,2418,0,0,0,0,0,212,212,212,212,1,1,1,1,'Water Lamp','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24565,0,0,0,0,98,0,0,0,0,0,4096,4238,1257,2275,2418,0,0,0,0,0,209,209,209,209,1,1,1,1,'Wind Lamp','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24566,0,0,0,0,98,0,0,0,0,0,4096,4238,741,741,741,741,0,0,0,0,742,742,742,742,1,1,1,1,'Palladian Brass Ingot','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (24567,0,0,0,0,99,0,0,0,0,0,4099,4241,813,13498,0,0,0,0,0,0,13463,14624,14624,14624,1,1,1,1,'Angel\'s Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24568,0,0,0,0,99,0,0,0,0,0,4099,4241,812,13498,0,0,0,0,0,0,13462,14623,14623,14623,1,1,1,1,'Death Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24569,0,0,0,0,99,0,0,0,0,0,4099,4241,787,13498,0,0,0,0,0,0,13450,14619,14619,14619,1,1,1,1,'Diamond Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24570,0,0,0,0,99,0,0,0,0,0,4099,4241,804,13498,0,0,0,0,0,0,13451,14620,14620,14620,1,1,1,1,'Spinel Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24571,0,0,0,0,99,0,0,0,0,0,4099,4241,785,13498,0,0,0,0,0,0,13448,14617,14617,14617,1,1,1,1,'Emerald Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24572,0,0,0,0,99,0,0,0,0,0,4099,4241,794,13498,0,0,0,0,0,0,13452,14621,14621,14621,1,1,1,1,'Sapphire Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24573,0,0,0,0,99,0,0,0,0,0,4099,4241,786,13498,0,0,0,0,0,0,13449,14618,14618,14618,1,1,1,1,'Ruby Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24574,0,0,0,0,99,0,0,0,0,0,4099,4241,789,13498,0,0,0,0,0,0,13453,14622,14622,14622,1,1,1,1,'Topaz Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24575,0,0,0,53,99,0,0,0,0,0,4096,4238,655,655,745,746,804,914,0,0,16520,17656,17656,17656,1,1,1,1,'Verdun',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24576,0,0,0,0,100,0,0,0,0,0,4096,4238,742,0,0,0,0,0,0,0,755,755,755,755,1,1,1,1,'Palladian Brass Sheet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (24577,0,0,0,0,100,0,0,0,0,0,4096,4238,745,745,745,761,762,762,1445,13087,13097,13162,13162,13162,1,1,1,1,'Brisingamen',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24578,0,0,0,0,100,0,0,0,0,0,4096,4238,745,746,747,812,813,914,1271,4570,18168,18169,18169,18169,1,1,1,1,'Imperial Egg',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (24579,0,0,0,30,100,0,0,0,0,0,4096,4238,755,758,12680,0,0,0,0,0,10544,10545,10545,10545,1,1,1,1,'Ugol Moufles','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (24580,0,0,0,0,100,0,0,0,0,0,4099,4241,1271,13466,0,0,0,0,0,0,15803,15804,15804,15804,1,1,1,1,'Crimson Ring','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24581,0,0,0,0,100,0,0,0,0,0,4096,4238,742,742,0,0,0,0,0,0,11060,11061,11061,11061,1,1,1,1,'Evader Earring','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (24582,0,0,0,0,100,0,0,0,0,0,4099,4241,2359,13466,0,0,0,0,0,0,15805,15806,15806,15806,1,1,1,1,'Star Ring','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (24583,0,0,0,0,100,0,0,0,0,0,4096,4238,4023,4023,4023,4023,0,0,0,0,4024,4024,4024,4024,1,1,1,1,'Snowsteel','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (25001,0,0,41,43,101,0,0,0,0,0,4096,4238,653,653,654,719,745,798,2275,2275,18482,18483,18483,18483,1,1,1,1,'Amood','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (25002,0,0,0,0,102,0,0,0,0,0,4099,4241,1303,13466,0,0,0,0,0,0,14638,14638,14638,14638,1,1,1,1,'Thunder Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (25003,0,0,0,0,102,0,0,0,0,0,4099,4241,1302,13466,0,0,0,0,0,0,14634,14634,14634,14634,1,1,1,1,'Soil Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (25004,0,0,0,0,102,0,0,0,0,0,4099,4241,742,742,0,0,0,0,0,0,765,765,765,765,1,2,3,4,'Palladian Brass Chain','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (25005,0,0,0,0,102,0,0,0,0,0,4099,4241,1306,13466,0,0,0,0,0,0,14644,14644,14644,14644,1,1,1,1,'Dark Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (25006,0,0,0,0,102,0,0,0,0,0,4099,4241,1305,13466,0,0,0,0,0,0,14642,14642,14642,14642,1,1,1,1,'Light Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (25007,0,0,0,0,102,0,0,0,0,0,4099,4241,1300,13466,0,0,0,0,0,0,14640,14640,14640,14640,1,1,1,1,'Snow Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (25008,0,0,0,0,102,0,0,0,0,0,4099,4241,1299,13466,0,0,0,0,0,0,14630,14630,14630,14630,1,1,1,1,'Flame Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (25009,0,0,0,0,102,0,0,0,0,0,4099,4241,1301,13466,0,0,0,0,0,0,14636,14636,14636,14636,1,1,1,1,'Breeze Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (25010,0,0,0,0,102,0,0,0,0,0,4099,4241,1304,13466,0,0,0,0,0,0,14632,14632,14632,14632,1,1,1,1,'Aqua Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (25011,0,0,0,33,102,0,0,0,0,0,4096,4238,755,758,12936,0,0,0,0,0,10641,10642,10642,10642,1,1,1,1,'Ugol Sollerets','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (25012,0,0,0,0,103,22,35,0,0,0,4096,4238,759,765,826,873,873,0,0,0,10575,10576,10576,10576,1,1,1,1,'Ugol Brayettes','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (25013,0,0,0,0,103,0,0,0,0,0,4096,4238,755,757,765,1977,2275,2275,0,0,10410,10411,10411,10411,1,1,1,1,'Ugol Salade','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (25014,0,0,0,0,103,0,40,0,0,0,4099,4241,766,766,2418,2570,15339,0,0,0,10353,10358,10358,10358,1,1,1,1,'Hexed Gambieras','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (25015,0,0,0,0,104,0,39,0,0,0,4096,4238,744,747,747,914,2529,18704,0,0,19206,19207,19207,19207,1,1,1,1,'Silver Cassandra','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (25016,0,0,0,0,105,33,0,0,0,0,4096,4238,755,757,758,765,765,765,828,829,10494,10495,10495,10495,1,1,1,1,'Ugol Haubert','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (25017,0,0,0,0,105,0,0,0,0,0,4096,4238,644,644,644,8721,0,0,0,0,8722,8722,8722,8722,1,1,1,1,'Hepatizon Ingot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (25018,0,1994,0,0,105,0,0,0,0,0,4096,4238,2143,3923,3977,0,0,0,0,0,22204,22205,22205,22205,1,1,1,1,'Nepenthe Grip','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25019,0,1994,0,0,105,0,0,0,0,0,4096,4238,2143,3923,4013,0,0,0,0,0,22206,22207,22207,22207,1,1,1,1,'Gracile Grip','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25020,0,0,0,255,105,0,0,0,0,0,4096,4238,655,786,3923,4028,0,0,0,0,21812,21813,21813,21813,1,1,1,1,'Arasy Scythe','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25021,0,0,0,0,105,0,0,0,0,0,4096,4238,9249,9249,9249,9249,0,0,0,0,9250,9250,9250,9250,1,1,1,1,'Ruthenium Ingot','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25022,0,0,0,0,106,0,0,0,0,0,4096,4238,747,8722,8722,0,0,0,0,0,21614,21615,21615,21615,1,1,1,1,'Hepatizon Sapara','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25023,0,0,0,0,106,0,0,0,0,0,4096,4238,747,914,2359,8722,8722,0,0,0,21610,21611,21611,21611,1,1,1,1,'Hepatizon Rapier','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25024,0,0,0,0,106,0,0,0,0,0,4099,4241,8708,8720,8720,8720,8722,0,0,0,21511,21512,21512,21512,1,1,1,1,'Hepatizon Baghnakhs','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25025,0,0,0,0,106,0,0,0,0,0,4096,4238,3927,8722,8722,8722,0,0,0,0,21765,21766,21766,21766,1,1,1,1,'Hepatizon Axe','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25026,0,0,0,0,107,0,40,0,0,0,4096,4238,766,1445,2170,2418,2419,0,0,0,10419,10424,10424,10424,1,1,1,1,'Hexed Coronet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (25027,0,0,0,0,108,0,39,0,0,0,4099,4241,766,2418,2570,14010,0,0,0,0,10303,10308,10308,10308,1,1,1,1,'Hexed Gauntlets','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (25028,0,0,0,0,110,30,0,0,0,0,4099,4241,766,766,766,1445,1700,2418,14382,0,10240,10245,10245,10245,1,1,1,1,'Hexed Haubert','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (25029,0,0,0,0,110,55,0,0,0,0,4102,4244,4013,9062,9251,9850,9872,0,0,0,25441,25442,25443,25443,1,1,1,1,'Duelist\'s Torque','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25030,0,0,0,0,110,55,0,0,0,0,4102,4244,4013,9062,9251,9848,9872,0,0,0,25429,25430,25431,25431,1,1,1,1,'Cleric\'s Torque','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25031,0,0,0,0,110,55,0,0,0,0,4102,4244,4013,9062,9251,9867,9872,0,0,0,25543,25544,25545,25545,1,1,1,1,'Futhark Torque','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25501,0,0,0,0,111,0,0,0,70,0,4096,4238,1382,9004,9029,9130,0,0,0,0,27386,27387,27387,27387,1,1,1,1,'Bewitched Schuhs','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25502,0,0,0,0,111,0,70,0,0,0,4099,4241,8722,9047,9130,10353,0,0,0,0,27479,27480,27480,27480,1,1,1,1,'Vexed Gambieras','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25503,0,0,0,0,112,0,70,0,0,0,4099,4241,8722,9047,9130,10303,0,0,0,0,27123,27124,27124,27124,1,1,1,1,'Vexed Gauntlets','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25504,0,0,0,0,112,0,0,0,70,0,4096,4238,1378,9004,9029,9130,0,0,0,0,27034,27035,27035,27035,1,1,1,1,'Bewitched Handschuhs','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25505,0,0,0,0,113,0,0,0,255,0,4096,4238,766,914,3927,3980,0,0,0,0,21129,21130,21130,21130,1,1,1,1,'Sharur','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (25506,0,0,0,0,113,0,0,0,70,0,4096,4238,1380,9004,9029,9130,0,0,0,0,27210,27211,27211,27211,1,1,1,1,'Bewitched Diechlings','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25507,0,0,0,0,114,0,0,0,70,0,4096,4238,1374,9004,9029,9130,0,0,0,0,26682,26683,26683,26683,1,1,1,1,'Bewitched Schaller','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25508,0,0,0,0,114,0,70,0,0,0,4096,4238,8722,9047,9130,10419,0,0,0,0,25619,25620,25620,25620,1,1,1,1,'Vexed Coronet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25509,0,0,0,0,114,70,0,0,0,0,4096,4238,1364,8722,8728,9130,0,0,0,0,26688,26689,26689,26689,1,1,1,1,'Bewitched Crown','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25510,0,0,0,0,115,255,255,0,0,0,4096,4238,766,823,3548,3923,9004,9004,0,0,26875,26876,26876,26876,1,1,1,1,'Ravenous Breastplate','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (25511,0,0,0,0,115,0,0,0,70,0,4096,4238,1376,9004,9029,9130,0,0,0,0,26858,26859,26859,26859,1,1,1,1,'Bewitched Cuirass','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25512,0,0,0,0,115,0,70,0,0,0,4099,4241,8722,9047,9130,10240,0,0,0,0,25692,25693,25693,25693,1,1,1,1,'Vexed Haubert','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25513,0,0,0,0,115,0,0,0,0,0,4096,4238,1460,9062,9062,9064,9064,0,0,0,26183,26184,26184,26184,1,1,1,1,'Stikini Ring','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (25514,0,0,0,0,118,0,0,0,0,0,4096,4238,3323,8722,9063,0,0,0,0,0,26080,26081,26081,26081,1,1,1,1,'Mache Earring','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25515,0,2005,0,0,255,0,0,255,0,0,4102,4244,9061,9062,9253,9830,9844,9845,9845,9863,21524,21525,21526,21526,1,1,1,1,'Pantin Fists','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25516,0,2005,0,0,255,0,255,0,0,0,4102,4244,9003,9062,9251,9832,9844,9845,9845,9861,21631,21632,21633,21633,1,1,1,1,'Mirage Sword','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25517,0,2004,0,0,255,0,0,255,0,0,4096,4238,855,931,3981,9005,9249,9249,9249,0,25567,25568,25568,25568,1,1,1,1,'Turms Cap','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25518,0,2005,0,0,255,0,0,255,0,0,4102,4244,9061,9062,9253,9830,9844,9845,9845,9847,21521,21522,21523,21523,1,1,1,1,'Melee Fists','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25519,0,0,0,0,255,0,0,0,255,0,4096,4238,9250,9250,9893,0,0,0,0,0,26114,26115,26115,26115,1,1,1,1,'Balder Earring','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25520,0,0,0,0,255,255,0,0,0,0,4099,4241,4081,4082,9251,0,0,0,0,0,26036,26037,26037,26037,1,1,1,1,'Moonbeam Necklace','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25521,0,2005,0,0,255,0,255,0,0,0,4102,4244,9003,9062,9251,9832,9844,9845,9845,9850,21625,21626,21627,21627,1,1,1,1,'Duelist\'s Sword','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25522,0,2004,0,0,255,0,0,0,0,0,4096,4238,4074,9250,16563,0,0,0,0,0,21612,21613,21613,21613,1,1,1,1,'Raetic Blade','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25523,0,2004,0,0,255,0,0,255,0,0,4096,4238,855,855,3981,9005,9249,9249,9249,0,25994,25995,25995,25995,1,1,1,1,'Turms Mittens','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25524,0,2004,0,0,255,0,0,255,0,0,4096,4238,855,3981,9005,9249,9249,9249,0,0,25974,25975,25975,25975,1,1,1,1,'Turms Leggings','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25525,0,2004,0,0,255,0,0,255,0,0,4096,4238,855,931,3981,9005,9249,9250,0,0,25907,25908,25908,25908,1,1,1,1,'Turms Subligar','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25526,0,2004,0,0,255,0,0,255,0,0,4096,4238,855,931,3981,9005,9005,9249,9250,0,26543,26544,26544,26544,1,1,1,1,'Turms Harness','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25527,0,2004,0,0,255,0,0,0,0,0,4096,4238,4076,9250,16408,0,0,0,0,0,21513,21514,21514,21514,1,1,1,1,'Raetic Baghnakhs','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25528,0,0,0,255,255,0,0,0,0,0,4096,4238,4077,4081,9248,16605,0,0,0,0,21606,21607,21607,21607,1,1,1,1,'Enriching Sword','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (25529,0,2005,0,0,255,0,255,0,0,0,4102,4244,9003,9062,9251,9832,9844,9845,9845,9852,21628,21629,21630,21630,1,1,1,1,'Valor Sword','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (29900,1,0,0,0,60,0,0,0,0,0,4100,4242,13445,0,0,0,0,0,0,0,745,745,745,745,1,1,2,2,'Gold Ring (desynth)',NULL); -- FFXIclopedia and BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (29901,1,0,0,0,55,0,0,0,0,0,4100,4242,13473,0,0,0,0,0,0,0,814,814,744,744,1,1,1,2,'Amber Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29902,1,0,0,0,83,0,0,0,0,0,4100,4242,16521,0,0,0,0,0,0,0,652,652,745,810,1,2,1,1,'Rapier (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29903,1,0,0,0,45,0,0,0,0,0,4100,4242,13317,0,0,0,0,0,0,0,792,653,653,653,1,1,2,2,'Pearl Earring (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29904,1,0,0,0,58,0,0,0,0,0,4100,4242,12494,0,0,0,0,0,0,0,745,745,745,745,1,1,1,1,'Gold Hairpin (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29905,1,0,0,0,55,0,0,0,0,0,4100,4242,13481,0,0,0,0,0,0,0,815,815,653,653,1,1,1,2,'Sphene Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29906,1,0,0,0,55,0,0,0,0,0,4100,4242,13476,0,0,0,0,0,0,0,788,788,653,653,1,1,1,2,'Peridot Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29907,1,0,0,0,35,0,0,0,0,0,4100,4242,13444,0,0,0,0,0,0,0,807,807,744,744,1,1,1,2,'Sardonyx Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29908,1,0,0,0,55,0,0,0,0,0,4100,4242,13483,0,0,0,0,0,0,0,792,792,653,653,1,1,1,2,'Pearl Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29909,1,0,0,0,61,0,0,0,0,0,4100,4242,12801,0,0,0,0,0,0,0,851,851,653,653,1,1,1,2,'Mythril Cuisses (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29910,1,0,0,0,55,0,0,0,0,0,4100,4242,13479,0,0,0,0,0,0,0,811,811,653,653,1,1,1,2,'Ametrine Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29911,1,0,0,0,27,0,0,0,0,0,4100,4242,12495,0,0,0,0,0,0,0,744,744,744,744,1,1,1,1,'Silver Hairpin (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29912,1,0,0,0,25,0,0,0,0,0,4100,4242,13334,0,0,0,0,0,0,0,795,795,744,744,1,1,1,2,'Lapis Laz. Earring (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (29913,1,0,0,0,56,0,0,0,0,0,4100,4242,12307,0,0,0,0,0,0,0,715,651,1228,1228,2,2,6,6,'Heater Shield (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29914,1,0,0,0,35,0,0,0,0,0,4100,4242,13474,0,0,0,0,0,0,0,799,799,744,744,1,1,1,2,'Onyx Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29915,1,0,0,0,80,0,0,0,0,0,4100,4242,12303,0,0,0,0,0,0,0,651,714,914,745,1,1,1,1,'Gold Buckler (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29916,1,0,0,0,35,0,0,0,0,0,4100,4242,13470,0,0,0,0,0,0,0,809,809,744,744,1,1,1,2,'Clear Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29917,1,0,0,0,50,0,0,0,0,0,4100,4242,17986,0,0,0,0,0,0,0,1234,1235,744,744,6,6,1,1,'Spark Baselard (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29918,1,0,0,0,35,0,0,0,0,0,4100,4242,13472,0,0,0,0,0,0,0,795,795,744,744,1,1,1,2,'Lapis Lazuli Ring (desynth)',NULL); -- Level based on level to synth
|
|
INSERT INTO `synth_recipes` VALUES (29919,1,0,0,0,15,0,0,0,0,0,4100,4242,13465,0,0,0,0,0,0,0,650,650,650,650,1,1,2,2,'Brass Ring (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29920,1,0,0,0,59,0,0,0,0,0,4100,4242,17514,0,0,0,0,0,0,0,894,894,1235,653,1,1,6,1,'Hydro Claws (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29921,1,0,0,0,25,0,0,0,0,0,4100,4242,13330,0,0,0,0,0,0,0,806,806,744,744,1,1,1,2,'Tml. Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29922,1,0,0,0,49,0,0,0,0,0,4100,4242,17688,0,0,0,0,0,0,0,1235,1235,1235,1235,6,9,9,9,'Spark Degen (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29923,1,0,0,0,51,0,0,0,0,0,4100,4242,17281,0,0,0,0,0,0,0,818,744,653,653,1,1,1,1,'Wingedge (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29924,1,0,0,0,25,0,0,0,0,0,4100,4242,13333,0,0,0,0,0,0,0,800,800,744,744,1,1,1,2,'Amethyst Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29925,1,0,0,0,25,0,0,0,0,0,4100,4242,13337,0,0,0,0,0,0,0,796,796,744,744,1,1,1,2,'Opal Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29926,1,0,0,0,25,0,0,0,0,0,4100,4242,13331,0,0,0,0,0,0,0,807,807,744,744,1,1,1,2,'Sardonyx Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29927,1,0,0,0,97,0,0,0,0,0,4100,4242,1374,0,0,0,0,0,0,0,648,931,745,746,1,1,1,1,'Cursed Schaller (desynth)',NULL); -- wiki, BG, jpwiki, AH checked 12/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (29928,1,0,0,0,35,0,0,0,0,0,4100,4242,13443,0,0,0,0,0,0,0,796,796,744,744,1,1,1,2,'Opal Ring (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (29929,1,0,0,0,6,0,0,0,0,0,4100,4242,16482,0,0,0,0,0,0,0,648,648,648,648,1,2,2,2,'Onion Dagger (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia Unknown Level
|
|
INSERT INTO `synth_recipes` VALUES (29930,1,0,0,0,69,0,0,0,0,0,4100,4242,17701,0,0,0,0,0,0,0,1235,744,744,744,4,1,1,1,'Shotel (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29931,1,0,0,0,55,0,0,0,0,0,4100,4242,13482,0,0,0,0,0,0,0,793,793,653,653,1,1,1,2,'Black Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29932,1,0,0,0,55,0,0,0,0,0,4100,4242,13477,0,0,0,0,0,0,0,790,790,653,653,1,1,1,2,'Garnet Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29933,1,0,0,0,35,0,0,0,0,0,4100,4242,13471,0,0,0,0,0,0,0,800,800,744,744,1,1,1,2,'Amethyst Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29934,1,0,0,0,12,0,0,0,0,0,4100,4242,16641,0,0,0,0,0,0,0,715,649,649,650,1,1,2,1,'Brass Axe (desynth)',NULL); -- BGWiki reports the brass ingot as a second HQ1 result, I assume it's a typo
|
|
INSERT INTO `synth_recipes` VALUES (29935,1,0,0,0,82,0,0,0,0,0,4100,4242,16842,0,0,0,0,0,0,0,715,822,1228,745,1,1,6,1,'Golden Spear (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29936,1,0,0,0,25,0,0,0,0,0,4100,4242,13336,0,0,0,0,0,0,0,799,799,744,744,1,1,1,2,'Onyx Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29937,1,0,0,0,25,0,0,0,0,0,4100,4242,13335,0,0,0,0,0,0,0,814,814,744,744,1,1,1,2,'Amber Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29938,1,0,0,0,67,0,0,0,0,0,4100,4242,17516,0,0,0,0,0,0,0,893,932,881,653,1,1,1,1,'Hydro Patas (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29939,1,0,0,0,76,0,0,0,0,0,4100,4242,16421,0,0,0,0,0,0,0,649,649,745,745,1,2,1,1,'Gold Patas (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29940,1,0,0,0,73,0,0,0,0,0,4100,4242,17285,0,0,0,0,0,0,0,914,651,745,657,1,1,1,1,'Moonring Blade (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29941,1,0,0,0,22,0,0,0,0,0,4100,4242,13327,0,0,0,0,0,0,0,744,744,744,744,1,1,2,2,'Silver Earring (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia sais Skill at Synth Level with verification needed
|
|
INSERT INTO `synth_recipes` VALUES (29942,1,0,0,0,52,0,0,0,0,0,4100,4242,16518,0,0,0,0,0,0,0,651,651,653,653,1,2,1,2,'Mythril Degen (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29943,1,0,0,0,17,0,0,0,0,0,4100,4242,12497,0,0,0,0,0,0,0,650,650,650,650,1,1,1,1,'Brass Hairpin (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (29944,1,0,0,0,29,0,0,0,0,0,4100,4242,12433,0,0,0,0,0,0,0,649,850,650,650,1,1,1,1,'Brass Mask (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29945,1,0,0,0,49,0,0,0,0,0,4100,4242,13979,0,0,0,0,0,0,0,744,744,744,744,1,1,2,3,'Silver Bangles (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (29946,1,0,0,0,59,0,0,0,0,0,4100,4242,17284,0,0,0,0,0,0,0,914,914,652,745,1,1,1,1,'Chakram (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia Show mostly unknown result
|
|
INSERT INTO `synth_recipes` VALUES (29947,1,0,0,0,12,0,0,0,0,0,4100,4242,12705,0,0,0,0,0,0,0,650,850,649,649,1,1,1,1,'Brass Mittens (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia Strange result, normal result would have bronze ingot yield and brass ingot hq3
|
|
INSERT INTO `synth_recipes` VALUES (29948,1,0,0,0,71,0,0,0,0,0,4100,4242,12802,0,0,0,0,0,0,0,914,851,931,745,1,1,1,1,'Gold Cuisses (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29949,1,0,0,0,16,0,0,0,0,0,4100,4242,12833,0,0,0,0,0,0,0,817,850,649,650,3,1,1,1,'Brass Subligar (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (29950,1,0,0,0,30,0,0,0,0,0,4100,4242,16451,0,0,0,0,0,0,0,1226,1226,1226,1226,6,6,6,6,'Mythril Dagger (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia normal yield abnormal and no hq result
|
|
INSERT INTO `synth_recipes` VALUES (29951,1,0,0,0,55,0,0,0,0,0,4100,4242,13478,0,0,0,0,0,0,0,808,808,653,653,1,1,1,2,'Goshenite Ring (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (29952,1,0,0,0,21,0,0,0,0,0,4100,4242,17399,0,0,0,0,0,0,0,648,648,818,818,1,2,2,2,'Sabiki Rig (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia removed Hq2 stated copper ingot X 3 strange result and flag needing verification
|
|
INSERT INTO `synth_recipes` VALUES (29953,1,0,0,0,66,0,0,0,0,0,4100,4242,12673,0,0,0,0,0,0,0,817,850,653,1228,6,4,1,6,'Mythril Gauntlets (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29954,1,0,0,0,48,0,0,0,0,0,4100,4242,12426,0,0,0,0,0,0,0,648,850,850,850,1,1,1,1,'Banded Helm (desynth)',NULL); -- BGWiki desynth yield incomplete, but does not contradict this
|
|
INSERT INTO `synth_recipes` VALUES (29955,1,0,0,0,85,0,0,0,0,0,4100,4242,13352,0,0,0,0,0,0,0,786,786,746,746,1,1,1,2,'Ruby Earring (desynth)',NULL); -- Based off other 85 Goldsmith earring desynths
|
|
INSERT INTO `synth_recipes` VALUES (29956,1,0,0,0,7,0,0,0,0,0,4100,4242,12496,0,0,0,0,0,0,0,648,648,648,648,1,1,1,1,'Copper Hairpin (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (29957,1,0,0,0,49,0,0,0,0,0,4100,4242,12301,0,0,0,0,0,0,0,714,651,653,653,1,2,1,2,'Buckler (desynth)',NULL); -- 2022.03.04 No desynth data Base on normal desynth behavior
|
|
INSERT INTO `synth_recipes` VALUES (29958,1,0,0,0,34,0,0,0,0,0,4100,4242,13209,0,0,0,0,0,0,0,744,744,744,744,4,5,6,6,'Chain Belt (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29959,1,0,0,0,58,0,0,0,0,0,4100,4242,13144,0,0,0,0,0,0,0,653,653,653,653,1,3,3,3,'Wing Gorget (desynth)','COP'); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29960,1,0,0,0,40,0,0,0,0,0,4100,4242,17036,0,0,0,0,0,0,0,1226,1226,653,653,8,10,2,3,'Mythril Mace (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29961,1,0,0,0,64,0,0,0,0,0,4100,4242,2165,0,0,0,0,0,0,0,1233,1225,790,786,1,1,1,1,'Qutrub Gorget (desynth)','TOAU'); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29962,1,0,0,0,75,0,0,0,0,0,4100,4242,13485,0,0,0,0,0,0,0,745,745,745,803,1,1,2,1,'Sun Ring (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29963,1,0,0,0,44,0,0,0,0,0,4100,4242,12809,0,0,0,0,0,0,0,744,819,851,651,2,3,2,4,'Silver Hose (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29964,1,0,0,0,74,0,0,0,0,0,4100,4242,16962,0,0,0,0,0,0,0,852,823,745,657,1,1,1,1,'Ashura (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (29965,1,0,0,0,62,0,0,0,0,0,4100,4242,12417,0,0,0,0,0,0,0,648,850,653,654,1,1,1,1,'Mythril Sallet (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia unknown yield
|
|
INSERT INTO `synth_recipes` VALUES (29966,1,0,0,0,96,0,0,0,0,0,4100,4242,1378,0,0,0,0,0,0,0,931,931,931,931,1,1,1,1,'C. Handschuhs (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia no hq listed
|
|
-- INSERT INTO `synth_recipes` VALUES (29967,1,0,0,0,14,0,0,0,0,0,4100,4242,14139,0,0,0,0,0,0,0,649,650,850,850,1,1,1,2,'Bas. Leggings (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29968,1,0,0,0,18,0,0,0,0,0,4100,4242,12577,0,0,0,0,0,0,0,649,649,850,650,1,3,2,3,'Brass Harness (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29969,1,0,0,0,74,0,0,0,0,0,4100,4242,12930,0,0,0,0,0,0,0,851,931,931,931,2,3,3,3,'Gold Sabatons (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29970,1,0,0,0,94,0,0,0,0,0,4100,4242,1382,0,0,0,0,0,0,0,931,931,931,931,1,2,2,2,'Cursed Schuhs (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (29971,1,0,0,0,255,0,0,0,0,0,4098,4240,1614,0,0,0,0,0,0,0,760,814,815,801,1,1,1,1,'Corse Bracelet (desynth)','COP'); -- 2022.03.04 Base on FFXIclopedia level unknown list lower than 35
|
|
-- INSERT INTO `synth_recipes` VALUES (29972,1,0,0,0,255,0,0,0,0,0,4100,4242,13515,0,0,0,0,0,0,0,744,744,745,745,1,1,1,1,'Electrum Ring (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia level unknown
|
|
INSERT INTO `synth_recipes` VALUES (29973,1,0,0,0,23,0,0,0,0,0,4100,4242,17081,0,0,0,0,0,0,0,649,649,648,650,1,2,1,1,'Brass Rod (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29974,1,0,0,0,52,0,0,0,0,0,4100,4242,14864,0,0,0,0,0,0,0,744,744,744,744,1,1,2,3,'Palmer\'s Bangles (desynth)','COP'); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29975,1,0,0,0,37,0,0,0,0,0,4100,4242,13082,0,0,0,0,0,0,0,744,744,744,744,3,4,5,6,'Chain Gorget (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (29976,1,0,0,0,78,0,0,0,0,0,4100,4242,2167,0,0,0,0,0,0,0,1225,1225,1225,1225,1,2,3,3,'Lamian Armlet (desynth)','TOAU'); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (30001,0,0,0,0,0,1,1,0,0,1,4099,4241,917,4497,13568,0,0,0,0,0,5230,5231,5231,5231,1,1,1,1,'Love Chocolate','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30002,1,0,0,0,0,1,0,0,0,0,4098,4240,498,0,0,0,0,0,0,0,817,817,817,817,3,6,9,12,'Yagudo Necklace (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30003,0,2011,0,0,0,2,0,0,0,0,4098,4240,840,840,840,840,840,840,2145,0,1221,1221,1221,1221,18,24,30,36,'Chocobo Fletchings','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30004,0,0,0,0,0,2,0,0,0,0,4098,4240,840,840,0,0,0,0,0,0,1221,1221,1221,1221,6,8,10,12,'Chocobo Fletchings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30005,0,2010,0,0,0,3,0,0,0,0,4100,4242,833,833,833,833,833,833,2128,0,817,817,817,817,3,3,3,3,'Grass Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30006,0,0,0,0,0,3,0,0,0,0,4100,4242,833,833,0,0,0,0,0,0,817,817,817,817,1,1,1,1,'Grass Thread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30007,0,0,0,0,0,4,0,0,0,0,4099,4241,817,817,817,0,0,0,0,0,824,824,824,824,1,1,1,1,'Grass Cloth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30008,0,0,0,0,0,5,0,0,0,0,4098,4240,8847,0,0,0,0,0,0,0,12464,12464,12464,12464,1,1,1,1,'Headgear','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (30009,0,0,0,0,0,5,0,0,0,0,4098,4240,817,824,824,0,0,0,0,0,12464,12471,12471,12471,1,1,1,1,'Headgear',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30010,1,0,0,0,0,5,0,0,0,0,4100,4242,12464,0,0,0,0,0,0,0,817,817,817,817,4,5,6,7,'Headgear (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30011,0,0,0,0,0,6,0,0,0,0,4099,4241,817,824,824,834,834,0,0,0,12720,12773,12773,12773,1,1,1,1,'Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30012,1,0,0,0,0,6,0,0,0,0,4100,4242,12720,0,0,0,0,0,0,0,817,817,834,834,6,7,1,2,'Gloves (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30013,0,0,0,0,0,7,0,0,0,0,4099,4241,818,824,824,824,0,0,0,0,12976,13030,13030,13030,1,1,1,1,'Gaiters',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30014,1,0,0,0,0,7,0,0,0,0,4100,4242,12976,0,0,0,0,0,0,0,817,817,818,818,8,9,1,1,'Gaiters (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30015,0,0,0,0,0,8,0,0,0,0,4099,4241,817,824,824,0,0,0,0,0,13583,13605,13605,13605,1,1,1,1,'Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30016,1,0,0,0,0,8,0,0,0,0,4100,4242,13583,0,0,0,0,0,0,0,817,817,817,817,4,5,6,7,'Cape (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30017,1,0,0,0,0,9,0,0,0,0,4100,4242,1121,0,0,0,0,0,0,0,818,818,818,818,2,4,6,8,'Antican Robe (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30018,0,0,0,0,0,9,0,0,0,0,4099,4241,817,824,824,850,0,0,0,0,12848,12896,12896,12896,1,1,1,1,'Brais',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30019,1,0,0,0,0,9,0,0,0,0,4100,4242,510,0,0,0,0,0,0,0,818,818,818,818,2,4,6,8,'Goblin Armor (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30020,0,0,0,0,0,10,0,0,0,0,4099,4241,817,824,824,824,824,834,834,834,12592,12591,12591,12591,1,1,1,1,'Doublet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30021,0,0,0,0,0,10,0,0,0,0,4099,4241,817,824,825,825,0,0,0,0,14290,14291,14291,14291,1,1,1,1,'Vagabond\'s Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30022,0,0,0,0,0,10,0,0,0,0,4099,4241,8848,0,0,0,0,0,0,0,12592,12592,12592,12592,1,1,1,1,'Doublet','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (30023,1,0,0,0,0,10,0,0,0,0,4100,4242,12592,0,0,0,0,0,0,0,817,817,834,834,10,12,2,3,'Doublet (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30501,1,0,0,0,0,10,0,0,0,0,4098,4240,1121,0,0,0,0,0,0,0,825,825,825,825,1,2,3,4,'Antican Robe (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30502,0,2010,0,0,0,11,0,0,0,0,4100,4242,834,834,834,834,834,834,2128,0,818,818,818,818,3,3,3,3,'Cotton Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30503,0,0,0,0,0,11,0,0,0,0,4100,4242,834,834,0,0,0,0,0,0,818,818,818,818,1,1,1,1,'Cotton Thread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30504,0,0,0,0,0,11,0,0,0,0,4098,4240,824,824,0,0,0,0,0,0,12456,12534,12534,12534,1,1,1,1,'Hachimaki',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30505,0,0,0,0,0,12,0,0,0,0,4099,4241,768,768,818,824,825,0,0,0,12728,12744,12744,12744,1,1,1,1,'Cuffs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30506,0,0,3,0,0,12,0,0,0,0,4099,4241,706,817,824,824,0,0,0,0,12712,12774,12774,12774,1,1,1,1,'Tekko',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30507,0,0,0,0,0,12,0,0,0,0,4099,4241,818,818,818,0,0,0,0,0,825,825,825,825,1,1,1,1,'Cotton Cloth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30508,0,2009,0,0,0,12,0,0,0,0,4099,4241,818,818,818,1644,1646,1648,0,0,2138,2138,2138,2138,1,1,1,1,'Alluring Cotton Cloth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30509,0,2008,0,0,0,12,0,0,0,0,4099,4241,818,818,818,1644,1646,1647,0,0,1963,1963,1963,1963,1,1,1,1,'Magical Cotton Cloth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30510,0,0,0,0,0,13,0,0,0,0,4098,4240,840,840,891,937,0,0,0,0,17307,17307,17307,17307,8,16,20,24,'Dart',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30511,1,0,0,0,0,13,0,0,0,0,4100,4242,12736,0,0,0,0,0,0,0,817,817,817,817,2,3,3,3,'Mitts (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30512,0,0,0,0,0,13,0,0,0,0,4099,4241,818,824,825,834,0,0,0,0,12736,12775,12775,12775,1,1,1,1,'Mitts',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30513,0,0,0,0,0,14,0,0,0,0,4099,4241,818,824,824,824,825,850,0,0,13806,13807,13807,13807,1,1,1,1,'Vagabond\'s Tunica',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30514,1,0,0,0,0,14,0,0,0,0,4100,4242,12968,0,0,0,0,0,0,0,817,817,817,850,7,8,9,1,'Kyahan (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30515,0,0,0,0,0,14,0,0,0,0,4099,4241,818,824,825,825,0,0,0,0,12856,12897,12897,12897,1,1,1,1,'Slops',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30516,0,0,0,0,0,14,0,0,0,0,4098,4240,824,824,824,850,0,0,0,0,12968,13031,13031,13031,1,1,1,1,'Kyahan',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30517,1,0,0,0,0,14,0,0,0,0,4100,4242,12856,0,0,0,0,0,0,0,817,817,818,818,2,3,3,4,'Slops (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30518,0,2010,0,0,0,15,0,0,0,0,4100,4242,1845,1845,1845,1845,1845,1845,2128,0,1828,1828,1828,1828,3,3,3,3,'Red Grass Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30519,0,0,0,0,0,15,0,0,0,0,4100,4242,1845,1845,0,0,0,0,0,0,1828,1828,1828,1828,1,1,1,1,'Red Grass Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30520,1,0,0,0,0,15,0,0,0,0,4100,4242,12465,0,0,0,0,0,0,0,818,818,818,818,4,5,6,7,'Cotton Headgear (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30521,0,0,0,0,0,15,0,0,0,0,4099,4241,818,825,825,825,0,0,0,0,12864,12898,12898,12898,1,1,1,1,'Slacks',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30522,0,0,0,0,0,15,0,0,0,0,4098,4240,818,825,825,0,0,0,0,0,12465,12535,12535,12535,1,1,1,1,'Cotton Headgear',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30523,1,0,0,0,0,15,0,0,0,0,4100,4242,12864,0,0,0,0,0,0,0,818,818,818,818,7,8,8,8,'Slacks (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30524,0,0,0,0,0,15,0,0,0,0,4100,4242,8849,0,0,0,0,0,0,0,1828,1828,1828,1828,1,1,1,1,'Red Grass Thread','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (30525,0,0,0,0,0,16,0,0,0,0,4099,4241,818,825,825,834,834,0,0,0,12721,12776,12776,12776,1,1,1,1,'Cotton Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30526,0,0,0,0,0,16,0,0,0,0,4099,4241,1828,1828,1828,0,0,0,0,0,1829,1829,1829,1829,1,1,1,1,'Red Grass Cloth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30527,0,0,0,0,0,16,0,0,0,0,4099,4241,817,824,824,825,0,0,0,0,12840,12899,12899,12899,1,1,1,1,'Sitabaki',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30528,0,0,0,0,0,16,0,0,0,0,4099,4241,817,824,12484,0,0,0,0,0,13901,13902,13902,13902,1,1,1,1,'Windurstian Hachimaki',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30529,1,0,0,0,0,16,0,0,0,0,4100,4242,12840,0,0,0,0,0,0,0,817,817,818,818,6,7,2,3,'Sitabaki (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30530,1,0,0,0,0,16,0,0,0,0,4100,4242,12600,0,0,0,0,0,0,0,817,817,818,818,5,7,5,6,'Robe (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30531,0,0,0,0,0,16,0,0,0,0,4099,4241,817,824,824,825,825,0,0,0,12600,12615,12615,12615,1,1,1,1,'Robe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30532,0,0,0,0,0,17,0,0,0,0,4099,4241,817,824,12719,0,0,0,0,0,14043,14044,14044,14044,1,1,1,1,'Windurstian Tekko',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30533,0,0,0,0,0,17,0,0,0,0,4099,4241,818,824,824,824,825,825,0,0,12608,12616,12616,12616,1,1,1,1,'Tunic',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30534,1,0,0,0,0,17,0,0,0,0,4100,4242,1119,0,0,0,0,0,0,0,819,819,819,819,2,4,6,8,'Tonberry Coat (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30535,0,0,0,0,0,17,0,0,0,0,4099,4241,825,825,825,850,0,0,0,0,12977,13032,13032,13032,1,1,1,1,'Cotton Gaiters',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30536,1,0,0,0,0,18,0,0,0,0,4100,4242,13584,0,0,0,0,0,0,0,818,818,818,818,4,5,6,7,'Cotton Cape (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30537,0,2009,0,0,0,18,0,0,0,0,4099,4241,2230,2231,12864,0,0,0,0,0,15611,15611,15611,15611,1,1,1,1,'Sturdy Slacks','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (30538,0,0,0,0,0,18,0,0,0,0,4099,4241,817,824,824,824,0,0,0,0,12584,12668,12668,12668,1,1,1,1,'Kenpogi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30539,0,0,0,0,0,18,0,0,0,0,4099,4241,818,825,825,0,0,0,0,0,13584,13601,13601,13601,1,1,1,1,'Cotton Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30540,0,0,0,0,0,19,0,0,0,0,4100,4242,835,835,0,0,0,0,0,0,819,819,819,819,1,1,1,1,'Linen Thread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30541,0,2010,0,0,0,19,0,0,0,0,4100,4242,835,835,835,835,835,835,2128,0,819,819,819,819,3,3,3,3,'Linen Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30542,0,0,0,0,0,19,0,0,0,0,4099,4241,817,824,12975,0,0,0,0,0,14151,14152,14152,14152,1,1,1,1,'Windurstian Kyahan',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30543,0,0,0,0,0,19,0,0,0,0,4099,4241,818,825,825,850,0,0,0,0,12849,12900,12900,12900,1,1,1,1,'Cotton Brais',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30544,0,0,0,0,0,19,0,0,0,0,4101,4243,835,835,0,0,0,0,0,0,1882,1882,1882,1882,1,2,3,4,'Flaxseed Oil','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30545,0,0,0,0,0,20,0,0,0,0,4099,4241,825,932,0,0,0,0,0,0,12498,12536,12536,12536,1,1,1,1,'Cotton Headband',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30546,0,0,0,0,0,20,0,0,0,0,4099,4241,1963,12608,0,0,0,0,0,0,14490,14490,14490,14490,1,1,1,1,'Mana Tunic','COP');
|
|
INSERT INTO `synth_recipes` VALUES (30547,0,0,0,0,0,20,0,0,0,0,4099,4241,818,825,12470,0,0,0,0,0,13903,13904,13904,13904,1,1,1,1,'Windurstian Headgear',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30548,0,0,0,0,0,20,0,0,0,0,4099,4241,818,825,825,825,825,834,834,834,12593,12669,12669,12669,1,1,1,1,'Cotton Doublet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (30549,0,0,0,0,0,20,0,0,0,0,4099,4241,8850,0,0,0,0,0,0,0,12498,12498,12498,12498,1,1,1,1,'Cotton Headband','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (31001,0,0,0,0,0,21,0,0,0,0,4098,4240,825,825,0,0,0,0,0,0,12457,12537,12537,12537,1,1,1,1,'Cotton Hachimaki',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31002,0,0,0,0,0,21,0,0,0,0,4099,4241,818,825,12726,0,0,0,0,0,14045,14046,14046,14046,1,1,1,1,'Windurstian Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31003,0,0,0,0,0,21,0,0,0,0,4099,4241,817,824,12855,0,0,0,0,0,14269,14270,14270,14270,1,1,1,1,'Windurstian Sitabaki',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31004,1,0,0,0,0,21,0,0,0,0,4100,4242,12457,0,0,0,0,0,0,0,818,818,818,818,3,4,5,6,'Cotton Hachimaki (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31005,0,2009,0,0,0,21,0,0,0,0,4099,4241,2232,2233,12584,0,0,0,0,0,14541,14541,14541,14541,1,1,1,1,'Taikyoku Kenpogi','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (31006,0,0,0,0,0,21,0,0,0,0,4099,4241,2138,13584,0,0,0,0,0,0,15485,15485,15485,15485,1,1,1,1,'Talisman Cape','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31007,1,0,0,0,0,22,0,0,0,0,4098,4240,1119,0,0,0,0,0,0,0,826,826,826,826,1,2,2,2,'Tonberry Coat (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31008,0,0,0,0,0,22,0,0,0,0,4099,4241,818,824,13718,0,0,0,0,0,14348,14349,14349,14349,1,1,1,1,'San d\'Orian Tunic',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31009,0,2008,0,0,0,22,0,0,0,0,4099,4241,819,819,819,1643,1644,1647,0,0,1701,1701,1701,1701,1,1,1,1,'Fine Linen Cloth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31010,0,0,0,0,0,22,0,0,0,0,4099,4241,818,825,12982,0,0,0,0,0,14153,14154,14154,14154,1,1,1,1,'Windurstian Gaiters',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31011,0,2008,0,0,0,22,0,0,0,0,4099,4241,819,819,819,1644,1646,1647,0,0,1964,1964,1964,1964,1,1,1,1,'Magical Linen Cloth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31012,0,0,6,0,0,22,0,0,0,0,4099,4241,706,817,825,825,0,0,0,0,12713,12777,12777,12777,1,1,1,1,'Cotton Tekko',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31013,0,2011,0,0,0,22,0,0,0,0,4098,4240,841,841,841,841,841,841,2145,0,1222,1222,1222,1222,18,24,30,36,'Yagudo Fletchings','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31014,0,0,0,0,0,22,0,0,0,0,4098,4240,841,841,0,0,0,0,0,0,1222,1222,1222,1222,6,8,10,12,'Yagudo Fletchings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31015,0,0,0,0,0,22,0,0,0,0,4099,4241,819,819,819,0,0,0,0,0,826,826,826,826,1,1,1,1,'Linen Cloth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31016,0,0,0,0,0,22,9,0,0,0,4099,4241,825,850,913,1828,1829,1829,0,0,15207,15208,15208,15208,1,1,1,1,'Trader\'s Chapeau','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31017,0,0,0,0,0,23,0,0,0,0,4099,4241,1651,1651,1651,0,0,0,0,0,1636,1636,1636,1636,1,1,1,1,'Moblinweave','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31018,0,0,0,0,0,23,9,0,0,0,4099,4241,825,850,850,1828,1829,0,0,0,14053,14054,14054,14054,1,1,1,1,'Trader\'s Cuffs','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31019,0,0,0,0,7,23,0,0,0,0,4099,4241,807,807,819,825,826,0,0,0,12729,12778,12778,12778,1,1,1,1,'Linen Cuffs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31020,0,0,0,0,0,23,0,0,0,0,4099,4241,818,825,826,826,0,0,0,0,14292,14293,14293,14293,1,1,1,1,'Fisherman\'s Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31021,0,0,0,0,0,23,0,0,0,0,4099,4241,817,824,12653,0,0,0,0,0,14350,14351,14351,14351,1,1,1,1,'Windurstian Gi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31022,0,0,0,0,0,24,20,0,0,0,4099,4241,819,826,840,840,850,0,0,0,15161,15172,15172,15172,1,1,1,1,'Noct Beret','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31023,0,0,0,0,0,24,0,0,0,0,4099,4241,818,825,12854,0,0,0,0,0,14271,14272,14272,14272,1,1,1,1,'Windurstian Brais',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31024,0,0,0,0,0,24,0,0,0,0,4098,4240,819,825,825,825,0,0,0,0,12969,13033,13033,13033,1,1,1,1,'Cotton Kyahan',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31025,0,0,0,0,0,24,9,0,0,0,4099,4241,825,825,850,1828,1829,0,0,0,15404,15405,15405,15405,1,1,1,1,'Trader\'s Slops','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31026,0,0,0,0,0,24,0,0,0,0,4099,4241,819,826,826,840,0,0,0,0,12466,12538,12538,12538,1,1,1,1,'Red Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31027,0,0,0,0,0,24,20,0,0,0,4099,4241,820,825,825,834,850,0,0,0,14856,14859,14859,14859,1,1,1,1,'Seer\'s Mitts','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31028,1,0,0,0,0,24,0,0,0,0,4100,4242,15404,0,0,0,0,0,0,0,1828,1828,818,818,3,4,3,6,'Trader\'s Slops (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31029,0,0,0,0,0,25,20,0,0,0,4099,4241,819,826,826,834,834,850,0,0,14854,14865,14865,14865,1,1,1,1,'Noct Gloves','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31030,0,0,0,0,0,25,9,0,0,0,4099,4241,764,825,850,851,913,1828,1829,1829,14446,14447,14447,14447,1,1,1,1,'Trader\'s Saio','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31031,0,2008,0,0,0,25,0,0,0,0,4099,4241,2231,2232,15207,0,0,0,0,0,16078,16078,16078,16078,1,1,1,1,'Blissful Chapeau','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (31032,1,0,0,0,0,25,9,0,0,0,4100,4242,14446,0,0,0,0,0,0,0,1828,1828,851,851,3,7,1,1,'Trader\'s Saio (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31033,0,0,0,0,0,25,0,0,0,0,4099,4241,819,825,826,826,0,0,0,0,12857,12901,12901,12901,1,1,1,1,'Linen Slops',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31034,0,0,0,0,0,25,20,0,0,0,4099,4241,820,825,825,826,850,0,0,0,14325,14328,14328,14328,1,1,1,1,'Seer\'s Slacks','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31035,0,0,0,0,0,25,0,0,0,0,4099,4241,818,825,12598,0,0,0,0,0,14352,14353,14353,14353,1,1,1,1,'Windurstian Doublet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31036,0,0,0,0,0,25,0,0,0,0,4099,4241,819,826,826,834,834,0,0,0,12722,12779,12779,12779,1,1,1,1,'Bracers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31037,0,0,0,0,0,25,0,0,0,0,4099,4241,8851,0,0,0,0,0,0,0,12722,12722,12722,12722,1,1,1,1,'Bracers','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (31038,0,0,0,0,0,26,20,0,0,0,4099,4241,819,826,826,826,834,834,834,850,14422,14434,14434,14434,1,1,1,1,'Noct Doublet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31039,0,0,0,0,0,26,0,0,0,0,4099,4241,819,826,826,826,848,0,0,0,12978,13034,13034,13034,1,1,1,1,'Socks',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31040,0,0,0,0,0,26,0,0,0,0,4099,4241,817,825,825,826,0,0,0,0,12841,12902,12902,12902,1,1,1,1,'Cotton Sitabaki',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31041,0,0,0,0,0,26,20,0,0,0,4099,4241,820,825,825,825,826,826,850,0,14424,14427,14427,14427,1,1,1,1,'Seer\'s Tunic','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31042,0,0,0,0,0,27,0,0,0,0,4099,4241,817,825,825,0,0,0,0,0,13204,13190,13190,13190,1,1,1,1,'Heko Obi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31043,0,0,0,0,0,27,20,0,0,0,4099,4241,826,826,826,850,850,0,0,0,15311,14207,14207,14207,1,1,1,1,'Noct Gaiters','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31044,0,0,0,0,0,27,0,0,0,0,4099,4241,818,825,825,826,826,0,0,0,12601,12626,12626,12626,1,1,1,1,'Linen Robe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31045,0,0,0,0,0,28,0,0,0,0,4099,4241,817,825,825,825,0,0,0,0,12585,12624,12624,12624,1,1,1,1,'Cotton Dogi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31046,0,0,0,0,0,28,0,0,0,0,4098,4240,825,826,826,826,0,0,0,0,2398,2398,2398,2398,3,6,9,12,'Chocobo Taping','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (31047,0,0,0,0,0,28,0,0,0,0,4099,4241,819,826,826,848,0,0,0,0,12850,12903,12903,12903,1,1,1,1,'Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31048,0,0,0,0,13,29,0,0,0,0,4099,4241,673,819,826,826,826,826,834,834,12594,12625,12625,12625,1,1,1,1,'Gambison',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31049,0,0,0,15,0,29,0,0,0,0,4099,4241,649,817,1163,0,0,0,0,0,1185,1185,1185,1185,33,66,99,99,'Kaginawa',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31050,0,0,0,0,0,30,0,0,0,0,4099,4241,819,825,825,825,826,850,0,0,13808,13809,13809,13809,1,1,1,1,'Fisherman\'s Tunica',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31051,0,0,0,0,0,30,0,0,0,0,4099,4241,819,826,12915,0,0,0,0,0,14273,14274,14274,14274,1,1,1,1,'Windurstian Slops',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31052,0,0,0,0,0,30,0,0,0,0,4099,4241,8852,0,0,0,0,0,0,0,13808,13808,13808,13808,1,1,1,1,'Fisherman\'s Tunica','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (31053,0,0,0,0,0,30,0,8,0,0,4099,4241,840,891,937,0,0,0,0,0,17405,17405,17405,17405,1,1,1,1,'Fly Lure',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31054,0,0,0,0,0,30,0,0,0,0,4099,4241,2138,13204,0,0,0,0,0,0,15881,15881,15881,15881,1,1,1,1,'Talisman Obi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31501,0,0,0,0,0,31,0,0,0,0,4099,4241,819,825,826,834,0,0,0,0,12738,12780,12780,12780,1,1,1,1,'Linen Mitts',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31502,1,0,0,0,0,31,0,0,0,0,4100,4242,12458,0,0,0,0,0,0,0,819,819,819,819,3,4,5,6,'Soil Hachimaki (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31503,0,0,0,0,0,31,0,0,0,0,4098,4240,826,826,0,0,0,0,0,0,12458,12539,12539,12539,1,1,1,1,'Soil Hachimaki',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31504,0,0,0,0,0,32,0,0,0,0,4099,4241,819,826,826,826,0,0,0,0,12866,12904,12904,12904,1,1,1,1,'Linen Slacks',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31505,0,0,0,0,0,32,0,0,0,0,4099,4241,819,826,834,2838,0,0,0,0,15053,15058,15058,15058,1,1,1,1,'Combat Mittens','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (31506,0,0,7,0,0,32,0,0,0,0,4099,4241,706,817,826,826,0,0,0,0,12714,12781,12781,12781,1,1,1,1,'Soil Tekko',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31507,0,0,0,0,0,33,0,0,0,0,4099,4241,819,825,825,825,826,826,0,0,12610,12670,12670,12670,1,1,1,1,'Cloak',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31508,1,0,0,0,0,33,0,0,0,0,4098,4240,499,0,0,0,0,0,0,0,820,820,820,820,1,2,3,4,'Gigas Necklace (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31509,0,0,0,0,0,33,0,14,0,0,4098,4240,937,2150,2150,2171,0,0,0,0,18681,18681,18681,18681,8,16,20,24,'Aht Urhgan Dart','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (31510,0,0,0,0,0,34,0,0,0,0,4099,4241,817,825,825,834,0,0,0,0,1194,1194,1194,1194,33,66,99,99,'Shinobi-Tabi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31511,0,0,0,0,0,34,20,0,0,0,4099,4241,825,834,850,1699,1700,0,0,0,14857,14861,14861,14861,1,1,1,1,'Garish Mitts','COP'); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (31512,0,0,0,0,0,34,0,0,0,0,4098,4240,818,826,826,826,0,0,0,0,12970,13035,13035,13035,1,1,1,1,'Soil Kyahan',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31513,0,0,0,0,0,35,0,0,0,0,4100,4242,8853,0,0,0,0,0,0,0,820,820,820,820,1,1,1,1,'Wool Thread','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (31514,1,0,0,0,0,35,0,0,0,0,4100,4242,497,0,0,0,0,0,0,0,820,820,820,820,2,4,6,8,'Gigas Socks (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31515,0,0,0,0,0,35,21,0,0,0,4099,4241,826,828,828,850,1700,0,0,0,14326,14330,14330,14330,1,1,1,1,'Garish Slacks','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31516,0,0,0,0,9,35,0,0,0,0,4098,4240,744,841,841,937,0,0,0,0,17308,17308,17308,17308,8,12,16,20,'Hawkeye',NULL); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (31517,0,0,0,0,0,35,0,0,0,0,4100,4242,832,832,0,0,0,0,0,0,820,820,820,820,1,1,1,1,'Wool Thread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31518,0,2010,0,0,0,35,0,0,0,0,4100,4242,832,832,832,832,832,832,2128,0,820,820,820,820,3,3,3,3,'Wool Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31519,0,0,0,0,0,36,20,0,0,0,4099,4241,828,828,850,1699,1699,1699,1700,0,14425,14432,14432,14432,1,1,1,1,'Garish Tunic','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31520,0,0,0,0,0,36,0,0,0,0,4099,4241,819,826,12743,0,0,0,0,0,14047,14048,14048,14048,1,1,1,1,'Combat Caster\'s Mitts +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31521,0,0,0,0,0,36,0,0,0,0,4099,4241,1964,12610,0,0,0,0,0,0,14491,14491,14491,14491,1,1,1,1,'Mana Cloak','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31522,0,0,0,0,0,36,0,0,0,0,4099,4241,817,826,826,827,0,0,0,0,12842,12905,12905,12905,1,1,1,1,'Soil Sitabaki',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31523,0,2009,0,0,0,37,0,0,0,0,4099,4241,820,820,820,1641,1642,1648,0,0,2424,2424,2424,2424,1,1,1,1,'Incombustible Wool','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (31524,0,0,0,0,0,37,0,0,0,0,4099,4241,1702,14857,0,0,0,0,0,0,14855,14855,14855,14855,1,1,1,1,'Mist Mitts','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31525,0,0,0,0,0,37,0,0,0,0,4099,4241,820,820,820,0,0,0,0,0,827,827,827,827,1,1,1,1,'Wool Cloth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31526,0,0,0,0,0,37,0,0,0,0,4099,4241,819,826,12870,0,0,0,0,0,14275,14276,14276,14276,1,1,1,1,'Combat Caster\'s Slacks +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31527,0,0,0,0,0,38,0,0,0,0,4099,4241,819,826,12614,0,0,0,0,0,14354,14355,14355,14355,1,1,1,1,'Combat Caster\'s Cloak +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31528,0,0,0,0,0,38,0,0,0,0,4099,4241,817,826,826,826,0,0,0,0,12586,12671,12671,12671,1,1,1,1,'Soil Gi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31529,0,0,0,0,0,38,0,0,0,0,4099,4241,2150,2150,2150,2150,2150,2150,2150,2288,16281,16282,16282,16282,1,1,1,1,'Buffoon\'s Collar','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (31530,0,0,0,0,0,38,0,0,0,0,4099,4241,827,847,847,847,847,847,847,847,13075,13060,13060,13060,1,1,1,1,'Feather Collar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31531,0,0,0,0,0,38,0,0,0,0,4099,4241,1702,14326,0,0,0,0,0,0,14324,14324,14324,14324,1,1,1,1,'Mist Slacks','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31532,0,0,0,0,0,39,0,0,0,0,4099,4241,1702,14425,0,0,0,0,0,0,14423,14423,14423,14423,1,1,1,1,'Mist Tunic','COP');
|
|
INSERT INTO `synth_recipes` VALUES (31533,0,0,0,0,0,39,0,0,0,0,4099,4241,1828,1829,2274,0,0,0,0,0,15905,15906,15906,15906,1,1,1,1,'Mohbwa Sash','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (31534,0,0,0,0,0,39,0,0,0,0,4099,4241,826,932,0,0,0,0,0,0,12499,12540,12540,12540,1,1,1,1,'Flax Headband',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (31535,0,0,0,0,0,40,0,0,0,0,4099,4241,8854,0,0,0,0,0,0,0,2400,2400,2400,2400,3,3,3,3,'Shadow Roll','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (31536,0,0,0,0,0,40,0,0,0,0,4099,4241,820,820,827,850,0,0,0,0,2400,2400,2400,2400,3,3,3,3,'Shadow Roll','TOAU');
|
|
-- INSERT INTO `synth_recipes` VALUES (31537,0,0,0,0,0,40,0,0,255,0,4099,4241,825,826,1882,2507,4154,0,0,0,19252,19252,19252,19252,33,66,99,99,'Pet Poultice','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (31538,0,0,0,0,8,40,0,0,0,0,4099,4241,661,819,826,827,827,0,0,0,12474,12479,12479,12479,1,1,1,1,'Wool Hat',NULL); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (32001,0,0,0,0,0,41,0,0,0,0,4100,4242,2295,2295,0,0,0,0,0,0,2296,2296,2296,2296,1,1,1,1,'Mohbwa Thread','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32002,0,0,0,0,9,41,0,0,0,0,4099,4241,806,806,820,826,827,0,0,0,12730,12782,12782,12782,1,1,1,1,'Wool Cuffs',NULL); -- BGWiki + JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (32003,0,2010,0,0,0,41,0,0,0,0,4100,4242,2128,2295,2295,2295,2295,2295,2295,0,2296,2296,2296,2296,3,3,3,3,'Mohbwa Thread','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32004,0,0,0,0,0,41,0,0,0,0,4099,4241,818,818,825,825,0,0,0,0,2553,2553,2553,2553,33,66,99,99,'Sanjaku-Tenugui','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32005,0,2008,0,0,0,41,0,0,0,0,4099,4241,2231,2232,13075,0,0,0,0,0,15526,15526,15526,15526,1,1,1,1,'Regen Collar','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32006,0,0,0,0,9,42,0,0,0,0,4099,4241,661,820,826,827,827,0,0,0,12858,12906,12906,12906,1,1,1,1,'Wool Slops',NULL); -- BGWiki + JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (32007,0,2011,0,0,0,42,0,0,0,0,4098,4240,847,847,847,847,847,847,2145,0,1223,1223,1223,1223,18,24,30,36,'Bird Fletchings','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32008,0,0,0,0,0,42,0,0,0,0,4098,4240,847,847,0,0,0,0,0,0,1223,1223,1223,1223,6,8,10,12,'Bird Fletchings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32009,0,0,0,0,0,43,0,0,0,0,4099,4241,817,817,817,817,817,817,817,817,13085,13068,13068,13068,1,1,1,1,'Hemp Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32010,1,0,0,0,0,43,0,0,0,0,4100,4242,13085,0,0,0,0,0,0,0,817,817,817,817,5,6,7,8,'Hemp Gorget (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32011,0,0,0,0,12,43,0,0,0,0,4099,4241,673,819,826,826,827,827,0,0,12602,12627,12627,12627,1,1,1,1,'Wool Robe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32012,0,0,0,0,11,44,0,0,0,0,4099,4241,744,846,846,0,0,0,0,0,13322,13361,13361,13361,1,1,1,1,'Wing Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32013,0,0,0,0,0,44,0,0,0,0,4098,4240,829,838,956,1278,0,0,0,0,13931,13932,13932,13932,1,1,1,1,'Lilac Corsage',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32014,0,2009,0,0,0,45,0,0,0,0,4099,4241,816,820,820,1644,1646,1648,0,0,2425,2425,2425,2425,1,1,1,1,'Humidified Velvet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32015,0,0,0,0,0,45,0,0,0,0,4099,4241,8855,0,0,0,0,0,0,0,12467,12467,12467,12467,1,1,1,1,'Wool Cap','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (32016,0,0,0,0,0,45,0,0,0,0,4099,4241,816,820,820,0,0,0,0,0,828,828,828,828,1,1,1,1,'Velvet Cloth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32017,0,0,0,0,0,45,0,0,0,0,4099,4241,820,827,827,840,0,0,0,0,12467,12541,12541,12541,1,1,1,1,'Wool Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32018,0,2008,0,0,0,45,0,0,0,0,4099,4241,816,820,820,1643,1643,1647,0,0,1702,1702,1702,1702,1,1,1,1,'Smooth Velvet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32019,0,0,0,0,0,46,0,0,0,0,4099,4241,820,827,827,834,834,0,0,0,12723,12783,12783,12783,1,1,1,1,'Wool Bracers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32020,0,0,0,0,0,46,0,0,0,0,4099,4241,1701,12499,0,0,0,0,0,0,15170,15170,15170,15170,1,1,1,1,'Blink Band','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32021,0,0,0,0,0,47,0,0,0,0,4101,4243,26,2708,0,0,0,0,0,0,396,396,396,396,1,1,1,1,'Yellow Tarutaru Desk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32022,0,0,0,0,0,47,0,0,0,0,4101,4243,26,2709,0,0,0,0,0,0,397,397,397,397,1,1,1,1,'White Tarutaru Desk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32023,0,0,0,0,12,47,0,0,0,0,4099,4241,744,816,0,0,0,0,0,0,822,822,822,822,2,4,6,8,'Silver Thread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32024,0,0,0,0,0,47,0,0,0,0,4101,4243,26,2706,0,0,0,0,0,0,394,394,394,394,1,1,1,1,'Blue Tarutaru Desk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32025,0,2010,0,0,12,47,0,0,0,0,4099,4241,744,744,744,816,816,816,2128,0,822,822,822,822,6,8,12,12,'Silver Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32026,0,0,0,0,0,47,0,0,0,0,4101,4243,26,2707,0,0,0,0,0,0,395,395,395,395,1,1,1,1,'Green Tarutaru Desk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32027,0,0,0,0,0,48,0,0,0,0,4099,4241,820,827,827,827,851,0,0,0,12979,13036,13036,13036,1,1,1,1,'Wool Socks',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32028,0,0,0,0,0,49,0,0,0,0,4098,4240,821,825,825,825,877,0,0,0,11370,11370,11370,11370,1,1,1,1,'Junkenshi Habaki','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32029,0,0,0,0,0,49,0,0,0,0,4099,4241,820,827,827,851,0,0,0,0,12851,12907,12907,12907,1,1,1,1,'Wool Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32030,0,0,0,0,0,49,0,0,0,0,4099,4241,2424,12723,0,0,0,0,0,0,14991,14991,14991,14991,1,1,1,1,'Fire Bracers','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32031,0,0,0,0,0,50,0,0,0,0,4099,4241,822,827,13719,0,0,0,0,0,14358,14359,14359,14359,1,1,1,1,'Royal Squire\'s Robe +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32032,0,0,0,0,13,50,0,0,0,0,4099,4241,673,820,827,827,827,827,834,834,12595,13696,13696,13696,1,1,1,1,'Wool Gambison',NULL); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (32033,0,0,0,0,0,50,0,0,0,0,4099,4241,819,826,827,850,0,0,0,0,14294,14295,14295,14295,1,1,1,1,'Chocobo Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32034,0,0,0,0,0,50,0,0,0,0,4099,4241,8856,0,0,0,0,0,0,0,828,828,828,828,1,1,1,1,'Velvet Cloth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (32035,0,0,0,0,0,51,0,0,0,0,4099,4241,816,818,818,0,0,0,0,0,828,828,828,828,1,1,1,1,'Velvet Cloth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32036,0,2008,0,0,0,51,0,0,0,0,4099,4241,816,818,818,1643,1643,1647,0,0,1702,1702,1702,1702,1,1,1,1,'Smooth Velvet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32501,0,0,0,0,0,51,0,0,0,0,4100,4242,839,839,0,0,0,0,0,0,816,816,816,816,1,1,1,1,'Silk Thread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32502,0,2009,0,0,0,51,0,0,0,0,4099,4241,816,818,818,1644,1646,1648,0,0,2425,2425,2425,2425,1,1,1,1,'Humidified Velvet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32503,0,2010,0,0,0,51,0,0,0,0,4100,4242,839,839,839,839,839,839,2128,0,816,816,816,816,3,3,3,3,'Silk Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32504,0,0,0,0,0,51,0,0,0,0,4099,4241,822,822,822,0,0,0,0,0,13205,13224,13224,13224,1,1,1,1,'Silver Obi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32505,0,0,0,0,0,52,0,0,0,0,4099,4241,822,826,826,828,0,0,0,0,12865,12917,12917,12917,1,1,1,1,'Black Slacks',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32506,0,0,0,0,0,52,0,0,0,0,4099,4241,2424,12851,0,0,0,0,0,0,15652,15652,15652,15652,1,1,1,1,'Blaze Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32507,0,0,0,0,0,52,0,0,0,0,4098,4240,846,846,0,0,0,0,0,0,1224,1224,1224,1224,6,8,10,12,'Insect Fletchings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32508,0,2011,0,0,0,52,0,0,0,0,4098,4240,846,846,846,846,846,846,2145,0,1224,1224,1224,1224,18,24,30,36,'Insect Fletchings','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32509,0,0,0,0,0,52,0,0,0,0,4098,4240,828,0,0,0,0,0,0,0,13568,13833,13833,13833,1,1,1,1,'Scarlet Ribbon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32510,0,0,0,0,0,53,0,0,0,0,4099,4241,822,826,826,826,828,828,0,0,12609,13725,13725,13725,1,1,1,1,'Black Tunic',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32511,0,2008,0,0,0,53,0,0,0,0,4099,4241,816,816,816,1644,1646,1647,0,0,1965,1965,1965,1965,1,1,1,1,'Magical Silk Cloth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32512,0,0,0,0,0,53,0,0,0,0,4099,4241,816,816,816,0,0,0,0,0,829,829,829,829,1,1,1,1,'Silk Cloth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32513,0,0,0,0,0,53,0,47,0,0,4099,4241,937,2522,2522,2524,0,0,0,0,18726,18726,18726,18726,8,12,16,20,'Peiste Dart','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32514,0,0,0,0,0,54,0,0,0,0,4099,4241,822,828,828,0,0,0,0,0,13577,13610,13610,13610,1,1,1,1,'Black Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32515,0,0,0,0,0,54,0,0,0,0,4099,4241,819,819,1700,0,0,0,0,0,1699,1699,1699,1699,1,1,1,1,'Scarlet Linen','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32516,0,0,0,0,32,54,0,0,0,0,4099,4241,2522,2522,2536,0,0,0,0,0,16009,16010,16010,16010,1,1,1,1,'Pennon Earring','WOTG'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (32517,0,0,0,0,0,54,0,0,0,0,4099,4241,817,825,825,2843,0,0,0,0,16373,16377,16377,16377,1,1,1,1,'Kyoshu Sitabaki','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32518,0,0,0,0,0,55,0,0,0,0,4099,4241,820,827,13721,0,0,0,0,0,14356,14357,14357,14357,1,1,1,1,'Iron Musketeer\'s Gambison +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32519,0,0,0,0,0,55,0,0,0,0,4099,4241,8857,0,0,0,0,0,0,0,16261,16261,16261,16261,1,1,1,1,'Mohbwa Scarf','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (32520,0,2010,0,0,0,55,0,0,0,0,4100,4242,2128,2315,2315,2315,2315,2315,2315,0,2287,2287,2287,2287,3,3,3,3,'Karakul Thread','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32521,0,0,0,0,0,55,0,0,0,0,4099,4241,826,2274,2296,0,0,0,0,0,16261,16262,16262,16262,1,1,1,1,'Mohbwa Scarf','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32522,0,0,0,0,0,55,0,0,0,0,4100,4242,2315,2315,0,0,0,0,0,0,2287,2287,2287,2287,1,1,1,1,'Karakul Thread','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32523,0,0,0,0,8,55,0,0,0,0,4099,4241,661,816,827,828,828,0,0,0,12475,13834,13834,13834,1,1,1,1,'Velvet Hat',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32524,0,0,0,0,0,56,0,0,0,0,4100,4242,1295,1295,0,0,0,0,0,0,1278,1278,1278,1278,1,2,3,4,'Twinthread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32525,0,0,0,0,0,56,0,0,0,0,4099,4241,816,826,828,828,0,0,0,0,2401,2401,2401,2401,3,3,3,3,'Chocobo Hood','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32526,0,0,0,0,0,57,0,0,0,0,4099,4241,2287,2287,2287,0,0,0,0,0,2288,2288,2288,2288,1,1,1,1,'Karakul Cloth','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32527,0,0,0,0,9,57,0,0,0,0,4099,4241,661,822,827,828,828,0,0,0,12859,12918,12918,12918,1,1,1,1,'Velvet Slops',NULL); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (32528,0,0,0,0,9,58,0,0,0,0,4099,4241,673,822,827,827,828,828,0,0,12603,13726,13726,13726,1,1,1,1,'Velvet Robe',NULL); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (32529,0,2010,0,0,41,58,0,0,0,0,4099,4241,745,745,745,816,816,816,2128,0,823,823,823,823,6,8,12,12,'Gold Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32530,0,0,0,0,41,58,0,0,0,0,4099,4241,745,816,0,0,0,0,0,0,823,823,823,823,2,4,6,8,'Gold Thread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32531,0,0,0,0,0,58,0,0,0,0,4099,4241,819,826,826,826,826,834,834,834,13750,13751,13751,13751,1,1,1,1,'Linen Doublet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32532,0,2008,0,0,41,58,0,0,0,0,4099,4241,745,816,1646,1646,1647,0,0,0,1966,1966,1966,1966,2,4,6,8,'Brilliant Gold Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32533,0,2008,0,0,41,58,0,0,0,0,4099,4241,745,816,1647,1647,1647,0,0,0,1968,1968,1968,1968,2,4,6,8,'Shiny Gold Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32534,0,2008,0,0,41,58,0,0,0,0,4099,4241,745,816,1642,1642,1647,0,0,0,1967,1967,1967,1967,2,4,6,8,'Dull Gold Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (32535,0,0,0,0,0,58,0,0,0,0,4099,4241,1278,1278,1278,0,0,0,0,0,13273,13274,13274,13274,1,1,1,1,'Twinthread Obi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32536,0,0,0,0,15,56,0,0,0,0,4099,4241,788,788,822,827,828,0,0,0,12731,12793,12793,12793,1,1,1,1,'Velvet Cuffs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32537,0,0,0,0,9,58,0,0,0,0,4099,4241,822,827,827,828,828,2826,0,0,11340,11348,11348,11348,1,1,1,1,'Salutary Robe','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32538,0,0,0,0,0,59,0,0,0,0,4099,4241,816,823,2304,0,0,0,0,0,2340,2340,2340,2340,1,1,1,1,'Imperial Silk Cloth','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32539,0,0,0,0,0,59,0,0,0,0,4099,4241,823,828,828,0,0,0,0,0,13586,13611,13611,13611,1,1,1,1,'Red Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32540,1,0,0,0,0,59,0,0,0,0,4100,4242,13586,0,0,0,0,0,0,0,816,820,823,823,2,4,1,1,'Red Cape (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32541,0,0,0,0,0,59,0,0,0,0,4099,4241,1699,1828,2288,0,0,0,0,0,15907,15908,15908,15908,1,1,1,1,'Qiqirn Sash','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (32542,0,0,0,0,0,60,0,0,0,0,4099,4241,822,826,828,834,0,0,0,0,12739,12794,12794,12794,1,1,1,1,'Black Mitts',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (32543,0,0,0,0,0,60,0,0,7,0,4101,4243,104,2708,0,0,0,0,0,0,408,408,408,408,1,1,1,1,'Yellow Tarutaru Standing Screen','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32544,0,0,0,0,0,60,0,0,7,0,4101,4243,104,2706,0,0,0,0,0,0,406,406,406,406,1,1,1,1,'Blue Tarutaru Standing Screen','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32545,0,0,0,0,0,60,0,0,7,0,4101,4243,104,2707,0,0,0,0,0,0,407,407,407,407,1,1,1,1,'Green Tarutaru Standing Screen','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32546,0,0,0,0,0,60,0,0,0,0,4099,4241,8858,0,0,0,0,0,0,0,12739,12739,12739,12739,1,1,1,1,'Black Mitts','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (32547,0,0,0,0,0,60,0,0,7,0,4101,4243,104,2709,0,0,0,0,0,0,409,409,409,409,1,1,1,1,'White Tarutaru Standing Screen','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (32548,0,0,0,0,0,60,0,0,0,0,4099,4241,820,826,827,827,0,0,0,0,14297,14298,14298,14298,1,1,1,1,'Field Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33001,0,0,0,0,15,61,0,0,0,0,4099,4241,806,806,822,827,828,0,0,0,12731,12793,12793,12793,1,1,1,1,'Velvet Cuffs',NULL); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (33002,0,0,0,0,0,61,0,0,0,0,4099,4241,823,828,828,829,0,0,0,0,12867,12926,12926,12926,1,1,1,1,'White Slacks',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33003,0,0,0,35,0,62,34,0,0,0,4099,4241,666,879,2166,2288,2288,0,0,0,15605,15608,15608,15608,1,1,1,1,'Jaridah Salvars',NULL); -- BGwiki, FFXIclopedia and JP wiki
|
|
INSERT INTO `synth_recipes` VALUES (33004,0,0,0,0,0,62,20,0,0,0,4099,4241,823,828,828,834,834,850,0,0,14907,14908,14908,14908,1,1,1,1,'Crow Bracers','COP'); -- BGwiki, FFXIclopedia and JP wiki
|
|
INSERT INTO `synth_recipes` VALUES (33005,0,0,0,0,0,62,0,0,0,0,4098,4240,2522,2522,0,0,0,0,0,0,2548,2548,2548,2548,6,8,10,12,'Gnat Fletchings','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33006,0,2011,0,0,0,62,0,0,0,0,4098,4240,2145,2522,2522,2522,2522,2522,2522,0,2548,2548,2548,2548,18,24,30,36,'Gnat Fletchings','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33007,0,0,0,0,0,62,0,0,0,0,4098,4240,829,0,0,0,0,0,0,0,13590,13854,13854,13854,1,1,1,1,'Green Ribbon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33008,0,0,0,0,0,63,0,0,0,0,4099,4241,818,818,818,2004,4509,0,0,0,2005,2005,2005,2005,1,1,1,1,'Hunter\'s Cotton','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33009,0,0,0,0,0,63,0,0,0,0,4099,4241,2425,12739,0,0,0,0,0,0,14992,14992,14992,14992,1,1,1,1,'Water Mitts','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (33010,0,0,0,0,0,63,0,0,0,0,4099,4241,823,828,828,828,829,829,0,0,12611,12651,12651,12651,1,1,1,1,'White Cloak',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33011,0,0,0,0,0,63,0,0,0,0,4098,4240,821,826,826,826,877,0,0,0,11372,11373,11373,11373,1,1,1,1,'Junrenshi Habaki','WOTG');
|
|
-- INSERT INTO `synth_recipes` VALUES (33012,0,0,0,0,0,64,0,0,255,0,4101,4243,21,2706,0,0,0,0,0,0,391,391,391,391,1,1,1,1,'Cerulean Desk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33013,0,0,0,0,0,64,0,0,0,0,4099,4241,823,828,829,834,0,0,0,0,12737,13953,13953,13953,1,1,1,1,'White Mitts',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33014,0,0,0,0,0,64,0,0,0,0,4099,4241,820,829,829,0,0,0,0,0,13585,13618,13618,13618,1,1,1,1,'White Cape',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (33015,0,0,0,0,0,64,0,0,255,0,4101,4243,21,2712,0,0,0,0,0,0,390,390,390,390,1,1,1,1,'Carmine Desk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33016,0,0,0,0,0,64,0,0,0,0,4099,4241,8859,0,0,0,0,0,0,0,13585,13585,13585,13585,1,1,1,1,'White Cape','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (33017,0,0,0,0,0,64,0,0,255,0,4101,4243,21,2707,0,0,0,0,0,0,392,392,392,392,1,1,1,1,'Myrtle Desk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33018,0,0,0,0,0,64,19,0,0,0,4099,4241,825,850,851,913,1828,1829,1829,2831,11347,11353,11353,11353,1,1,1,1,'Menetrier\'s Alb','WOTG'); -- BGwiki and JP wiki
|
|
-- INSERT INTO `synth_recipes` VALUES (33019,0,0,0,0,0,64,0,0,255,0,4101,4243,21,2709,0,0,0,0,0,0,393,393,393,393,1,1,1,1,'Ecru Desk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33020,0,0,0,0,22,65,0,0,24,0,4099,4241,746,823,823,828,829,834,834,1110,13742,13743,13743,13743,1,1,1,1,'Aketon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33021,0,0,0,19,0,65,0,0,0,0,4098,4240,651,818,828,0,0,0,0,0,17310,17310,17310,17310,8,12,16,20,'Hyo',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33022,0,0,0,0,52,65,0,0,0,0,4099,4241,752,822,828,0,0,0,0,0,12476,13843,13843,13843,1,1,1,1,'Silk Hat',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33023,0,0,0,0,52,65,0,0,0,0,4099,4241,752,822,828,2340,2340,0,0,0,16079,16080,16080,16080,1,1,1,1,'Silken Hat',NULL); -- BGwiki, FFXIclopedia and JP Wiki
|
|
-- INSERT INTO `synth_recipes` VALUES (33024,0,0,0,0,255,65,0,0,0,0,4099,4241,673,819,826,826,827,827,5351,0,11320,11320,11320,11320,1,1,1,1,'Skeleton Robe','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33025,0,0,0,0,0,66,20,0,0,0,4099,4241,823,828,828,845,847,850,0,0,15242,15243,15243,15243,1,1,1,1,'Crow Beret','COP'); -- BGwiki, FFXIclopedia and JP wiki
|
|
INSERT INTO `synth_recipes` VALUES (33026,0,0,0,0,0,66,0,0,0,0,4099,4241,1965,12611,0,0,0,0,0,0,14492,14492,14492,14492,1,1,1,1,'High Mana Cloak','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33027,0,0,0,0,0,66,0,0,0,0,4102,4244,816,816,816,828,828,1278,1278,0,14249,14250,14250,14250,1,1,1,1,'Opaline Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33028,0,0,0,0,0,66,0,0,0,0,4099,4241,820,1280,1280,0,0,0,0,0,13643,13644,13644,13644,1,1,1,1,'Sarcenet Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33029,0,0,0,0,19,66,0,0,0,0,4099,4241,791,791,823,828,829,0,0,0,12732,13954,13954,13954,1,1,1,1,'Silk Cuffs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33030,0,0,0,0,0,66,50,0,20,0,4102,4244,760,828,828,850,850,1767,2113,2476,16365,16366,16366,16366,1,1,1,1,'Argent Hose','WOTG'); -- FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (33031,0,0,0,0,45,67,0,0,0,0,4099,4241,752,823,828,829,829,0,0,0,12860,12927,12927,12927,1,1,1,1,'Silk Slops',NULL); -- BGwiki and JP wiki
|
|
INSERT INTO `synth_recipes` VALUES (33032,0,0,0,0,45,67,0,0,0,0,4099,4241,752,823,828,2340,2340,0,0,0,15620,15621,15621,15621,1,1,1,1,'Silken Slops',NULL); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (33033,0,0,0,0,0,67,0,0,0,0,4099,4241,820,827,827,827,827,834,834,834,13752,13753,13753,13753,1,1,1,1,'Wool Doublet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33034,0,0,0,0,0,67,0,0,0,0,4099,4241,828,828,2835,0,0,0,0,0,11532,11540,11540,11540,1,1,1,1,'Accura Cape','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33035,0,0,0,0,0,67,0,0,0,0,4098,4240,2149,2149,0,0,0,0,0,0,2292,2292,2292,2292,6,8,10,12,'Apkallu Fletchings','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (33036,0,2011,0,0,0,67,0,0,0,0,4098,4240,2145,2149,2149,2149,2149,2149,2149,0,2292,2292,2292,2292,18,24,30,36,'Apkallu Fletchings','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (33037,0,0,0,0,21,68,16,0,0,0,4099,4241,744,823,828,828,828,834,834,850,14498,14499,14499,14499,1,1,1,1,'Crow Jupon','COP'); -- BGwiki and FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (33038,0,0,0,0,0,68,0,0,0,0,4099,4241,822,828,828,5352,0,0,0,0,16257,16257,16257,16257,1,1,1,1,'Ghost Cape','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33039,0,0,0,0,0,68,0,0,0,0,4099,4241,823,829,13720,0,0,0,0,0,14360,14361,14361,14361,1,1,1,1,'Royal Knight\'s Cloak +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33040,0,0,0,0,0,68,0,0,0,0,4099,4241,822,823,828,828,2340,2340,0,0,14542,14543,14543,14543,1,1,1,1,'Silken Coat',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33041,0,0,0,0,0,68,0,0,0,0,4099,4241,822,823,828,828,829,829,0,0,12604,12652,12652,12652,1,1,1,1,'Silk Coat',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33042,0,0,0,0,0,69,0,0,0,0,4099,4241,817,817,817,817,817,821,0,0,1997,1997,1997,1997,1,1,1,1,'Sailcloth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33043,0,0,0,0,0,69,36,0,0,0,4099,4241,820,826,827,827,850,851,0,0,14374,14375,14375,14375,1,1,1,1,'Field Tunica',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33044,0,0,0,0,53,69,0,0,0,0,4099,4241,746,816,0,0,0,0,0,0,2476,2476,2476,2476,2,4,6,8,'Platinum Silk','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (33045,0,0,0,0,0,69,0,0,0,0,4099,4241,829,932,0,0,0,0,0,0,12503,13851,13851,13851,1,1,1,1,'Silk Headband',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33046,0,2010,0,0,53,69,0,0,0,0,4099,4241,746,746,746,816,816,816,2128,0,2476,2476,2476,2476,6,12,12,12,'Platinum Silk','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (33047,0,0,0,0,0,69,0,0,0,0,4099,4241,822,828,828,829,829,2827,0,0,11341,11349,11349,11349,1,1,1,1,'Vivacity Coat','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33048,0,0,0,0,0,70,0,0,0,0,4099,4241,822,825,828,0,0,0,0,0,2501,2501,2501,2501,1,1,1,1,'Black Puppet Turban','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (33049,0,0,0,0,0,70,0,0,0,0,4099,4241,823,823,823,0,0,0,0,0,13206,13233,13233,13233,1,1,1,1,'Gold Obi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33050,0,0,0,0,0,70,0,0,0,0,4099,4241,822,825,829,0,0,0,0,0,2502,2502,2502,2502,1,1,1,1,'White Puppet Turban','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (33051,0,0,0,0,0,70,0,0,0,0,4099,4241,823,823,828,828,829,836,836,836,13748,13749,13749,13749,1,1,1,1,'Vermillion Cloak',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33052,0,0,0,0,0,70,0,0,0,0,4099,4241,822,828,12478,0,0,0,0,0,13905,13906,13906,13906,1,1,1,1,'Tactician Magician\'s Hat +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33053,0,0,0,0,0,70,0,0,0,0,4099,4241,8860,0,0,0,0,0,0,0,13206,13206,13206,13206,1,1,1,1,'Gold Obi','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (33501,0,0,0,40,0,71,0,0,0,0,4098,4240,664,680,829,829,0,0,0,0,12460,13844,13844,13844,1,1,1,1,'Shinobi Hachigane',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33502,0,0,0,0,19,71,0,0,0,0,4099,4241,795,795,823,828,829,0,0,0,12732,13954,13954,13954,1,1,1,1,'Silk Cuffs',NULL); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (33503,0,0,0,0,19,71,0,0,0,0,4099,4241,795,795,823,828,2340,0,0,0,14955,14956,14956,14956,1,1,1,1,'Silken Cuffs',NULL); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (33504,0,0,0,0,0,71,0,0,7,0,4101,4243,314,823,2709,0,0,0,0,0,387,387,387,387,1,1,1,1,'White 9-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33505,0,0,0,0,0,71,0,0,7,0,4101,4243,316,823,2707,0,0,0,0,0,383,383,383,383,1,1,1,1,'Green 3-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33506,0,0,0,0,0,71,0,0,7,0,4101,4243,316,823,2708,0,0,0,0,0,386,386,386,386,1,1,1,1,'Yellow 3-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33507,0,0,0,0,0,71,0,0,7,0,4101,4243,316,823,2709,0,0,0,0,0,389,389,389,389,1,1,1,1,'White 3-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33508,0,0,0,0,0,71,0,0,7,0,4101,4243,315,823,2706,0,0,0,0,0,379,379,379,379,1,1,1,1,'Blue 6-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33509,0,0,0,0,0,71,0,0,7,0,4101,4243,316,823,2706,0,0,0,0,0,380,380,380,380,1,1,1,1,'Blue 3-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33510,0,0,0,0,0,71,0,0,7,0,4101,4243,315,823,2708,0,0,0,0,0,385,385,385,385,1,1,1,1,'Yellow 6-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33511,0,0,0,0,0,71,0,0,7,0,4101,4243,315,823,2709,0,0,0,0,0,388,388,388,388,1,1,1,1,'White 6-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33512,0,0,0,0,0,71,0,0,7,0,4101,4243,314,823,2706,0,0,0,0,0,378,378,378,378,1,1,1,1,'Blue 9-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33513,0,0,0,0,0,71,0,0,7,0,4101,4243,314,823,2707,0,0,0,0,0,381,381,381,381,1,1,1,1,'Green 9-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33514,0,0,0,0,0,71,0,0,7,0,4101,4243,314,823,2708,0,0,0,0,0,384,384,384,384,1,1,1,1,'Yellow 9-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33515,0,0,0,0,0,71,0,0,7,0,4101,4243,315,823,2707,0,0,0,0,0,382,382,382,382,1,1,1,1,'Green 6-Drawer Almirah','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33516,0,2011,0,0,0,72,0,0,0,0,4098,4240,845,845,845,845,845,845,2145,0,1254,1254,1254,1254,18,24,30,36,'Blk. Chc. Fltchg.','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33517,0,0,0,0,0,72,0,0,0,0,4099,4241,816,828,828,834,834,0,0,0,12724,13997,13997,13997,1,1,1,1,'Battle Bracers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33518,0,0,0,0,0,72,0,0,0,0,4099,4241,822,828,12862,0,0,0,0,0,14277,14278,14278,14278,1,1,1,1,'Tactician Magician\'s Slops +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33519,0,0,0,0,0,72,0,0,0,0,4098,4240,845,845,0,0,0,0,0,0,1254,1254,1254,1254,6,8,10,12,'Blk. Chc. Fltchg.',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33520,0,0,0,0,0,72,0,0,0,0,4099,4241,822,828,12734,0,0,0,0,0,14049,14050,14050,14050,1,1,1,1,'Tactician Magician\'s Cuffs +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33521,0,0,0,0,0,73,0,0,0,0,4099,4241,1966,13206,0,0,0,0,0,0,15460,15460,15460,15460,1,1,1,1,'Deductive Gold Obi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33522,0,0,0,0,0,73,0,0,0,0,4099,4241,1968,13206,0,0,0,0,0,0,15461,15461,15461,15461,1,1,1,1,'Enthralling Gold Obi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33523,0,0,0,0,0,73,0,0,0,0,4099,4241,1967,13206,0,0,0,0,0,0,15459,15459,15459,15459,1,1,1,1,'Sagacious Gold Obi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33524,0,0,0,0,0,73,0,0,0,0,4098,4240,663,819,829,829,829,0,0,0,12972,14082,14082,14082,1,1,1,1,'Shinobi Kyahan',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33525,0,0,0,0,0,73,0,0,0,0,4099,4241,823,823,829,829,829,0,0,0,12868,14240,14240,14240,1,1,1,1,'Silk Slacks',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33526,0,0,0,0,0,73,0,0,0,0,4099,4241,822,828,12606,0,0,0,0,0,14362,14363,14363,14363,1,1,1,1,'Tactician Magician\'s Coat +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33527,0,0,0,0,0,74,0,0,0,0,4099,4241,823,823,829,829,834,0,0,0,12740,14000,14000,14000,1,1,1,1,'Silk Mitts',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33528,0,0,0,0,0,74,9,0,0,0,4099,4241,879,1699,1700,2340,2340,0,0,0,15618,15619,15619,15619,1,1,1,1,'Vendor\'s Slops',NULL); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (33529,0,2010,0,0,0,74,0,0,0,0,4100,4242,2128,2198,2198,2198,2198,2198,2198,0,2199,2199,2199,2199,3,3,3,3,'Sparkstrand Thread','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (33530,1,0,0,0,0,74,0,0,0,0,4100,4242,13579,0,0,0,0,0,0,0,816,816,850,850,4,5,1,2,'Jester\'s Cape (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33531,0,0,0,0,0,74,0,0,0,0,4100,4242,2198,2198,0,0,0,0,0,0,2199,2199,2199,2199,1,1,1,1,'Sparkstrand Thread','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (33532,0,0,0,0,0,74,20,0,0,0,4099,4241,816,829,829,850,850,0,0,0,13579,13620,13620,13620,1,1,1,1,'Jester\'s Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33533,0,0,0,0,0,74,0,0,0,0,4099,4241,820,1281,1281,0,0,0,0,0,13651,13652,13652,13652,1,1,1,1,'Cheviot Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33534,0,0,0,30,0,75,0,0,0,0,4099,4241,663,663,680,819,829,829,0,0,12716,13955,13955,13955,1,1,1,1,'Shinobi Tekko',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33535,0,0,0,0,0,75,0,0,0,0,4099,4241,9499,0,0,0,0,0,0,0,14993,14993,14993,14993,1,1,1,1,'Tabin Bracers','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (33536,0,0,0,0,0,75,0,0,0,0,4096,4238,832,832,832,1163,2011,2011,2011,4509,2010,2010,2010,2010,1,1,1,1,'Wolf Felt','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (33537,0,0,0,0,0,75,0,0,255,0,4101,4243,4,820,2708,0,0,0,0,0,401,401,401,401,1,1,1,1,'Yellow Mahogany Bed','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (33538,0,0,0,0,0,75,0,0,255,0,4101,4243,4,820,2707,0,0,0,0,0,400,400,400,400,1,1,1,1,'Green Mahogany Bed','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (33539,0,0,0,0,0,75,0,0,255,0,4101,4243,4,820,2712,0,0,0,0,0,398,398,398,398,1,1,1,1,'Red Mahogany Bed','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (33540,0,0,0,0,0,75,0,0,255,0,4101,4243,4,820,2706,0,0,0,0,0,399,399,399,399,1,1,1,1,'Blue Mahogany Bed','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (33541,0,0,0,0,0,75,0,0,0,0,4099,4241,2340,12724,0,0,0,0,0,0,14993,14994,14994,14994,1,1,1,1,'Tabin Bracers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33542,0,0,0,0,0,76,0,0,0,0,4099,4241,816,829,829,840,842,0,0,0,12468,13866,13866,13866,1,1,1,1,'Green Beret',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33543,0,0,0,0,0,76,0,0,0,0,4099,4241,821,2199,2199,0,0,0,0,0,2200,2200,2200,2200,1,1,1,1,'Twill Damask','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (33544,0,0,0,0,0,76,0,0,0,0,4099,4241,816,816,821,821,822,822,0,0,1991,1991,1991,1991,1,1,1,1,'Silver Brocade','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33545,0,0,0,37,0,77,0,0,0,0,4098,4240,652,937,1134,1134,0,0,0,0,17309,17309,17309,17309,8,12,16,20,'Pinwheel',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33546,0,0,0,0,0,77,0,0,0,0,4099,4241,648,795,795,827,827,927,1196,0,16124,16124,16124,16124,1,1,1,1,'Qiqirn Hood','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (33547,1,0,0,0,0,77,0,0,0,0,4098,4240,1724,0,0,0,0,0,0,0,2340,2340,2340,2340,2,4,6,8,'Soulflayer Robe (desynth)','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (33548,0,0,0,0,0,77,0,0,0,0,4098,4240,2150,2150,0,0,0,0,0,0,2649,2649,2649,2649,6,8,10,12,'Colibri Fletchings','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (33549,0,0,0,0,0,77,0,0,0,0,4099,4241,823,829,829,829,829,829,0,0,12612,13777,13777,13777,1,1,1,1,'Silk Cloak',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33550,0,0,0,0,0,77,0,0,0,0,4099,4241,821,830,830,830,877,0,0,0,11374,11375,11375,11375,1,1,1,1,'Junhanshi Habaki','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33551,0,2011,0,0,0,77,0,0,0,0,4098,4240,2145,2150,2150,2150,2150,2150,2150,0,2649,2649,2649,2649,18,24,30,36,'Colibri Fletchings','ABYSSEA'); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (33552,0,0,0,0,42,78,0,0,0,0,4099,4241,752,823,828,828,828,828,834,834,12596,12628,12628,12628,1,1,1,1,'Battle Jupon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33553,0,2010,0,0,0,78,0,0,0,0,4100,4242,838,838,838,838,838,838,2128,0,821,821,821,821,3,3,3,3,'Rainbow Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33554,0,0,0,0,0,78,0,0,41,0,4099,4241,816,823,1882,1882,1882,2304,0,0,2704,2704,2704,2704,1,1,1,1,'Oil-Soaked Cloth','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (33555,0,0,0,0,0,78,0,0,0,0,4100,4242,838,838,0,0,0,0,0,0,821,821,821,821,1,1,1,1,'Rainbow Thread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33556,0,0,0,0,0,79,0,0,0,0,4099,4241,816,821,821,0,0,0,0,0,1996,1996,1996,1996,1,1,1,1,'Rainbow Velvet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33557,0,0,0,0,0,79,0,0,0,0,4099,4241,2340,12468,0,0,0,0,0,0,16111,16112,16112,16112,1,1,1,1,'Tabin Beret',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33558,0,0,0,0,0,79,0,0,0,0,4099,4241,819,826,826,829,850,850,0,0,12844,12925,12925,12925,1,1,1,1,'Shinobi Hakama',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33559,0,0,0,0,0,80,0,0,0,0,4099,4241,821,821,822,822,823,823,0,0,13207,13234,13234,13234,1,1,1,1,'Brocade Obi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33560,0,0,0,0,0,80,50,55,0,0,4099,4241,793,793,820,841,841,854,1622,1867,15202,15202,15202,15202,1,1,1,1,'Yagudo Headgear','COP');
|
|
INSERT INTO `synth_recipes` VALUES (33561,0,0,0,0,0,80,0,0,0,0,4099,4241,821,821,821,0,0,0,0,0,830,830,830,830,1,1,1,1,'Rainbow Cloth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33562,0,0,0,0,0,80,22,0,24,0,4099,4241,746,823,823,829,834,834,1110,2829,11345,11351,11351,11351,1,1,1,1,'Alacer Aketon','WOTG'); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (33563,0,0,0,0,0,80,0,0,0,0,4099,4241,680,680,819,829,829,829,0,0,12588,13733,13733,13733,1,1,1,1,'Shinobi Gi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (33564,0,0,0,0,0,80,0,0,0,0,4099,4241,9500,0,0,0,0,0,0,0,13207,13207,13207,13207,1,1,1,1,'Brocade Obi','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (33565,0,0,18,0,0,81,0,0,0,0,4098,4240,713,1843,1844,0,0,0,0,0,1824,1824,1824,1824,1,1,1,1,'Haunted Muleta','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34001,0,0,0,48,0,81,0,0,0,0,4098,4240,664,682,829,829,0,0,0,0,13881,13886,13886,13886,1,1,1,1,'Arhat\'s Jinpachi',NULL); -- BGWiki and JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (34002,0,0,0,0,0,81,0,0,0,0,4099,4241,2340,12596,0,0,0,0,0,0,14571,14572,14572,14572,1,1,1,1,'Tabin Jupon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34003,1,0,0,0,0,81,0,0,0,0,4100,4242,12725,0,0,0,0,0,0,0,834,834,816,821,1,2,2,1,'War Gloves (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34004,0,0,0,0,0,81,0,0,0,0,4099,4241,821,828,828,834,834,0,0,0,12725,13998,13998,13998,1,1,1,1,'War Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34005,0,0,0,0,0,81,0,0,0,0,4099,4241,818,826,13838,0,0,0,0,0,13884,13885,13885,13885,1,1,1,1,'Jester\'s Headband',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34006,0,0,0,0,0,81,0,0,0,0,4098,4240,3504,3504,0,0,0,0,0,0,3506,3506,3506,3506,6,8,10,12,'Peapuk Fletchings','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (34007,0,0,0,0,0,81,0,0,0,0,4101,4243,6,823,2706,0,0,0,0,0,402,402,402,402,1,1,1,1,'Blue Noble\'s Bed','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34008,0,0,0,0,0,81,0,0,0,0,4101,4243,6,823,2707,0,0,0,0,0,403,403,403,403,1,1,1,1,'Green Noble\'s Bed','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34009,0,0,0,0,0,81,0,0,0,0,4099,4241,816,829,829,1110,0,0,0,0,13578,13626,13626,13626,1,1,1,1,'Blue Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34010,0,2011,0,0,0,81,0,0,0,0,4098,4240,2145,3504,3504,3504,3504,3504,3504,0,3506,3506,3506,3506,18,24,30,36,'Peapuk Fletchings','ABYSSEA'); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (34011,0,0,0,0,0,81,0,0,0,0,4101,4243,6,823,2708,0,0,0,0,0,404,404,404,404,1,1,1,1,'Yellow Noble\'s Bed','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34012,0,0,0,0,0,81,0,0,0,0,4101,4243,6,823,2709,0,0,0,0,0,405,405,405,405,1,1,1,1,'White Noble\'s Bed','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34013,0,0,0,45,0,82,0,0,0,0,4098,4240,664,816,829,829,829,0,0,0,14129,14136,14136,14136,1,1,1,1,'Arhat\'s Sune-Ate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34014,0,0,0,0,0,82,0,0,0,0,4099,4241,817,825,14128,0,0,0,0,0,14130,14131,14131,14131,1,1,1,1,'Wulong Shoes',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34015,0,0,0,0,0,82,0,0,0,0,4100,4242,1270,1270,0,0,0,0,0,0,1294,1294,1294,1294,3,3,3,3,'Arachne Thread','NULL');
|
|
INSERT INTO `synth_recipes` VALUES (34016,0,0,0,0,32,82,39,0,0,0,4099,4241,681,2152,2166,2288,2288,2289,0,0,15603,15607,15607,15607,1,1,1,1,'Sipahi Zerehs','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34017,0,2011,0,0,0,82,0,0,0,0,4098,4240,2145,2148,2148,2148,2148,2148,2148,0,2291,2291,2291,2291,18,24,30,36,'Puk Fletchings','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34018,0,2010,0,0,0,82,0,0,0,0,4100,4242,1270,1270,1270,1270,1270,1270,2128,0,1294,1294,1294,1294,9,9,9,9,'Arachne Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34019,0,0,0,0,0,83,0,0,0,0,4099,4241,818,826,12923,0,0,0,0,0,14254,14255,14255,14255,1,1,1,1,'Master\'s Sitabaki',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34020,0,0,0,0,0,83,0,0,0,0,4099,4241,1966,13207,0,0,0,0,0,0,15861,15861,15861,15861,1,1,1,1,'Deductive Brocade Obi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34021,0,0,0,0,0,83,0,0,0,0,4099,4241,823,823,825,830,834,0,0,0,12733,13999,13999,13999,1,1,1,1,'Noble\'s Mitts',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34022,0,0,0,0,0,83,0,0,0,0,4099,4241,823,826,826,855,0,0,0,0,12853,14238,14238,14238,1,1,1,1,'War Brais',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34023,0,0,0,0,0,83,0,0,0,0,4099,4241,1968,13207,0,0,0,0,0,0,15862,15862,15862,15862,1,1,1,1,'Enthralling Brocade Obi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34024,0,0,0,0,0,83,0,0,0,0,4099,4241,1967,13207,0,0,0,0,0,0,15462,15462,15462,15462,1,1,1,1,'Sagacious Brocade Obi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34025,0,0,0,0,0,84,0,0,0,0,4099,4241,819,829,12798,0,0,0,0,0,14024,14025,14025,14025,1,1,1,1,'Devotee\'s Mitts',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34026,0,0,0,0,0,84,0,0,0,0,4099,4241,821,821,821,822,823,1294,0,0,13275,13276,13276,13276,1,1,1,1,'Arachne Obi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34027,0,0,0,0,0,84,0,0,0,0,4099,4241,823,823,828,830,830,0,0,0,12861,14239,14239,14239,1,1,1,1,'Noble\'s Slacks',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34028,0,0,0,0,0,85,0,0,0,0,4099,4241,817,825,13728,0,0,0,0,0,13800,13801,13801,13801,1,1,1,1,'Master\'s Gi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34029,0,0,0,0,0,85,0,0,0,0,4099,4241,820,2539,2539,0,0,0,0,0,2537,2537,2537,2537,1,1,1,1,'Cilice','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34030,0,0,0,0,45,85,0,0,0,0,4099,4241,761,2166,2289,2289,0,0,0,0,16061,16067,16067,16067,1,1,1,1,'Sipahi Turban','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34031,0,0,0,0,0,85,0,0,0,0,4099,4241,9501,0,0,0,0,0,0,0,12504,12504,12504,12504,1,1,1,1,'Rainbow Headband','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34032,0,0,0,0,0,86,0,0,0,0,4099,4241,817,825,14005,0,0,0,0,0,14026,14027,14027,14027,1,1,1,1,'Hailstorm Tekko',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34033,0,0,0,0,51,86,41,0,0,0,4099,4241,745,823,828,828,834,834,855,855,12597,13771,13771,13771,1,1,1,1,'War Aketon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34034,0,0,0,0,0,86,0,0,0,0,4099,4241,830,932,0,0,0,0,0,0,12504,13858,13858,13858,1,1,1,1,'Rainbow Headband',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34035,0,0,0,0,0,86,0,0,0,0,4099,4241,816,816,821,821,823,823,0,0,1999,1999,1999,1999,1,1,1,1,'Gold Brocade','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34036,0,0,0,0,0,87,0,0,0,0,4099,4241,822,823,823,828,828,829,830,831,12605,13774,13774,13774,1,1,1,1,'Noble\'s Tunic',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34037,0,0,0,0,0,87,0,0,0,0,4099,4241,819,829,13622,0,0,0,0,0,13629,13630,13630,13630,1,1,1,1,'Peace Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34038,0,0,0,49,0,87,0,0,0,0,4099,4241,664,664,680,819,829,829,0,0,14023,14028,14028,14028,1,1,1,1,'Arhat\'s Tekko',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34039,0,0,0,0,0,87,0,0,0,0,4099,4241,820,1279,1279,0,0,0,0,0,13649,13650,13650,13650,1,1,1,1,'Taffeta Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34040,0,2011,0,0,0,87,0,0,0,0,4098,4240,2145,3941,3941,3941,3941,3941,3941,0,3943,3943,3943,3943,18,24,30,36,'Chapuli Fletchings','SOA'); -- BGwiki and FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (34041,0,0,0,0,0,87,0,0,0,0,4098,4240,3941,3941,0,0,0,0,0,0,3943,3943,3943,3943,6,8,10,12,'Chapuli Fletchings','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (34042,0,0,0,0,21,88,0,0,59,0,4099,4241,746,823,823,829,834,834,1133,0,13772,13773,13773,13773,1,1,1,1,'Bloody Aketon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34043,0,0,0,0,0,88,0,0,0,0,4099,4241,817,825,13732,0,0,0,0,0,13798,13799,13799,13799,1,1,1,1,'Gaia Doublet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34044,0,0,0,0,0,88,0,0,0,0,4100,4242,2173,2173,0,0,0,0,0,0,2304,2304,2304,2304,1,1,1,1,'Wamoura Silk','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34045,0,0,0,0,0,88,0,0,0,0,4099,4241,816,828,828,829,850,850,0,0,14253,14256,14256,14256,1,1,1,1,'Arhat\'s Hakama',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34046,0,2010,0,0,0,88,0,0,0,0,4100,4242,2128,2173,2173,2173,2173,2173,2173,0,2304,2304,2304,2304,3,3,3,3,'Wamoura Silk','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34047,0,0,0,0,0,89,0,0,0,0,4099,4241,820,827,13839,0,0,0,0,0,13882,13883,13883,13883,1,1,1,1,'Corsair\'s Hat',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34048,0,0,0,0,0,89,0,0,0,0,4100,4242,2337,2337,0,0,0,0,0,0,2304,2304,2304,2304,1,1,1,1,'Wamoura Silk','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34049,0,0,0,21,0,89,0,0,0,0,4099,4241,666,666,821,828,829,830,0,0,13795,13802,13802,13802,1,1,1,1,'Arhat\'s Gi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34050,0,0,0,0,0,89,0,0,0,0,4099,4241,822,823,829,829,830,1132,1132,1132,13779,13780,13780,13780,1,1,1,1,'Black Cloak',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34051,0,0,0,0,0,89,0,0,0,0,4099,4241,2304,2304,2304,0,0,0,0,0,2289,2289,2289,2289,1,1,1,1,'Wamoura Cloth','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34052,0,0,0,60,0,90,0,0,0,0,4099,4241,664,664,682,682,821,1132,1132,1132,12617,13770,13770,13770,1,1,1,1,'War Shinobi Gi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34053,0,0,0,0,0,90,0,0,0,0,4099,4241,821,821,821,821,822,823,0,0,13208,13235,13235,13235,1,1,1,1,'Rainbow Obi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34054,0,0,0,0,0,90,0,0,0,0,4099,4241,9502,0,0,0,0,0,0,0,13208,13208,13208,13208,1,1,1,1,'Rainbow Obi','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34055,0,0,0,0,0,90,0,0,0,0,4099,4241,818,826,13729,0,0,0,0,0,13796,13797,13797,13797,1,1,1,1,'Bishop\'s Robe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34056,1,0,0,0,0,90,0,0,0,0,4100,4242,2334,0,0,0,0,0,0,0,2304,2304,2304,787,2,2,2,1,'Poroggo Hat (desynth)','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34057,1,0,0,0,0,90,0,0,0,0,4098,4240,2334,0,0,0,0,0,0,0,2289,2289,2289,2289,1,2,3,4,'Poroggo Hat (desynth)','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34058,0,0,0,0,0,82,0,0,0,0,4098,4240,2148,2148,0,0,0,0,0,0,2291,2291,2291,2291,6,8,10,12,'Puk Fletchings','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34501,0,0,0,42,0,91,41,0,0,0,4098,4240,664,682,855,1132,0,0,0,0,13925,13926,13926,13926,1,1,1,1,'Rasetsu Jinpachi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34502,0,0,0,0,0,91,0,0,0,0,4099,4241,821,821,823,823,1313,1313,0,0,1409,1409,1409,1409,1,1,1,1,'Siren\'s Macrame',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34503,0,0,0,0,51,91,0,0,0,0,4099,4241,823,828,828,828,1271,1619,0,0,15153,15154,15154,15154,1,1,1,1,'Sha\'ir Turban','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34504,0,0,0,0,21,92,34,0,0,0,4099,4241,792,821,828,828,829,851,851,0,13929,13930,13930,13930,1,1,1,1,'Errant Hat',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34505,0,0,0,44,0,92,41,0,0,0,4098,4240,664,816,855,855,1764,0,0,0,13002,15336,15336,15336,1,1,1,1,'Yasha Sune-Ate','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34506,0,0,0,43,0,92,43,0,0,0,4098,4240,664,816,855,855,1132,0,0,0,14178,14179,14179,14179,1,1,1,1,'Rasetsu Sune-Ate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34507,0,0,0,0,54,92,0,0,0,0,4099,4241,2275,2748,2756,2825,2825,0,0,0,12213,12213,12213,12213,1,1,1,1,'Ebon Mitts','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34508,0,0,0,0,0,92,0,0,0,0,4100,4242,1712,1712,0,0,0,0,0,0,1713,1713,1713,1713,1,1,1,1,'Cashmere Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34509,0,0,0,0,0,92,0,0,0,0,4100,4242,1712,1712,1712,1712,1712,1712,2128,0,1713,1713,1713,1713,3,3,3,3,'Cashmere Thread','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34510,0,0,0,0,0,92,0,0,0,0,4099,4241,9130,10312,0,0,0,0,0,0,27131,27132,27132,27132,1,1,1,1,'Vexed Cuffs','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (34511,0,0,0,0,51,92,31,0,0,0,4099,4241,728,745,823,823,829,830,1271,1409,185,185,185,185,1,1,1,1,'Rook Banner','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34512,0,0,0,0,0,92,0,0,0,0,4099,4241,1369,9130,0,0,0,0,0,0,27040,27041,27041,27041,1,1,1,1,'Bewitched Mitts','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34513,0,0,0,0,0,93,51,0,0,0,4099,4241,823,828,828,828,855,1279,0,0,14315,14316,14316,14316,1,1,1,1,'Sha\'ir Seraweels','COP'); -- BG Wiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (34514,0,2011,0,0,0,93,0,0,0,0,4098,4240,843,843,843,843,843,843,2145,0,1417,1417,1417,1417,18,24,30,36,'Giant Bird Fletchings','COP'); -- BGwiki and FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (34515,0,0,0,48,0,93,0,0,0,0,4099,4241,682,682,823,828,1699,1764,0,0,15392,15394,15394,15394,1,1,1,1,'Hachiman Hakama','COP'); -- wiki, BG, JPwiki, AH checked 25/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (34516,0,0,0,0,0,93,0,0,0,0,4098,4240,843,843,0,0,0,0,0,0,1417,1417,1417,1417,6,8,10,12,'Giant Bird Fletchings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34517,0,0,0,0,50,93,42,0,0,0,4099,4241,828,828,855,2152,2340,2470,2476,0,2449,2450,2450,2450,1,1,1,1,'Cursed Hat',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (34518,0,0,0,0,0,93,0,0,0,0,4099,4241,1371,9130,0,0,0,0,0,0,27216,27217,27217,27217,1,1,1,1,'Bewitched Slacks','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34519,0,0,0,0,0,93,60,0,0,0,4099,4241,817,855,855,1711,2825,2825,0,0,12285,12285,12285,12285,1,1,1,1,'Ebon Clogs','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34520,0,0,0,0,0,93,0,0,0,0,4099,4241,9130,10592,0,0,0,0,0,0,27316,27317,27317,27317,1,1,1,1,'Vexed Tights','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34521,0,0,0,0,0,93,0,0,0,0,4099,4241,9130,10590,0,0,0,0,0,0,27312,27313,27313,27313,1,1,1,1,'Vexed Kecks','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34522,1,0,0,0,0,94,0,0,0,0,4100,4242,13587,0,0,0,0,0,0,0,821,821,821,821,3,4,5,6,'Rainbow Cape (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34523,0,0,0,0,0,94,26,0,0,0,4099,4241,821,828,828,829,829,851,0,0,14301,14302,14302,14302,1,1,1,1,'Errant Slops',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34524,0,0,0,0,0,94,0,0,0,0,4099,4241,9130,10426,0,0,0,0,0,0,25623,25624,25624,25624,1,1,1,1,'Vexed Bonnet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34525,0,0,0,41,0,94,41,0,0,0,4099,4241,664,664,682,819,855,1764,0,0,13957,14882,14882,14882,1,1,1,1,'Yasha Tekko','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34526,0,0,0,0,0,94,0,0,0,0,4099,4241,821,13881,13881,0,0,0,0,0,13910,13949,13949,13949,1,1,1,1,'Roshi Jinpachi',NULL); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (34527,0,0,0,0,0,94,0,0,0,0,4099,4241,9130,10428,0,0,0,0,0,0,25627,25628,25628,25628,1,1,1,1,'Vexed Mitra','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34528,0,0,0,0,0,94,0,0,0,0,4099,4241,816,830,830,0,0,0,0,0,13587,13627,13627,13627,1,1,1,1,'Rainbow Cape',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34529,0,2011,0,0,0,95,0,0,0,0,4098,4240,2145,4016,4016,4016,4016,4016,4016,0,3948,3948,3948,3948,18,24,30,36,'Tulfaire Fletchings','SOA'); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (34530,0,0,0,0,0,95,0,0,0,0,4099,4241,1713,1713,1713,0,0,0,0,0,1714,1714,1714,1714,1,1,1,1,'Cashmere Cloth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34531,0,0,0,0,45,95,31,0,0,0,4099,4241,828,828,2152,2340,2340,2473,2476,0,2455,2456,2456,2456,1,1,1,1,'Cursed Trews',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (34532,0,0,0,0,0,95,0,0,0,0,4102,4244,821,828,829,829,829,830,1278,1278,14384,14385,14385,14385,1,1,1,1,'Opaline Dress',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34533,0,0,0,0,0,95,0,0,0,0,4099,4241,820,821,822,823,1163,1163,0,0,13212,13188,13188,13188,1,1,1,1,'Tarutaru Sash',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34534,0,0,0,41,0,95,41,0,0,0,4099,4241,664,664,680,819,855,1132,0,0,14819,14820,14820,14820,1,1,1,1,'Rasetsu Tekko',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34535,0,0,0,0,0,95,0,0,0,0,4099,4241,844,12469,0,0,0,0,0,0,13950,13951,13951,13951,1,1,1,1,'Elite Beret',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34536,0,0,0,60,0,95,50,0,0,0,4099,4241,664,664,2275,2825,2825,0,0,0,12249,12249,12249,12249,1,1,1,1,'Ebon Slops','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34537,0,0,0,0,0,95,0,0,0,0,4099,4241,1367,9130,0,0,0,0,0,0,26864,26865,26865,26865,1,1,1,1,'Bewitched Dalmatica','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34538,0,0,0,0,0,95,0,0,0,0,4098,4240,4016,4016,0,0,0,0,0,0,3948,3948,3948,3948,6,8,10,12,'Tulfaire Fletchings','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (34539,0,0,0,0,0,95,0,0,0,0,4099,4241,9130,10249,0,0,0,0,0,0,25700,25701,25701,25701,1,1,1,1,'Vexed Bliaut','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34540,0,0,0,0,0,95,0,0,0,0,4099,4241,9503,0,0,0,0,0,0,0,13212,13212,13212,13212,1,1,1,1,'Tarutaru Sash','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34541,0,0,0,41,0,96,35,0,0,0,4099,4241,664,816,828,828,850,855,1764,0,12847,15398,15398,15398,1,1,1,1,'Yasha Hakama','COP'); -- 2022.03.06 FFXIclopedia and JPWiki agree
|
|
INSERT INTO `synth_recipes` VALUES (34542,0,2010,0,0,0,96,0,0,0,0,4100,4242,2128,4026,4026,4026,4026,4026,4026,0,4027,4027,4027,4027,3,3,3,3,'Akaso Thread','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (34543,0,0,0,0,0,96,0,0,0,0,4099,4241,821,957,2856,13568,0,0,0,0,19240,19242,19242,19242,1,1,1,1,'Aumoniere','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34544,0,0,0,0,0,96,0,0,0,0,4100,4242,4026,4026,0,0,0,0,0,0,4027,4027,4027,4027,1,1,1,1,'Akaso Thread','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (34545,0,0,0,0,0,96,0,0,0,0,4099,4241,823,823,828,834,1769,0,0,0,14875,14877,14877,14877,1,1,1,1,'Blessed Mitts','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34546,0,0,0,0,0,96,0,0,0,0,4099,4241,823,827,830,834,1313,0,0,0,1368,1369,1369,1369,1,1,1,1,'Cursed Mitts',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34547,0,0,0,0,50,96,30,0,0,0,4099,4241,761,821,828,829,829,830,830,851,14380,14381,14381,14381,1,1,1,1,'Errant Houppelande',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34548,0,0,0,0,0,97,0,0,0,0,4099,4241,823,823,828,830,1769,0,0,0,15391,15393,15393,15393,1,1,1,1,'Blessed Trousers','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34549,0,0,0,51,0,97,46,0,0,0,4099,4241,664,666,821,828,855,855,1764,1764,12618,14442,14442,14442,1,1,1,1,'Yasha Samue','COP');
|
|
INSERT INTO `synth_recipes` VALUES (34550,0,0,0,0,0,97,60,0,0,0,4099,4241,2275,2756,2825,2825,0,0,0,0,12141,12141,12141,12141,1,1,1,1,'Ebon Beret','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34551,0,0,0,0,0,97,0,0,0,0,4099,4241,823,828,828,830,1409,0,0,0,1370,1371,1371,1371,1,1,1,1,'Cursed Slacks',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34552,0,0,0,0,0,97,0,0,0,0,4099,4241,4027,4027,4027,0,0,0,0,0,4028,4028,4028,4028,1,1,1,1,'Akaso Cloth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (34553,0,0,0,41,0,97,35,0,0,0,4099,4241,664,816,828,828,850,855,1132,0,14299,14300,14300,14300,1,1,1,1,'Rasetsu Hakama',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34554,0,0,0,0,51,97,46,0,0,0,4099,4241,828,828,828,2152,2340,2340,2471,2476,2451,2452,2452,2452,1,1,1,1,'Cursed Coat',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (34555,0,0,0,0,0,98,0,0,0,0,4099,4241,816,816,816,821,821,1294,0,0,2705,2705,2705,2705,1,1,1,1,'Foulard','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34556,0,0,0,0,0,98,0,0,0,0,4099,4241,821,830,12995,0,0,0,0,0,14196,14197,14197,14197,1,1,1,1,'Dance Shoes',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34557,0,0,0,0,24,98,26,0,0,0,4099,4241,798,798,823,829,830,850,0,0,14078,14079,14079,14079,1,1,1,1,'Errant Cuffs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34558,0,0,0,0,0,98,0,0,0,0,4099,4241,3550,3550,3550,0,0,0,0,0,3551,3551,3551,3551,1,1,1,1,'Wyrdweave','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (34559,0,0,0,52,0,99,48,0,0,0,4099,4241,664,666,821,828,855,855,1132,1132,14376,14377,14377,14377,1,1,1,1,'Rasetsu Samue',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34560,0,0,0,0,54,99,33,0,0,0,4099,4241,813,813,828,879,2340,2472,2476,0,2453,2454,2454,2454,1,1,1,1,'Cursed Cuffs',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
-- INSERT INTO `synth_recipes` VALUES (34561,0,0,0,0,0,99,255,0,0,0,4099,4241,821,8751,8751,8976,8988,0,0,0,27991,27992,27992,27992,1,1,1,1,'Revealer\'s Mitts','SOA'); -- 2022.03.06 sub leather level unknown
|
|
INSERT INTO `synth_recipes` VALUES (34562,0,0,0,0,0,99,0,0,0,0,4099,4241,821,823,2166,2166,2287,2304,0,0,15891,15892,15892,15892,1,1,1,1,'Al Zahbi Sash','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (34563,0,0,0,0,0,100,41,0,20,0,4102,4244,760,822,828,829,1767,1769,2113,2476,11310,11311,11311,11311,1,1,1,1,'Argent Coat','WOTG'); -- 2022.03.06 FFXIclopedia and JPWiki agree
|
|
-- INSERT INTO `synth_recipes` VALUES (34564,0,0,0,0,0,100,255,0,0,0,4099,4241,826,8751,8751,8976,8988,0,0,0,27228,27229,27229,27229,1,1,1,1,'Revealer\'s Pants','SOA'); -- 2022.03.06 sub leather level unknown
|
|
INSERT INTO `synth_recipes` VALUES (34565,0,0,0,0,0,100,0,0,0,0,4098,4240,9147,9147,0,0,0,0,0,0,9172,9172,9172,9172,6,8,10,12,'Porxie Fletchings','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34566,0,0,0,0,60,100,60,0,0,0,4099,4241,744,760,862,1279,2275,2756,2825,2825,12177,12177,12177,12177,1,1,1,1,'Ebon Frock','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (34567,0,0,0,0,0,100,60,0,0,0,4099,4241,761,823,828,828,830,851,862,1409,1366,1367,1367,1367,1,1,1,1,'Cursed Dalmatica',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (34568,0,0,0,0,60,100,60,0,0,0,4099,4241,821,1764,1997,1998,2170,2275,2330,2340,14539,14540,14540,14540,1,1,1,1,'Kyudogi',NULL); -- 2022.03.06 JPWiki Cloth 100 Gold 60 Leather 60 only one with both sub specified all agree on cloth
|
|
INSERT INTO `synth_recipes` VALUES (34569,0,2011,0,0,0,100,0,0,0,0,4098,4240,2145,9147,9147,9147,9147,9147,9147,0,9172,9172,9172,9172,18,24,30,36,'Porxie Fletchings','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (34570,0,0,0,0,0,100,0,0,0,0,4099,4241,2199,3551,3551,0,0,0,0,0,11000,11001,11001,11001,1,1,1,1,'Swith Cape','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (34571,0,0,0,0,0,102,0,0,0,0,4099,4241,822,823,823,828,828,830,1769,1769,14436,14438,14438,14438,1,1,1,1,'Blessed Bliaut','COP');
|
|
INSERT INTO `synth_recipes` VALUES (35001,0,0,0,0,0,100,0,0,0,0,4099,4241,821,1132,13629,0,0,0,0,0,13656,13657,13657,13657,1,1,1,1,'Errant Cape',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (35002,0,0,0,0,0,101,255,0,0,0,4099,4241,826,826,8751,8751,8751,8976,8988,0,26885,26886,26886,26886,1,1,1,1,'Revealer\'s Tunic','SOA'); -- 2022.03.06 JPWiki Cloth 101 leather 59-63 BGWiki agree with cloth
|
|
INSERT INTO `synth_recipes` VALUES (35003,0,0,0,0,0,102,0,0,0,0,4099,4241,820,2010,2010,2340,2476,2751,0,0,10348,10349,10349,10349,1,1,1,1,'Chelona Trousers','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35004,0,0,0,0,0,103,50,0,0,0,4099,4241,913,1963,1998,3551,3551,3551,0,0,10414,10415,10415,10415,1,1,1,1,'Spolia Chapeau','ABYSSEA'); -- 2022.03.06 FFXIclopedia and JPWiki agree
|
|
INSERT INTO `synth_recipes` VALUES (35005,0,0,0,0,30,103,52,0,0,0,4099,4241,1828,2530,2876,3545,0,0,0,0,10307,10312,10312,10312,1,1,1,1,'Hexed Cuffs','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35006,0,0,0,0,0,103,50,0,0,0,4099,4241,1963,1963,1998,3550,3551,0,0,0,10579,10580,10580,10580,1,1,1,1,'Spolia Trews','ABYSSEA'); -- 2022.03.06 FFXIclopedia and JPWiki agree
|
|
INSERT INTO `synth_recipes` VALUES (35007,0,0,0,0,0,103,50,0,0,0,4099,4241,1963,1998,3551,3551,3551,0,0,0,10548,10549,10549,10549,1,1,1,1,'Spolia Cuffs','ABYSSEA'); -- 2022.03.06 FFXIclopedia and JPWiki agree
|
|
INSERT INTO `synth_recipes` VALUES (35008,0,0,0,0,0,103,0,0,0,0,4099,4241,744,2288,2288,2304,2476,2751,0,0,10318,10319,10319,10319,1,1,1,1,'Chelona Gloves','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35009,0,0,0,0,0,103,0,0,0,0,4099,4241,823,829,2359,2359,4028,8708,0,0,28040,28041,28041,28041,1,1,1,1,'Haruspex Cuffs','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (35010,0,0,0,0,0,104,0,0,0,0,4099,4241,767,1110,1991,2010,2304,2476,2751,3550,10436,10437,10437,10437,1,1,1,1,'Chelona Hat','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35011,0,0,0,0,0,105,0,0,0,0,4099,4241,3545,14080,0,0,0,0,0,0,10647,10648,10648,10648,1,1,1,1,'Areion Boots','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35012,0,0,0,0,0,105,0,0,0,0,4099,4241,9251,9251,9251,0,0,0,0,0,9252,9252,9252,9252,1,1,1,1,'Khoma Cloth','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35013,0,0,0,0,49,105,0,0,0,0,4099,4241,828,837,2876,3544,0,0,0,0,10421,10426,10426,10426,1,1,1,1,'Hexed Bonnet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35014,0,0,0,0,0,105,50,0,0,0,4099,4241,764,913,1629,1963,1998,3550,3551,3551,10498,10499,10499,10499,1,1,1,1,'Spolia Saio','ABYSSEA'); -- 2022.03.06 FFXIclopedia and JPWiki agree
|
|
INSERT INTO `synth_recipes` VALUES (35015,0,0,0,0,0,105,0,0,0,0,4099,4241,821,821,823,823,1313,8727,0,0,8728,8728,8728,8728,1,1,1,1,'Sif\'s Macrame','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (35016,0,0,0,0,0,105,0,0,0,0,4099,4241,1409,8728,8728,9075,21393,0,0,0,21394,21395,21395,21395,1,1,1,1,'Sancus Sachet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35017,0,0,0,0,0,106,0,0,0,0,4099,4241,767,878,1110,1991,2288,2304,2751,3550,10274,10275,10275,10275,1,1,1,1,'Chelona Blazer','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35018,0,0,0,0,0,106,0,0,0,0,4099,4241,752,822,823,1132,4028,8708,0,0,27750,27751,27751,27751,1,1,1,1,'Haruspex Hat','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (35019,0,0,0,0,0,106,0,0,0,0,4098,4240,3941,9147,0,0,0,0,0,0,4084,4084,4084,4084,6,8,10,12,'Mixed Fletchings','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35020,0,2011,0,0,0,106,0,0,0,0,4098,4240,2145,3941,3941,3941,9147,9147,9147,0,4084,4084,4084,4084,18,24,30,36,'Mixed Fletchings','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (35021,0,0,0,0,0,107,255,0,0,0,4099,4241,816,8728,8751,8754,0,0,0,0,28601,28602,28602,28602,1,1,1,1,'Seshaw Cape','SOA'); -- 2022.03.06 FFXIclopedia, JPWiki and BGWiki sub leather level unknown
|
|
INSERT INTO `synth_recipes` VALUES (35022,0,0,0,0,0,107,60,0,0,0,4099,4241,822,822,1828,2824,2875,3545,0,0,10587,10592,10592,10592,1,1,1,1,'Hexed Tights','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35023,0,0,0,0,0,107,0,0,0,0,4099,4241,752,823,1132,1132,4028,8708,0,0,28180,28181,28181,28181,1,1,1,1,'Haruspex Slops','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (35024,0,0,0,0,30,108,50,0,0,0,4099,4241,823,2497,2876,3545,0,0,0,0,10423,10428,10428,10428,1,1,1,1,'Hexed Mitra','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35025,0,0,0,0,0,108,0,0,0,0,4099,4241,4074,4075,4076,9251,9251,9251,9251,0,26339,26339,26339,26339,1,1,1,1,'Khoma Belt','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35026,0,0,0,0,0,109,60,0,0,0,4099,4241,823,828,837,1279,3544,3546,3548,0,10585,10590,10590,10590,1,1,1,1,'Hexed Kecks','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35027,0,0,0,0,0,109,0,0,0,0,4099,4241,761,823,828,829,829,829,4028,8708,27893,27894,27894,27894,1,1,1,1,'Haruspex Coat','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (35028,0,0,55,0,0,110,0,0,0,0,4102,4244,4014,9062,9245,9861,9869,0,0,0,25507,25508,25509,25509,1,1,1,1,'Mirage Stole','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35029,0,0,0,0,30,110,60,0,0,0,4099,4241,822,823,828,2497,2876,3545,3545,0,10244,10249,10249,10249,1,1,1,1,'Hexed Bliaut','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (35030,0,0,55,0,0,110,0,0,0,0,4102,4244,4014,9062,9245,9849,9869,0,0,0,25435,25436,25437,25437,1,1,1,1,'Sorcerer\'s Stole','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35031,0,0,55,0,0,110,0,0,0,0,4102,4244,4014,9062,9245,9865,9869,0,0,0,25531,25532,25533,25533,1,1,1,1,'Argute Stole','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (35501,0,0,0,0,0,111,255,0,0,0,4099,4241,816,1998,1998,3981,3981,0,0,0,28644,28645,28645,28645,1,1,1,1,'Ogapepo Cape','SOA'); -- 2022.03.06 FFXIclopedia and JPWiki agree to Cloth 110-111 BGWiki state cloth 111 sub leather level unknown
|
|
INSERT INTO `synth_recipes` VALUES (35502,0,0,0,0,70,112,0,0,0,0,4099,4241,1368,8722,8728,9130,0,0,0,0,27040,27041,27041,27041,1,1,1,1,'Bewitched Mitts','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35503,0,0,0,0,70,112,0,0,0,0,4099,4241,3981,8722,9130,10307,0,0,0,0,27131,27132,27132,27132,1,1,1,1,'Vexed Cuffs','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35504,0,0,0,0,0,113,0,60,0,0,4098,4240,937,4012,4013,0,0,0,0,0,21378,21379,21379,21379,1,1,1,1,'Yetshila','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (35505,0,0,0,0,70,113,0,0,0,0,4099,4241,1370,8722,8728,9130,0,0,0,0,27216,27217,27217,27217,1,1,1,1,'Bewitched Slacks','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35506,0,0,0,0,0,113,70,0,0,0,4099,4241,4013,8988,9130,10585,0,0,0,0,27312,27313,27313,27313,1,1,1,1,'Vexed Kecks','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35507,0,0,0,0,0,113,0,0,70,0,4099,4241,3981,8985,9130,10587,0,0,0,0,27316,27317,27317,27317,1,1,1,1,'Vexed Tights','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35508,0,0,0,0,0,114,70,0,0,0,4099,4241,3981,8982,9130,10423,0,0,0,0,25627,25628,25628,25628,1,1,1,1,'Vexed Mitra','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35509,0,0,0,0,70,114,0,0,0,0,4099,4241,4013,8722,9130,10421,0,0,0,0,25623,25624,25624,25624,1,1,1,1,'Vexed Bonnet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35510,0,0,0,0,70,115,0,0,0,0,4099,4241,1366,8722,8728,9130,0,0,0,0,26864,26865,26865,26865,1,1,1,1,'Bewitched Dalmatica','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35511,0,0,0,0,70,115,0,0,0,0,4098,4240,745,823,829,3449,3544,9006,9006,0,26877,26878,26878,26878,1,1,1,1,'Foppish Tunica', 'SOA');
|
|
INSERT INTO `synth_recipes` VALUES (35512,0,0,0,0,0,115,70,0,0,0,4099,4241,3981,8982,9130,10244,0,0,0,0,25700,25701,25701,25701,1,1,1,1,'Vexed Bliaut','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (35513,0,0,0,0,0,118,0,0,0,0,4099,4241,1712,3544,9006,0,0,0,0,0,26335,26336,26336,26336,1,1,1,1,'Klouskap Sash','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (35514,0,0,0,255,0,255,255,0,0,0,4099,4241,4077,4078,4079,26339,0,0,0,0,26340,26341,26341,26341,1,1,1,1,'Moonbow Belt','ROV'); -- 2022.03.06 FFXIclopedia and BGWiki agree to Cloth between level 115-120 sub craft Smithing 58-70, Leather level unknown
|
|
-- INSERT INTO `synth_recipes` VALUES (35515,0,0,0,0,0,255,0,0,255,0,4099,4241,822,823,9251,9251,9251,9251,9893,0,26356,26357,26357,26357,1,1,1,1,'Skrymir Cord','ROV'); -- 2022.03.06 JPWiki and BGWiki agree on ingrediant, FFXIclopedia and JPWiki agree to Cloth between level 115-119 BGWiki 115-120 sub craft alchemy level unknown
|
|
-- INSERT INTO `synth_recipes` VALUES (35516,0,2014,255,0,255,255,0,0,0,0,4102,4244,9062,9064,9245,9840,9844,9845,9845,9848,22033,22034,22035,22035,1,1,1,1,'Cleric\'s Wand','ROV'); -- 2022.03.06 FFXIclopedia and JPWiki agree to Cloth between level 111-113 BGWiki 111-114 sub craft gold and wookworking level unknown
|
|
-- INSERT INTO `synth_recipes` VALUES (35517,0,0,0,0,0,255,255,0,0,0,4099,4241,4078,4082,9253,0,0,0,0,0,26268,26269,26269,26269,1,1,1,1,'Moonbeam Cape','ROV'); -- 2022.03.06 FFXIclopedia and BGWiki agree to Cloth between level 115-120 sub craft leather level unknown
|
|
-- INSERT INTO `synth_recipes` VALUES (35518,0,2013,0,0,0,255,255,0,0,0,4099,4241,664,4012,9003,9251,9251,9251,0,0,25972,25973,25973,25973,1,1,1,1,'Baayami Sabots','ROV'); -- 2022.03.06 FFXIclopedia and JPWiki agree to Cloth between level 115-119 BGWiki 115-120 sub craft leather level unknown
|
|
-- INSERT INTO `synth_recipes` VALUES (35519,0,2013,0,0,0,255,255,0,0,0,4099,4241,664,664,4012,9003,9251,9251,9251,0,25992,25993,25993,25993,1,1,1,1,'Baayami Cuffs','ROV'); -- 2022.03.06 FFXIclopedia and JPWiki agree to Cloth between level 115-119 BGWiki 115-120 sub craft leather level unknown
|
|
-- INSERT INTO `synth_recipes` VALUES (35520,0,2013,0,0,0,255,255,0,0,0,4099,4241,664,682,4012,9003,9251,9252,0,0,25905,25906,25906,25906,1,1,1,1,'Baayami Slops','ROV'); -- 2022.03.06 FFXIclopedia and JPWiki agree to Cloth between level 115-119 BGWiki 115-120 sub craft leather level unknown
|
|
-- INSERT INTO `synth_recipes` VALUES (35521,0,2013,0,0,0,255,255,0,0,0,4099,4241,664,682,4012,9003,9003,9251,9252,0,26541,26542,26542,26542,1,1,1,1,'Baayami Robe','ROV'); -- 2022.03.06 FFXIclopedia and JPWiki agree to Cloth between level 115-119 BGWiki 115-120 sub craft leather level unknown
|
|
-- INSERT INTO `synth_recipes` VALUES (35522,0,2013,0,0,0,255,255,0,0,0,4099,4241,664,682,4012,9003,9251,9251,9251,0,25565,25566,25566,25566,1,1,1,1,'Baayami Hat','ROV'); -- 2022.03.06 FFXIclopedia and JPWiki agree to Cloth between level 115-119 BGWiki 115-120 sub craft leather level unknown
|
|
-- INSERT INTO `synth_recipes` VALUES (35523,0,2014,255,0,255,255,0,0,0,0,4102,4244,9062,9064,9245,9840,9844,9845,9845,9866,22036,22037,22038,22038,1,1,1,1,'Bagua Wand','ROV'); -- 2022.03.06 FFXIclopedia and JPWiki agree to Cloth between level 111-113 BGWiki 111-114 sub craft gold and wookworking level unknown
|
|
INSERT INTO `synth_recipes` VALUES (39901,1,0,0,0,0,11,0,0,0,0,4100,4242,12456,0,0,0,0,0,0,0,817,817,817,817,3,4,5,6,'Hachimaki (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39902,1,0,0,0,0,22,0,0,0,0,4100,4242,12713,0,0,0,0,0,0,0,706,817,818,818,1,1,5,6,'Cotton Tekko (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia says skill cap at synth level but verification needed
|
|
INSERT INTO `synth_recipes` VALUES (39903,1,0,0,0,0,56,0,0,0,0,4098,4240,2153,0,0,0,0,0,0,0,2288,1155,1888,2305,1,1,1,1,'Qiqirn Sandbag (desynth)','TOAU'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (39904,1,0,0,0,0,30,0,0,0,0,4100,4242,17405,0,0,0,0,0,0,0,891,840,937,937,1,1,1,1,'Fly Lure (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39905,1,0,0,0,0,85,0,0,0,0,4100,4242,12504,0,0,0,0,0,0,0,932,932,821,821,1,1,1,1,'Rainbow Headband (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39906,1,0,0,0,0,12,0,0,0,0,4100,4242,12712,0,0,0,0,0,0,0,706,817,817,817,1,2,5,6,'Tekko (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39907,1,0,0,0,0,99,0,0,0,0,4100,4242,14376,0,0,0,0,0,0,0,855,821,1235,1228,2,1,4,4,'Rasetsu Samue (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia says skill cap at synth level but verification needed
|
|
INSERT INTO `synth_recipes` VALUES (39908,1,0,0,0,0,64,0,0,0,0,4100,4242,12737,0,0,0,0,0,0,0,834,816,820,823,1,4,2,1,'White Mitts (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39909,1,0,0,0,0,94,0,0,0,0,4100,4242,14301,0,0,0,0,0,0,0,851,816,816,821,1,3,6,1,'Errant Slops (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39910,1,0,0,0,0,24,0,0,0,0,4100,4242,12969,0,0,0,0,0,0,0,818,818,818,819,7,8,9,1,'Cotton Kyahan (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39911,1,0,0,0,0,25,0,0,0,0,4100,4242,12857,0,0,0,0,0,0,0,818,818,819,819,2,3,6,7,'Linen Slops (desynth)',NULL); -- Info from xiclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39912,1,0,0,0,0,24,0,0,0,0,4100,4242,14856,0,0,0,0,0,0,0,818,818,834,850,6,10,1,1,'Seer\'s Mitts (desynth)','COP'); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39913,1,0,0,0,0,20,0,0,0,0,4100,4242,12498,0,0,0,0,0,0,0,818,818,818,932,1,2,3,1,'Cotton Headband (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39914,1,0,0,0,0,55,0,0,0,0,4100,4242,12475,0,0,0,0,0,0,0,650,816,816,820,1,2,3,6,'Velvet Hat (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39915,1,0,0,0,0,28,0,0,0,0,4100,4242,12585,0,0,0,0,0,0,0,817,818,818,818,1,7,8,9,'Cotton Dogi (desynth)',NULL); -- 2022.03.03 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39916,1,0,0,0,0,18,0,0,0,0,4100,4242,12584,0,0,0,0,0,0,0,817,817,817,817,7,8,9,10,'Kenpogi (desynth)',NULL); -- 2022.03.03 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39917,1,0,0,0,0,27,0,0,0,0,4100,4242,13204,0,0,0,0,0,0,0,817,818,818,818,1,4,5,6,'Heko Obi (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39918,1,0,0,0,0,60,0,0,0,0,4100,4242,14297,0,0,0,0,0,0,0,819,820,820,820,3,4,6,6,'Field Hose (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39919,1,0,0,0,0,38,0,0,0,0,4100,4242,12586,0,0,0,0,0,0,0,817,819,819,819,1,7,8,9,'Soil Gi (desynth)',NULL); -- 2022.03.03 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39920,1,0,0,0,0,70,0,0,0,0,4100,4242,13206,0,0,0,0,0,0,0,823,823,823,823,1,2,2,2,'Gold Obi (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39921,1,0,0,0,0,98,0,0,0,0,4100,4242,14196,0,0,0,0,0,0,0,819,848,853,821,3,1,1,4,'Dance Shoes (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39922,1,0,0,0,0,5,0,0,0,0,4100,4242,12728,0,0,0,0,0,0,0,817,768,818,818,3,2,3,4,'Cuffs (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39923,1,0,0,0,0,97,0,0,0,0,4100,4242,14299,0,0,0,0,0,0,0,850,816,851,1228,1,4,1,4,'Rst. Hakama (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39924,1,0,0,0,0,88,0,0,0,0,4100,4242,14253,0,0,0,0,0,0,0,850,816,816,816,1,4,6,8,'Arhat\'s Hakama (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39925,1,0,0,0,0,26,0,0,0,0,4100,4242,14422,0,0,0,0,0,0,0,819,819,819,834,6,8,10,3,'Noct Doublet (desynth)','COP'); -- 2022.03.03 Base on FFXIclopedia possibly needing sub leather 20 but not listed
|
|
INSERT INTO `synth_recipes` VALUES (39926,1,0,0,0,0,27,0,0,0,0,4100,4242,12601,0,0,0,0,0,0,0,818,818,819,819,5,7,5,6,'Linen Robe (desynth)',NULL); -- 2022.03.03 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39927,1,0,0,0,0,95,0,0,0,0,4100,4242,13950,0,0,0,0,0,0,0,823,855,855,844,1,1,2,1,'Elite Beret (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39928,1,0,0,0,0,23,0,0,0,0,4100,4242,12729,0,0,0,0,0,0,0,818,819,807,807,3,4,1,2,'Linen Cuffs (desynth)',NULL); -- Info from xiclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39929,1,0,0,0,0,95,0,0,0,0,4100,4242,13212,0,0,0,0,0,0,0,820,822,823,821,1,1,1,1,'Tarutaru Sash (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39930,1,0,0,0,0,9,0,0,0,0,4100,4242,12848,0,0,0,0,0,0,0,817,817,817,817,8,8,8,8,'Brais (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39931,1,0,0,0,0,43,0,0,0,0,4098,4240,1639,0,0,0,0,0,0,0,828,828,828,828,2,3,3,3,'Corse Robe (desynth)','COP'); -- BGwiki, FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (39932,1,0,0,0,0,64,0,0,0,0,4100,4242,13585,0,0,0,0,0,0,0,816,816,816,820,4,5,6,1,'White Cape (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39933,1,0,0,0,0,25,0,0,0,0,4100,4242,14854,0,0,0,0,0,0,0,819,850,850,850,5,1,1,1,'Noct Gloves (desynth)','COP'); -- 2022.03.03 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (39934,1,0,0,0,0,255,0,0,0,0,4100,4242,14360,0,0,0,0,0,0,0,816,816,816,816,3,3,3,3,'R.K. Cloak +1 (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39935,1,0,0,0,0,52,0,0,0,0,4100,4242,13568,0,0,0,0,0,0,0,816,816,820,820,1,1,1,2,'Scarlet Ribbon (desynth)',NULL); -- 2022.03.04 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39936,1,0,0,0,0,102,0,0,0,0,4100,4242,14436,0,0,0,0,0,0,0,816,823,821,1769,1,1,3,1,'Blessed Bliaut (desynth)','COP'); -- 2021.12.04 Level based on synth. FFXIclopedia has Silver Thread where FFXIAH has Silk Thread
|
|
INSERT INTO `synth_recipes` VALUES (39937,1,0,0,0,0,17,0,0,0,0,4100,4242,12977,0,0,0,0,0,0,0,850,818,818,818,1,7,9,9,'Cotton Gaiters (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (39938,1,0,0,0,0,62,0,0,0,0,4100,4242,13590,0,0,0,0,0,0,0,816,816,816,816,1,1,2,3,'Green Ribbon (desynth)',NULL); -- 2021.12.04 All sites that show agree.
|
|
INSERT INTO `synth_recipes` VALUES (39939,1,0,0,0,0,69,0,0,0,0,4100,4242,12503,0,0,0,0,0,0,0,816,816,816,932,1,2,3,1,'Silk Headband (desynth)',NULL); -- 2021.12.04 All sites that show agree.
|
|
INSERT INTO `synth_recipes` VALUES (39940,1,0,0,0,0,96,0,0,0,0,4100,4242,12847,0,0,0,0,0,0,0,816,816,855,1228,1,1,1,4,'Yasha Hakama (desynth)','COP'); -- 202.12.04 All sites that show agree.
|
|
INSERT INTO `synth_recipes` VALUES (39941,1,0,0,0,0,98,0,0,0,0,4100,4242,14078,0,0,0,0,0,0,0,816,823,821,821,3,1,3,3,'Errant Cuffs (desynth)',NULL); -- 2021.12.04 Level based on synth. All sites that show agree. However, FFXIclopedia shows HQ3 to provide Turqoise while no others do.
|
|
INSERT INTO `synth_recipes` VALUES (39942,1,0,0,0,0,49,0,0,0,0,4100,4242,1639,0,0,0,0,0,0,0,818,818,816,823,4,6,1,1,'Corse Robe (desynth)','COP'); -- 2021.12.04 All sites that show agree.
|
|
INSERT INTO `synth_recipes` VALUES (39943,1,0,0,0,0,92,0,0,0,0,4100,4242,14178,0,0,0,0,0,0,0,816,855,855,855,1,2,2,2,'Rasetsu Sune-Ate (desynth)',NULL); -- BG yield data incomplete, but does not contradict
|
|
INSERT INTO `synth_recipes` VALUES (39944,1,0,0,0,0,87,0,0,0,0,4100,4242,12605,0,0,0,0,0,0,0,816,821,821,821,1,1,1,1,'Noble\'s Tunic (desynth)',NULL); -- BG Yield data incomplete, but does not contradict
|
|
INSERT INTO `synth_recipes` VALUES (39945,1,0,0,0,0,76,0,0,0,0,4100,4242,12468,0,0,0,0,0,0,0,816,816,816,842,1,2,3,1,'Green Beret (desynth)',NULL); -- 2021.12.04 Level based on synth. FFXIclopedia shows HQ3 yields 3 where Allakhazam and FFXIAH shows 1.
|
|
-- INSERT INTO `synth_recipes` VALUES (39946,1,0,0,0,0,255,0,0,0,0,4100,4242,13113,0,0,0,0,0,0,0,929,816,816,816,1,9,9,9,'Black Neckerchief (desynth)',NULL); -- 2021.12.04 Materials seem to be correct. No level info available.
|
|
INSERT INTO `synth_recipes` VALUES (39947,1,0,0,0,0,80,0,0,0,0,4100,4242,12588,0,0,0,0,0,0,0,816,816,651,651,3,5,1,1,'Shinobi Gi (desynth)',NULL); -- 2021.12.02 Level based on synth. Sites that show agree on Materials.
|
|
INSERT INTO `synth_recipes` VALUES (39948,1,0,0,0,0,94,0,0,0,0,4100,4242,13910,0,0,0,0,0,0,0,816,1228,1228,1228,4,10,12,12,'Roshi Jinpachi (desynth)',NULL); -- 2021.12.02 Level based on synth. Allakhazam and FFXIAH do not have Rainbow Thread at all when FFXIclopedia shows it as HQ3.
|
|
INSERT INTO `synth_recipes` VALUES (39949,1,0,0,0,0,61,0,0,0,0,4100,4242,12867,0,0,0,0,0,0,0,820,820,820,820,3,3,3,3,'White Slacks (desynth)',NULL); -- 2021.12.02 Sites that show agree.
|
|
INSERT INTO `synth_recipes` VALUES (39950,1,0,0,0,0,89,0,0,0,0,4100,4242,13795,0,0,0,0,0,0,0,816,652,821,821,3,2,3,4,'Arhat\'s Gi (desynth)',NULL); -- 2021.12.02 Based on synth. Sites that show agree on Materials.
|
|
INSERT INTO `synth_recipes` VALUES (39951,0,0,0,0,0,42,0,0,0,0,4099,4241,2296,2296,2296,0,0,0,0,0,2274,2274,2274,2274,1,1,1,1,'Mohbwa Cloth','TOAU'); -- multi source agree as synth recipe, only 1 39CL
|
|
INSERT INTO `synth_recipes` VALUES (39952,1,0,0,0,0,87,0,0,0,0,4100,4242,2227,0,0,0,0,0,0,0,2304,2304,2304,2304,1,2,3,4,'Mamool Ja Collar (desynth)','TOAU'); -- 2021.12.02 FFXIclopedia shows 85 and JPWiki shows 87. Agree on Materials.
|
|
INSERT INTO `synth_recipes` VALUES (39953,1,0,0,0,0,9,0,0,0,0,4100,4242,1631,0,0,0,0,0,0,0,818,818,818,818,2,4,6,8,'Moblin Armor (desynth)','COP'); -- 2021.12.02 FFXIclopedia and JPWiki agree.
|
|
INSERT INTO `synth_recipes` VALUES (39954,1,0,0,0,0,65,0,0,0,0,4100,4242,12476,0,0,0,0,0,0,0,822,816,816,816,1,6,6,6,'Silk Hat (desynth)',NULL); -- 2021.12.02 Level based on synth. FFXIclopedia has Wool Thread and Gold Nugget has HQ2 and 3. Allakhazam and FFXIAH are only other sites that show and neither have these.
|
|
INSERT INTO `synth_recipes` VALUES (39955,1,0,0,0,0,54,0,0,0,0,4100,4242,13577,0,0,0,0,0,0,0,816,822,820,820,2,1,3,4,'Black Cape (desynth)',NULL); -- 2021.12.02 Based on synth. Sites that show agree on materials.
|
|
INSERT INTO `synth_recipes` VALUES (39956,1,0,0,0,0,87,0,0,0,0,4100,4242,14023,0,0,0,0,0,0,0,816,819,1228,1228,6,1,10,12,'Arhat\'s Tekko (desynth)',NULL); -- 2021.12.02 Based on synth. FFXIclopedia shows 6 linen thread when Allakhazam and FFXIAH show 1.
|
|
-- INSERT INTO `synth_recipes` VALUES (39957,1,0,0,0,0,255,0,0,0,0,4100,4242,15390,0,0,0,0,0,0,0,1713,831,831,831,3,1,1,1,'Femina Subligar (desynth)','COP'); -- 2021.12.02 no data
|
|
-- INSERT INTO `synth_recipes` VALUES (39958,1,0,0,0,0,255,0,0,0,0,4100,4242,15389,0,0,0,0,0,0,0,1713,831,831,831,3,1,1,1,'Vir Subligar (desynth)','COP'); -- 2021.12.02 no data
|
|
INSERT INTO `synth_recipes` VALUES (39959,1,0,0,0,0,57,0,0,0,0,4100,4242,12859,0,0,0,0,0,0,0,820,650,822,816,7,1,1,2,'Velvet Slops (desynth)',NULL); -- 2021.11.21 Based on synth. Sites that show agree on materials.
|
|
INSERT INTO `synth_recipes` VALUES (39960,1,0,0,0,0,25,0,0,0,0,4100,4242,14325,0,0,0,0,0,0,0,818,819,820,850,4,3,1,1,'Seer\'s Slacks (desynth)','COP'); -- 2021.11.21 Based on synth. Materials from FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (39961,0,0,0,31,0,22,74,0,0,0,4099,4241,662,793,793,819,820,1163,1163,1865,15200,15200,15200,15200,1,1,1,1,'Orc Helm','COP'); -- 2021.11.17 FFXIclopedia, BGWiki, JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (40001,0,0,0,0,0,0,1,0,0,0,4103,4245,917,2776,0,0,0,0,0,0,2773,2773,2773,2773,1,1,1,1,'Fine Parchment','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (40002,0,2018,0,0,0,0,2,0,0,0,4103,4245,505,505,505,635,635,635,2129,4509,850,850,850,850,3,3,3,3,'Sheep Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (40003,0,0,0,0,0,0,2,0,0,0,4103,4245,505,635,4509,0,0,0,0,0,850,850,850,850,1,1,1,1,'Sheep Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40004,0,0,0,0,0,0,2,0,0,0,4103,4245,505,695,4509,0,0,0,0,0,850,850,850,850,1,1,1,1,'Sheep Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40005,1,0,0,0,0,0,2,0,0,0,4098,4240,511,0,0,0,0,0,0,0,850,850,850,850,1,1,1,1,'Goblin Mask (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40006,0,2016,0,0,0,0,2,0,0,0,4103,4245,505,635,1643,1643,1647,4509,0,0,870,870,870,870,1,1,1,1,'Smooth Sheep Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (40007,0,2016,0,0,0,0,2,0,0,0,4103,4245,505,695,1643,1646,1647,4509,0,0,1977,1977,1977,1977,1,1,1,1,'Vivio Sheep Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (40008,0,2016,0,0,0,0,2,0,0,0,4103,4245,505,635,1643,1646,1647,4509,0,0,1977,1977,1977,1977,1,1,1,1,'Vivio Sheep Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (40009,0,2016,0,0,0,0,2,0,0,0,4103,4245,505,695,1643,1643,1647,4509,0,0,870,870,870,870,1,1,1,1,'Smooth Sheep Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (40010,0,0,0,0,0,0,3,0,0,0,4099,4241,825,850,850,0,0,0,0,0,14068,14069,14069,14069,1,1,1,1,'Vagabond\'s Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40011,0,0,1,0,0,0,3,0,0,0,4099,4241,715,850,850,0,0,0,0,0,16385,16690,16690,16690,1,1,1,1,'Cesti',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40012,0,0,0,0,0,0,4,0,0,0,4098,4240,505,505,0,0,0,0,0,0,832,832,832,832,1,1,1,1,'Sheep Wool',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40013,0,0,0,0,0,0,5,0,0,0,4098,4240,8861,0,0,0,0,0,0,0,12440,12440,12440,12440,1,1,1,1,'Leather Bandana','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (40014,0,0,0,0,0,0,5,0,0,0,4098,4240,850,0,0,0,0,0,0,0,12440,12542,12542,12542,1,1,1,1,'Leather Bandana',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40015,0,0,0,0,0,0,5,0,0,0,4099,4241,672,824,850,850,0,0,0,0,14169,14170,14170,14170,1,1,1,1,'Vagabond\'s Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40016,0,0,0,0,0,0,6,0,0,0,4099,4241,672,850,850,850,0,0,0,0,12952,12971,12971,12971,1,1,1,1,'Leather Highboots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40017,0,0,0,0,0,0,7,0,0,0,4099,4241,817,856,856,856,856,856,0,0,13594,13599,13599,13599,1,1,1,1,'Rabbit Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40018,0,0,0,0,0,0,8,0,0,0,4099,4241,850,16691,0,0,0,0,0,0,17495,17496,17496,17496,1,1,1,1,'San d\'Orian Cesti',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40019,0,0,0,0,0,0,8,0,0,0,4099,4241,824,850,850,0,0,0,0,0,12696,12784,12784,12784,1,1,1,1,'Leather Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40020,0,0,0,0,0,0,9,0,0,0,4099,4241,824,824,850,850,0,0,0,0,12824,12908,12908,12908,1,1,1,1,'Leather Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40021,0,0,0,0,0,0,10,0,0,0,4099,4241,8862,0,0,0,0,0,0,0,12568,12568,12568,12568,1,1,1,1,'Leather Vest','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (40022,0,0,0,0,0,0,10,0,0,0,4099,4241,850,850,850,852,0,0,0,0,12568,12599,12599,12599,1,1,1,1,'Leather Vest',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40501,0,0,0,0,0,0,10,0,0,0,4103,4245,878,878,878,2129,2156,2156,2156,4509,879,879,879,879,3,3,3,3,'Karakul Leather','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (40502,0,0,0,0,0,0,11,0,0,0,4098,4240,850,850,0,0,0,0,0,0,12992,13037,13037,13037,1,1,1,1,'Solea',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40503,0,0,0,4,0,0,11,0,0,0,4099,4241,672,850,850,856,0,0,0,0,1655,1655,1655,1655,1,1,1,1,'Leather Pouch','COP');
|
|
INSERT INTO `synth_recipes` VALUES (40504,0,0,0,0,0,0,12,0,0,0,4103,4245,878,2156,4509,0,0,0,0,0,879,879,879,879,1,1,1,1,'Karakul Leather','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (40505,0,0,0,0,0,0,12,0,0,0,4098,4240,680,852,0,0,0,0,0,0,13193,13191,13191,13191,1,1,1,1,'Lizard Belt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40506,0,2016,0,0,0,0,12,0,0,0,4099,4241,2230,2232,12824,0,0,0,0,0,15610,15610,15610,15610,1,1,1,1,'Sturdy Trousers','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (40507,0,0,0,0,0,0,12,0,0,0,4098,4240,852,852,0,0,0,0,0,0,19011,19012,19012,19012,1,1,1,1,'Lizard Strap','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (40508,0,0,0,0,0,0,13,0,0,0,4098,4240,680,850,0,0,0,0,0,0,13192,13210,13210,13210,1,1,1,1,'Leather Belt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40509,0,0,0,0,0,0,14,0,0,0,4099,4241,825,852,852,0,0,0,0,0,14070,14071,14071,14071,1,1,1,1,'Fisherman\'s Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40510,0,0,0,0,0,0,14,0,0,0,4098,4240,878,878,0,0,0,0,0,0,2315,2315,2315,2315,1,1,1,1,'Karakul Wool','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (40511,0,0,0,0,0,0,14,0,0,0,4099,4241,817,852,869,0,0,0,0,0,13592,13608,13608,13608,1,1,1,1,'Lizard Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40512,0,0,0,0,0,0,15,0,0,0,4099,4241,850,852,852,0,0,0,0,0,12441,12480,12480,12480,1,1,1,1,'Lizard Helm',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40513,0,0,0,0,0,0,15,0,0,0,4099,4241,8863,0,0,0,0,0,0,0,12441,12441,12441,12441,1,1,1,1,'Lizard Helm','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (40514,0,2016,0,0,0,0,16,0,0,0,4098,4240,2230,2232,13192,0,0,0,0,0,15889,15889,15889,15889,1,1,1,1,'Augmenting Belt','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (40515,0,0,0,0,0,0,16,0,0,0,4099,4241,852,12696,0,0,0,0,0,0,12697,12785,12785,12785,1,1,1,1,'Lizard Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40516,0,0,0,0,0,0,17,0,0,0,4099,4241,852,16385,0,0,0,0,0,0,16386,16398,16398,16398,1,1,1,1,'Lizard Cesti',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40517,0,0,0,0,0,0,17,0,0,0,4099,4241,817,852,2834,0,0,0,0,0,11530,11539,11539,11539,1,1,1,1,'Exactitude Mantle','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (40518,0,0,0,0,5,0,18,0,0,0,4099,4241,661,852,12952,0,0,0,0,0,12953,13038,13038,13038,1,1,1,1,'Lizard Ledelsens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40519,0,0,0,0,0,0,18,0,0,0,4099,4241,852,852,12824,0,0,0,0,0,12825,12909,12909,12909,1,1,1,1,'Lizard Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40520,0,0,0,0,0,0,19,0,0,0,4099,4241,850,852,852,852,0,0,0,0,12569,13697,13697,13697,1,1,1,1,'Lizard Jerkin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40521,0,0,0,0,0,0,19,0,0,0,4098,4240,858,858,858,0,0,0,0,0,2011,2011,2011,2011,1,1,1,1,'Wolf Fur','COP');
|
|
INSERT INTO `synth_recipes` VALUES (40522,0,0,0,0,0,0,20,0,0,0,4099,4241,672,824,852,852,0,0,0,0,14171,14172,14172,14172,1,1,1,1,'Fisherman\'s Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (40523,0,0,0,0,0,0,20,0,0,0,4099,4241,850,937,1655,1831,0,0,0,0,15454,15454,15454,15454,1,1,1,1,'Little Worm Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (40524,0,0,0,0,0,0,20,0,0,0,4099,4241,850,937,1655,1830,0,0,0,0,15453,15453,15453,15453,1,1,1,1,'Lugworm Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (40525,0,2017,0,0,0,0,20,0,0,0,4099,4241,2232,2233,16386,0,0,0,0,0,18747,18747,18747,18747,1,1,1,1,'Smash Cesti','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (40526,0,0,0,0,0,0,20,0,0,0,4099,4241,8864,0,0,0,0,0,0,0,14171,14171,14171,14171,1,1,1,1,'Fisherman\'s Boots','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (41001,0,0,0,0,0,0,21,0,0,0,4103,4245,635,857,4509,0,0,0,0,0,848,848,848,848,1,1,1,1,'Dhalmel Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41002,0,2018,0,0,0,0,21,0,0,0,4103,4245,635,635,635,857,857,857,2129,4509,848,848,848,848,3,3,3,3,'Dhalmel Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41003,0,0,0,0,0,0,21,0,0,0,4103,4245,695,857,4509,0,0,0,0,0,848,848,848,848,1,1,1,1,'Dhalmel Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41004,0,2017,0,0,0,0,21,0,0,0,4101,4243,857,1643,1644,1648,0,0,0,0,2139,2139,2139,2139,1,1,1,1,'Fragrant Dhalmel Hide','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41005,0,2017,0,0,0,0,21,0,0,0,4103,4245,635,857,1643,1643,1648,4509,0,0,872,872,872,872,1,1,1,1,'Tough Dhalmel Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41006,0,2017,0,0,0,0,21,0,0,0,4103,4245,695,857,1643,1643,1648,4509,0,0,872,872,872,872,1,1,1,1,'Tough Dhalmel Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41007,0,0,0,0,0,0,22,0,0,0,4098,4240,848,0,0,0,0,0,0,0,13469,13499,13499,13499,1,1,1,1,'Leather Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41008,0,0,0,0,0,0,22,0,0,0,4099,4241,826,829,879,0,0,0,0,0,2399,2399,2399,2399,3,6,9,12,'Chocobo Blinkers','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (41009,0,0,0,0,0,0,23,0,0,0,4099,4241,825,848,852,0,0,0,0,0,14072,14073,14073,14073,1,1,1,1,'Chocobo Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41010,0,2016,0,0,0,0,24,0,0,0,4103,4245,635,1640,1643,1643,1647,4509,0,0,1972,1972,1972,1972,1,1,1,1,'Glossy Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41011,0,2016,0,0,0,0,24,0,0,0,4103,4245,695,1640,1643,1643,1647,4509,0,0,1972,1972,1972,1972,1,1,1,1,'Glossy Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41012,0,0,0,0,0,0,24,0,0,0,4103,4245,635,1640,4509,0,0,0,0,0,1637,1637,1637,1637,1,1,1,1,'Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41013,0,0,0,0,0,0,24,0,0,0,4103,4245,695,1640,4509,0,0,0,0,0,1637,1637,1637,1637,1,1,1,1,'Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41014,0,2016,0,0,0,0,24,0,0,0,4103,4245,635,1640,1641,1641,1647,4509,0,0,1969,1969,1969,1969,1,1,1,1,'Rugged Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41015,0,2016,0,0,0,0,24,0,0,0,4103,4245,695,1640,1641,1641,1647,4509,0,0,1969,1969,1969,1969,1,1,1,1,'Rugged Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41016,0,0,0,0,0,0,24,0,0,0,4099,4241,680,12440,0,0,0,0,0,0,12442,13824,13824,13824,1,1,1,1,'Studded Bandana',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41017,0,2016,0,0,0,0,24,0,0,0,4103,4245,635,1640,1644,1644,1647,4509,0,0,1970,1970,1970,1970,1,1,1,1,'Tough Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41018,0,2016,0,0,0,0,24,0,0,0,4103,4245,695,1640,1645,1645,1647,4509,0,0,1971,1971,1971,1971,1,1,1,1,'Soft Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41019,0,2016,0,0,0,0,24,0,0,0,4103,4245,695,1640,1644,1644,1647,4509,0,0,1970,1970,1970,1970,1,1,1,1,'Tough Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41020,0,2018,0,0,0,0,24,0,0,0,4103,4245,635,635,635,1640,1640,1640,2129,4509,1637,1637,1637,1637,3,3,3,3,'Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41021,0,2016,0,0,0,0,24,0,0,0,4103,4245,635,1640,1645,1645,1647,4509,0,0,1971,1971,1971,1971,1,1,1,1,'Soft Bugard Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41022,0,0,0,0,0,0,25,0,0,0,4098,4240,872,13469,0,0,0,0,0,0,15783,15783,15783,15783,1,1,1,1,'Armored Ring','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (41023,0,0,0,0,0,20,25,0,0,0,4099,4241,820,820,825,825,850,0,0,0,15313,15316,15316,15316,1,1,1,1,'Seer\'s Pumps','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41024,0,0,0,0,0,0,25,0,0,0,4098,4240,680,848,0,0,0,0,0,0,13194,13240,13240,13240,1,1,1,1,'Warrior\'s Belt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41025,0,0,0,0,0,0,25,0,0,0,4098,4240,8865,0,0,0,0,0,0,0,13194,13194,13194,13194,1,1,1,1,'Warrior\'s Belt','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (41026,0,0,0,0,0,0,26,0,0,0,4099,4241,680,848,12696,0,0,0,0,0,12698,12786,12786,12786,1,1,1,1,'Studded Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41027,0,0,0,0,0,21,27,0,0,0,4099,4241,848,850,1828,1829,1829,0,0,0,15343,15344,15344,15344,1,1,1,1,'Trader\'s Pigaches','COP'); -- 2021.11.17 BGWiki has 26 Leathercraft. FFXIclopedia and JPWiki have 27
|
|
INSERT INTO `synth_recipes` VALUES (41028,0,0,0,0,0,0,27,0,0,0,4097,4239,820,857,0,0,0,0,0,0,13588,13600,13600,13600,1,1,1,1,'Dhalmel Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41029,0,0,0,0,0,27,28,0,0,0,4099,4241,819,826,826,850,0,0,0,0,14323,14333,14333,14333,1,1,1,1,'Noct Brais','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41030,0,0,0,0,0,0,28,0,0,0,4099,4241,680,848,12952,0,0,0,0,0,12954,13039,13039,13039,1,1,1,1,'Studded Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41031,0,0,0,0,0,0,29,0,0,0,4098,4240,857,857,857,0,0,0,0,0,2539,2539,2539,2539,1,2,3,4,'Dhalmel Hair','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (41032,0,0,0,0,0,0,29,0,0,0,4098,4240,848,850,0,0,0,0,0,0,12993,13048,13048,13048,1,1,1,1,'Sandals',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41033,0,0,0,0,0,0,29,0,0,0,4099,4241,850,12510,0,0,0,0,0,0,13895,13896,13896,13896,1,1,1,1,'San d\'Orian Bandana',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41034,0,2017,0,0,0,0,29,0,0,0,4099,4241,2231,2233,12698,0,0,0,0,0,14957,14957,14957,14957,1,1,1,1,'Aiming Gloves','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (41035,0,0,0,0,0,0,30,0,0,0,4097,4239,2139,13588,0,0,0,0,0,0,15486,15486,15486,15486,1,1,1,1,'Breath Mantle','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41036,0,2016,0,0,0,0,30,0,0,0,4097,4239,858,1644,1646,1647,0,0,0,0,871,871,871,871,1,1,1,1,'Caliginous Wolf Hide','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41037,0,0,0,0,0,0,30,0,0,0,4099,4241,672,824,848,848,0,0,0,0,14173,14174,14174,14174,1,1,1,1,'Chocobo Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41038,0,0,0,0,0,0,30,0,0,0,4099,4241,680,848,12824,0,0,0,0,0,12826,12910,12910,12910,1,1,1,1,'Studded Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41039,0,0,0,0,0,0,30,0,0,0,4099,4241,8866,0,0,0,0,0,0,0,12826,12826,12826,12826,1,1,1,1,'Studded Trousers','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (41501,0,0,0,0,0,0,31,0,0,0,4103,4245,879,4365,0,0,0,0,0,0,917,917,917,917,1,1,1,1,'Parchment','TOAU'); -- Karakul Version
|
|
INSERT INTO `synth_recipes` VALUES (41502,0,0,0,0,0,0,31,0,0,0,4103,4245,850,2508,4365,0,0,0,0,0,2550,2550,2550,2550,1,2,3,4,'Vellum','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (41503,0,0,0,0,0,0,31,0,0,0,4103,4245,850,4365,0,0,0,0,0,0,917,917,917,917,1,2,3,4,'Parchment',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41504,0,0,0,0,0,0,31,0,0,0,4099,4241,850,12753,0,0,0,0,0,0,14037,14038,14038,14038,1,1,1,1,'San d\'Orian Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41505,0,0,0,0,0,0,32,0,0,0,4099,4241,680,848,851,12568,0,0,0,0,12570,13707,13707,13707,1,1,1,1,'Studded Vest',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41506,0,0,0,0,0,0,33,0,0,0,4099,4241,825,848,851,0,0,0,0,0,14817,14818,14818,14818,1,1,1,1,'Field Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41507,0,0,0,0,0,0,33,0,0,0,4099,4241,850,13004,0,0,0,0,0,0,14145,14146,14146,14146,1,1,1,1,'San d\'Orian Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41508,0,0,0,0,0,0,33,0,0,0,4097,4239,820,858,0,0,0,0,0,0,13571,13609,13609,13609,1,1,1,1,'Wolf Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41509,1,0,0,0,0,0,33,0,0,0,4098,4240,1631,0,0,0,0,0,0,0,850,850,851,851,1,1,1,1,'Moblin Armor (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41510,0,0,0,0,0,8,34,0,0,0,4099,4241,825,848,848,0,0,0,0,0,12994,13040,13040,13040,1,1,1,1,'Shoes',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41511,0,0,0,0,0,0,35,0,0,0,4099,4241,1977,12570,0,0,0,0,0,0,14493,14493,14493,14493,1,1,1,1,'Healing Vest','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41512,0,2016,0,0,0,0,35,0,0,0,4103,4245,635,859,1642,1645,1647,4509,0,0,873,873,873,873,1,1,1,1,'Light Ram Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41513,0,2016,0,0,0,0,35,0,0,0,4103,4245,635,859,1644,1645,1647,4509,0,0,1978,1978,1978,1978,1,1,1,1,'Bloody Ram Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41514,0,2018,0,0,0,0,35,0,0,0,4103,4245,635,635,635,859,859,859,2129,4509,851,851,851,851,3,3,3,3,'Ram Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41515,0,0,0,0,0,0,35,0,0,0,4103,4245,635,859,4509,0,0,0,0,0,851,851,851,851,1,1,1,1,'Ram Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41516,0,0,0,0,0,0,35,0,0,0,4099,4241,850,12882,0,0,0,0,0,0,14265,14266,14266,14266,1,1,1,1,'San d\'Orian Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41517,1,0,0,0,0,0,35,0,0,0,4098,4240,1624,0,0,0,0,0,0,0,851,851,851,823,3,3,3,2,'Bugbear Mask (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41518,0,0,0,0,0,0,35,0,0,0,4103,4245,8867,0,0,0,0,0,0,0,851,851,851,851,1,1,1,1,'Ram Leather','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (41519,0,0,0,0,0,0,36,0,0,0,4103,4245,695,859,4509,0,0,0,0,0,851,851,851,851,1,1,1,1,'Ram Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41520,0,2016,0,0,0,0,36,0,0,0,4103,4245,695,859,1644,1645,1647,4509,0,0,1978,1978,1978,1978,1,1,1,1,'Bloody Ram Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41521,0,0,0,0,0,0,36,0,0,0,4097,4239,871,13571,0,0,0,0,0,0,13685,13685,13685,13685,1,1,1,1,'Invisible Mantle','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41522,1,0,0,0,0,0,36,0,0,0,4098,4240,510,0,0,0,0,0,0,0,850,850,851,851,1,1,1,1,'Goblin Armor (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41523,0,2017,0,0,0,0,36,0,0,0,4101,4243,859,1643,1644,1648,0,0,0,0,2140,2140,2140,2140,1,1,1,1,'Fragrant Ram Skin','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41524,0,2016,0,0,0,0,36,0,0,0,4103,4245,695,859,1642,1645,1647,4509,0,0,873,873,873,873,1,1,1,1,'Light Ram Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41525,0,0,0,0,0,0,37,0,0,0,4098,4240,851,914,915,0,0,0,0,0,13195,13219,13219,13219,1,1,1,1,'Magic Belt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41526,0,0,0,0,0,0,37,0,0,0,4099,4241,817,851,0,0,0,0,0,0,13081,13069,13069,13069,1,1,1,1,'Leather Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41527,0,0,0,0,0,28,37,0,0,0,4099,4241,850,1699,1699,1700,1700,0,0,0,15314,15318,15318,15318,1,1,1,1,'Garish Pumps','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41528,0,0,0,0,0,0,37,0,0,0,4099,4241,850,12630,0,0,0,0,0,0,14344,14345,14345,14345,1,1,1,1,'San d\'Orian Vest',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41529,0,0,0,0,0,0,38,0,0,0,4101,4243,851,913,12440,0,0,0,0,0,12443,12481,12481,12481,1,1,1,1,'Cuir Bandana',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41530,0,0,0,0,0,0,39,0,10,0,4099,4241,851,937,4509,0,0,0,0,0,2012,2012,2012,2012,1,1,1,1,'Laminated Ram Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41531,0,0,0,0,0,0,39,0,0,0,4099,4241,818,858,0,0,0,0,0,0,13089,13070,13070,13070,1,1,1,1,'Wolf Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41532,0,0,0,0,0,0,39,0,0,0,4099,4241,848,12998,0,0,0,0,0,0,14155,14156,14156,14156,1,1,1,1,'Combat Caster\'s Shoes +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41533,0,0,0,0,0,0,40,0,0,0,4099,4241,870,15314,0,0,0,0,0,0,15312,15312,15312,15312,1,1,1,1,'Mist Pumps','COP');
|
|
INSERT INTO `synth_recipes` VALUES (41534,0,0,0,0,0,0,40,0,0,0,4099,4241,8868,0,0,0,0,0,0,0,14176,14176,14176,14176,1,1,1,1,'Field Boots','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (41535,0,0,0,0,0,0,40,0,0,0,4101,4243,851,851,913,12696,0,0,0,0,12699,12787,12787,12787,1,1,1,1,'Cuir Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (41536,0,0,0,0,0,0,40,0,0,0,4099,4241,672,824,851,851,0,0,0,0,14176,14177,14177,14177,1,1,1,1,'Field Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42001,0,0,0,0,0,0,41,0,0,0,4101,4243,924,930,13192,0,0,0,0,0,13203,13225,13225,13225,1,1,1,1,'Barbarian\'s Belt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42002,0,0,0,0,0,0,42,0,0,0,4101,4243,851,851,913,12952,0,0,0,0,12955,13041,13041,13041,1,1,1,1,'Cuir Highboots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42003,0,0,0,0,0,0,43,0,0,0,4098,4240,817,851,851,0,0,0,0,0,13200,13214,13214,13214,1,1,1,1,'Waistbelt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42004,0,0,0,0,0,0,44,0,0,0,4099,4241,1972,13203,0,0,0,0,0,0,15866,15866,15866,15866,1,1,1,1,'Acrobat\'s Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42005,0,0,0,0,0,0,44,0,0,0,4099,4241,1970,13203,0,0,0,0,0,0,15864,15864,15864,15864,1,1,1,1,'Tough Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42006,0,0,0,0,0,0,44,0,0,0,4099,4241,1971,13203,0,0,0,0,0,0,15865,15865,15865,15865,1,1,1,1,'Runner\'s Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42007,0,0,0,0,0,0,44,0,0,0,4099,4241,1969,13203,0,0,0,0,0,0,15863,15863,15863,15863,1,1,1,1,'Samsonian Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42008,0,0,0,0,0,0,44,0,0,0,4101,4243,851,851,913,12824,0,0,0,0,12827,12911,12911,12911,1,1,1,1,'Cuir Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42009,0,0,0,0,0,27,45,0,0,0,4099,4241,820,826,827,850,851,851,0,0,13810,13811,13811,13811,1,1,1,1,'Chocobo Jack Coat',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42010,0,0,0,0,0,0,45,0,0,0,4099,4241,872,12955,0,0,0,0,0,0,15320,15320,15320,15320,1,1,1,1,'Powder Boots','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42011,0,0,0,0,0,4,45,0,0,0,4099,4241,817,817,834,1276,1276,0,0,0,14067,14074,14074,14074,1,1,1,1,'Tarasque Mitts',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42012,0,0,0,0,0,0,45,0,0,0,4101,4243,8869,0,0,0,0,0,0,0,12827,12827,12827,12827,1,1,1,1,'Cuir Trousers','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (42013,0,0,0,0,0,0,46,0,0,0,4101,4243,851,851,913,12568,0,0,0,0,12571,13709,13709,13709,1,1,1,1,'Cuir Bouilli',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42014,0,0,0,0,0,0,46,0,0,0,4099,4241,873,13200,0,0,0,0,0,0,15290,15290,15290,15290,1,1,1,1,'Haste Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42015,0,0,0,0,0,0,46,0,0,0,4099,4241,851,13220,0,0,0,0,0,0,13277,13278,13278,13278,1,1,1,1,'Royal Knight\'s Belt +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42016,0,0,0,0,0,0,46,0,0,0,4103,4245,635,1293,4509,0,0,0,0,0,1297,1297,1297,1297,1,1,1,1,'Narasimha Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42017,0,0,0,0,0,0,47,0,0,0,4103,4245,695,1293,4509,0,0,0,0,0,1297,1297,1297,1297,1,1,1,1,'Narasimha Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42018,0,0,0,0,0,0,48,0,0,0,4099,4241,829,848,927,13200,13568,0,0,0,13271,13272,13272,13272,1,1,1,1,'Corsette',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42019,0,0,0,0,0,0,49,0,0,0,4103,4245,695,1628,4509,0,0,0,0,0,1629,1629,1629,1629,1,1,1,1,'Buffalo Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42020,0,0,0,0,0,0,49,0,0,0,4103,4245,635,1628,4509,0,0,0,0,0,1629,1629,1629,1629,1,1,1,1,'Buffalo Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42021,0,2018,0,0,0,0,49,0,0,0,4103,4245,635,635,635,1628,1628,1628,2129,4509,1629,1629,1629,1629,3,3,3,3,'Buffalo Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42022,0,0,0,0,0,0,49,0,0,0,4097,4239,820,859,0,0,0,0,0,0,13570,13575,13575,13575,1,1,1,1,'Ram Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42023,0,0,0,0,0,0,50,0,0,0,4099,4241,1297,16385,0,0,0,0,0,0,17505,17506,17506,17506,1,1,1,1,'Narasimha\'s Cesti',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42024,0,0,0,0,0,0,50,0,0,0,4099,4241,8870,0,0,0,0,0,0,0,12294,12294,12294,12294,1,1,1,1,'Leather Shield','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (42025,0,0,0,0,0,0,51,0,0,0,4099,4241,851,853,12289,0,0,0,0,0,12294,12329,12329,12329,1,1,1,1,'Leather Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42501,0,2017,0,0,0,0,51,0,0,0,4103,4245,853,1642,1642,1648,0,0,0,0,2423,2423,2423,2423,1,1,1,1,'Frigid Skin','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (42502,0,0,0,0,0,0,52,0,0,0,4097,4239,2140,13570,0,0,0,0,0,0,15487,15487,15487,15487,1,1,1,1,'High Breath Mantle','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42503,0,0,0,0,0,0,52,0,0,0,4099,4241,853,16386,0,0,0,0,0,0,16388,16699,16699,16699,1,1,1,1,'Himantes',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42504,0,0,0,0,0,0,52,0,0,0,4103,4245,695,1861,4509,0,0,0,0,0,1862,1862,1862,1862,1,1,1,1,'Moblin Sheep Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42505,0,0,0,0,0,0,52,0,0,0,4103,4245,635,1861,4509,0,0,0,0,0,1862,1862,1862,1862,1,1,1,1,'Moblin Sheep Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42506,0,2018,0,0,0,0,52,0,0,0,4103,4245,635,635,635,1861,1861,1861,2129,4509,1862,1862,1862,1862,3,3,3,3,'Moblin Sheep Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42507,0,0,0,0,0,0,53,0,10,0,4099,4241,937,1629,4509,0,0,0,0,0,2007,2007,2007,2007,1,1,1,1,'Laminated Buffalo Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42508,0,0,0,0,0,0,53,0,0,0,4098,4240,853,853,0,0,0,0,0,0,19015,19016,19016,19016,1,1,1,1,'Raptor Strap','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (42509,0,0,0,0,0,0,53,0,0,0,4099,4241,817,853,853,0,0,0,0,0,13593,13612,13612,13612,1,1,1,1,'Raptor Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42510,0,0,0,0,0,0,54,0,0,0,4098,4240,1861,1861,0,0,0,0,0,0,1863,1863,1863,1863,1,1,1,1,'Moblin Sheep Wool','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42511,0,0,0,0,0,0,54,0,0,0,4099,4241,853,853,12827,0,0,0,0,0,12828,12919,12919,12919,1,1,1,1,'Raptor Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42512,0,0,0,0,28,0,55,0,0,0,4099,4241,663,853,12955,0,0,0,0,0,12956,13049,13049,13049,1,1,1,1,'Raptor Ledelsens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42513,0,2017,0,0,0,0,55,0,0,0,4099,4241,2230,2233,16388,0,0,0,0,0,18755,18755,18755,18755,1,1,1,1,'Noble Himantes','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (42514,0,0,0,0,0,0,55,0,0,0,4099,4241,8871,0,0,0,0,0,0,0,12700,12700,12700,12700,1,1,1,1,'Raptor Gloves','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (42515,0,0,0,0,0,49,56,0,0,0,4099,4241,823,828,828,828,850,851,855,0,15663,15664,15664,15664,1,1,1,1,'Crow Gaiters','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42516,0,0,0,28,0,0,56,0,0,0,4099,4241,662,850,853,853,0,0,0,0,12444,13835,13835,13835,1,1,1,1,'Raptor Helm',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42517,0,0,0,0,0,0,56,0,0,0,4099,4241,851,12336,0,0,0,0,0,0,12366,12367,12367,12367,1,1,1,1,'Royal Squire\'s Shield +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42518,0,0,0,0,50,48,57,0,0,0,4099,4241,663,673,752,828,828,851,12569,0,13703,13710,13710,13710,1,1,1,1,'Brigandine',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42519,0,0,0,0,0,0,57,0,0,0,4099,4241,672,850,850,1296,0,0,0,0,14166,14167,14167,14167,1,1,1,1,'Desert Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42520,0,0,0,0,0,0,57,0,0,0,4099,4241,2423,12828,0,0,0,0,0,0,15651,15651,15651,15651,1,1,1,1,'Ice Trousers','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (42521,0,0,0,0,0,0,57,0,0,0,4099,4241,853,12699,0,0,0,0,0,0,12700,12795,12795,12795,1,1,1,1,'Raptor Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42522,0,0,0,0,0,0,58,0,0,0,4103,4245,695,2123,4509,0,0,0,0,0,2124,2124,2124,2124,1,1,1,1,'Catoblepas Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42523,0,0,0,0,0,0,58,0,0,0,4103,4245,635,2123,4509,0,0,0,0,0,2124,2124,2124,2124,1,1,1,1,'Catoblepas Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42524,0,2018,0,0,0,0,58,0,0,0,4103,4245,635,635,635,2123,2123,2123,2129,4509,2124,2124,2124,2124,3,3,3,3,'Catoblepas Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (42525,0,0,0,0,0,0,58,0,0,0,4099,4241,850,853,853,0,0,0,0,0,12572,13727,13727,13727,1,1,1,1,'Raptor Jerkin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42526,0,0,0,50,0,38,59,0,0,0,4099,4241,664,664,680,820,826,828,850,855,13703,13710,13710,13710,1,1,1,1,'Brigandine',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42527,0,0,0,0,0,8,59,0,0,0,4099,4241,826,848,853,0,0,0,0,0,12995,13050,13050,13050,1,1,1,1,'Moccasins',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42528,0,0,0,0,0,0,60,0,0,0,4099,4241,817,869,1275,0,0,0,0,0,13645,13646,13646,13646,1,1,1,1,'Amemet Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (42529,0,0,0,0,0,0,60,0,0,0,4099,4241,2423,12700,0,0,0,0,0,0,14990,14990,14990,14990,1,1,1,1,'Blizzard Gloves','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (42530,0,0,0,0,0,0,60,0,0,0,4098,4240,8872,0,0,0,0,0,0,0,13546,13546,13546,13546,1,1,1,1,'Hard Leather Ring','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (43001,0,0,0,0,0,0,61,0,0,0,4103,4245,695,861,4509,0,0,0,0,0,855,855,855,855,1,1,1,1,'Tiger Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43002,0,0,0,0,0,0,61,0,0,0,4103,4245,635,861,4509,0,0,0,0,0,855,855,855,855,1,1,1,1,'Tiger Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43003,0,2018,0,0,0,0,61,0,0,0,4103,4245,635,635,635,861,861,861,2129,4509,855,855,855,855,3,3,3,3,'Tiger Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43004,0,0,0,0,0,0,61,0,0,0,4103,4245,695,2518,4509,0,0,0,0,0,2529,2529,2529,2529,1,1,1,1,'Smilodon Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43005,0,0,0,0,0,0,61,0,0,0,4103,4245,635,2518,4509,0,0,0,0,0,2529,2529,2529,2529,1,1,1,1,'Smilodon Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43006,0,2018,0,0,0,0,61,0,0,0,4103,4245,635,635,635,2129,2518,2518,2518,4509,2529,2529,2529,2529,3,3,3,3,'Smilodon Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43007,0,2016,0,0,0,0,61,0,0,0,4103,4245,635,1644,1644,1648,2518,4509,0,0,2733,2733,2733,2733,1,1,1,1,'Spirit Smilodon Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43008,0,2016,0,0,0,0,61,0,0,0,4103,4245,695,1644,1644,1648,2518,4509,0,0,2733,2733,2733,2733,1,1,1,1,'Spirit Smilodon Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43009,0,0,0,0,0,0,62,0,0,0,4098,4240,855,0,0,0,0,0,0,0,13546,13547,13547,13547,1,1,1,1,'Hard Leather Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43010,0,0,0,0,57,54,62,0,0,0,4099,4241,746,821,823,830,1637,1862,1863,0,1827,1827,1827,1827,1,1,1,1,'Premium Bag','COP'); -- 2021.11.17 BGWiki, JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (43011,0,0,0,0,0,0,62,0,0,0,4098,4240,2529,0,0,0,0,0,0,0,15836,15837,15837,15837,1,1,1,1,'Smilodon Ring','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43012,0,0,0,0,0,0,63,0,0,0,4099,4241,817,854,854,0,0,0,0,0,13597,13621,13621,13621,1,1,1,1,'Beak Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43013,0,0,0,0,0,0,63,0,0,0,4098,4240,1637,1637,0,0,0,0,0,0,19017,19018,19018,19018,1,1,1,1,'Bugard Strap','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43014,0,0,0,0,0,46,63,0,0,0,4099,4241,823,828,850,855,855,0,0,0,15578,15579,15579,15579,1,1,1,1,'Crow Hose','COP'); -- 2021.11.17 FFXIclopedia, BGWiki, JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (43015,0,0,0,0,0,0,64,0,0,0,4099,4241,854,854,12827,0,0,0,0,0,12829,14213,14213,14213,1,1,1,1,'Beak Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43016,0,0,0,0,0,25,64,0,0,0,4099,4241,879,2152,2166,2288,0,0,0,0,16063,16068,16068,16068,1,1,1,1,'Jaridah Khud','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43017,0,0,0,0,0,0,64,0,0,0,4098,4240,851,914,915,5350,0,0,0,0,15933,15933,15933,15933,1,1,1,1,'Stirge Belt','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43018,0,0,0,0,28,0,65,0,0,0,4099,4241,663,854,12955,0,0,0,0,0,13702,14088,14088,14088,1,1,1,1,'Beak Ledelsens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43019,0,0,0,0,0,0,65,0,43,0,4103,4245,505,635,1633,4509,0,0,0,0,1998,1998,1998,1998,1,1,1,1,'Sheep Chammy','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43020,0,0,0,0,0,0,65,0,0,0,4099,4241,2733,15836,0,0,0,0,0,0,15838,15838,15838,15838,1,1,1,1,'Protect Ring','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43021,0,0,0,0,0,0,66,0,0,0,4099,4241,8873,0,0,0,0,0,0,0,12980,12980,12980,12980,1,1,1,1,'Battle Boots','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (43022,0,0,0,43,0,39,66,0,0,0,4099,4241,652,666,682,764,828,879,2152,2288,14526,14529,14529,14529,1,1,1,1,'Jaridah Peti','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43023,0,0,0,0,0,0,66,0,0,0,4099,4241,674,851,851,855,0,0,0,0,12980,14104,14104,14104,1,1,1,1,'Battle Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43024,0,0,0,0,0,0,66,0,43,0,4103,4245,505,695,1633,4509,0,0,0,0,1998,1998,1998,1998,1,1,1,1,'Sheep Chammy','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43025,0,0,0,28,0,0,67,0,0,0,4099,4241,662,850,854,854,0,0,0,0,13698,13701,13701,13701,1,1,1,1,'Beak Helm',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43026,0,0,0,0,0,0,67,0,0,0,4103,4245,695,859,1883,1883,4509,0,0,0,2003,2003,2003,2003,1,1,1,1,'White Mouton','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43027,0,0,0,0,0,0,67,0,0,0,4103,4245,635,859,1883,1883,4509,0,0,0,2003,2003,2003,2003,1,1,1,1,'White Mouton','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43028,0,0,0,0,0,0,68,0,0,0,4099,4241,854,12699,0,0,0,0,0,0,13700,13960,13960,13960,1,1,1,1,'Beak Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43029,0,0,53,9,0,0,68,0,0,0,4099,4241,660,710,711,851,0,0,0,0,12311,12412,12412,12412,1,1,1,1,'Hoplon','COP'); -- 2021.11.17 BGWiki and JPWiki
|
|
INSERT INTO `synth_recipes` VALUES (43030,0,0,0,0,0,0,69,0,0,0,4099,4241,850,854,854,0,0,0,0,0,13699,13739,13739,13739,1,1,1,1,'Beak Jerkin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43031,0,0,0,34,0,0,69,0,0,0,4099,4241,664,848,851,855,862,12553,0,0,13740,13741,13741,13741,1,1,1,1,'Byrnie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43032,0,0,0,0,0,0,69,0,0,0,4099,4241,2152,12980,0,0,0,0,0,0,15738,15739,15739,15739,1,1,1,1,'Tabin Boots','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43033,0,0,0,0,0,0,69,0,0,0,4098,4240,790,1629,0,0,0,0,0,0,2737,2737,2737,2737,1,1,1,1,'Silky Suede','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43034,0,0,0,0,0,0,70,0,0,0,4103,4245,695,860,4509,0,0,0,0,0,862,862,862,862,1,1,1,1,'Behemoth Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43035,0,0,0,0,0,0,70,0,0,0,4103,4245,635,860,4509,0,0,0,0,0,862,862,862,862,1,1,1,1,'Behemoth Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43036,0,0,0,0,0,0,70,0,0,0,4097,4239,820,860,0,0,0,0,0,0,13591,13604,13604,13604,1,1,1,1,'Behemoth Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43037,0,0,0,0,0,32,70,0,46,0,4099,4241,837,851,855,918,924,929,12603,13699,13754,13755,13755,13755,1,1,1,1,'Black Cotehardie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43038,0,0,0,0,0,0,70,0,0,0,4097,4239,8874,0,0,0,0,0,0,0,13591,13591,13591,13591,1,1,1,1,'Behemoth Mantle','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (43501,0,2018,0,0,0,0,70,0,0,0,4103,4245,635,635,635,860,860,860,2129,4509,862,862,862,862,3,3,3,3,'Behem. Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43502,0,0,0,0,0,45,71,0,0,0,4099,4241,823,829,853,855,855,0,0,0,12988,14081,14081,14081,1,1,1,1,'Pigaches',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43503,0,0,0,0,0,0,71,0,0,0,4103,4245,695,863,4509,0,0,0,0,0,506,506,506,506,1,1,1,1,'Coeurl Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43504,0,0,0,0,0,45,71,0,0,0,4099,4241,823,853,855,855,2340,0,0,0,15706,15707,15707,15707,1,1,1,1,'Silken Pigaches','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43505,0,0,0,0,0,0,71,0,0,0,4103,4245,635,863,4509,0,0,0,0,0,506,506,506,506,1,1,1,1,'Coeurl Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43506,0,0,0,0,0,0,71,0,0,0,4099,4241,1978,12311,0,0,0,0,0,0,15071,15071,15071,15071,1,1,1,1,'Spartan Hoplon','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43507,0,2018,0,0,0,0,71,0,0,0,4103,4245,635,635,635,863,863,863,2129,4509,506,506,506,506,3,3,3,3,'Coeurl Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43508,0,0,0,0,0,0,71,0,0,0,4103,4245,635,2512,4509,0,0,0,0,0,2530,2530,2530,2530,1,1,1,1,'Lynx Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43509,0,2018,0,0,0,0,71,0,0,0,4103,4245,635,635,635,2129,2512,2512,2512,4509,2530,2530,2530,2530,3,3,3,3,'Lynx Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43510,0,0,0,0,0,0,71,0,0,0,4103,4245,695,2512,4509,0,0,0,0,0,2530,2530,2530,2530,1,1,1,1,'Lynx Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43511,0,0,0,0,0,0,71,0,0,0,4099,4241,680,855,855,0,0,0,0,0,13198,13232,13232,13232,1,1,1,1,'Swordbelt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43512,0,0,0,0,0,0,72,0,0,0,4099,4241,506,16385,0,0,0,0,0,0,16389,17473,17473,17473,1,1,1,1,'Coeurl Cesti',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43513,0,0,0,0,0,0,72,0,0,0,4103,4245,695,2121,4509,0,0,0,0,0,2122,2122,2122,2122,1,1,1,1,'Ovinnik Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43514,0,0,0,0,0,0,72,0,0,0,4103,4245,635,2121,4509,0,0,0,0,0,2122,2122,2122,2122,1,1,1,1,'Ovinnik Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43515,0,0,0,0,0,0,73,0,0,0,4103,4245,695,876,4509,0,0,0,0,0,877,877,877,877,1,1,1,1,'Manta Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43516,0,0,0,0,0,41,73,0,0,0,4099,4241,823,828,855,855,0,0,0,0,12852,14237,14237,14237,1,1,1,1,'Battle Hose',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43517,0,0,0,0,0,0,73,0,0,0,4103,4245,635,876,4509,0,0,0,0,0,877,877,877,877,1,1,1,1,'Manta Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43518,0,2018,0,0,0,0,73,0,0,0,4103,4245,635,635,635,876,876,876,2129,4509,877,877,877,877,3,3,3,3,'Manta Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43519,0,0,0,0,0,0,74,0,0,0,4099,4241,855,855,12827,0,0,0,0,0,12830,14232,14232,14232,1,1,1,1,'Tiger Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43520,0,0,0,0,0,0,74,0,0,0,4099,4241,876,1869,2296,0,0,0,0,0,16213,16214,16214,16214,1,1,1,1,'Lamia Mantle','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43521,0,0,0,0,28,0,75,0,0,0,4099,4241,663,855,12955,0,0,0,0,0,12958,14108,14108,14108,1,1,1,1,'Tiger Ledelsens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43522,0,0,0,0,0,0,75,0,0,0,4097,4239,9504,0,0,0,0,0,0,0,13589,13589,13589,13589,1,1,1,1,'Tiger Mantle','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (43523,0,0,0,38,0,26,75,0,0,0,4099,4241,666,826,849,850,1109,1109,1651,1868,15203,15203,15203,15203,1,1,1,1,'Goblin Coif','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43524,0,0,0,0,0,0,75,0,0,0,4097,4239,820,861,0,0,0,0,0,0,13589,13602,13602,13602,1,1,1,1,'Tiger Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43525,0,0,0,0,0,0,75,0,0,0,4097,4239,820,2518,0,0,0,0,0,0,16231,16232,16232,16232,1,1,1,1,'Smilodon Mantle','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43526,0,0,0,41,44,0,76,0,0,0,4096,4238,654,654,716,745,2122,0,0,0,18750,18751,18751,18751,1,1,1,1,'Black Adargas','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43527,0,0,0,0,0,0,76,0,0,0,4099,4241,855,12990,0,0,0,0,0,0,14157,14158,14158,14158,1,1,1,1,'Tactician Magician\'s Pigaches +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43528,0,0,0,0,0,0,76,0,0,0,4099,4241,2152,12852,0,0,0,0,0,0,15653,15654,15654,15654,1,1,1,1,'Tabin Hose','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43529,0,0,0,0,0,47,76,0,0,0,4099,4241,823,823,829,829,850,0,0,0,12996,14115,14115,14115,1,1,1,1,'Silk Pumps',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43530,0,2018,0,0,0,0,76,0,0,0,4103,4245,2129,2151,2151,2151,2156,2156,2156,4509,2152,2152,2152,2152,3,3,3,3,'Marid Leather','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43531,0,0,0,0,0,0,76,0,0,0,4103,4245,2151,2156,4509,0,0,0,0,0,2152,2152,2152,2152,1,1,1,1,'Marid Leather','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43532,0,0,0,25,46,0,77,0,0,0,4096,4238,652,652,716,745,1768,0,0,0,18353,18354,18354,18354,1,1,1,1,'Adargas','COP'); -- 2021.11.17 FFXIclopedia, BGWiki, and JPWiki have 77 Leathercraft, 46 Goldsmithing, and 25 Smithing. Allakhazam and FFXIAH has 77, 45 ???
|
|
INSERT INTO `synth_recipes` VALUES (43533,0,0,0,0,0,0,77,0,0,0,4099,4241,855,12699,0,0,0,0,0,0,12702,13992,13992,13992,1,1,1,1,'Tiger Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43534,0,0,0,0,0,0,78,0,0,0,4103,4245,635,859,2126,2126,4509,0,0,0,2125,2125,2125,2125,1,1,1,1,'Yellow Mouton','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43535,0,0,0,0,0,0,78,0,0,0,4103,4245,695,859,2126,2126,4509,0,0,0,2125,2125,2125,2125,1,1,1,1,'Yellow Mouton','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43536,0,0,0,41,0,0,78,0,0,0,4099,4241,664,850,855,855,0,0,0,0,12446,13861,13861,13861,1,1,1,1,'Tiger Helm',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43537,0,0,0,0,0,0,78,0,0,0,4099,4241,820,855,13589,0,0,0,0,0,13641,13642,13642,13642,1,1,1,1,'Black Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43538,0,0,0,0,0,0,78,0,0,0,4099,4241,862,1163,0,0,0,0,0,0,10961,10962,10962,10962,1,1,1,1,'Lavalier','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (43539,0,0,0,0,0,0,79,0,0,0,4099,4241,818,863,0,0,0,0,0,0,13092,13132,13132,13132,1,1,1,1,'Coeurl Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43540,0,0,0,0,0,0,79,0,0,0,4097,4239,9505,0,0,0,0,0,0,0,16211,16211,16211,16211,1,1,1,1,'Marid Mantle','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (43541,0,0,0,0,0,0,79,0,0,0,4099,4241,2839,13700,0,0,0,0,0,0,15055,15059,15059,15059,1,1,1,1,'Finesse Gloves','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (43542,0,0,0,0,0,0,79,0,0,0,4099,4241,850,855,855,0,0,0,0,0,12574,13763,13763,13763,1,1,1,1,'Tiger Jerkin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43543,0,0,0,0,0,0,79,0,0,0,4097,4239,2151,2287,0,0,0,0,0,0,16211,16215,16215,16215,1,1,1,1,'Marid Mantle','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (43544,0,0,0,0,0,32,80,0,46,0,4099,4241,837,851,855,918,924,1110,12603,13699,13775,13776,13776,13776,1,1,1,1,'Blue Cotehardie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43545,0,0,0,0,0,0,80,0,0,0,4103,4245,635,1116,4509,0,0,0,0,0,1117,1117,1117,1117,1,1,1,1,'Manticore Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43546,0,0,0,0,0,0,80,0,0,0,4103,4245,695,1116,4509,0,0,0,0,0,1117,1117,1117,1117,1,1,1,1,'Manticore Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (43547,0,2018,0,0,0,0,80,0,0,0,4103,4245,635,635,635,1116,1116,1116,2129,4509,1117,1117,1117,1117,3,3,3,3,'Manticore Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (43548,0,0,0,34,0,0,80,0,0,0,4099,4241,664,848,855,862,2828,12553,0,0,11344,11350,11350,11350,1,1,1,1,'Styrne Byrnie','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44001,0,0,0,0,0,0,81,0,0,0,4099,4241,682,2152,2152,0,0,0,0,0,15890,15893,15893,15893,1,1,1,1,'Marid Belt','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44002,0,0,0,58,0,0,81,0,0,0,4099,4241,664,664,664,715,2428,2428,0,0,16170,16171,16171,16171,1,1,1,1,'Wivre Shield','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44003,0,0,0,0,0,0,81,0,0,0,4099,4241,850,16443,0,0,0,0,0,0,17493,17494,17494,17494,1,1,1,1,'Tropical Punches',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44004,0,0,0,0,0,0,81,0,0,0,4103,4245,2156,2169,4509,0,0,0,0,0,2170,2170,2170,2170,1,1,1,1,'Cerber. Leather','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44005,0,0,0,0,0,57,81,0,0,0,4099,4241,823,823,828,830,855,0,0,0,12989,14114,14114,14114,1,1,1,1,'Noble\'s Pumps',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44006,0,0,0,0,0,0,81,0,0,0,4103,4245,635,2523,4509,0,0,0,0,0,2538,2538,2538,2538,1,1,1,1,'Peiste Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44007,0,2018,0,0,0,0,81,0,0,0,4103,4245,635,635,635,2129,2523,2523,2523,4509,2538,2538,2538,2538,3,3,3,3,'Peiste Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44008,0,0,0,0,0,0,81,0,0,0,4103,4245,695,2523,4509,0,0,0,0,0,2538,2538,2538,2538,1,1,1,1,'Peiste Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44009,0,0,0,0,0,0,82,0,0,0,4099,4241,862,16385,0,0,0,0,0,0,16397,17479,17479,17479,1,1,1,1,'Behemoth Cesti',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44010,0,0,0,0,0,0,82,0,0,0,4099,4241,856,13613,0,0,0,0,0,0,13631,13632,13632,13632,1,1,1,1,'Nomad\'s Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44011,0,0,0,0,0,0,82,0,0,0,4099,4241,879,879,1163,2152,2166,2274,0,0,16122,16122,16122,16122,1,1,1,1,'Troll Coif','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44012,0,0,0,0,0,55,83,0,0,0,4099,4241,823,843,855,855,0,0,0,0,12469,13867,13867,13867,1,1,1,1,'War Beret',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44013,0,0,0,0,0,0,83,0,0,0,4098,4240,869,13052,0,0,0,0,0,0,14134,14135,14135,14135,1,1,1,1,'Air Solea',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44014,0,0,0,0,0,0,83,0,0,0,4099,4241,506,506,12827,0,0,0,0,0,12831,14233,14233,14233,1,1,1,1,'Coeurl Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44015,0,0,0,0,0,0,83,0,0,0,4103,4245,695,2755,4509,0,0,0,0,0,2756,2756,2756,2756,1,1,1,1,'Ruszor Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44016,0,0,0,0,0,0,83,0,0,0,4098,4240,680,2538,0,0,0,0,0,0,15913,15914,15914,15914,1,1,1,1,'Peiste Belt','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44017,0,0,0,0,0,0,83,0,0,0,4097,4239,820,2836,0,0,0,0,0,0,11535,11541,11541,11541,1,1,1,1,'Fowler\'s Mantle','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44018,0,0,0,0,0,0,83,0,0,0,4103,4245,635,2755,4509,0,0,0,0,0,2756,2756,2756,2756,1,1,1,1,'Ruszor Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44019,0,2018,0,0,0,0,83,0,0,0,4103,4245,635,635,635,2129,2755,2755,2755,4509,2756,2756,2756,2756,3,3,3,3,'Ruszor Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44020,0,0,0,0,23,0,84,0,0,0,4099,4241,506,663,12955,0,0,0,0,0,12959,14109,14109,14109,1,1,1,1,'Coeurl Ledelsens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44021,0,0,0,0,0,0,84,0,0,0,4099,4241,852,13624,0,0,0,0,0,0,13633,13634,13634,13634,1,1,1,1,'Empowering Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44022,0,0,0,0,0,37,84,0,0,0,4099,4241,822,822,828,828,1623,1767,0,0,15396,15397,15397,15397,1,1,1,1,'Wise Braconi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44023,0,0,0,0,0,0,84,0,0,0,4099,4241,1117,12831,0,0,0,0,0,0,12880,14279,14279,14279,1,1,1,1,'Ogre Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44024,0,0,0,0,0,34,85,0,0,0,4099,4241,823,828,850,855,1767,0,0,0,15334,15335,15335,15335,1,1,1,1,'Wise Pigaches','COP'); -- 2021.11.17 FFXIclopedia, FFXIAH, and Allakhazam have 84 Leathercraft with ??? Clothcraft. BGWiki and JPWiki show 85 Leathercraft with 34 Clothcraft.
|
|
INSERT INTO `synth_recipes` VALUES (44025,0,0,0,0,0,0,84,0,0,0,4099,4241,2837,13631,0,0,0,0,0,0,11537,11542,11542,11542,1,1,1,1,'Kinesis Mantle','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44026,0,0,0,0,0,0,84,0,0,0,4103,4245,695,4509,8707,0,0,0,0,0,8708,8708,8708,8708,1,1,1,1,'Raaz Leather','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (44027,0,0,0,0,0,0,84,0,0,0,4103,4245,635,4509,8707,0,0,0,0,0,8708,8708,8708,8708,1,1,1,1,'Raaz Leather','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (44028,0,2018,0,0,0,0,84,0,0,0,4103,4245,635,635,635,2129,4509,8707,8707,8707,8708,8708,8708,8708,3,3,3,3,'Raaz Leather','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (44029,0,0,0,0,0,0,85,0,0,0,4099,4241,1117,12959,0,0,0,0,0,0,13708,14159,14159,14159,1,1,1,1,'Ogre Ledelsens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44030,0,0,0,0,0,0,85,0,0,0,4099,4241,849,12574,0,0,0,0,0,0,14284,14285,14285,14285,1,1,1,1,'Northern Jerkin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44031,0,0,0,0,0,0,85,0,0,0,4097,4239,820,863,0,0,0,0,0,0,13595,13603,13603,13603,1,1,1,1,'Coeurl Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44032,0,0,0,0,0,0,85,0,0,0,4099,4241,851,13189,0,0,0,0,0,0,13249,13250,13250,13250,1,1,1,1,'Sonic Belt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44033,0,0,0,0,0,0,85,0,0,0,4099,4241,506,761,855,855,0,0,0,0,12981,14113,14113,14113,1,1,1,1,'War Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44034,0,0,0,0,0,0,85,0,0,0,4097,4239,820,2512,0,0,0,0,0,0,16235,16236,16236,16236,1,1,1,1,'Lynx Mantle','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44035,0,0,0,0,0,0,85,0,0,0,4097,4239,9506,0,0,0,0,0,0,0,13595,13595,13595,13595,1,1,1,1,'Coeurl Mantle','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (44036,0,0,0,0,0,0,86,0,0,0,4103,4245,878,2711,4509,0,0,0,0,0,2703,2703,2703,2703,1,1,1,1,'Khromated Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44037,1,0,0,0,0,0,86,0,0,0,4100,4242,16167,0,0,0,0,0,0,0,2152,2152,2152,2152,1,1,1,1,'Tariqah -1 (desynth)','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44038,0,0,0,0,0,0,86,0,0,0,4097,4239,858,13615,0,0,0,0,0,0,13635,13636,13636,13636,1,1,1,1,'Cavalier\'s Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44039,0,2018,0,0,0,0,86,0,0,0,4103,4245,878,878,878,2129,2711,2711,2711,4509,2703,2703,2703,2703,3,3,3,3,'Khromated Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44040,0,0,0,0,0,0,86,0,0,0,4099,4241,2152,2166,16167,0,0,0,0,0,16162,16164,16164,16164,1,1,1,1,'Tariqah','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44041,0,0,0,0,0,0,86,0,0,0,4099,4241,851,17184,0,0,0,0,0,0,17193,17194,17194,17194,1,1,1,1,'Shadow Bow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44042,0,0,0,0,0,0,87,0,0,0,4099,4241,506,506,12432,0,0,0,0,0,12447,13862,13862,13862,1,1,1,1,'Coeurl Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44043,0,0,0,0,0,0,87,0,0,0,4099,4241,854,13623,0,0,0,0,0,0,13637,13638,13638,13638,1,1,1,1,'Gaia Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44044,0,0,0,0,0,0,87,0,0,0,4099,4241,852,879,884,884,927,2162,2166,0,16121,16121,16121,16121,1,1,1,1,'Mamool Ja Helm','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44045,0,0,0,0,0,0,87,0,0,0,4099,4241,3917,3941,3941,13593,0,0,0,0,28646,28647,28647,28647,1,1,1,1,'Radical Mantle','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (44046,0,0,0,0,44,19,87,0,0,0,4099,4241,663,879,2152,2166,2288,0,0,0,14932,14938,14938,14938,1,1,1,1,'Sipahi Dastanas','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44047,0,0,0,0,0,0,88,0,0,0,4099,4241,506,12699,0,0,0,0,0,0,12703,13993,13993,13993,1,1,1,1,'Coeurl Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44048,0,0,0,0,0,0,88,0,0,0,4097,4239,861,13625,0,0,0,0,0,0,13639,13640,13640,13640,1,1,1,1,'Aurora Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44049,0,0,0,0,0,0,88,0,0,0,4099,4241,1117,12447,0,0,0,0,0,0,13704,13907,13907,13907,1,1,1,1,'Ogre Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44050,0,0,0,0,0,40,88,0,0,0,4099,4241,822,828,829,1117,1767,0,0,0,15190,15191,15191,15191,1,1,1,1,'Wise Cap','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44051,0,0,0,0,0,0,89,0,0,0,4099,4241,1117,12703,0,0,0,0,0,0,13706,14057,14057,14057,1,1,1,1,'Ogre Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44052,0,0,0,0,0,0,89,0,0,0,4099,4241,852,13014,0,0,0,0,0,0,14132,14133,14133,14133,1,1,1,1,'Winged Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44053,0,0,0,0,0,0,89,0,0,0,4099,4241,506,506,850,0,0,0,0,0,12575,13764,13764,13764,1,1,1,1,'Coeurl Jerkin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44054,0,0,0,0,0,32,89,0,0,0,4099,4241,822,828,834,834,1767,12696,0,0,14880,14881,14881,14881,1,1,1,1,'Wise Gloves','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44055,0,0,0,0,0,0,90,0,0,0,4099,4241,9507,0,0,0,0,0,0,0,13197,13197,13197,13197,1,1,1,1,'Koenigs Belt','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (44056,0,0,0,0,0,0,90,0,0,0,4099,4241,849,1117,12575,0,0,0,0,0,13705,14366,14366,14366,1,1,1,1,'Ogre Jerkin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44057,0,0,0,0,0,54,90,0,0,0,4099,4241,829,1280,1629,1629,1680,0,0,0,14317,14318,14318,14318,1,1,1,1,'Barone Cosciales','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44058,0,2018,0,0,0,0,90,0,0,0,4103,4245,635,635,635,2129,2750,2750,2750,4509,2751,2751,2751,2751,3,3,3,3,'Amphiptere Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44059,0,0,0,0,0,0,90,0,0,0,4099,4241,855,13514,0,0,0,0,0,0,13280,13281,13281,13281,1,1,1,1,'Sniper\'s Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44060,0,0,0,0,44,40,90,0,0,0,4099,4241,746,822,828,828,1117,1623,1767,1767,14440,14441,14441,14441,1,1,1,1,'Chasuble','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44061,0,0,0,0,0,0,90,0,0,0,4099,4241,761,1117,1117,0,0,0,0,0,13197,13239,13239,13239,1,1,1,1,'Koenigs Belt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44062,0,0,0,0,0,0,90,0,0,0,4103,4245,695,2750,4509,0,0,0,0,0,2751,2751,2751,2751,1,1,1,1,'Amphiptere Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44063,0,0,0,0,0,0,90,0,0,0,4103,4245,635,2750,4509,0,0,0,0,0,2751,2751,2751,2751,1,1,1,1,'Amphiptere Leather','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44064,0,0,0,0,0,0,90,0,0,0,4098,4240,879,2428,0,0,0,0,0,0,16130,16131,16131,16131,1,1,1,1,'Wivre Mask','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44501,0,0,0,0,0,26,91,0,0,0,4099,4241,1117,1117,1163,1163,1629,0,0,0,14850,14851,14851,14851,1,1,1,1,'Bison Wristbands','COP'); -- 2021.11.17 FFXIclopedia shows only 91 Leathercraft. JPWiki, Allakhazam, FFXIAH, show ??? Clothcraft. BGWiki has <26 Clothcraft
|
|
INSERT INTO `synth_recipes` VALUES (44502,0,0,0,0,0,0,91,0,0,0,4099,4241,1117,1117,1629,2372,2372,0,0,0,14981,14982,14982,14982,1,1,1,1,'Khimaira Wristbands','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44503,0,0,0,0,0,0,91,0,0,0,4099,4241,2751,2824,12826,0,0,0,0,0,12228,12228,12228,12228,1,1,1,1,'Ebon Brais','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44504,0,0,0,0,51,49,91,0,0,0,4099,4241,663,666,761,829,879,2152,2152,2289,14524,14528,14528,14528,1,1,1,1,'Sipahi Jawshan','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44505,0,0,0,0,0,0,91,0,0,0,4099,4241,9130,10362,0,0,0,0,0,0,27487,27488,27488,27488,1,1,1,1,'Vexed Boots','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (44506,0,0,0,0,0,52,91,0,0,0,4099,4241,821,828,849,851,851,0,0,0,14182,14183,14183,14183,1,1,1,1,'Errant Pigaches',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44507,0,0,0,0,0,0,91,0,0,0,4099,4241,1373,9130,0,0,0,0,0,0,27392,27393,27393,27393,1,1,1,1,'Bewitched Pumps','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (44508,0,0,0,0,0,0,92,0,0,0,4099,4241,1971,13197,0,0,0,0,0,0,15869,15869,15869,15869,1,1,1,1,'Pendragon\'s Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44509,0,0,0,0,0,0,92,0,0,0,4099,4241,1970,13197,0,0,0,0,0,0,15868,15868,15868,15868,1,1,1,1,'Czar\'s Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44510,0,0,0,0,0,0,92,0,0,0,4099,4241,1969,13197,0,0,0,0,0,0,15867,15867,15867,15867,1,1,1,1,'Sultan\'s Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44511,0,0,43,0,0,47,92,0,0,0,4099,4241,725,879,1768,2287,2475,2475,0,0,150,150,150,150,1,1,1,1,'Leather Pot','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44512,0,0,0,0,48,59,92,0,0,0,4099,4241,828,849,2152,2152,2474,2476,0,0,2457,2458,2458,2458,1,1,1,1,'Cursed Clogs',NULL); -- wiki, BG, jpwiki, AH checked 24/Nov/2021
|
|
INSERT INTO `synth_recipes` VALUES (44513,0,0,0,0,0,56,92,0,0,0,4099,4241,823,828,830,1117,1409,0,0,0,1372,1373,1373,1373,1,1,1,1,'Cursed Pumps',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44514,0,0,0,0,0,0,92,0,0,0,4099,4241,1972,13197,0,0,0,0,0,0,15870,15870,15870,15870,1,1,1,1,'Maharaja\'s Belt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44515,0,0,0,0,0,0,92,0,0,0,4096,4238,9130,10309,0,0,0,0,0,0,27125,27126,27126,27126,1,1,1,1,'Vexed Kote','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (44516,0,0,0,0,60,38,92,0,0,0,4099,4241,747,823,828,855,855,1629,0,0,15303,15304,15304,15304,1,1,1,1,'Sha\'ir Crackows','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44517,0,0,0,0,0,0,92,0,0,0,4099,4241,817,1296,1296,0,0,0,0,0,13653,13654,13654,13654,1,1,1,1,'Desert Mantle',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44518,0,0,0,0,0,29,93,0,0,0,4099,4241,1117,1163,1163,1619,1629,1629,0,0,15307,15308,15308,15308,1,1,1,1,'Bison Gamashes','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44519,0,0,0,0,53,0,93,0,0,0,4099,4241,746,2751,2751,2824,0,0,0,0,12192,12192,12192,12192,1,1,1,1,'Ebon Gloves','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44520,0,0,0,0,0,11,93,0,0,0,4099,4241,821,850,851,1296,12475,0,0,0,13939,13940,13940,13940,1,1,1,1,'Austere Hat',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44521,0,0,0,0,0,0,93,0,0,0,4096,4238,9130,10589,0,0,0,0,0,0,27310,27311,27311,27311,1,1,1,1,'Vexed Hakama','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (44522,0,0,0,0,0,0,93,0,0,0,4099,4241,862,12830,0,0,0,0,0,0,12879,14307,14307,14307,1,1,1,1,'Dusk Trousers',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44523,0,0,0,0,0,0,93,0,0,0,4099,4241,9130,10588,0,0,0,0,0,0,27308,27309,27309,27309,1,1,1,1,'Vexed Hose','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (44524,0,0,0,0,0,29,93,0,0,0,4099,4241,1117,1619,1629,1629,2372,2372,0,0,15731,15732,15732,15732,1,1,1,1,'Khimaira Gamashes','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44525,0,0,0,0,0,0,94,0,0,0,4099,4241,862,12958,0,0,0,0,0,0,12957,14188,14188,14188,1,1,1,1,'Dusk Ledelsens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44526,0,0,0,0,0,11,94,0,0,0,4099,4241,821,850,851,1277,12987,0,0,0,14189,14190,14190,14190,1,1,1,1,'Austere Sabots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44527,0,0,0,31,0,21,94,0,0,0,4101,4243,666,823,851,855,855,913,1117,1117,14372,14373,14373,14373,1,1,1,1,'Cardinal Vest',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44528,0,0,0,0,0,0,95,0,0,0,4097,4239,820,851,861,861,1122,0,0,0,13918,13919,13919,13919,1,1,1,1,'Tiger Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44529,0,0,0,0,0,33,95,0,0,0,4099,4241,1117,1163,1163,1619,1619,1623,1629,0,15157,15158,15158,15158,1,1,1,1,'Bison Warbonnet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44530,0,0,0,0,0,0,95,0,0,0,4099,4241,817,2523,2523,0,0,0,0,0,16233,16234,16234,16234,1,1,1,1,'Peiste Mantle','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44531,0,0,0,0,0,0,95,0,0,0,4097,4239,2169,2287,0,0,0,0,0,0,16212,16216,16216,16216,1,1,1,1,'Cerberus Mantle','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44532,0,0,0,0,0,33,95,0,0,0,4099,4241,1117,1619,1619,1623,1629,2372,2372,0,16104,16105,16105,16105,1,1,1,1,'Khimaira Bonnet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44533,0,0,0,0,0,0,95,0,0,0,4099,4241,9508,0,0,0,0,0,0,0,16233,16233,16233,16233,1,1,1,1,'Peiste Mantle','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (44534,0,0,0,0,57,0,95,0,0,0,4099,4241,669,746,2751,2824,0,0,0,0,12264,12264,12264,12264,1,1,1,1,'Ebon Boots','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44535,0,0,0,0,45,0,96,0,0,0,4099,4241,745,798,823,823,2166,2289,2340,2340,147,147,147,147,1,1,1,1,'Imperial Tapestry','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44536,0,0,0,0,0,42,96,0,0,0,4102,4244,821,829,830,850,850,1117,1278,0,14116,14125,14125,14125,1,1,1,1,'Opaline Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44537,0,0,0,0,46,41,96,0,0,0,4099,4241,745,790,823,828,855,1680,0,0,14846,14847,14847,14847,1,1,1,1,'Sha\'ir Gages','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44538,0,0,0,60,0,0,97,0,0,0,4099,4241,669,2751,2824,0,0,0,0,0,12120,12120,12120,12120,1,1,1,1,'Ebon Mask','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44539,0,2018,0,0,0,0,97,0,0,0,4103,4245,635,635,635,1516,1516,1516,2129,4509,1459,1459,1459,1459,3,3,3,3,'Griffon Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44540,0,0,0,0,0,54,97,0,0,0,4099,4241,855,1117,1629,1629,2372,2372,2372,2372,15645,15646,15646,15646,1,1,1,1,'Khimaira Kecks','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44541,0,0,0,0,0,0,97,0,0,0,4103,4245,635,1516,4509,0,0,0,0,0,1459,1459,1459,1459,1,1,1,1,'Griffon Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44542,0,0,0,0,0,54,97,0,0,0,4099,4241,855,1117,1163,1163,1163,1163,1629,1629,14319,14320,14320,14320,1,1,1,1,'Bison Kecks','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44543,0,0,0,0,0,0,97,0,0,0,4099,4241,862,12447,0,0,0,0,0,0,12445,13938,13938,13938,1,1,1,1,'Dusk Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44544,0,0,0,0,0,11,97,0,0,0,4099,4241,821,1276,1296,12731,0,0,0,0,14826,14827,14827,14827,1,1,1,1,'Austere Cuffs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44545,0,0,0,0,0,0,97,0,0,0,4103,4245,695,1516,4509,0,0,0,0,0,1459,1459,1459,1459,1,1,1,1,'Griffon Leather',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44546,0,0,0,0,0,0,98,0,0,0,4103,4245,695,874,4509,0,0,0,0,0,875,875,875,875,1,1,1,1,'Amaltheia Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44547,0,0,0,0,0,0,98,0,0,0,4103,4245,635,874,4509,0,0,0,0,0,875,875,875,875,1,1,1,1,'Amaltheia Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44548,0,0,0,0,0,11,98,0,0,0,4099,4241,821,849,858,1277,12859,0,0,0,14310,14311,14311,14311,1,1,1,1,'Austere Slops',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44549,0,2018,0,0,0,0,98,0,0,0,4103,4245,635,635,635,874,874,874,2129,4509,875,875,875,875,3,3,3,3,'Amaltheia Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44550,0,0,0,0,0,0,98,0,0,0,4099,4241,674,851,851,1277,0,0,0,0,14191,14192,14192,14192,1,1,1,1,'Heroic Boots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44551,0,0,0,0,0,51,99,60,0,0,4099,4241,1117,1117,1163,1163,1615,1623,1629,1629,14418,14419,14419,14419,1,1,1,1,'Bison Jacket','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44552,0,0,0,0,0,0,99,0,0,0,4099,4241,862,12702,0,0,0,0,0,0,12701,14825,14825,14825,1,1,1,1,'Dusk Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44553,0,0,0,0,0,50,99,0,0,0,4099,4241,2287,2288,2288,2288,2476,2751,0,0,10365,10366,10366,10366,1,1,1,1,'Chelona Boots','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (44554,0,0,0,0,0,55,99,0,0,0,4099,4241,823,828,855,1163,1767,0,0,0,15329,15331,15331,15331,1,1,1,1,'Blessed Pumps','COP');
|
|
INSERT INTO `synth_recipes` VALUES (44555,0,0,0,0,0,0,99,0,0,0,4101,4243,913,1117,1297,14372,0,0,0,0,13816,13817,13817,13817,1,1,1,1,'Narasimha\'s Vest',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44556,0,0,0,0,0,54,99,60,0,0,4099,4241,1117,1117,1615,1623,1629,1629,2372,2372,14566,14567,14567,14567,1,1,1,1,'Khimaira Jacket','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (44557,0,0,0,0,0,60,100,0,0,0,4099,4241,1998,2124,3550,3551,3551,0,0,0,10645,10646,10646,10646,1,1,1,1,'Spolia Pigaches','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (44558,0,0,0,0,0,31,100,0,0,0,4099,4241,821,827,830,849,851,1276,1296,12603,13814,13815,13815,13815,1,1,1,1,'Austere Robe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44559,0,0,0,0,0,0,100,0,0,0,4098,4240,862,914,3935,0,0,0,0,0,28466,28467,28467,28467,1,1,1,1,'Dynamic Belt','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (44560,0,0,0,0,0,255,100,0,0,0,4099,4241,8751,8751,8976,8976,8988,0,0,0,27400,27401,27401,27401,1,1,1,1,'Revealer\'s Pumps','SOA'); -- 2021.11.17 FFXIclopedia, BGWiki, and JPWiki show 100 Leathercraft ??? Clothcraft
|
|
INSERT INTO `synth_recipes` VALUES (44561,0,0,0,60,0,0,100,40,0,0,4099,4241,669,754,1312,2712,2751,2751,2824,0,12156,12156,12156,12156,1,1,1,1,'Ebon Harness','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (44562,0,0,0,0,0,0,100,0,0,0,4099,4241,1629,1629,3552,3552,0,0,0,0,10577,10578,10578,10578,1,1,1,1,'Urja Trousers','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (44563,0,0,0,0,41,0,100,0,0,0,4099,4241,745,862,1122,14284,0,0,0,0,12573,14391,14391,14391,1,1,1,1,'Dusk Jerkin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (44564,0,0,0,0,0,0,100,0,0,0,4099,4241,820,869,8707,8975,0,0,0,0,27603,27604,27604,27604,1,1,1,1,'Aptitude Mantle','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (45001,0,0,0,60,60,0,101,0,0,0,4099,4241,665,914,2007,2122,2152,2166,2275,2359,14544,14545,14545,14545,1,1,1,1,'Corselet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (45002,0,0,0,0,0,0,101,0,0,0,4099,4241,3552,8708,12696,0,0,0,0,0,28036,28037,28037,28037,1,1,1,1,'Aetosaur Gloves','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (45003,0,0,0,0,0,0,101,0,0,0,4099,4241,823,1132,4028,8707,8708,0,0,0,28318,28319,28319,28319,1,1,1,1,'Haruspex Pigaches','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (45004,0,0,0,55,0,0,102,0,0,0,4099,4241,1989,2152,3552,3552,0,0,0,0,10412,10413,10413,10413,1,1,1,1,'Urja Helm','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45005,0,0,0,0,0,0,102,0,0,0,4099,4241,862,1163,2828,0,0,0,0,0,10996,10997,10997,10997,1,1,1,1,'Testudo Mantle','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45006,0,0,0,0,0,0,103,0,0,0,4099,4241,3552,3964,8708,12952,0,0,0,0,28314,28315,28315,28315,1,1,1,1,'Aetosaur Ledelsens','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (45007,0,0,0,0,0,0,103,0,0,0,4098,4240,879,2530,2655,0,0,0,0,0,11379,11380,11380,11380,1,1,1,1,'Hermes\' Sandals','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (45008,0,0,0,0,0,0,103,0,0,0,4097,4239,820,851,1122,1591,1591,0,0,0,13942,13943,13943,13943,1,1,1,1,'Panther Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (45009,0,0,0,0,0,50,103,0,0,0,4099,4241,869,2304,3445,3552,0,0,0,0,10998,10999,10999,10999,1,1,1,1,'Attacker\'s Mantle','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45010,0,0,0,0,0,0,104,0,0,0,4103,4245,635,3547,4509,0,0,0,0,0,3548,3548,3548,3548,1,1,1,1,'Sealord Leather','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45011,0,0,0,0,0,0,104,0,0,0,4103,4245,695,3547,4509,0,0,0,0,0,3548,3548,3548,3548,1,1,1,1,'Sealord Leather','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45012,0,0,0,0,0,0,104,0,0,0,4099,4241,1629,3552,3552,0,0,0,0,0,10546,10547,10547,10547,1,1,1,1,'Urja Gloves','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (45013,0,0,0,62,255,0,104,0,0,0,4099,4241,665,862,862,914,1409,2189,2275,3925,27920,27921,27921,27921,1,1,1,1,'Pak Corselet','SOA'); -- 2021.11.17 FFXIclopedia and BGWiki show 104, JPWiki shows 104-105 Leathercraft. BGWiki shows 60-62 Smithing. All show ??? Goldsmithing.
|
|
INSERT INTO `synth_recipes` VALUES (45014,0,0,0,54,0,0,105,0,0,0,4099,4241,1629,1990,3552,3552,0,0,0,0,10643,10644,10644,10644,1,1,1,1,'Urja Ledelsens','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45015,0,0,0,0,0,0,105,0,0,0,4099,4241,2878,3548,13249,0,0,0,0,0,10836,10837,10837,10837,1,1,1,1,'Phos Belt','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45016,0,0,0,54,0,0,105,0,0,0,4099,4241,1629,1989,3552,3552,13705,0,0,0,10496,10497,10497,10497,1,1,1,1,'Urja Jerkin','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45017,0,0,0,0,0,0,105,0,0,0,4098,4240,860,3981,0,0,0,0,0,0,22200,22201,22201,22201,1,1,1,1,'Clerisy Strap','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45018,0,0,0,0,0,0,105,0,0,0,4098,4240,2169,8754,0,0,0,0,0,0,22210,22211,22211,22211,1,1,1,1,'Elan Strap','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45019,0,0,0,0,0,0,105,0,0,0,4098,4240,860,3978,0,0,0,0,0,0,22202,22203,22203,22203,1,1,1,1,'Irenic Strap','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45020,0,0,0,0,0,0,105,0,0,0,4098,4240,2169,4015,0,0,0,0,0,0,22208,22209,22209,22209,1,1,1,1,'Mensch Strap','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45021,0,0,0,0,0,0,105,0,0,0,4103,4245,635,4509,9253,0,0,0,0,0,9254,9254,9254,9254,1,1,1,1,'Faulpie Leather','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45022,0,0,0,0,0,0,105,0,0,0,4103,4245,695,4509,9253,0,0,0,0,0,9254,9254,9254,9254,1,1,1,1,'Faulpie Leather','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45023,0,0,0,0,0,0,106,0,0,0,4099,4241,3552,3552,8708,0,0,0,0,0,27746,27747,27747,27747,1,1,1,1,'Aetosaur Helm','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (45024,0,0,0,0,0,50,107,0,0,0,4099,4241,822,2497,2530,3545,0,0,0,0,10357,10362,10362,10362,1,1,1,1,'Hexed Boots','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45025,0,0,0,0,0,0,107,0,0,0,4099,4241,3552,3552,8708,12824,0,0,0,0,28176,28177,28177,28177,1,1,1,1,'Aetosaur Trousers','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (45026,0,0,0,60,30,0,108,0,0,0,4096,4238,687,752,759,1279,1415,3548,0,0,10304,10309,10309,10309,1,1,1,1,'Hexed Tekko','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45027,0,0,0,0,0,0,109,0,0,0,4099,4241,3552,3552,8708,8708,0,0,0,0,27889,27890,27890,27890,1,1,1,1,'Aetosaur Jerkin','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (45028,0,0,0,0,0,0,109,0,0,0,4099,4241,765,3548,8754,0,0,0,0,0,28446,28447,28447,28447,1,1,1,1,'Sweordfaetels','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (45029,0,0,0,0,60,0,110,0,0,0,4099,4241,766,862,2570,3548,3548,0,0,0,10583,10588,10588,10588,1,1,1,1,'Hexed Hose','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45030,0,0,0,0,0,38,110,0,0,0,4096,4238,687,745,823,1279,1829,3548,3548,0,10584,10589,10589,10589,1,1,1,1,'Hexed Hakama','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (45031,0,0,0,0,0,0,110,0,0,0,4099,4241,862,3981,10836,0,0,0,0,0,28464,28465,28465,28465,1,1,1,1,'Pya\'ekue Belt','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (45032,0,0,0,0,0,0,110,55,0,0,4102,4244,8752,9062,9255,9854,9873,0,0,0,25465,25466,25467,25467,1,1,1,1,'Beastmaster Collar','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45033,0,0,0,0,0,0,110,55,0,0,4102,4244,8752,9062,9255,9859,9873,0,0,0,25495,25496,25497,25497,1,1,1,1,'Dragoon\'s Collar','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45034,0,0,0,0,0,0,110,55,0,0,4102,4244,8752,9062,9255,9863,9873,0,0,0,25519,25520,25521,25521,1,1,1,1,'Puppetmaster\'s Collar','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45035,0,0,0,0,0,0,110,55,0,0,4102,4244,8752,9062,9255,9860,9873,0,0,0,25501,25502,25503,25503,1,1,1,1,'Summoner\'s Collar','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45501,0,0,0,0,0,70,111,0,0,0,4099,4241,1372,8728,8754,9130,0,0,0,0,27392,27393,27393,27393,1,1,1,1,'Bewitched Pumps','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45502,0,0,0,0,0,70,111,0,0,0,4099,4241,8728,8754,9130,10357,0,0,0,0,27487,27488,27488,27488,1,1,1,1,'Vexed Boots','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45503,0,0,0,0,0,0,112,0,0,0,4097,4239,4027,8754,0,0,0,0,0,0,28606,28607,28607,28607,1,1,1,1,'Aput Mantle','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (45504,0,0,0,0,0,70,112,0,0,0,4096,4238,8754,9048,9130,10304,0,0,0,0,27125,27126,27126,27126,1,1,1,1,'Vexed Kote','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45505,0,0,0,0,0,70,113,0,0,0,4096,4238,8754,9048,9130,10584,0,0,0,0,27310,27311,27311,27311,1,1,1,1,'Vexed Hakama','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45506,0,0,0,0,70,0,113,0,0,0,4099,4241,8722,9003,9130,10583,0,0,0,0,27308,27309,27309,27309,1,1,1,1,'Vexed Hose','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (45507,0,0,0,0,0,65,115,0,0,0,4098,4240,837,1767,3544,3549,9003,9003,0,0,26879,26880,26880,26880,1,1,1,1,'Wretched Coat','SOA'); -- 2021.11.17 FFXIclopedia shows 114-119 Leathercraft 60-69 Clothcraft, BGWiki shows 115 Leathercraft, 60-65 Clothcraft, JPWiki shows 111-119 Leathercraft, 60-65 Clothcraft, FFXIAH shows 115 Leathercraft with 60+ Clothcraft
|
|
-- INSERT INTO `synth_recipes` VALUES (45508,0,2021,0,255,0,0,255,0,0,0,4102,4244,9004,9062,9249,9839,9844,9845,9845,9857,21968,21969,21970,21970,1,1,1,1,'Saotome-no-tachi','ROV'); -- 2021.11.17 FFXIclopedia and JPWiki show 111-113 Leathercraft, BGWiki shows 111-114. All have ??? Smithing and Goldsmithing
|
|
INSERT INTO `synth_recipes` VALUES (45509,0,0,0,0,0,0,114,0,0,0,4099,4241,9003,9006,28464,0,0,0,0,0,26331,26332,26332,26332,1,1,1,1,'Tempus Fugit','ROV'); -- 2021.11.17 FFXIclopedia, BGWiki, and JPWiki show 111-114 Leathercraft.
|
|
-- INSERT INTO `synth_recipes` VALUES (45510,0,2021,0,255,0,0,113,0,0,0,4102,4244,9004,9062,9249,9838,9844,9845,9845,9858,21915,21916,21917,21917,1,1,1,1,'Koga Shinobi-Gatana','ROV'); -- 2021.11.17 FFXIclopedia, JPWiki shows Leathercraft 111-113. BGWiki has 111-114. All have ??? Smithing and Goldsmithing.
|
|
INSERT INTO `synth_recipes` VALUES (49901,1,0,0,0,0,0,27,0,0,0,4100,4242,13588,0,0,0,0,0,0,0,857,857,820,820,1,1,1,1,'Dhalmel Mantle (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49902,1,0,0,0,0,0,3,0,0,0,4100,4242,16385,0,0,0,0,0,0,0,715,850,850,850,1,1,2,2,'Cesti (desynth)',NULL); -- use synth lvl, ffxiclopedia results
|
|
INSERT INTO `synth_recipes` VALUES (49903,1,0,0,0,0,0,95,0,0,0,4100,4242,13918,0,0,0,0,0,0,0,861,820,851,1122,1,1,1,1,'Tiger Mask (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49904,1,0,0,0,0,0,52,0,0,0,4100,4242,16388,0,0,0,0,0,0,0,715,850,852,853,1,2,1,1,'Himantes (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (49905,1,0,0,0,0,0,90,0,0,0,4100,4242,14317,0,0,0,0,0,0,0,1680,816,1629,1629,1,3,1,2,'Barone Cosciales (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (49906,1,0,0,0,0,0,17,0,0,0,4100,4242,16386,0,0,0,0,0,0,0,715,852,850,850,1,1,1,2,'Lizard Cesti (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49907,1,0,0,0,0,0,74,0,0,0,4100,4242,12830,0,0,0,0,0,0,0,851,851,855,855,2,3,1,2,'Tiger Trousers (desynth)',NULL); -- 2021.11.16 Based on synth. Materials results from Allakhazam
|
|
INSERT INTO `synth_recipes` VALUES (49908,1,0,0,0,0,0,22,0,0,0,4100,4242,13469,0,0,0,0,0,0,0,848,848,848,848,1,1,1,1,'Leather Ring (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49909,1,0,0,0,0,0,39,0,0,0,4100,4242,13089,0,0,0,0,0,0,0,818,818,858,858,1,1,1,1,'Wolf Gorget (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49910,1,0,0,0,0,0,57,0,0,0,4100,4242,12700,0,0,0,0,0,0,0,817,850,853,853,3,2,1,1,'Raptor Gloves (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49911,1,0,0,0,0,0,79,0,0,0,4100,4242,13092,0,0,0,0,0,0,0,818,818,863,863,1,1,1,1,'Coeurl Gorget (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49912,1,0,0,0,0,0,38,0,0,0,4100,4242,12443,0,0,0,0,0,0,0,913,851,851,851,1,1,1,1,'Cuir Bandana (desynth)',NULL); -- use synth lvl, ffxiclopedia results
|
|
INSERT INTO `synth_recipes` VALUES (49913,1,0,0,0,0,0,37,0,0,0,4100,4242,13081,0,0,0,0,0,0,0,817,817,851,851,1,1,1,1,'Leather Gorget (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49914,1,0,0,0,0,0,28,0,0,0,4100,4242,12954,0,0,0,0,0,0,0,848,651,651,651,1,1,2,2,'Studded Boots (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49915,1,0,0,0,0,0,9,0,0,0,4100,4242,12824,0,0,0,0,0,0,0,817,817,850,850,5,6,1,2,'Leather Trousers (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49916,1,0,0,0,0,0,7,0,0,0,4100,4242,13594,0,0,0,0,0,0,0,817,856,856,856,1,3,4,5,'Rabbit Mantle (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (49917,1,0,0,0,0,0,16,0,0,0,4100,4242,12697,0,0,0,0,0,0,0,817,850,852,852,3,1,1,1,'Lizard Gloves (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49918,1,0,0,0,0,0,6,0,0,0,4100,4242,12952,0,0,0,0,0,0,0,649,850,850,850,1,1,2,3,'Leather Highboots (desynth)',NULL); -- 2021.11.16 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49919,1,0,0,0,0,0,94,0,0,0,4100,4242,14372,0,0,0,0,0,0,0,851,855,1117,823,1,1,1,1,'Cardinal Vest (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (49920,1,0,0,0,0,0,70,0,0,0,4100,4242,13754,0,0,0,0,0,0,0,851,855,855,855,1,1,1,1,'Black Cotehardie (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49921,1,0,0,0,0,0,8,0,0,0,4100,4242,12696,0,0,0,0,0,0,0,817,817,850,850,2,3,2,3,'Leather Gloves (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49922,1,0,0,0,0,0,43,0,0,0,4100,4242,13200,0,0,0,0,0,0,0,817,851,851,851,1,1,2,2,'Waistbelt (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49923,1,0,0,0,0,0,30,0,0,0,4100,4242,12826,0,0,0,0,0,0,0,817,848,651,651,6,6,2,2,'Studded Trousers (desynth)',NULL); -- 2022.03.01 Basded on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (49924,1,0,0,0,0,0,53,0,0,0,4100,4242,13593,0,0,0,0,0,0,0,817,853,853,853,1,1,2,2,'Raptor Mantle (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49925,1,0,0,0,0,0,49,0,0,0,4100,4242,13570,0,0,0,0,0,0,0,820,820,859,859,1,1,1,1,'Ram Mantle (desynth)',NULL); -- 2021.11.15 Based on synth. FFXIclopedia and FFXIAH are in agreement though Allakhazam does not show Ram Skin as a result.
|
|
INSERT INTO `synth_recipes` VALUES (49926,1,0,0,0,0,0,40,0,0,0,4100,4242,12699,0,0,0,0,0,0,0,850,850,850,850,2,2,2,2,'Cuir Gloves (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49927,1,0,0,0,0,0,102,0,0,0,4100,4242,13942,0,0,0,0,0,0,0,820,851,1591,1122,1,1,1,1,'Panther Mask (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49928,1,0,0,0,0,0,11,0,0,0,4100,4242,12992,0,0,0,0,0,0,0,850,850,850,850,1,1,2,2,'Solea (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49929,1,0,0,0,0,0,10,0,0,0,4100,4242,12568,0,0,0,0,0,0,0,850,850,850,852,1,2,3,1,'Leather Vest (desynth)',NULL); -- 2021.11.15 Based on synth. FFXIclopedia shows level 9 though synth level is 10.
|
|
INSERT INTO `synth_recipes` VALUES (49930,1,0,0,0,0,0,96,0,0,0,4100,4242,14846,0,0,0,0,0,0,0,816,855,1680,1680,1,1,1,1,'Sha\'ir Gages (desynth)','COP'); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49931,1,0,0,0,0,0,28,0,0,0,4100,4242,14323,0,0,0,0,0,0,0,850,819,819,819,1,3,5,5,'Noct Brais (desynth)','COP'); -- 2021.11.15 Based on synth. FFXIclopedia shows mats 1,3,5,7. Chaged HQ3 to 5 based on Allakhazam and FFXIAH.
|
|
INSERT INTO `synth_recipes` VALUES (49932,1,0,0,0,0,0,13,0,0,0,4100,4242,13192,0,0,0,0,0,0,0,850,850,651,651,1,1,1,2,'Leather Belt (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49933,1,0,0,0,0,0,93,0,0,0,4100,4242,13939,0,0,0,0,0,0,0,850,851,851,851,1,1,1,1,'Austere Hat (desynth)',NULL); -- BG data incomplete but does not contradict
|
|
INSERT INTO `synth_recipes` VALUES (49934,1,0,0,0,0,0,88,0,0,0,4100,4242,12703,0,0,0,0,0,0,0,850,850,851,506,1,2,1,1,'Coeurl Gloves (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49935,1,0,0,0,0,0,5,0,0,0,4100,4242,12440,0,0,0,0,0,0,0,850,850,850,850,1,1,1,1,'Leather Bandana (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49936,1,0,0,0,0,0,88,0,0,0,4100,4242,13704,0,0,0,0,0,0,0,850,506,1117,1117,1,1,1,1,'Ogre Mask (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49937,1,0,0,0,0,0,14,0,0,0,4100,4242,13592,0,0,0,0,0,0,0,817,852,869,869,1,1,1,1,'Lizard Mantle (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49938,1,0,0,0,0,0,41,0,0,0,4100,4242,13203,0,0,0,0,0,0,0,850,924,924,924,1,1,1,1,'Barbarian\'s Belt (desynth)',NULL); -- BG data incomplete but does not contradict
|
|
INSERT INTO `synth_recipes` VALUES (49939,1,0,0,0,0,0,90,0,0,0,4100,4242,13705,0,0,0,0,0,0,0,850,506,1117,849,1,2,1,1,'Ogre Jerkin (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49940,1,0,0,0,0,0,62,0,0,0,4100,4242,13546,0,0,0,0,0,0,0,855,855,855,855,1,1,1,1,'Hard Leather Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (49941,1,0,0,0,0,0,70,0,0,0,4100,4242,13591,0,0,0,0,0,0,0,820,820,820,820,1,1,1,1,'Behemoth Mantle (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
-- INSERT INTO `synth_recipes` VALUES (49942,1,0,0,0,0,0,255,0,0,0,4098,4240,1196,0,0,0,0,0,0,0,879,879,879,879,1,1,1,1,'Qiqirn Cape (desynth)','TOAU'); -- 2021.11.15 Sites agree about materials though disagree about level. FFXIclopedia 12 JPWiki ??
|
|
INSERT INTO `synth_recipes` VALUES (49943,1,0,0,0,0,0,15,0,0,0,4100,4242,12441,0,0,0,0,0,0,0,850,852,852,852,1,1,2,2,'Lizard Helm (desynth)',NULL); -- 2021.11.15 Level based on synth. Items taken from FFXIclopedia though there is disagreement. This makes the most sense based on synth.
|
|
INSERT INTO `synth_recipes` VALUES (49944,1,0,0,0,0,0,57,0,0,0,4100,4242,13703,0,0,0,0,0,0,0,850,852,851,851,1,3,1,1,'Brigandine (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (49945,1,0,0,0,0,0,91,0,0,0,4100,4242,14182,0,0,0,0,0,0,0,816,851,849,821,1,2,1,1,'Errant Pigaches (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (49946,1,0,0,0,0,0,24,0,0,0,4100,4242,12442,0,0,0,0,0,0,0,850,850,651,651,1,1,1,1,'Studded Bandana (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49947,1,0,0,0,0,0,29,0,0,0,4100,4242,12993,0,0,0,0,0,0,0,850,850,848,848,1,1,1,1,'Sandals (desynth)',NULL); -- 2021.11.15 Based on synth. Sites that show are in agreement.
|
|
INSERT INTO `synth_recipes` VALUES (49948,1,0,0,0,0,0,85,0,0,0,4100,4242,13595,0,0,0,0,0,0,0,820,863,863,863,1,1,1,1,'Coeurl Mantle (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (49949,1,0,0,0,0,0,34,0,0,0,4098,4240,1638,0,0,0,0,0,0,0,850,850,850,850,1,1,1,1,'Moblin Mask (desynth)','COP'); -- 2021.11.15 JPWiki and FFXIclopedia show level 34
|
|
INSERT INTO `synth_recipes` VALUES (49950,1,0,0,0,0,0,26,0,0,0,4100,4242,12698,0,0,0,0,0,0,0,817,850,848,651,3,2,1,2,'Studded Gloves (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (49951,1,0,0,0,0,0,32,0,0,0,4100,4242,12570,0,0,0,0,0,0,0,848,651,848,851,1,2,1,1,'Studded Vest (desynth)',NULL); -- Based on normal desynth behavior, More info needed
|
|
INSERT INTO `synth_recipes` VALUES (49952,1,0,0,4,0,0,0,0,0,0,4100,4242,12448,0,0,0,0,0,0,0,649,649,850,850,1,1,1,2,'Bronze Cap (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (49953,1,0,0,0,0,0,0,22,0,0,4100,4242,12966,0,0,0,0,0,0,0,880,850,850,850,1,1,2,2,'Bone Leggings (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (49954,1,0,0,0,0,0,5,20,0,0,4100,4242,12710,0,0,0,0,0,0,0,880,880,850,850,1,2,1,2,'Bone Mittens (desynth)',NULL); -- 2022.03.01 Base on normal desynth behavior, More info needed
|
|
INSERT INTO `synth_recipes` VALUES (49955,1,0,0,0,0,0,0,24,0,0,4100,4242,12834,0,0,0,0,0,0,0,817,880,850,850,3,1,1,2,'Bone Subligar (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (49956,1,0,0,33,0,0,0,0,0,0,4100,4242,12936,0,0,0,0,0,0,0,851,651,651,651,1,1,2,3,'Greaves (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (49957,1,0,0,0,0,0,0,26,0,0,4100,4242,12582,0,0,0,0,0,0,0,880,868,893,893,1,1,1,1,'Bone Harness (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (49958,1,0,0,35,0,0,7,0,0,0,4100,4242,12808,0,0,0,0,0,0,0,819,819,851,651,1,3,1,1,'Chain Hose (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia, info impossible need verification
|
|
-- INSERT INTO `synth_recipes` VALUES (49959,1,0,0,0,0,0,8,32,0,0,4100,4242,12967,0,0,0,0,0,0,0,889,852,852,894,1,1,2,1,'Beetle Leggings (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (49960,1,0,0,0,0,0,9,34,0,0,4100,4242,12835,0,0,0,0,0,0,0,818,818,852,894,1,3,1,1,'Beetle Subligar (desynth)',NULL); -- 2022.03.01 Base on normal desynth behavior
|
|
-- INSERT INTO `synth_recipes` VALUES (49961,1,0,0,0,48,0,9,0,0,0,4100,4242,12810,0,0,0,0,0,0,0,819,851,851,653,3,1,2,2,'Breeches (desynth)',NULL); -- 2022.03.01 Base on normal desynth behavior
|
|
INSERT INTO `synth_recipes` VALUES (49962,1,0,0,0,0,22,0,0,0,0,4100,4242,15207,0,0,0,0,0,0,0,1828,818,818,818,3,3,6,6,'Trader\'s Chapeau (desynth)','COP'); -- 2022.03.01 Base on FFXIclopedia show X6 cotton thread in hq 2 but recepie doesnt use 6 cotton thread
|
|
INSERT INTO `synth_recipes` VALUES (49963,1,0,0,0,0,24,0,0,0,0,4100,4242,14053,0,0,0,0,0,0,0,1828,818,850,850,3,3,2,2,'Trader\'s Cuffs (desynth)','COP'); -- 2022.03.01 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (49964,1,0,0,0,0,0,42,0,0,0,4100,4242,12955,0,0,0,0,0,0,0,850,851,851,851,3,2,2,2,'Cuir Highboots (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (49965,1,0,0,0,0,0,44,0,0,0,4100,4242,12827,0,0,0,0,0,0,0,850,850,850,850,2,2,2,2,'Cuir Trousers (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia no hq results
|
|
-- INSERT INTO `synth_recipes` VALUES (49966,1,0,0,0,0,0,46,0,0,0,4100,4242,12571,0,0,0,0,0,0,0,913,913,913,913,1,1,1,1,'Cuir Bouilli (desynth)',NULL); -- 2022.03.01 Base on FFXIclopedia no hq results
|
|
INSERT INTO `synth_recipes` VALUES (49967,1,0,0,0,21,0,0,0,0,0,4100,4242,12473,0,0,0,0,0,0,0,648,648,653,653,1,1,1,1,'Poet\'s Circlet (desynth)',NULL); -- 2022.03.03 Base on FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (49968,1,0,0,0,0,24,0,0,0,0,4100,4242,15161,0,0,0,0,0,0,0,840,819,819,819,2,2,4,4,'Noct Beret (desynth)','COP'); -- 2022.03.03 Base on FFXIclopedia
|
|
-- INSERT INTO `synth_recipes` VALUES (49969,1,0,0,0,0,27,20,0,0,0,4100,4242,15311,0,0,0,0,0,0,0,850,850,819,819,1,2,6,9,'Noct Gaiters (desynth)','COP'); -- 2022.03.03 Base on FFXIclopedia unknown yield
|
|
-- INSERT INTO `synth_recipes` VALUES (49970,1,0,8,0,0,32,0,0,0,0,4100,4242,12714,0,0,0,0,0,0,0,706,817,819,819,1,1,3,6,'Soil Tekko (desynth)',NULL); -- 2022.03.03 Base on normal desynth behavior
|
|
-- INSERT INTO `synth_recipes` VALUES (49971,1,0,0,0,0,36,0,0,0,0,4100,4242,12842,0,0,0,0,0,0,0,817,819,819,820,1,3,6,3,'Soil Sitabaki (desynth)',NULL); -- 2022.03.03 Base on FFXIclopedia unknown yield and level
|
|
INSERT INTO `synth_recipes` VALUES (49972,1,0,0,0,0,34,0,0,0,0,4100,4242,12970,0,0,0,0,0,0,0,818,819,819,819,1,7,8,8,'Soil Kyahan (desynth)',NULL); -- 2022.03.03 Base on FFXIclopedia unknown level used synth level
|
|
INSERT INTO `synth_recipes` VALUES (50001,0,0,0,0,0,0,0,1,0,0,4098,4240,888,888,888,0,0,0,0,0,1883,1883,1883,1883,1,2,3,4,'Shell Powder','COP');
|
|
INSERT INTO `synth_recipes` VALUES (50002,0,2025,0,0,0,0,0,1,0,0,4098,4240,880,1642,1644,1648,0,0,0,0,2141,2141,2141,2141,1,1,1,1,'Wailing Bone Chip','COP');
|
|
INSERT INTO `synth_recipes` VALUES (50003,0,0,0,0,0,0,0,3,0,0,4098,4240,888,888,0,0,0,0,0,0,13313,13314,13314,13314,1,1,1,1,'Shell Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50004,1,0,0,0,0,0,0,3,0,0,4100,4242,13313,0,0,0,0,0,0,0,888,888,888,888,1,1,2,2,'Shell Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50005,0,0,0,0,0,0,0,4,0,0,4098,4240,5131,5131,0,0,0,0,0,0,1883,1883,1883,1883,1,2,3,4,'Shell Powder','COP');
|
|
INSERT INTO `synth_recipes` VALUES (50006,0,0,0,0,0,0,0,4,0,0,4098,4240,880,0,0,0,0,0,0,0,12505,13825,13825,13825,1,1,1,1,'Bone Hairpin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50007,0,0,0,0,0,0,0,5,0,0,4098,4240,8875,0,0,0,0,0,0,0,1883,1883,1883,1883,1,1,1,1,'Shell Powder','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (50008,0,0,0,0,0,0,0,7,0,0,4098,4240,2141,12505,0,0,0,0,0,0,15268,15268,15268,15268,1,1,1,1,'Eldritch Bone Hairpin','COP');
|
|
INSERT INTO `synth_recipes` VALUES (50009,0,0,0,0,0,0,0,7,0,0,4098,4240,864,888,0,0,0,0,0,0,13442,13494,13494,13494,1,1,1,1,'Shell Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50010,0,2025,0,0,0,0,0,8,0,0,4098,4240,888,1642,1644,1648,0,0,0,0,2234,2234,2234,2234,1,1,1,1,'Wailing Shell','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (50011,0,2026,0,0,0,0,0,9,0,0,4098,4240,880,880,880,880,880,880,2130,0,1215,1215,1215,1215,18,24,30,36,'Bone Arrowheads','COP');
|
|
INSERT INTO `synth_recipes` VALUES (50012,0,0,0,3,0,0,0,9,0,0,4099,4241,660,856,880,880,880,0,0,0,16405,17476,17476,17476,1,1,1,1,'Cat Baghnakhs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50013,0,0,0,0,0,0,0,9,0,0,4098,4240,880,880,0,0,0,0,0,0,1215,1215,1215,1215,6,8,10,12,'Bone Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50014,0,0,2,0,0,0,0,10,0,0,4098,4240,705,841,841,880,880,880,0,0,17319,17319,17319,17319,33,66,99,99,'Bone Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50015,0,0,0,0,0,0,0,10,0,0,4098,4240,8876,0,0,0,0,0,0,0,1215,1215,1215,1215,6,6,6,6,'Bone Arrowheads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (50016,0,0,0,0,0,0,0,10,0,0,4098,4240,2234,13442,0,0,0,0,0,0,15782,15782,15782,15782,1,1,1,1,'Manashell Ring','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (50501,0,0,0,0,3,0,0,12,0,0,4098,4240,650,880,880,0,0,0,0,0,13321,13362,13362,13362,1,1,1,1,'Bone Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50502,1,0,0,0,0,0,0,12,0,0,4100,4242,13321,0,0,0,0,0,0,0,880,880,650,650,1,2,1,1,'Bone Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50503,0,0,0,0,0,0,0,13,0,0,4096,4238,898,898,4509,0,0,0,0,0,1111,1111,1111,1111,1,2,3,4,'Gelatin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50504,0,0,0,0,0,0,0,14,0,0,4099,4241,880,16442,0,0,0,0,0,0,17497,17498,17498,17498,1,1,1,1,'Windurstian Baghnakhs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50505,0,0,0,0,14,0,0,14,0,0,4098,4240,650,880,0,0,0,0,0,0,17344,17369,17369,17846,1,1,1,1,'Cornette',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50506,0,0,0,0,0,0,0,15,0,0,4099,4241,817,880,880,884,891,891,891,891,13076,13061,13061,13061,1,1,1,1,'Fang Necklace',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50507,0,0,0,0,0,0,0,15,0,0,4098,4240,893,1643,1646,1647,0,0,0,0,1973,1973,1973,1973,1,1,1,1,'Vivio Femur','COP');
|
|
INSERT INTO `synth_recipes` VALUES (50508,0,0,0,0,0,0,0,15,0,0,4099,4241,8877,0,0,0,0,0,0,0,13076,13076,13076,13076,1,1,1,1,'Fang Necklace','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (50509,0,0,0,0,0,0,0,6,0,0,4100,4242,4477,0,0,0,0,0,0,0,864,1587,1587,1587,12,1,2,4,'Fish Scales',NULL); -- 2021.11.10 All agree except BGWiki
|
|
INSERT INTO `synth_recipes` VALUES (50510,0,0,0,0,0,0,0,16,0,0,4096,4238,880,880,880,880,4509,0,0,0,1111,1111,1111,1111,1,2,3,4,'Gelatin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50511,0,0,0,0,0,0,0,17,0,0,4098,4240,880,882,0,0,0,0,0,0,13441,13500,13500,13500,1,1,1,1,'Bone Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50512,1,0,0,0,0,0,0,18,0,0,4100,4242,499,0,0,0,0,0,0,0,768,792,793,793,4,2,1,1,'Gigas Necklace (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50513,0,0,0,0,0,0,0,18,0,0,4099,4241,850,880,893,0,0,0,0,0,12454,13826,13826,13826,1,1,1,1,'Bone Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50514,0,0,0,0,0,0,0,19,0,0,4098,4240,4484,0,0,0,0,0,0,0,792,793,793,793,1,1,1,1,'Pearl',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50515,0,0,0,0,0,0,0,19,0,0,4098,4240,5456,0,0,0,0,0,0,0,17296,792,793,793,1,1,1,1,'Pebble','TOAU'); -- Istiridye Version
|
|
INSERT INTO `synth_recipes` VALUES (50516,0,0,0,0,0,0,0,19,0,0,4098,4240,5456,0,0,0,0,0,0,0,792,793,793,793,1,1,1,1,'Pearl','TOAU'); -- Istiridye Version
|
|
INSERT INTO `synth_recipes` VALUES (50517,0,0,0,0,0,0,0,19,0,0,4098,4240,4484,0,0,0,0,0,0,0,17296,792,793,793,1,1,1,1,'Pebble',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50518,0,0,0,0,0,0,5,20,0,0,4099,4241,850,850,880,880,0,0,0,0,12710,12788,12788,12788,1,1,1,1,'Bone Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (50519,0,0,0,0,0,0,0,20,0,0,4098,4240,8878,0,0,0,0,0,0,0,16642,16642,16642,16642,1,1,1,1,'Bone Axe','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (50520,0,0,0,0,0,0,0,21,0,0,4098,4240,893,895,895,0,0,0,0,0,16642,16666,16666,16666,1,1,1,1,'Bone Axe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51001,0,0,0,0,0,0,0,21,0,0,4098,4240,889,889,0,0,0,0,0,0,2004,2004,2004,2004,1,1,1,1,'Carapace Powder','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51002,0,0,0,0,0,0,5,22,0,0,4099,4241,850,850,880,893,0,0,0,0,12966,13042,13042,13042,1,1,1,1,'Bone Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51003,0,0,6,0,0,0,0,23,0,0,4098,4240,715,893,0,0,0,0,0,0,16649,16668,16668,16668,1,1,1,1,'Bone Pick',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51004,1,0,0,0,0,0,0,23,0,0,4100,4242,12415,0,0,0,0,0,0,0,893,885,885,885,1,1,1,1,'Shell Shield (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51005,0,2025,0,0,0,0,0,24,0,0,4098,4240,2230,2233,16642,0,0,0,0,0,17954,17954,17954,17954,1,1,1,1,'Jolt Axe','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (51006,0,0,0,0,0,0,6,24,0,0,4099,4241,824,850,850,880,0,0,0,0,12834,12912,12912,12912,1,1,1,1,'Bone Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51007,0,0,0,0,0,0,0,24,0,0,4098,4240,893,894,0,0,0,0,0,0,17351,17370,17370,17370,1,1,1,1,'Gemshorn',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51008,0,0,0,0,0,0,0,25,0,0,4098,4240,8879,0,0,0,0,0,0,0,13457,13457,13457,13457,1,1,1,1,'Beetle Ring','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (51009,0,0,0,0,0,0,0,25,0,0,4098,4240,894,0,0,0,0,0,0,0,13457,13501,13501,13501,1,1,1,1,'Beetle Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51010,0,2024,0,0,0,0,0,25,0,0,4098,4240,894,1643,1643,1647,0,0,0,0,1716,1716,1716,1716,1,1,1,1,'Smooth Beetle Jaw','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51011,0,0,0,0,0,0,7,26,0,0,4099,4241,850,850,868,880,893,0,0,0,12582,13716,13716,13716,1,1,1,1,'Bone Harness',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51012,0,0,0,0,0,0,11,26,0,0,4099,4241,850,850,880,2832,0,0,0,0,11407,11412,11412,11412,1,1,1,1,'Mettle Leggings','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (51013,0,0,0,0,0,0,0,27,0,0,4099,4241,894,13327,0,0,0,0,0,0,13323,13326,13326,13326,1,1,1,1,'Beetle Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51014,0,2025,0,0,0,0,0,27,0,0,4098,4240,895,1642,1644,1648,0,0,0,0,2142,2142,2142,2142,1,1,1,1,'Wailing Ram Horn','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51015,0,0,0,0,0,0,0,28,0,0,4099,4241,852,894,0,0,0,0,0,0,12455,13827,13827,13827,1,1,1,1,'Beetle Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51016,0,0,0,0,0,0,0,28,0,0,4096,4238,893,4509,0,0,0,0,0,0,1111,1111,1111,1111,4,6,8,10,'Gelatin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51017,0,0,0,0,0,0,0,29,0,0,4098,4240,895,0,0,0,0,0,0,0,12507,13828,13828,13828,1,1,1,1,'Horn Hairpin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51018,0,0,0,0,0,0,0,29,0,0,4098,4240,893,17367,0,0,0,0,0,0,17835,17836,17836,17836,1,1,1,1,'San d\'Orian Horn',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51019,0,0,0,0,0,0,20,29,0,0,4099,4241,819,869,880,927,0,0,0,0,15163,15166,15166,15166,1,1,1,1,'Seer\'s Crown','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51020,0,0,0,0,0,0,0,29,0,0,4099,4241,1973,12582,0,0,0,0,0,0,14495,14495,14495,14495,1,1,1,1,'Healing Harness','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51021,0,0,0,0,0,0,0,30,0,0,4099,4241,8880,0,0,0,0,0,0,0,12455,12455,12455,12455,1,1,1,1,'Beetle Mask','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (51022,0,0,0,0,0,0,8,30,0,0,4099,4241,852,852,889,0,0,0,0,0,12711,12789,12789,12789,1,1,1,1,'Beetle Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51501,0,0,0,0,0,0,0,31,0,0,4099,4241,889,894,894,0,0,0,0,0,13090,13062,13062,13062,1,1,1,1,'Beetle Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51502,1,0,0,0,0,0,0,31,0,0,4100,4242,13090,0,0,0,0,0,0,0,894,894,894,889,1,1,2,1,'Beetle Gorget (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51503,0,0,0,0,0,0,8,32,0,0,4099,4241,852,852,889,894,0,0,0,0,12967,13043,13043,13043,1,1,1,1,'Beetle Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51504,0,0,0,0,0,0,0,32,0,0,4098,4240,2142,12507,0,0,0,0,0,0,15269,15269,15269,15269,1,1,1,1,'Eldritch Horn Hairpin','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51505,0,2026,0,0,0,0,0,33,0,0,4098,4240,880,880,880,894,894,894,2130,0,1248,1248,1248,1248,18,24,30,36,'Beetle Arrowheads','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51506,0,0,0,0,0,0,0,33,0,0,4098,4240,880,894,0,0,0,0,0,0,1248,1248,1248,1248,6,8,10,12,'Beetle Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51507,0,0,0,0,0,0,9,34,0,0,4099,4241,825,852,894,0,0,0,0,0,12835,12913,12913,12913,1,1,1,1,'Beetle Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51508,0,0,0,0,0,0,0,35,0,0,4099,4241,8881,0,0,0,0,0,0,0,12414,12414,12414,12414,1,1,1,1,'Turtle Shield','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (51509,0,0,0,0,0,0,0,35,0,0,4099,4241,885,889,0,0,0,0,0,0,12414,12413,12413,12413,1,1,1,1,'Turtle Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51510,0,0,0,0,0,0,9,36,0,0,4099,4241,852,852,852,889,889,0,0,0,12583,13717,13717,13717,1,1,1,1,'Beetle Harness',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51511,0,0,0,0,0,0,0,37,0,0,4098,4240,864,895,0,0,0,0,0,0,13459,13502,13502,13502,1,1,1,1,'Horn Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51512,0,0,0,0,0,0,24,37,0,0,4099,4241,1618,1623,1717,0,0,0,0,0,15165,15169,15169,15169,1,1,1,1,'Shade Tiara','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51513,0,2026,0,0,0,0,0,38,0,0,4098,4240,880,880,880,884,884,884,2130,0,1515,1515,1515,1515,18,24,30,36,'Fang Arrowheads','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51514,0,0,0,0,0,21,24,38,0,0,4099,4241,529,850,855,1618,1623,1717,0,0,14858,14862,14862,14862,1,1,1,1,'Shade Mittens','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51515,0,0,0,0,0,0,0,38,0,0,4098,4240,880,884,0,0,0,0,0,0,1515,1515,1515,1515,6,8,10,12,'Fang Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51516,0,0,0,0,0,23,24,39,0,0,4099,4241,529,828,855,1618,1623,1717,0,0,14327,14331,14331,14331,1,1,1,1,'Shade Tights','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51517,0,0,0,0,0,0,0,39,0,0,4098,4240,824,880,880,880,880,880,880,893,17026,17033,17033,17033,1,1,1,1,'Bone Cudgel',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (51518,0,0,0,0,0,0,0,40,0,0,4098,4240,8882,0,0,0,0,0,0,0,17026,17026,17026,17026,1,1,1,1,'Bone Cudgel','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (51519,0,0,0,0,0,0,0,40,0,0,4100,4242,4476,0,0,0,0,0,0,0,1586,1586,1586,1586,1,2,3,4,'Titanictus Shell','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51520,0,0,0,0,0,0,0,40,0,0,4100,4242,4316,0,0,0,0,0,0,0,1586,1586,1586,1586,1,1,1,1,'Titanictus Shell','COP');
|
|
INSERT INTO `synth_recipes` VALUES (51521,0,0,0,0,0,22,24,40,0,0,4099,4241,529,852,855,855,1618,1623,1717,0,15315,15319,15319,15319,1,1,1,1,'Shade Leggings','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52001,0,0,0,0,0,0,0,41,0,0,4098,4240,711,893,0,0,0,0,0,0,17610,17611,17611,17611,1,1,1,1,'Bone Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52002,0,2024,0,0,0,0,0,41,0,0,4098,4240,881,1643,1646,1647,0,0,0,0,1974,1974,1974,1974,1,1,1,1,'Vivio Crab Shell','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52003,0,0,0,0,0,0,13,41,0,0,4099,4241,869,894,927,1700,0,0,0,0,15164,15168,15168,15168,1,1,1,1,'Garish Crown','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52004,0,2025,0,0,0,0,0,41,0,0,4098,4240,881,1645,1645,1648,0,0,0,0,2420,2420,2420,2420,1,1,1,1,'Luminous Shell','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (52005,0,0,0,0,11,0,0,42,0,0,4098,4240,653,881,0,0,0,0,0,0,13461,13503,13503,13503,1,1,1,1,'Carapace Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52006,0,0,0,0,0,24,25,42,0,0,4099,4241,529,828,855,1618,1618,1623,1623,1717,14426,14433,14433,14433,1,1,1,1,'Shade Harness','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52007,0,0,0,0,0,0,0,43,0,0,4098,4240,880,895,0,0,0,0,0,0,1249,1249,1249,1249,6,8,10,12,'Horn Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52008,0,2026,0,0,0,0,0,43,0,0,4098,4240,880,880,880,895,895,895,2130,0,1249,1249,1249,1249,18,24,30,36,'Horn Arrowheads','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52009,0,0,0,0,0,0,0,43,34,0,4099,4241,882,891,891,898,932,933,937,939,1115,1115,1115,1115,2,4,6,8,'Skeleton Key',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52010,0,0,0,0,0,0,11,44,0,0,4099,4241,848,864,881,0,0,0,0,0,13713,12790,12790,12790,1,1,1,1,'Carapace Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52011,0,0,0,0,0,0,0,44,0,0,4099,4241,1716,15164,0,0,0,0,0,0,15162,15162,15162,15162,1,1,1,1,'Mist Crown','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52012,0,2025,0,0,0,0,0,44,0,0,4098,4240,2230,2233,17610,0,0,0,0,0,18035,18035,18035,18035,1,1,1,1,'Deathbone Knife','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (52013,0,0,0,0,0,0,0,45,0,0,4099,4241,848,881,0,0,0,0,0,0,13711,13829,13829,13829,1,1,1,1,'Carapace Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52014,0,0,6,0,0,0,0,45,0,0,4098,4240,715,824,893,893,2851,0,0,0,18956,18959,18959,18959,1,1,1,1,'Serpette','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (52015,0,0,0,0,0,0,0,45,0,0,4099,4241,8883,0,0,0,0,0,0,0,13711,13711,13711,13711,1,1,1,1,'Carapace Mask','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (52016,0,0,0,0,0,0,12,46,0,0,4099,4241,848,848,864,881,0,0,0,0,13715,13044,13044,13044,1,1,1,1,'Carapace Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52017,0,0,0,0,0,0,0,47,0,0,4098,4240,894,895,0,0,0,0,0,0,17352,17371,17371,17371,1,1,1,1,'Horn',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52018,0,0,33,45,0,0,0,47,0,0,4098,4240,654,719,851,1616,0,0,0,0,18050,18051,18051,18051,1,1,1,1,'Mandibular Sickle','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52019,0,0,0,0,0,0,0,47,0,0,4099,4241,2420,13713,0,0,0,0,0,0,14987,14987,14987,14987,1,1,1,1,'Thunder Mittens','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (52020,0,0,0,0,0,0,12,48,0,0,4099,4241,826,848,881,0,0,0,0,0,12837,12914,12914,12914,1,1,1,1,'Carapace Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52021,0,0,0,0,0,0,0,49,0,0,4099,4241,680,881,881,0,0,0,0,0,13091,13063,13063,13063,1,1,1,1,'Carapace Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52022,0,0,0,42,28,0,0,49,0,0,4096,4238,650,653,798,2426,0,0,0,0,19105,19106,19106,19106,1,1,1,1,'Thug\'s Jambiya','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (52023,0,0,0,0,0,0,0,50,0,0,4096,4238,8884,0,0,0,0,0,0,0,17062,17062,17062,17062,1,1,1,1,'Bone Rod','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (52024,0,0,0,0,0,0,13,50,0,0,4099,4241,848,848,881,881,0,0,0,0,13712,13714,13714,13714,1,1,1,1,'Carapace Harness',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52025,0,2024,0,0,0,0,0,50,0,0,4098,4240,897,1643,1646,1647,0,0,0,0,1975,1975,1975,1975,1,1,1,1,'Vivio Scorpion Claw','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52026,0,2025,0,0,0,0,0,50,0,0,4098,4240,2230,2233,18050,0,0,0,0,0,18945,18945,18945,18945,1,1,1,1,'Jet Sickle','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (52027,0,0,0,0,0,0,0,51,0,0,4096,4238,893,895,895,0,0,0,0,0,17062,17410,17410,17410,1,1,1,1,'Bone Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52501,0,0,0,0,0,0,0,51,0,0,4099,4241,2420,12837,0,0,0,0,0,0,15650,15650,15650,15650,1,1,1,1,'Shock Subligar','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (52502,0,0,0,47,0,0,0,52,0,0,4096,4238,652,652,893,0,0,0,0,0,17257,17258,17258,17258,1,1,1,1,'Bandit\'s Gun',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52503,0,2025,0,0,0,0,0,52,0,0,4098,4240,885,1644,1644,1648,0,0,0,0,2421,2421,2421,2421,1,1,1,1,'Spirit Shell','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (52504,0,0,0,0,0,0,0,53,0,0,4099,4241,1974,13712,0,0,0,0,0,0,14497,14497,14497,14497,1,1,1,1,'High Healing Harness','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52505,0,0,0,0,0,0,0,53,0,0,4098,4240,880,897,0,0,0,0,0,0,1250,1250,1250,1250,6,8,10,12,'Scorpion Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52506,0,2026,0,0,0,0,0,53,0,0,4098,4240,880,880,880,897,897,897,2130,0,1250,1250,1250,1250,18,24,30,36,'Scorpion Arrowheads','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52507,0,0,0,0,0,0,0,53,0,0,4098,4240,885,0,0,0,0,0,0,0,12506,13836,13836,13836,1,1,1,1,'Shell Hairpin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52508,0,0,0,0,0,0,0,54,0,0,4098,4240,885,885,893,0,0,0,0,0,13981,13982,13982,13982,1,1,1,1,'Turtle Bangles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52509,0,0,0,0,0,0,0,55,0,0,4098,4240,761,885,0,0,0,0,0,0,13324,13363,13363,13363,1,1,1,1,'Tortoise Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52510,0,0,0,0,0,0,0,55,0,0,4098,4240,8885,0,0,0,0,0,0,0,13324,13324,13324,13324,1,1,1,1,'Tortoise Earring','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (52511,0,0,0,0,0,26,0,56,0,0,4099,4241,823,889,897,897,12602,0,0,0,13744,13745,13745,13745,1,1,1,1,'Justaucorps',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52512,0,0,0,0,0,0,0,57,0,0,4098,4240,817,893,924,0,0,0,0,0,13199,13226,13226,13226,1,1,1,1,'Blood Stone',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52513,0,0,0,0,0,0,0,57,0,0,4099,4241,2421,13981,0,0,0,0,0,0,14988,14988,14988,14988,1,1,1,1,'Stone Bangles','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (52514,0,0,19,0,0,0,0,57,0,0,4098,4240,713,824,882,893,893,0,0,0,16794,16795,16795,16795,1,1,1,1,'Bone Scythe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52515,0,0,0,0,0,0,0,58,0,0,4098,4240,893,929,930,0,0,0,0,0,17299,17299,17299,17299,8,12,16,20,'Astragalos',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52516,0,0,0,55,0,0,0,58,0,0,4098,4240,652,1620,0,0,0,0,0,0,1627,1627,1627,1627,6,8,10,12,'Armored Arrowheads','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52517,0,0,0,55,0,0,0,58,0,0,4098,4240,652,652,652,1620,1620,1620,2130,0,1627,1627,1627,1627,18,24,30,36,'Armored Arrowheads','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52518,0,0,0,0,0,0,0,59,0,0,4098,4240,716,894,0,0,0,0,0,0,17612,17613,17613,17613,1,1,1,1,'Beetle Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52519,0,0,0,0,0,0,0,59,0,0,4099,4241,1975,13744,0,0,0,0,0,0,14496,14496,14496,14496,1,1,1,1,'Healing Justaucorps','COP');
|
|
INSERT INTO `synth_recipes` VALUES (52520,0,0,0,0,0,0,0,59,0,0,4098,4240,1622,5135,17716,0,0,0,0,0,17713,17714,17714,17714,1,1,1,1,'Macuahuitl','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (52521,1,0,0,0,0,0,0,59,0,0,4100,4242,17716,0,0,0,0,0,0,0,1622,5135,5135,5135,1,1,1,1,'Macuahuitl -1 (desynth)','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (52522,0,0,0,0,0,0,0,60,0,0,4098,4240,711,2854,0,0,0,0,0,0,19119,19127,19127,19127,1,1,1,1,'Ranging Knife','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (52523,0,0,0,0,0,0,0,60,0,0,4098,4240,896,0,0,0,0,0,0,0,13458,13513,13513,13513,1,1,1,1,'Scorpion Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (52524,0,0,0,0,0,0,0,60,0,0,4098,4240,8886,0,0,0,0,0,0,0,13458,13458,13458,13458,1,1,1,1,'Scorpion Ring','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (52525,0,0,0,0,0,0,0,60,0,0,4100,4242,3940,0,0,0,0,0,0,0,5954,5954,5954,5954,1,2,3,4,'Barnacle','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (52526,0,0,0,0,0,0,0,60,0,0,4099,4241,1193,1311,2171,2171,2171,2171,2296,2427,16263,16264,16264,16264,1,1,1,1,'Beak Necklace','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (53001,0,0,0,0,0,0,0,61,0,0,4098,4240,760,884,884,0,0,0,0,0,13325,13369,13369,13369,1,1,1,1,'Fang Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53002,0,0,0,0,0,0,0,61,0,0,4099,4241,889,893,913,922,4106,0,0,0,18236,18236,18236,18236,66,99,99,99,'Wind Fan',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53003,1,0,0,0,0,0,0,61,0,0,4100,4242,13325,0,0,0,0,0,0,0,744,744,884,884,1,2,1,2,'Fang Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53004,0,0,0,0,0,0,0,61,0,0,4098,4240,1311,0,0,0,0,0,0,0,2009,2009,2009,2009,1,1,1,1,'Coral Horn','COP');
|
|
INSERT INTO `synth_recipes` VALUES (53005,0,0,0,50,33,0,0,62,0,0,4096,4238,654,744,803,914,2506,0,0,0,19103,19104,19104,19104,1,1,1,1,'Darksteel Jambiya','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (53006,0,0,0,50,33,0,0,62,0,0,4096,4238,654,744,803,914,2769,0,0,0,19117,19117,19117,19117,1,1,1,1,'Ogre Jambiya','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (53007,0,0,0,49,0,0,0,62,0,0,4096,4238,652,654,885,0,0,0,0,0,17259,17260,17260,17260,1,1,1,1,'Pirate\'s Gun',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53008,0,0,0,0,0,0,0,63,0,0,4098,4240,880,902,0,0,0,0,0,0,1251,1251,1251,1251,6,8,10,12,'Demon Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53009,0,2026,0,0,0,0,0,63,0,0,4098,4240,880,880,880,902,902,902,2130,0,1251,1251,1251,1251,18,24,30,36,'Demon Arrowheads','COP');
|
|
INSERT INTO `synth_recipes` VALUES (53010,0,0,0,0,0,0,31,63,0,0,4099,4241,851,868,896,0,0,0,0,0,12707,13956,13956,13956,1,1,1,1,'Scorpion Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53011,0,0,0,0,0,0,21,64,0,0,4099,4241,879,2146,2147,0,0,0,0,0,14941,14942,14942,14942,1,1,1,1,'Marid Mittens','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (53012,0,0,0,0,0,0,0,64,0,0,4099,4241,851,896,0,0,0,0,0,0,12451,12482,12482,12482,1,1,1,1,'Scorpion Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53013,0,0,0,0,0,0,0,65,0,0,4098,4240,844,2147,0,0,0,0,0,0,5412,5412,5412,5412,1,1,1,1,'Scapegoat','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (53014,0,0,0,0,0,0,0,65,0,0,4098,4240,2506,2506,0,0,0,0,0,0,15815,15816,15816,15816,1,1,1,1,'Ladybug Ring','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (53015,0,0,0,0,0,0,32,65,0,0,4099,4241,851,851,868,896,0,0,0,0,12963,14083,14083,14083,1,1,1,1,'Scorpion Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53016,0,0,0,0,0,0,0,65,0,0,4098,4240,8887,0,0,0,0,0,0,0,15815,15815,15815,15815,1,1,1,1,'Ladybug Ring','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (53017,0,0,0,0,0,0,0,66,0,0,4098,4240,894,902,0,0,0,0,0,0,17361,17377,17377,17847,1,1,1,1,'Crumhorn',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53018,0,0,0,0,0,0,22,66,0,0,4099,4241,879,879,2146,2147,0,0,0,0,15696,15697,15697,15697,1,1,1,1,'Marid Leggings','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (53019,0,0,33,45,0,0,0,66,0,0,4098,4240,654,719,2756,2769,0,0,0,0,18954,18954,18954,18954,1,1,1,1,'Ogre Sickle','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (53020,0,0,0,0,0,0,32,67,0,0,4099,4241,826,851,896,0,0,0,0,0,12838,14208,14208,14208,1,1,1,1,'Scorpion Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53021,0,0,31,0,53,0,0,67,0,0,4098,4240,717,746,851,1770,0,0,0,0,18054,18055,18055,18055,1,1,1,1,'Ivory Sickle','COP');
|
|
INSERT INTO `synth_recipes` VALUES (53022,0,0,0,0,0,0,0,68,0,0,4096,4238,881,893,893,932,0,0,0,0,16420,17477,17477,17477,1,1,1,1,'Bone Patas',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53023,0,0,0,43,0,0,0,68,0,0,4096,4238,652,652,887,887,0,0,0,0,18710,18711,18711,18711,1,1,1,1,'Seadog Gun','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (53024,0,0,0,0,0,0,33,69,0,0,4099,4241,851,851,896,896,901,0,0,0,12579,13734,13734,13734,1,1,1,1,'Scorpion Harness',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53025,0,0,0,0,0,0,0,69,0,0,4098,4240,895,895,0,0,0,0,0,0,2002,2002,2002,2002,1,1,1,1,'Beast Horn','COP');
|
|
INSERT INTO `synth_recipes` VALUES (53026,0,0,0,0,0,0,0,70,0,0,4099,4241,927,937,1118,1121,1864,1864,0,0,1825,1825,1825,1825,1,1,1,1,'Antlion Trap','COP');
|
|
INSERT INTO `synth_recipes` VALUES (53027,0,0,0,0,0,0,0,70,0,0,4098,4240,8888,0,0,0,0,0,0,0,13464,13464,13464,13464,1,1,1,1,'Demon\'s Ring','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (53028,0,0,0,0,0,0,0,70,0,0,4098,4240,864,902,0,0,0,0,0,0,13464,13545,13545,13545,1,1,1,1,'Demon\'s Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53501,0,0,0,0,52,0,0,71,0,0,4096,4238,650,792,802,893,925,0,0,0,16525,17634,17634,17634,1,1,1,1,'Hornet Fleuret',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53502,0,0,0,0,0,0,0,71,0,0,4099,4241,881,893,913,922,4106,0,0,0,18237,18237,18237,18237,66,99,99,99,'Kilo Fan',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53503,0,2024,0,0,0,0,0,71,0,0,4098,4240,887,1645,1646,1647,0,0,0,0,1715,1715,1715,1715,1,1,1,1,'Vivified Coral','COP');
|
|
INSERT INTO `synth_recipes` VALUES (53504,0,0,0,0,0,0,5,72,0,0,4099,4241,821,887,887,12824,0,0,0,0,12819,14230,14230,14230,1,1,1,1,'Coral Cuisses',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53505,0,0,0,0,0,0,46,72,0,0,4099,4241,506,826,887,0,0,0,0,0,12878,14235,14235,14235,1,1,1,1,'Coral Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53506,0,0,51,31,0,0,0,72,0,0,4098,4240,650,652,2521,2521,2533,0,0,0,18757,18758,18758,18758,1,1,1,1,'Gnole Sainti','WOTG'); -- 2021.11.10 JPWiki was only with difinitive numbers.
|
|
INSERT INTO `synth_recipes` VALUES (53507,0,2024,0,0,0,0,0,73,0,0,4098,4240,866,1644,1644,1647,0,0,0,0,2358,2358,2358,2358,1,1,1,1,'Lithic Wyvern Scale','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (53508,0,0,0,0,0,0,0,73,0,0,4098,4240,719,902,0,0,0,0,0,0,17601,17602,17602,17602,1,1,1,1,'Demon\'s Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53509,1,0,0,0,0,0,0,73,0,0,4100,4242,17501,0,0,0,0,0,0,0,880,880,933,902,1,2,1,1,'T.M. Hooks +1 (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53510,0,2024,0,0,0,0,0,73,0,0,4098,4240,866,1643,1646,1647,0,0,0,0,1976,1976,1976,1976,1,1,1,1,'Vivio Wyvern Scale','COP');
|
|
INSERT INTO `synth_recipes` VALUES (53511,0,0,0,0,0,0,0,73,0,0,4099,4241,902,16694,0,0,0,0,0,0,17501,17502,17502,17502,1,1,1,1,'Tactician Magician\'s Hooks +1',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53512,0,0,0,0,0,0,0,74,0,0,4098,4240,760,1311,0,0,0,0,0,0,2743,2743,2743,2743,6,8,10,12,'Oxblood Orb','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (53513,0,0,0,0,0,0,0,74,0,0,4098,4240,760,1312,0,0,0,0,0,0,2744,2744,2744,2744,6,8,10,12,'Angel Skin Orb','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (53514,0,0,0,0,0,0,31,74,0,0,4099,4241,826,887,1277,0,0,0,0,0,14288,14289,14289,14289,1,1,1,1,'Clown\'s Subligar',NULL); -- 2021.11.10 FFXIclopedia and JPWiki agree.
|
|
INSERT INTO `synth_recipes` VALUES (53515,0,0,0,0,0,0,48,74,0,0,4099,4241,506,866,887,0,0,0,0,0,12709,13995,13995,13995,1,1,1,1,'Coral Mittens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53516,0,0,0,0,0,0,0,74,0,0,4099,4241,821,887,887,12696,0,0,0,0,12691,13990,13990,13990,1,1,1,1,'Coral Finger Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53517,0,0,0,0,0,0,0,75,0,0,4099,4241,821,887,887,12952,0,0,0,0,12947,14106,14106,14106,1,1,1,1,'Coral Greaves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53518,0,0,0,0,0,0,0,75,0,0,4098,4240,2506,2551,0,0,0,0,0,0,15996,15997,15997,15997,1,1,1,1,'Ladybug Earring','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (53519,0,0,0,0,0,0,0,75,0,0,4098,4240,9509,0,0,0,0,0,0,0,15996,15996,15996,15996,1,1,1,1,'Ladybug Earring','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (53520,0,0,0,53,0,0,0,75,0,0,4096,4238,654,654,902,0,0,0,0,0,17262,17263,17263,17263,1,1,1,1,'Corsair\'s Gun',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53521,0,0,0,0,0,0,49,76,0,0,4099,4241,506,506,866,887,0,0,0,0,12965,14111,14111,14111,1,1,1,1,'Coral Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53522,0,0,0,0,0,0,0,77,0,0,4098,4240,850,887,887,0,0,0,0,0,12435,13859,13859,13859,1,1,1,1,'Coral Visor',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53523,0,0,0,0,0,0,0,77,0,0,4098,4240,792,793,887,0,0,0,0,0,12508,13850,13850,13850,1,1,1,1,'Coral Hairpin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53524,0,2026,0,0,0,0,0,78,0,0,4098,4240,880,880,880,2130,2147,2147,2147,0,2293,2293,2293,2293,18,24,30,36,'Marid Tusk Arrowheads','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (53525,0,0,0,0,0,0,0,78,0,0,4099,4241,887,12452,0,0,0,0,0,0,12453,13864,13864,13864,1,1,1,1,'Coral Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53526,0,0,0,0,0,0,0,78,0,0,4098,4240,880,2147,0,0,0,0,0,0,2293,2293,2293,2293,6,8,10,12,'Marid Tusk Arrowheads','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (53527,0,0,0,0,0,0,0,78,0,0,4099,4241,2833,12452,0,0,0,0,0,0,11495,11498,11498,11498,1,1,1,1,'Zeal Cap','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (53528,0,0,0,0,0,43,33,78,0,0,4099,4241,793,793,820,855,869,1622,1829,1866,15201,15201,15201,15201,1,1,1,1,'Quadav Barbut','COP');
|
|
INSERT INTO `synth_recipes` VALUES (53529,0,0,0,0,0,0,0,79,0,0,4096,4238,884,884,896,932,0,0,0,0,16422,17490,17490,17490,1,1,1,1,'Tigerfangs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53530,0,0,0,0,0,0,0,79,0,0,4098,4240,850,887,0,0,0,0,0,0,13108,13123,13123,13123,1,1,1,1,'Coral Gorget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53531,0,0,0,0,0,0,0,79,0,0,4098,4240,850,3933,0,0,0,0,0,0,28406,28407,28407,28407,1,1,1,1,'Nuna Gorget','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (53532,0,0,50,0,0,0,0,79,0,0,4099,4241,820,1615,1615,1998,2533,0,0,0,322,322,322,322,1,1,1,1,'Horn Trophy','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (53533,0,0,0,0,0,0,0,80,0,0,4098,4240,9510,0,0,0,0,0,0,0,13455,13455,13455,13455,1,1,1,1,'Coral Ring','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (53534,0,0,0,0,0,0,0,80,0,0,4099,4241,823,889,2830,2830,12602,0,0,0,11346,11352,11352,11352,1,1,1,1,'Vela Justaucorps','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (53535,0,0,0,0,0,0,0,80,0,0,4098,4240,1715,12508,0,0,0,0,0,0,15211,15211,15211,15211,1,1,1,1,'Reraise Hairpin','COP');
|
|
INSERT INTO `synth_recipes` VALUES (53536,0,0,0,0,0,0,50,80,0,0,4099,4241,506,506,887,887,0,0,0,0,12581,13766,13766,13766,1,1,1,1,'Coral Harness',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53537,0,0,0,0,0,0,0,80,0,0,4099,4241,821,850,887,887,887,887,12568,0,12563,13761,13761,13761,1,1,1,1,'Coral Scale Mail',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53538,0,0,0,0,0,0,0,80,0,0,4098,4240,887,887,0,0,0,0,0,0,13455,13504,13504,13504,1,1,1,1,'Coral Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (53539,1,0,0,0,0,0,0,80,0,0,4100,4242,13455,0,0,0,0,0,0,0,887,887,887,887,1,1,2,2,'Coral Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54001,0,0,0,58,0,0,0,81,0,0,4099,4241,664,664,664,715,866,866,866,866,12308,12346,12346,12346,1,1,1,1,'Darksteel Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54002,0,0,0,0,0,0,0,81,0,0,4098,4240,2147,2147,0,0,0,0,0,0,15788,15789,15789,15789,1,1,1,1,'Marid Ring','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54003,0,0,0,0,0,0,0,81,0,0,4099,4241,864,13440,0,0,0,0,0,0,13282,13283,13283,13283,1,1,1,1,'Saintly Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54004,0,0,0,0,0,0,5,82,0,0,4099,4241,822,866,866,12824,0,0,0,0,12820,14231,14231,14231,1,1,1,1,'Dragon Cuisses',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54005,0,0,0,0,0,0,0,82,0,0,4099,4241,882,13475,0,0,0,0,0,0,13284,13285,13285,13285,1,1,1,1,'Eremite\'s Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54006,0,0,0,0,0,0,0,82,0,0,4098,4240,880,1616,0,0,0,0,0,0,2648,2648,2648,2648,6,8,10,12,'Antlion Arrowheads','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (54007,0,0,0,0,0,0,0,82,0,0,4098,4240,1715,13108,0,0,0,0,0,0,13171,13171,13171,13171,1,1,1,1,'Reraise Gorget','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54008,0,2026,0,0,0,0,0,82,0,0,4098,4240,880,880,880,1616,1616,1616,2130,0,2648,2648,2648,2648,18,24,30,36,'Antlion Arrowheads','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (54009,0,0,0,0,49,0,31,83,0,0,4098,4240,764,790,877,1618,2418,0,0,0,16123,16123,16123,16123,1,1,1,1,'Lamia Garland','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54010,0,0,0,0,0,0,0,83,0,0,4098,4240,760,887,887,0,0,0,0,0,13312,13406,13406,13406,1,1,1,1,'Coral Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54011,0,0,0,0,0,0,0,83,0,0,4099,4241,893,896,913,922,4106,0,0,0,18238,18238,18238,18238,66,99,99,99,'Mega Fan',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54012,0,2026,0,0,0,0,0,84,0,0,4098,4240,880,880,880,2130,3932,3932,3932,0,3944,3944,3944,3944,18,24,30,36,'Chapuli Arrowheads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (54013,0,0,0,0,0,0,0,84,0,0,4098,4240,717,883,0,0,0,0,0,0,17628,17629,17629,17629,1,1,1,1,'Behemoth Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54014,0,0,0,0,0,0,0,84,0,0,4099,4241,822,866,866,12696,0,0,0,0,12692,13991,13991,13991,1,1,1,1,'Dragon Finger Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54015,0,0,0,0,0,0,0,84,0,0,4098,4240,880,3932,0,0,0,0,0,0,3944,3944,3944,3944,6,8,10,12,'Chapuli Arrowheads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (54016,0,2026,0,0,0,0,0,85,0,0,4098,4240,880,880,880,2130,2754,2754,2754,0,3305,3305,3305,3305,18,24,30,36,'Ruszor Arrowheads','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (54017,0,0,0,0,0,0,0,85,0,0,4099,4241,9511,0,0,0,0,0,0,0,17849,17849,17849,17849,1,1,1,1,'Hellish Bugle','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54018,0,0,0,0,0,0,0,85,0,0,4099,4241,822,866,866,12952,0,0,0,0,12948,14107,14107,14107,1,1,1,1,'Dragon Greaves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54019,0,0,0,0,0,0,0,85,0,0,4098,4240,880,2754,0,0,0,0,0,0,3305,3305,3305,3305,6,8,10,12,'Ruszor Arrowheads','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (54020,0,0,0,0,0,0,0,85,0,0,4099,4241,2157,2171,0,0,0,0,0,0,17849,17850,17850,17850,1,1,1,1,'Hellish Bugle','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54021,0,0,0,0,0,0,0,85,0,0,4098,4240,2427,0,0,0,0,0,0,0,16128,16129,16129,16129,1,1,1,1,'Wivre Hairpin','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54022,0,0,0,0,0,0,0,85,0,0,4099,4241,888,13404,0,0,0,0,0,0,13417,13418,13418,13418,1,1,1,1,'Eris\' Earring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54023,0,0,0,0,0,0,0,86,0,0,4098,4240,883,894,0,0,0,0,0,0,17362,17832,17832,17832,1,1,1,1,'Shofar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54024,0,0,0,0,0,0,0,86,0,0,4098,4240,879,2426,0,0,0,0,0,0,16265,16266,16266,16266,1,1,1,1,'Wivre Gorget','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54025,0,0,0,0,0,0,0,87,0,0,4098,4240,2158,2158,2304,0,0,0,0,0,18708,18709,18709,18709,1,1,1,1,'Snakeeye','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54026,0,0,0,0,0,0,0,87,0,0,4098,4240,850,866,866,0,0,0,0,0,12436,13860,13860,13860,1,1,1,1,'Dragon Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54027,0,0,0,0,0,0,0,87,0,0,4098,4240,887,887,893,0,0,0,0,0,13987,13988,13988,13988,1,1,1,1,'Coral Bangles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54028,0,2026,0,0,0,0,0,88,0,0,4098,4240,880,880,880,2130,2747,2747,2747,0,3505,3505,3505,3505,18,24,30,36,'Gargouille Arrowheads','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (54029,0,0,0,0,0,0,0,88,0,0,4099,4241,897,2147,18688,0,0,0,0,0,17166,18682,18682,18682,1,1,1,1,'Lamian Kaman','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54030,0,0,0,0,0,0,0,88,0,0,4098,4240,880,2747,0,0,0,0,0,0,3505,3505,3505,3505,6,8,10,12,'Gargouille Arrowheads','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (54031,0,0,0,0,33,0,0,88,0,0,4098,4240,760,2754,2754,0,0,0,0,0,11056,11057,11057,11057,1,1,1,1,'Ghillie Earring','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (54032,0,0,0,0,0,0,0,88,0,0,4099,4241,887,887,887,887,16546,0,0,0,16548,16620,16620,16620,1,1,1,1,'Coral Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54033,0,0,0,55,60,0,0,88,0,0,4098,4240,730,879,1467,2147,2275,0,0,0,18941,18942,18942,18942,1,1,1,1,'Naigama','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54034,0,0,0,0,0,0,0,89,0,0,4098,4240,883,883,0,0,0,0,0,0,13460,13556,13556,13556,1,1,1,1,'Behemoth Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54035,0,0,0,0,0,0,0,89,0,0,4099,4241,2358,12948,0,0,0,0,0,0,15708,15708,15708,15708,1,1,1,1,'Earth Greaves','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54036,0,0,0,0,0,0,0,89,0,0,4099,4241,1273,12987,0,0,0,0,0,0,14164,14165,14165,14165,1,1,1,1,'Inferno Sabots',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54037,0,0,0,0,0,0,0,90,0,0,4099,4241,894,903,903,0,0,0,0,0,16416,17485,17485,17485,1,1,1,1,'Dragon Claws',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54038,0,0,0,0,40,0,0,90,0,0,4099,4241,760,760,760,1715,1835,0,0,0,10963,10963,10963,10963,1,1,1,1,'Airmid\'s Gorget','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (54039,0,0,0,0,0,0,0,90,255,0,4098,4240,887,887,3931,3934,0,0,0,0,28583,28584,28584,28584,1,1,1,1,'Vexer Ring','SOA'); -- 2021.11.10 All agree 90 Bonecraft unknown Alchemy
|
|
INSERT INTO `synth_recipes` VALUES (54040,0,0,0,0,0,0,0,90,0,0,4098,4240,880,3938,0,0,0,0,0,0,3946,3946,3946,3946,6,8,10,12,'Mantid Arrowheads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (54041,0,0,0,0,0,0,59,90,0,0,4099,4241,862,862,886,886,0,0,0,0,13767,13768,13768,13768,1,1,1,1,'Demon\'s Harness',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54042,0,2026,0,0,0,0,0,90,0,0,4098,4240,880,880,880,2130,3938,3938,3938,0,3946,3946,3946,3946,18,24,30,36,'Mantid Arrowheads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (54043,0,0,0,41,0,0,0,90,0,0,4099,4241,664,682,822,866,866,866,867,12568,12564,13762,13762,13762,1,1,1,1,'Dragon Mail',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54044,0,0,0,0,0,0,0,90,0,0,4099,4241,9512,0,0,0,0,0,0,0,16416,16416,16416,16416,1,1,1,1,'Dragon Claws','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54501,0,0,0,0,0,0,41,91,0,0,4099,4241,829,855,1312,0,0,0,0,0,1400,1401,1401,1401,1,1,1,1,'Cursed Subligar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54502,0,0,0,0,0,0,38,91,0,0,4099,4241,506,790,887,887,887,1163,0,0,15159,15160,15160,15160,1,1,1,1,'Igqira Tiara','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54503,0,0,0,0,0,0,0,91,0,0,4099,4241,3933,3934,0,0,0,0,0,0,28667,28668,28668,28668,1,1,1,1,'Matamata Shield','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (54504,0,0,0,39,60,0,0,91,0,0,4096,4238,652,914,1271,2147,2275,0,0,0,18023,18024,18024,18024,1,1,1,1,'Jambiya','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54505,0,0,0,0,0,0,0,91,0,0,4099,4241,9130,10360,0,0,0,0,0,0,27483,27484,27484,27484,1,1,1,1,'Vexed Gamashes','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54506,0,0,0,0,0,0,0,91,0,0,4103,4245,850,886,902,902,0,0,0,0,13922,13923,13923,13923,1,1,1,1,'Demon Helm',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54507,0,0,0,0,0,0,0,91,0,0,4099,4241,1403,9130,0,0,0,0,0,0,27384,27385,27385,27385,1,1,1,1,'Bewitched Leggings','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54508,0,0,0,0,0,0,43,92,0,0,4099,4241,855,866,1312,0,0,0,0,0,1398,1399,1399,1399,1,1,1,1,'Cursed Gloves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54509,0,0,0,0,31,0,0,92,0,0,4098,4240,2418,2426,2426,0,0,0,0,0,15811,15812,15812,15812,1,1,1,1,'Wivre Ring','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54510,0,0,0,0,0,0,53,92,0,0,4099,4241,1280,1629,1771,0,0,0,0,0,14305,14306,14306,14306,1,1,1,1,'Dragon Subligar','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54511,0,0,0,0,0,0,0,92,0,0,4098,4240,880,8709,0,0,0,0,0,0,8706,8706,8706,8706,6,8,10,12,'Raaz Arrowheads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (54512,0,0,0,0,0,0,58,92,0,0,4099,4241,862,1279,1841,0,0,0,0,0,15406,15407,15407,15407,1,1,1,1,'Unicorn Subligar','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54513,0,0,0,0,0,0,0,92,0,0,4099,4241,1976,12564,0,0,0,0,0,0,14494,14494,14494,14494,1,1,1,1,'Healing Mail','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54514,0,2026,0,0,0,0,0,92,0,0,4098,4240,880,880,880,2130,8709,8709,8709,0,8706,8706,8706,8706,18,24,30,36,'Raaz Arrowheads','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (54515,0,0,0,0,0,0,0,92,0,0,4099,4241,1399,9130,0,0,0,0,0,0,27032,27033,27033,27033,1,1,1,1,'Bewitched Gloves','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54516,0,0,0,0,0,0,0,92,0,0,4099,4241,1193,1193,12696,12696,0,0,0,0,14008,14009,14009,14009,1,1,1,1,'Carapace Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54517,0,0,0,0,0,0,0,92,0,0,4099,4241,9130,10310,0,0,0,0,0,0,27127,27128,27128,27128,1,1,1,1,'Vexed Wristbands','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54518,0,0,0,0,0,0,0,93,0,0,4099,4241,648,850,851,1193,1193,0,0,0,13878,13879,13879,13879,1,1,1,1,'Carapace Helm',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (54519,0,0,0,0,0,0,0,93,255,0,4103,4245,886,893,893,902,902,924,1589,2365,6410,6410,6410,6410,1,1,1,1,'Shadow Throne','ROV'); -- 2021.11.10 All agree 93 Bonecraft with unknown Alchemy
|
|
INSERT INTO `synth_recipes` VALUES (54520,0,0,0,0,0,0,0,93,41,0,4099,4241,790,1163,1618,1622,1626,0,0,0,14852,14853,14853,14853,1,1,1,1,'Igqira Manillas','COP'); -- 2021.11.10 All agree 93 Bonecraft. FFXIclopedia, BGWiki and JPWiki agree 41 Alchemy. BGWiki, Allakhazam, and FFXIAH have unknown Leathercraft.
|
|
INSERT INTO `synth_recipes` VALUES (54521,0,0,0,60,0,0,0,93,0,0,4099,4241,669,2152,2747,2747,2747,0,0,0,18789,18790,18790,18790,1,1,1,1,'Marath Baghnakhs','ABYSSEA'); -- 2021.11.10 Consensus is 93 Bonecraft and 60 Smithing
|
|
INSERT INTO `synth_recipes` VALUES (54522,0,0,0,0,0,0,0,93,0,0,4099,4241,1401,9130,0,0,0,0,0,0,27208,27209,27209,27209,1,1,1,1,'Bewitched Subligar','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54523,0,0,0,0,0,0,0,94,42,0,4098,4240,1618,2460,2475,2475,17316,0,0,0,319,319,319,319,1,1,1,1,'Shell Lamp','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54524,0,0,0,0,0,0,44,94,0,0,4099,4241,855,855,866,1312,0,0,0,0,1402,1403,1403,1403,1,1,1,1,'Cursed Leggings',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54525,0,0,0,0,0,0,0,94,0,0,4099,4241,1395,9130,0,0,0,0,0,0,26680,26681,26681,26681,1,1,1,1,'Bewitched Cap','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54526,0,0,0,0,0,0,0,94,0,0,4098,4240,1517,0,0,0,0,0,0,0,1458,1458,1458,1458,1,1,1,1,'Mammoth Tusk',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54527,0,0,0,0,0,0,52,94,0,0,4099,4241,866,1629,1771,0,0,0,0,0,14823,14824,14824,14824,1,1,1,1,'Dragon Mittens','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54528,0,0,0,0,0,0,0,95,0,0,4099,4241,850,851,851,1193,1193,1193,1193,0,13789,13790,13790,13790,1,1,1,1,'Carapace Breastplate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54529,0,0,0,0,0,0,15,95,0,0,4099,4241,821,1586,1587,12824,0,0,0,0,12821,14313,14313,14313,1,1,1,1,'Gavial Cuisses',NULL); -- 2021.11.10 All agree on Bonecraft 95. FFXIclopedia shows Leathercraft 1 where BGWiki states 1-15 and JPWiki states 5. Implemented @ 15 to err on the side of more difficult.
|
|
INSERT INTO `synth_recipes` VALUES (54530,0,0,0,0,0,0,0,95,0,0,4099,4241,9513,0,0,0,0,0,0,0,13789,13789,13789,13789,1,1,1,1,'Carapace Breastplate','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54531,0,0,0,0,0,0,54,95,0,0,4099,4241,823,862,866,1841,0,0,0,0,14055,14056,14056,14056,1,1,1,1,'Unicorn Mittens','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54532,0,0,0,0,0,0,50,95,0,0,4099,4241,506,927,1622,1680,1719,0,0,0,15309,15310,15310,15310,1,1,1,1,'Igqira Huaraches','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54533,0,0,0,0,0,0,0,95,0,0,4099,4241,1397,9130,0,0,0,0,0,0,26856,26857,26857,26857,1,1,1,1,'Bewitched Harness','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54534,0,0,0,0,0,0,0,95,0,0,4099,4241,9130,10247,0,0,0,0,0,0,25696,25697,25697,25697,1,1,1,1,'Vexed Jacket','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (54535,0,0,48,0,30,0,0,95,0,0,4098,4240,716,1681,1681,2754,2754,0,0,0,18791,18792,18792,18792,1,1,1,1,'Buzbaz Sainti','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (54536,0,0,0,0,0,0,53,96,0,0,4099,4241,866,1629,1629,1771,0,0,0,0,14186,14187,14187,14187,1,1,1,1,'Dragon Leggings','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54537,0,0,0,0,0,0,0,96,0,0,4099,4241,1473,1473,12696,12696,0,0,0,0,12751,12717,12717,12717,1,1,1,1,'Scorpion Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54538,0,0,0,0,0,0,0,96,0,0,4099,4241,851,908,908,0,0,0,0,0,12385,12386,12386,12386,1,1,1,1,'Acheron Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54539,0,0,0,0,0,0,0,96,0,0,4098,4240,5466,5466,0,0,0,0,0,0,15813,15814,15814,15814,1,1,1,1,'Trumpet Ring','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (54540,0,0,0,0,0,0,15,96,0,0,4099,4241,821,1586,2172,12824,0,0,0,0,15615,15616,15616,15616,1,1,1,1,'Hydra Cuisses','TOAU'); -- 2021.11.10 All agree Bonecraft 96. BGWiki shows 1-15 Leathercraft where JPWiki shows amateur 5. Implemented @ 15 to err on the side of more difficult.
|
|
INSERT INTO `synth_recipes` VALUES (54541,0,0,0,0,0,0,0,97,0,0,4099,4241,821,1586,1587,12696,0,0,0,0,12693,14829,14829,14829,1,1,1,1,'Gavial Finger Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54542,0,0,0,0,0,0,46,97,0,0,4099,4241,506,927,1117,1618,1680,1718,0,0,14321,14322,14322,14322,1,1,1,1,'Igqira Lappas','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54543,0,0,0,0,0,0,0,97,0,0,4099,4241,1312,12452,0,0,0,0,0,0,1394,1395,1395,1395,1,1,1,1,'Cursed Cap',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54544,0,0,0,0,0,0,55,97,0,0,4099,4241,823,862,862,866,1841,0,0,0,15345,15346,15346,15346,1,1,1,1,'Unicorn Leggings','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54545,0,0,0,0,0,0,0,97,0,0,4099,4241,648,850,851,1473,1473,0,0,0,13846,12461,12461,12461,1,1,1,1,'Scorpion Helm',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (54546,0,0,0,0,0,0,255,97,0,0,4099,4241,8982,8983,0,0,0,0,0,0,26724,26725,26725,26725,1,1,1,1,'Sombra Tiara','SOA'); -- 2021.11.10 All show Bonecraft 97 with unknown Leathercraft. BGWiki states 53+ Leathercraft.
|
|
INSERT INTO `synth_recipes` VALUES (54547,0,0,0,0,0,0,0,98,0,0,4099,4241,821,1586,2172,12696,0,0,0,0,14949,14950,14950,14950,1,1,1,1,'Hydra Finger Gauntlets','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54548,0,0,0,0,0,0,0,98,0,0,4099,4241,1771,12452,0,0,0,0,0,0,13936,13937,13937,13937,1,1,1,1,'Dragon Cap','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54549,0,0,0,0,0,0,0,98,0,0,4098,4240,2168,2168,0,0,0,0,0,0,15780,15781,15781,15781,1,1,1,1,'Cerberus Ring','TOAU');
|
|
-- INSERT INTO `synth_recipes` VALUES (54550,0,0,0,0,0,0,255,98,0,0,4099,4241,836,1629,8708,8982,8983,0,0,0,27989,27990,27990,27990,1,1,1,1,'Sombra Mittens','SOA'); -- 2021.11.10 All show Bonecraft 98 with unknown Leathercraft and Clothcraft.
|
|
INSERT INTO `synth_recipes` VALUES (54551,0,0,0,0,0,0,0,98,0,0,4099,4241,2172,2304,0,0,0,0,0,0,15539,15540,15540,15540,1,1,1,1,'Orochi Nodowa','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54552,0,0,0,0,0,0,0,99,0,0,4098,4240,903,903,0,0,0,0,0,0,13467,14627,14627,14627,1,1,1,1,'Dragon Ring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54553,0,0,0,0,0,0,0,99,0,0,4099,4241,821,1586,1587,12952,0,0,0,0,12949,14194,14194,14194,1,1,1,1,'Gavial Greaves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54554,0,0,0,0,0,0,55,99,44,0,4099,4241,506,795,848,903,1163,1622,1626,1680,14420,14421,14421,14421,1,1,1,1,'Igqira Weskit','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (54555,0,0,0,0,0,0,255,99,0,0,4099,4241,830,836,8708,8982,8983,0,0,0,27226,27227,27227,27227,1,1,1,1,'Sombra Tights','SOA'); -- 2021.11.10 All show Bonecraft 99 with unknown Leathercraft and Clothcraft.
|
|
INSERT INTO `synth_recipes` VALUES (54556,0,0,0,47,0,0,52,99,0,0,4099,4241,664,823,855,862,1841,0,0,0,15209,15210,15210,15210,1,1,1,1,'Unicorn Cap','COP');
|
|
INSERT INTO `synth_recipes` VALUES (54557,0,0,0,0,0,0,0,99,0,0,4099,4241,850,851,851,1473,1473,1473,1473,0,12621,12589,12589,12589,1,1,1,1,'Scorpion Breastplate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54558,0,0,0,0,0,0,41,98,0,0,4103,4245,850,855,909,913,0,0,0,0,13920,13921,13921,13921,1,1,1,1,'Wyvern Helm',NULL); -- 2021.11.10 FFXIclopedia, BGWiki, and JPWiki agree.
|
|
INSERT INTO `synth_recipes` VALUES (54559,0,0,0,0,0,0,0,100,0,0,4099,4241,821,1586,2172,12952,0,0,0,0,15703,15704,15704,15704,1,1,1,1,'Hydra Greaves','TOAU'); -- 2021.11.10 There is some disagreement about 100 vs 99. All except FFXIAH show no subcraft.
|
|
INSERT INTO `synth_recipes` VALUES (54560,0,0,0,39,40,0,0,99,0,0,4096,4238,652,745,914,2359,2371,0,0,0,18030,18031,18031,18031,1,1,1,1,'Khimaira Jambiya','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (54561,0,0,0,0,0,0,41,99,0,0,4103,4245,850,855,905,913,0,0,0,0,13920,13921,13921,13921,1,1,1,1,'Wyvern Helm',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54562,0,0,0,0,0,0,41,100,0,0,4099,4241,855,855,887,1311,1312,0,0,0,1396,1397,1397,1397,1,1,1,1,'Cursed Harness',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54563,0,0,0,0,0,0,0,100,0,0,4098,4240,850,1586,1587,0,0,0,0,0,12437,13944,13944,13944,1,1,1,1,'Gavial Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54564,0,0,0,0,0,0,0,100,0,0,4098,4240,1518,0,0,0,0,0,0,0,1463,1463,1463,1463,1,1,1,1,'Chronos Tooth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (54565,0,0,0,0,0,0,0,100,0,0,4099,4241,823,867,885,3552,12952,0,0,0,10363,10364,10364,10364,1,1,1,1,'Dux Greaves','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (54566,0,0,0,60,0,0,0,100,0,0,4099,4241,654,735,1816,0,0,0,0,0,19741,19742,19742,19742,1,1,1,1,'Handgonne','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (54567,0,0,0,0,0,0,0,100,0,0,4098,4240,2371,2371,0,0,0,0,0,0,11058,11059,11059,11059,1,1,1,1,'Hajduk Ring','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (54568,0,0,0,0,0,0,255,100,0,0,4099,4241,836,860,8708,8708,8982,8983,0,0,27398,27399,27399,27399,1,1,1,1,'Sombra Leggings','SOA'); -- 2021.11.10 All show Bonecraft 100 with unknown Leathercraft and Clothcraft.
|
|
INSERT INTO `synth_recipes` VALUES (54569,0,0,0,0,0,0,58,101,0,0,4099,4241,1629,1629,1771,1816,0,0,0,0,14389,14390,14390,14390,1,1,1,1,'Dragon Harness','COP'); -- 2021.11.10 There are some minor discrepancies between the sites. about 1/2 show 100 vs 101 and 58 vs 60.
|
|
INSERT INTO `synth_recipes` VALUES (55001,0,0,0,0,0,0,0,100,0,0,4098,4240,879,1586,2172,0,0,0,0,0,16073,16074,16074,16074,1,1,1,1,'Hydra Mask','TOAU'); -- 2021.11.10 FFXIclopedia, FFXIAH, and Allakhazam show 100, BGWiki and JPWiki show 101.
|
|
INSERT INTO `synth_recipes` VALUES (55002,0,0,49,37,0,0,0,101,0,0,4098,4240,651,651,730,2168,2168,0,0,0,18748,18749,18749,18749,1,1,1,1,'Hades Sainti','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (55003,0,0,0,0,0,0,0,102,50,0,4098,4240,1311,1715,4154,4154,5306,0,0,0,10794,10795,10795,10795,1,1,1,1,'Blenmot\'s Ring','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (55004,0,0,0,0,0,0,255,102,0,0,4099,4241,830,836,8708,8982,8982,8983,8983,0,26883,26884,26884,26884,1,1,1,1,'Sombra Harness','SOA'); -- 2021.11.10 All agree on Bonecraft 102 with unknown Leathercraft and Clothcraft.
|
|
INSERT INTO `synth_recipes` VALUES (55005,0,0,0,0,0,0,60,102,0,0,4099,4241,823,855,862,1841,1841,0,0,0,14448,14449,14449,14449,1,1,1,1,'Unicorn Harness','COP'); -- 2021.11.10 Allakhazam, JPWiki, and BGWiki agree 102/60. Others show unknown sub level.
|
|
INSERT INTO `synth_recipes` VALUES (55006,0,0,0,0,0,0,27,103,0,0,4099,4241,821,850,1586,1586,1587,1587,12568,0,12565,13747,13747,13747,1,1,1,1,'Gavial Mail',NULL); -- 2021.11.10 Allakhazam and JPWiki show no subcraft. FFXIAH and FFXIclopedia show unknown Leathercraft sub. BGWiki shows Leathercraft 1-27. Implemented recipe w @ level 27.
|
|
INSERT INTO `synth_recipes` VALUES (55007,0,0,0,0,0,0,0,103,0,0,4099,4241,823,850,867,885,3445,3552,0,0,10346,10347,10347,10347,1,1,1,1,'Dux Cuisses','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (55008,0,0,0,0,0,0,0,104,0,0,4099,4241,821,879,1586,1586,2172,2172,12568,0,14537,14538,14538,14538,1,1,1,1,'Hydra Mail','TOAU'); -- 2021.11.09 BGWiki shows Bonecraft 104 with 1-27 Leathercraft. FFXIclopedia and JPWiki shows no sub.
|
|
INSERT INTO `synth_recipes` VALUES (55009,0,0,0,0,0,0,0,104,0,0,4098,4240,2654,0,0,0,0,0,0,0,2735,2735,2735,2735,1,2,3,4,'Dark Ixion Ferrule','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (55010,0,0,0,0,0,0,0,104,0,0,4098,4240,867,885,3445,3552,0,0,0,0,10434,10435,10435,10435,1,1,1,1,'Dux Visor','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (55011,0,0,0,0,0,0,255,104,0,0,4099,4241,819,869,8977,8981,0,0,0,0,26726,26727,26727,26727,1,1,1,1,'Revealer\'s Crown','SOA'); -- 2021.11.09 FFXIclopedia shows Clothcraft. Assuming this is incorrect and should be Bonecraft. JPWiki and BGWiki agree Bonecraft 104. BGWiki has unknown Leathercraft. FFXIclopedia and JPWiki show level 60 plus Leathercraft.
|
|
INSERT INTO `synth_recipes` VALUES (55012,0,0,0,0,0,0,0,105,0,0,4098,4240,763,792,865,1274,1312,2147,2426,5466,333,333,333,333,1,1,1,1,'Winged Balance','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (55013,0,0,0,0,0,0,0,105,0,0,4098,4240,760,8719,0,0,0,0,0,0,8720,8720,8720,8720,6,8,10,12,'Maliyakaleya Orb','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (55014,0,0,0,0,0,0,0,105,0,0,4099,4241,823,867,885,3552,12696,0,0,0,10316,10317,10317,10317,1,1,1,1,'Dux Finger Gauntlets','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (55015,0,0,0,0,0,0,0,105,0,0,4099,4241,651,730,819,2275,3872,3872,3872,0,18793,18794,18794,18794,1,1,1,1,'Blutkrallen','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (55016,0,0,0,0,0,0,0,105,0,0,4098,4240,760,9255,0,0,0,0,0,0,9256,9256,9256,9256,6,8,10,12,'Cyan Orb','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55017,0,0,0,0,30,0,56,106,0,0,4099,4241,837,2152,2877,3546,3546,0,0,0,10355,10360,10360,10360,1,1,1,1,'Hexed Gamashes','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (55018,0,0,0,0,30,0,56,106,0,0,4099,4241,828,2152,2877,3546,3548,0,0,0,10305,10310,10310,10310,1,1,1,1,'Hexed Wristbands','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (55019,0,0,0,0,0,0,0,106,255,0,4098,4240,4015,8719,8719,0,0,0,0,0,28544,28545,28545,28545,1,1,1,1,'Yacuruna Ring','SOA'); -- 2021.11.09 FFXIclopedia, BGWiki, and JPWiki all agree Bonecraft 106. FFXIclopedia and BGWiki show unknown Alchemy sub. JPWiki doesn't show a subcraft.
|
|
INSERT INTO `synth_recipes` VALUES (55020,0,0,0,0,0,0,0,106,0,0,4098,4240,3927,8708,8719,8748,0,0,0,0,21815,21816,21816,21816,1,1,1,1,'Maliya Sickle','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55021,0,0,0,0,0,0,0,107,0,0,4099,4241,823,867,885,885,885,3445,3552,12568,10272,10273,10273,10273,1,1,1,1,'Dux Scale Mail','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (55022,0,0,0,0,0,0,0,108,0,0,4098,4240,877,1762,3869,0,0,0,0,0,18827,18828,18828,18828,1,1,1,1,'Oxossi Facon','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (55023,0,0,0,0,0,0,0,109,0,0,4099,4241,4074,9255,9256,9256,0,0,0,0,26031,26031,26031,26031,1,1,1,1,'Brioso Whistle','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55024,0,0,0,0,0,0,0,109,0,0,4099,4241,4075,9255,9256,9256,0,0,0,0,26031,26031,26031,26031,1,1,1,1,'Brioso Whistle','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55025,0,0,0,0,0,0,0,109,0,0,4099,4241,4076,9255,9256,9256,0,0,0,0,26031,26031,26031,26031,1,1,1,1,'Brioso Whistle','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55026,0,0,0,0,0,0,55,110,0,0,4102,4244,8754,9062,9253,9864,9871,0,0,0,25525,25526,25527,25527,1,1,1,1,'Etoile Gorget','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55027,0,0,0,0,0,30,60,110,0,0,4099,4241,823,828,828,837,2877,3544,3546,3548,10242,10247,10247,10247,1,1,1,1,'Hexed Jacket','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (55028,0,0,0,0,0,0,55,110,0,0,4102,4244,8754,9062,9253,9851,9871,0,0,0,25447,25448,25449,25449,1,1,1,1,'Assassin\'s Gorget','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55029,0,0,0,0,0,0,55,110,0,0,4102,4244,8754,9062,9253,9856,9871,0,0,0,25477,25478,25479,25479,1,1,1,1,'Scout\'s Gorget','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55501,0,0,0,0,0,0,0,111,0,0,4099,4241,1311,1409,2427,3940,3979,3979,0,0,28404,28405,28405,28405,1,1,1,1,'Ej Necklace','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (55502,0,0,0,0,0,0,0,111,0,0,4098,4240,760,3977,3977,0,0,0,0,0,28526,28527,28527,28527,1,1,1,1,'Tati Earring','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (55503,0,0,0,0,0,0,0,111,70,0,4099,4241,9005,9027,9130,10355,0,0,0,0,27483,27484,27484,27484,1,1,1,1,'Vexed Gamashes','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55504,0,0,0,0,0,0,70,111,0,0,4099,4241,1402,8719,9047,9130,0,0,0,0,27384,27385,27385,27385,1,1,1,1,'Bewitched Leggings','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (55505,0,0,255,0,0,0,0,112,0,0,4098,4240,4019,4021,8704,8752,8752,0,0,0,20537,20538,20538,20538,1,1,1,1,'Bhakazi Sainti','SOA'); -- 2021.11.09 FFXIclopedia and BGWiki show Bonecraft 112. All show unknown Woodworking and Goldsmithing.
|
|
INSERT INTO `synth_recipes` VALUES (55506,0,0,0,0,0,0,70,112,0,0,4099,4241,8988,9005,9130,10305,0,0,0,0,27127,27128,27128,27128,1,1,1,1,'Vexed Wristbands','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55507,0,0,0,0,0,0,70,112,0,0,4099,4241,1398,8719,9047,9130,0,0,0,0,27032,27033,27033,27033,1,1,1,1,'Bewitched Gloves','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (55508,0,0,255,0,0,0,0,113,0,0,4098,4240,4012,4019,8704,0,0,0,0,0,20814,20815,20815,20815,1,1,1,1,'Budliqa','SOA'); -- 2021.11.09 FFXIclopedia and BGWiki show 113. All show unknown Woodworking.
|
|
INSERT INTO `synth_recipes` VALUES (55509,0,0,0,0,0,0,70,113,0,0,4099,4241,1400,8719,9047,9130,0,0,0,0,27208,27209,27209,27209,1,1,1,1,'Bewitched Subligar','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55510,0,0,0,0,0,0,0,113,0,0,4098,4240,4012,4019,0,0,0,0,0,0,20621,20622,20622,20622,1,1,1,1,'Nanti Knife','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (55511,0,0,0,0,0,0,0,113,0,0,4099,4241,908,1767,3977,0,0,0,0,0,28664,28665,28665,28665,1,1,1,1,'Killedar Shield','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (55512,0,0,0,255,0,0,0,113,0,0,4096,4238,658,766,3979,0,0,0,0,0,21289,21290,21290,21290,1,1,1,1,'Donderbuss','SOA'); -- 2021.11.09 FFXIclopedia and BGWiki show 113. All show unknown Blacksmithing
|
|
-- INSERT INTO `synth_recipes` VALUES (55513,0,0,0,0,255,0,0,113,0,0,4098,4240,766,851,3927,3979,0,0,0,0,20919,20920,20920,20920,1,1,1,1,'Lacryma Sickle','SOA'); -- 2021.11.09 FFXIclopedia and JPWiki show Bonecraft 111-114 and BGWiki shows Bonecraft 113. All show unknown Goldsmithing and Woodworking.
|
|
INSERT INTO `synth_recipes` VALUES (55514,0,0,0,70,0,0,0,114,0,0,4099,4241,1394,8719,8990,9130,0,0,0,0,26680,26681,26681,26681,1,1,1,1,'Bewitched Cap','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55515,0,0,0,0,0,0,70,115,0,0,4099,4241,8988,9005,9130,10242,0,0,0,0,25696,25697,25697,25697,1,1,1,1,'Vexed Jacket','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (55516,0,0,0,0,0,0,70,115,0,0,4099,4241,1396,8719,9047,9130,0,0,0,0,26856,26857,26857,26857,1,1,1,1,'Bewitched Harness','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (55517,0,0,0,0,255,0,0,116,0,0,4098,4240,4081,4082,9255,0,0,0,0,0,26189,26190,26190,26190,1,1,1,1,'Moonbeam Ring','ROV'); -- 2021.11.09 Consenus is Bonecraft 115-120 with unknown Goldsmithing
|
|
-- INSERT INTO `synth_recipes` VALUES (55518,0,2028,0,0,0,0,0,116,255,0,4099,4241,1714,4014,9002,9002,9061,9256,9256,9256,26537,26538,26538,26538,1,1,1,1,'Mousai Manteel','ROV'); -- 2021.11.09 Same as Mousai Seraweels.
|
|
-- INSERT INTO `synth_recipes` VALUES (55519,0,2028,0,0,0,0,0,116,255,0,4099,4241,1713,1713,4014,9002,9061,9256,9256,0,25988,25989,25989,25989,1,1,1,1,'Mousai Gages','ROV'); -- 2021.11.09 Same as Mousai Seraweels.
|
|
-- INSERT INTO `synth_recipes` VALUES (55520,0,2028,0,0,0,0,0,116,255,0,4099,4241,1713,4014,9002,9061,9256,9256,0,0,25968,25969,25969,25969,1,1,1,1,'Mousai Crackows','ROV'); -- 2021.11.09 Same as Mousai Seraweels.
|
|
-- INSERT INTO `synth_recipes` VALUES (55521,0,2028,0,0,0,0,0,116,255,0,4099,4241,1714,4014,9002,9061,9256,9256,0,0,25561,25562,25562,25562,1,1,1,1,'Mousai Turban','ROV'); -- 2021.11.09 Same as Mousai Seraweels.
|
|
-- INSERT INTO `synth_recipes` VALUES (55522,0,2028,0,0,0,0,0,116,255,0,4099,4241,1714,4014,9002,9061,9256,9256,9256,0,25901,25902,25902,25902,1,1,1,1,'Mousai Seraweels','ROV'); -- 2021.11.09 - FFXIclopedia and JPWiki show Bonecraft 115-119. BGWiki shows as 116. All show unknown Alchemy.
|
|
INSERT INTO `synth_recipes` VALUES (55523,0,0,70,0,70,0,0,117,0,0,4099,4241,4080,4081,26031,0,0,0,0,0,26032,26033,26033,26033,1,1,1,1,'Moonbow Whistle','ROV'); -- 2021.11.09 FFXIclopedia and BGWiki agree at 117 with unknown Goldsmithing and Woodworking. JPWiki is guessing Bonecraft 118 with 70 Goldsmithing and Woodworking.
|
|
INSERT INTO `synth_recipes` VALUES (55524,0,0,0,0,0,0,0,117,0,0,4099,4241,9003,9005,9006,9061,0,0,0,0,22278,22279,22279,22279,1,1,1,1,'Staunch Tathlum','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (55525,0,2028,0,0,0,0,0,255,0,0,4096,4238,4076,9255,9255,9256,9256,9256,12742,0,25996,25997,25997,25997,1,1,1,1,'Raetic Bangles','ROV'); -- 2021.11.09 FFXIclopedia and JPWiki show Bonecraft 115-119.
|
|
-- INSERT INTO `synth_recipes` VALUES (55526,0,2029,0,255,0,0,0,255,0,0,4102,4244,9004,9062,9253,9834,9844,9845,9845,9854,21715,21716,21717,21717,1,1,1,1,'Monster Axe','ROV'); -- 2021.11.09 FFXIclopedia and JPWiki show Bonecraft 111-113.
|
|
-- INSERT INTO `synth_recipes` VALUES (55527,0,2028,0,0,0,0,0,255,0,0,4096,4238,4075,9255,9255,9256,9256,9256,21817,0,21818,21819,21819,21819,1,1,1,1,'Raetic Scythe','ROV'); -- 2021.11.09 FFXIclopedia and JPWiki show Bonecraft 115-119.
|
|
-- INSERT INTO `synth_recipes` VALUES (55528,0,0,0,0,0,0,0,255,255,0,4098,4240,929,930,9255,9255,9255,9893,0,0,22297,22298,22298,22298,1,1,1,1,'Aurgelmir Orb','ROV'); -- 2021.11.09 FFXIclopedia, BGWiki, and JPWiki show Bonecraft 115-119 with unknown Alchemy
|
|
-- INSERT INTO `synth_recipes` VALUES (55529,0,2029,0,0,255,0,0,255,0,0,4102,4244,9062,9064,9245,9837,9844,9845,9845,9853,21823,21824,21825,21825,1,1,1,1,'Abyss Scythe','ROV'); -- 2021.11.09 FFXIclopedia and JPWiki show Bonecraft 111-113. All show unknown Goldsmithing and Woodworking
|
|
INSERT INTO `synth_recipes` VALUES (59901,1,0,0,0,0,0,0,23,0,0,4100,4242,16649,0,0,0,0,0,0,0,715,715,893,893,1,1,1,1,'Bone Pick (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59902,1,0,0,0,0,0,0,66,0,0,4100,4242,17361,0,0,0,0,0,0,0,894,894,902,902,1,1,1,1,'Crumhorn (desynth)',NULL); -- 2021.11.09 Level based on synth. FFXIAH, FFXIclopedia, and Allakhazam agree on mats.
|
|
INSERT INTO `synth_recipes` VALUES (59903,1,0,0,0,0,0,0,27,0,0,4100,4242,13323,0,0,0,0,0,0,0,894,744,744,744,1,1,2,2,'Beetle Earring (desynth)',NULL); -- 2021.11.09 Level based on synth. Allakhazam and FFXIAH agree on the mats but not the quantity. Went with the Allakhazam amounts.
|
|
INSERT INTO `synth_recipes` VALUES (59904,1,0,0,0,0,0,0,86,0,0,4100,4242,17362,0,0,0,0,0,0,0,894,883,883,883,1,1,1,1,'Shofar (desynth)',NULL); -- 2021.11.09 Level based on synth. FFXIAH, FFXIclopedia, and Allakhazam agree on mats.
|
|
INSERT INTO `synth_recipes` VALUES (59905,1,0,0,0,0,0,0,25,0,0,4100,4242,13457,0,0,0,0,0,0,0,894,894,894,894,1,1,1,1,'Beetle Ring (desynth)',NULL); -- based synth lvl 10/31/21
|
|
INSERT INTO `synth_recipes` VALUES (59906,1,0,0,0,0,0,0,18,0,0,4100,4242,12454,0,0,0,0,0,0,0,880,880,850,850,1,1,1,1,'Bone Mask (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59907,1,0,0,0,0,0,0,4,0,0,4100,4242,12505,0,0,0,0,0,0,0,880,880,880,880,1,1,1,1,'Bone Hairpin (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59908,1,0,0,0,0,0,0,59,0,0,4100,4242,17612,0,0,0,0,0,0,0,894,894,716,716,1,1,1,1,'Beetle Knife (desynth)',NULL); -- 2021.11.09 Level based on synth. FFXIAH, FFXIclopedia, and Allakhazam agree on mats.
|
|
INSERT INTO `synth_recipes` VALUES (59909,1,0,0,0,0,0,0,53,0,0,4100,4242,12506,0,0,0,0,0,0,0,885,885,885,885,1,1,1,1,'Shell Hairpin (desynth)',NULL); -- 2021.11.09 Level based on synth. FFXIAH, FFXIclopedia, and Allakhazam agree on incredients.
|
|
INSERT INTO `synth_recipes` VALUES (59910,1,0,0,0,0,0,0,30,0,0,4100,4242,12711,0,0,0,0,0,0,0,889,852,852,852,1,2,2,2,'Beetle Mittens (desynth)',NULL); -- 2021.11.09 Level based on synth. Only FFXIclopedia had recipe.
|
|
INSERT INTO `synth_recipes` VALUES (59911,1,0,0,0,0,0,0,56,0,0,4100,4242,13744,0,0,0,0,0,0,0,889,889,889,889,1,1,1,1,'Justaucorps (desynth)',NULL); -- 2021.11.09 None agree on level. Based on synth level. FFXIAH, FFXIclopedia, and Allakhazam agree on ingredients.
|
|
INSERT INTO `synth_recipes` VALUES (59912,1,0,0,0,0,0,0,17,0,0,4100,4242,13441,0,0,0,0,0,0,0,880,882,882,882,1,1,1,1,'Bone Ring (desynth)',NULL); -- based on synth lvl 10/31/21
|
|
INSERT INTO `synth_recipes` VALUES (59913,1,0,0,0,0,0,0,29,0,0,4100,4242,12507,0,0,0,0,0,0,0,895,895,895,895,1,1,1,1,'Horn Hairpin (desynth)',NULL); -- 2021.11.09 Level based on synth. FFXIAH, Allakhazam and FFXIclopedia agree on ingredients.
|
|
INSERT INTO `synth_recipes` VALUES (59914,1,0,0,0,0,0,0,9,0,0,4100,4242,16405,0,0,0,0,0,0,0,856,649,880,880,1,1,3,3,'Cat Baghnakhs (desynth)',NULL); -- 2021.11.09 Level based on synth. FFXIclopedia and Allakhazam show bronze ingot where FFXIAH shows brass ingot. Recipe already had bronze and bronze is in the recipe.
|
|
INSERT INTO `synth_recipes` VALUES (59915,1,0,0,0,0,0,0,74,0,0,4100,4242,12709,0,0,0,0,0,0,0,887,887,887,506,1,1,1,1,'Coral Mittens (desynth)',NULL); -- 2021.11.09 FFXIAH, Allakhazam and FFXIclopedia agree on ingredients. Level based on synth.
|
|
INSERT INTO `synth_recipes` VALUES (59916,1,0,0,0,0,0,0,41,0,0,4100,4242,17610,0,0,0,0,0,0,0,893,893,893,711,1,1,1,1,'Bone Knife (desynth)',NULL); -- 2021.11.09 FFXIAH, Allakhazam and FFXIclopedia aree on ingredients. Level based on synth.
|
|
INSERT INTO `synth_recipes` VALUES (59917,1,0,0,0,0,0,0,47,0,0,4100,4242,17352,0,0,0,0,0,0,0,894,895,895,895,1,1,1,1,'Horn (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59918,1,0,0,0,0,0,0,68,0,0,4100,4242,16420,0,0,0,0,0,0,0,881,893,893,932,1,1,1,1,'Bone Patas (desynth)',NULL); -- 2021.11.08 FFXIAH, Allakhazam and FFXIclopedia agree on ingredients. Level based on synth.
|
|
INSERT INTO `synth_recipes` VALUES (59919,1,0,0,0,0,0,0,57,0,0,4100,4242,13199,0,0,0,0,0,0,0,817,924,893,893,1,1,1,1,'Blood Stone (desynth)',NULL); -- 2021.11.08 FFXIAH and FFXIclopedia agee on ingredients. Level based on synth level.
|
|
INSERT INTO `synth_recipes` VALUES (59920,1,0,0,0,0,0,0,14,0,0,4100,4242,17344,0,0,0,0,0,0,0,650,650,880,880,1,1,1,1,'Cornette (desynth)',NULL); -- 2021.11.08 FFXIAH and FFXIclopedia agree on ingredients. Level based on synth level.
|
|
INSERT INTO `synth_recipes` VALUES (59921,1,0,0,0,0,0,0,91,0,0,4100,4242,15159,0,0,0,0,0,0,0,506,1163,887,887,1,1,1,2,'Igqira Tiara (desynth)','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (59922,1,0,0,0,0,0,0,255,0,0,4100,4242,13110,0,0,0,0,0,0,0,818,893,893,893,1,1,1,1,'Beast Whistle (desynth)',NULL); -- 2021.11.08 FFXIAH and FFXIclopedia agree, but level is unknown
|
|
INSERT INTO `synth_recipes` VALUES (59923,1,0,0,0,0,0,0,64,0,0,4100,4242,12451,0,0,0,0,0,0,0,896,896,851,851,1,1,1,1,'Scorpion Mask (desynth)',NULL); -- 2021.11.08 based on FFXIAH, FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (59924,1,0,0,0,0,0,0,83,0,0,4100,4242,13312,0,0,0,0,0,0,0,744,744,887,887,1,1,1,1,'Coral Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59925,1,0,0,0,0,0,0,96,0,0,4100,4242,12751,0,0,0,0,0,0,0,816,850,1473,1473,3,2,1,1,'Scorpion Gauntlets (desynth)',NULL); -- 2021.11.08 FFXIclopedia, FFXIAH, Allakhazam only had NQ recipe, but makes sense to be the same. Need to verify if this should be a desynth of the HQ or NQ. Changed to NQ item to desynth.
|
|
INSERT INTO `synth_recipes` VALUES (59926,1,0,0,0,0,0,0,45,0,0,4100,4242,13711,0,0,0,0,0,0,0,881,881,848,848,1,1,1,1,'Carapace Mask (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59927,1,0,0,0,0,0,0,91,0,0,4100,4242,13922,0,0,0,0,0,0,0,850,886,902,902,1,1,1,1,'Demon Helm (desynth)',NULL); -- FFXIclopedia, FFXIAH, Allakhazam all agree
|
|
INSERT INTO `synth_recipes` VALUES (59928,1,0,0,0,0,0,0,7,0,0,4100,4242,13442,0,0,0,0,0,0,0,864,888,888,888,1,1,1,1,'Shell Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59929,1,0,0,0,0,0,0,42,0,0,4100,4242,13461,0,0,0,0,0,0,0,881,1226,653,653,1,4,1,1,'Carapace Ring (desynth)',NULL); -- 2021.11.08 Allakhazam and FFXIAH
|
|
INSERT INTO `synth_recipes` VALUES (59930,1,0,0,0,0,0,0,28,0,0,4100,4242,12455,0,0,0,0,0,0,0,852,852,894,894,1,1,1,1,'Beetle Mask (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59931,1,0,0,0,0,0,0,92,0,0,4100,4242,14305,0,0,0,0,0,0,0,1629,1629,1629,1629,1,1,1,1,'Dragon Subligar (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (59932,1,0,0,0,0,0,0,93,0,0,4100,4242,14852,0,0,0,0,0,0,0,1163,1622,790,1618,1,1,1,1,'Igqira Manillas (desynth)','COP'); -- 2021.11.08 FFXIclopedia and Allakhazam
|
|
INSERT INTO `synth_recipes` VALUES (59933,1,0,0,0,0,0,0,72,0,0,4100,4242,12878,0,0,0,0,0,0,0,819,506,887,887,2,1,1,1,'Coral Subligar (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59934,1,0,0,0,0,0,0,44,0,0,4100,4242,13713,0,0,0,0,0,0,0,864,864,864,864,1,1,1,1,'Carapace Mittens (desynth)',NULL); -- 2021.11.06 - FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (59935,1,0,0,0,0,0,0,39,0,0,4100,4242,17026,0,0,0,0,0,0,0,817,880,880,893,3,5,6,1,'Bone Cudgel (desynth)',NULL); -- 2021.11.01 FFXIclopedia and allakhzam have different recipes. Went with https://ffxiclopedia.fandom.com/wiki/Bone_Cudgel
|
|
INSERT INTO `synth_recipes` VALUES (59936,1,0,0,0,0,0,0,77,0,0,4100,4242,13850,0,0,0,0,0,0,0,887,792,793,793,1,1,1,1,'Merman\'s Hairpin (desynth)',NULL); -- 2021.11.01 https://ffxiclopedia.fandom.com/wiki/Merman's_Hairpin
|
|
INSERT INTO `synth_recipes` VALUES (59937,1,0,0,0,0,0,0,36,0,0,4100,4242,12583,0,0,0,0,0,0,0,852,889,852,852,1,1,2,3,'Beetle Harness (desynth)',NULL); -- 2021.11.01 nothing matches. FFXIclopedia makes no sense b/c of materials needed to make. Used https://ffxi.allakhazam.com/db/item.html?fitem=536#Desynthesis
|
|
INSERT INTO `synth_recipes` VALUES (59938,1,0,0,0,0,0,0,97,0,0,4100,4242,13846,0,0,0,0,0,0,0,850,1230,1473,1473,1,6,1,1,'Scorpion Helm (desynth)',NULL); -- 2021.11.01
|
|
INSERT INTO `synth_recipes` VALUES (59939,1,0,0,0,0,0,0,92,0,0,4100,4242,14008,0,0,0,0,0,0,0,817,1193,850,850,3,1,1,3,'Cpc. Gauntlets (desynth)',NULL); -- 2021.11.01 allakhazam states synth rate is 3,1,1,3 FFXIclopedia shows 3,3,1,3. Nothing shown on others. Chose 3,1,1,3 b/c there are not 3 Crab Shells in the synths to make.
|
|
INSERT INTO `synth_recipes` VALUES (59940,1,0,0,0,0,0,0,85,0,0,4100,4242,17849,0,0,0,0,0,0,0,2157,2157,2171,2171,1,1,1,1,'Hellish Bugle (desynth)','TOAU'); -- 2021.11.01
|
|
INSERT INTO `synth_recipes` VALUES (59941,1,0,0,0,0,0,0,80,0,0,4100,4242,15211,0,0,0,0,0,0,0,887,887,792,793,1,1,1,1,'Reraise Hairpin (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (59942,1,0,0,0,0,0,0,79,0,0,4100,4242,13108,0,0,0,0,0,0,0,850,850,887,887,1,1,1,1,'Coral Gorget (desynth)',NULL); -- 2021.11.01
|
|
INSERT INTO `synth_recipes` VALUES (59943,1,0,0,0,0,0,0,70,0,0,4100,4242,13464,0,0,0,0,0,0,0,864,864,902,902,1,1,1,1,'Demon\'s Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59944,1,0,0,0,0,0,0,87,0,0,4100,4242,12436,0,0,0,0,0,0,0,850,850,866,866,1,1,1,2,'Dragon Mask (desynth)',NULL); -- 2021.11.01 FFXIclopedia and allakhazam
|
|
INSERT INTO `synth_recipes` VALUES (59945,1,0,0,0,0,0,0,60,0,0,4100,4242,13458,0,0,0,0,0,0,0,896,896,896,896,1,1,1,1,'Scorpion Ring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59946,1,0,0,0,0,0,0,52,0,0,4100,4242,17257,0,0,0,0,0,0,0,893,893,893,893,1,1,1,1,'Bandit\'s Gun (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59947,1,0,0,0,0,0,0,100,0,0,4100,4242,12437,0,0,0,0,0,0,0,850,1587,1586,1586,1,1,1,1,'Gavial Mask (desynth)',NULL); -- 2021.11.01
|
|
INSERT INTO `synth_recipes` VALUES (59948,1,0,0,0,0,0,0,255,0,0,4100,4242,14426,0,0,0,0,0,0,0,816,816,816,816,1,1,1,1,'Shade Harness (desynth)','COP'); -- 2021.11.01 https://ffxi.allakhazam.com/dyn/guilds/dBonecraft.html
|
|
INSERT INTO `synth_recipes` VALUES (59949,1,0,0,0,0,0,0,57,0,0,4100,4242,16794,0,0,0,0,0,0,0,817,882,893,893,3,1,1,1,'Bone Scythe (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (59950,1,0,0,0,0,0,0,37,0,0,4100,4242,13459,0,0,0,0,0,0,0,864,895,895,895,1,1,1,1,'Horn Ring (desynth)',NULL); -- based on synth lvl 10/31/21
|
|
-- INSERT INTO `synth_recipes` VALUES (59951,1,0,0,255,0,0,0,255,0,0,4100,4242,16409,0,0,0,0,0,0,0,649,880,880,855,1,2,3,1,'Lynx Baghnakhs (desynth)',NULL); -- 2021.11.01 no level data
|
|
INSERT INTO `synth_recipes` VALUES (59952,1,0,0,0,0,0,0,96,0,0,4100,4242,14186,0,0,0,0,0,0,0,866,866,1629,1629,1,1,1,1,'Dragon Leggings (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60001,0,0,0,0,0,0,0,0,1,0,4099,4241,3885,3886,3887,0,0,0,0,0,426,426,426,426,1,1,1,1,'Orchestrion','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (60002,0,0,0,0,0,0,0,0,1,0,4099,4241,4216,10875,0,0,0,0,0,0,26728,26728,26728,26728,1,1,1,1,'Frosty Cap','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (60003,0,0,0,0,0,0,0,0,1,0,4099,4241,3451,3452,3453,0,0,0,0,0,3676,3676,3676,3676,1,1,1,1,'Celestial Globe','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (60004,0,0,0,0,0,0,0,0,2,0,4100,4242,950,0,0,0,0,0,0,0,4509,4509,4509,4509,3,6,9,12,'Distilled Water',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60005,0,0,0,0,0,0,0,0,3,0,4101,4243,951,4431,4509,0,0,0,0,0,4148,4148,4148,4148,1,2,3,4,'Antidote',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60006,0,2035,0,0,0,0,0,0,3,0,4101,4243,951,951,951,2131,4431,4431,4431,4509,4148,4148,4148,4148,3,6,9,12,'Antidote','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60007,0,0,0,0,0,0,0,0,4,0,4103,4245,635,635,4361,4509,0,0,0,0,929,929,929,929,2,4,6,8,'Black Ink',NULL); -- Nebimonite
|
|
INSERT INTO `synth_recipes` VALUES (60008,0,0,0,0,0,0,0,0,4,0,4103,4245,695,4361,4509,0,0,0,0,0,929,929,929,929,1,2,4,6,'Black Ink',NULL); -- Nebimonite
|
|
INSERT INTO `synth_recipes` VALUES (60009,0,0,0,0,0,0,0,0,4,0,4103,4245,695,4509,5128,5128,0,0,0,0,929,929,929,929,2,4,6,8,'Black Ink',NULL); -- Cone Calamary
|
|
INSERT INTO `synth_recipes` VALUES (60010,0,0,0,0,0,0,0,0,4,0,4103,4245,635,4509,5128,5128,0,0,0,0,929,929,929,929,2,4,6,8,'Black Ink',NULL); -- Cone Calamary
|
|
INSERT INTO `synth_recipes` VALUES (60011,0,0,0,0,0,0,0,0,4,0,4103,4245,2156,4509,5448,5448,0,0,0,0,929,929,929,929,2,4,6,8,'Black Ink','TOAU'); -- Kalamar
|
|
INSERT INTO `synth_recipes` VALUES (60012,0,0,0,0,0,0,0,0,4,0,4103,4245,695,4509,5448,5448,0,0,0,0,929,929,929,929,2,4,6,8,'Black Ink','TOAU'); -- Kalamar
|
|
INSERT INTO `synth_recipes` VALUES (60013,0,0,0,0,0,0,0,0,5,0,4103,4245,635,635,4304,4509,0,0,0,0,929,929,929,929,2,4,6,8,'Black Ink',NULL); -- Grimmonite
|
|
INSERT INTO `synth_recipes` VALUES (60014,0,0,0,0,0,0,0,0,5,0,4103,4245,2156,2156,4509,5455,0,0,0,0,929,929,929,929,2,4,6,8,'Black Ink','TOAU'); -- Ahtapot
|
|
INSERT INTO `synth_recipes` VALUES (60015,0,2035,0,0,0,0,0,0,5,0,4096,4238,2131,2164,2164,2164,2164,4509,0,0,913,913,913,913,4,6,8,10,'Beeswax','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60016,0,0,0,0,0,0,0,0,5,0,4103,4245,8889,0,0,0,0,0,0,0,929,929,929,929,2,2,2,2,'Black Ink','SOA'); -- Alch. Kit 5
|
|
INSERT INTO `synth_recipes` VALUES (60017,0,2035,0,0,0,0,0,0,5,0,4096,4238,912,912,912,912,912,912,2131,4509,913,913,913,913,2,4,6,8,'Beeswax','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60018,0,0,0,0,0,0,0,0,5,0,4096,4238,2164,2164,4509,0,0,0,0,0,913,913,913,913,2,3,4,5,'Beeswax','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60019,0,0,0,0,0,0,0,0,5,0,4096,4238,912,912,912,4509,0,0,0,0,913,913,913,913,1,2,3,4,'Beeswax',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60020,0,0,0,0,0,0,1,0,6,0,4099,4241,879,1656,4109,0,0,0,0,0,13683,13683,13683,13683,1,1,1,1,'Water Tank','TOAU'); -- 2021.11.01
|
|
INSERT INTO `synth_recipes` VALUES (60021,0,0,0,0,0,0,0,0,6,0,4097,4239,936,4509,4509,0,0,0,0,0,1164,1164,1164,1164,10,20,50,99,'Tsurara','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (60022,0,0,0,0,0,0,1,0,6,0,4099,4241,850,1656,4109,0,0,0,0,0,13683,13683,13683,13683,1,1,1,1,'Water Tank','COP'); -- 2021.11.01
|
|
INSERT INTO `synth_recipes` VALUES (60023,0,0,0,0,0,0,0,0,7,0,4096,4238,856,880,880,4509,0,0,0,0,937,937,937,937,1,2,3,4,'Animal Glue',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60024,0,2035,0,0,0,0,0,0,7,0,4096,4238,856,856,880,880,880,880,2131,4509,937,937,937,937,2,4,6,8,'Animal Glue','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60025,0,0,0,0,0,0,0,0,7,0,4101,4243,612,4368,4447,0,0,0,0,0,4162,4162,4162,4162,1,2,3,4,'Silencing Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60026,0,2034,0,0,0,0,0,0,8,0,4101,4243,612,1643,1646,1648,4368,4447,0,0,5298,5298,5298,5298,1,2,3,4,'Muting Potion','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60027,0,0,0,0,0,0,0,0,8,0,4101,4243,612,2507,4447,0,0,0,0,0,4162,4162,4162,4162,1,2,3,4,'Silencing Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60028,0,0,0,0,0,0,0,0,8,0,4100,4242,4509,4565,4565,0,0,0,0,0,4162,4162,4162,4162,1,2,3,4,'Silencing Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60029,0,2034,0,0,0,0,0,0,8,0,4100,4242,1643,1646,1648,4509,4565,4565,0,0,5298,5298,5298,5298,1,2,3,4,'Muting Potion','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60030,0,0,0,0,0,0,0,0,8,0,4100,4242,914,4443,0,0,0,0,0,0,4162,4162,4162,4162,2,4,6,8,'Silencing Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60031,0,0,0,0,0,0,0,0,8,0,4100,4242,914,5447,0,0,0,0,0,0,4162,4162,4162,4162,2,4,6,8,'Silencing Potion','TOAU'); -- Denizanasi
|
|
INSERT INTO `synth_recipes` VALUES (60032,0,0,0,0,0,0,0,0,9,0,4100,4242,4566,4566,0,0,0,0,0,0,943,943,943,943,1,2,3,4,'Poison Dust',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60033,0,0,0,0,0,0,0,0,9,0,4101,4243,913,16535,0,0,0,0,0,0,16600,16610,16610,16610,1,1,1,1,'Wax Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60034,0,0,0,0,0,0,0,0,9,0,4100,4242,629,629,0,0,0,0,0,0,2215,2215,2215,2215,1,2,3,4,'Cornstarch','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60035,0,0,0,0,0,0,0,0,10,0,4098,4240,633,636,638,0,0,0,0,0,4166,4166,4166,4166,1,2,3,4,'Deodorizer',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60036,0,2035,0,0,0,0,0,0,10,0,4098,4240,633,633,636,636,638,638,2131,0,4166,4166,4166,4166,2,4,6,8,'Deodorizer','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60037,0,0,0,0,0,0,0,0,10,0,4103,4245,635,635,4474,4509,0,0,0,0,929,929,929,929,6,8,10,12,'Black Ink','COP'); -- Gigant Squid
|
|
INSERT INTO `synth_recipes` VALUES (60038,0,0,0,0,0,0,0,0,10,0,4098,4240,8890,0,0,0,0,0,0,0,4166,4166,4166,4166,1,1,1,1,'Deodorizer','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (60501,0,0,0,0,0,0,0,0,11,0,4098,4240,2270,0,0,0,0,0,0,0,2271,2271,2271,2271,1,1,1,1,'Coffee Beans','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60502,0,0,0,0,0,0,0,0,11,0,4096,4238,582,4149,0,0,0,0,0,0,1230,1234,1233,1225,12,9,6,3,'Copper Nugget','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (60503,0,0,0,0,0,0,0,0,11,0,4100,4242,925,925,0,0,0,0,0,0,943,943,943,943,1,2,3,4,'Poison Dust',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60504,0,0,0,0,0,0,0,0,12,0,4100,4242,4403,4403,0,0,0,0,0,0,943,943,943,943,1,2,3,4,'Poison Dust',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60505,0,0,0,0,0,0,0,0,13,0,4101,4243,937,4162,16449,0,0,0,0,0,16495,16508,16508,16508,1,1,1,1,'Silence Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60506,0,0,0,0,0,0,0,0,14,0,4101,4243,913,913,16565,0,0,0,0,0,16572,16611,16611,16611,1,1,1,1,'Bee Spatha',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60507,1,0,0,0,0,0,0,0,14,0,4100,4242,16572,0,0,0,0,0,0,0,649,649,913,852,3,3,2,2,'Bee Spatha (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60508,0,0,0,0,0,0,0,0,14,0,4098,4240,2464,4509,4509,4509,4509,0,0,0,5165,5165,5165,5165,1,2,3,4,'Movalpolos Water','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (60509,0,0,0,0,0,0,0,0,15,0,4101,4243,1683,4509,4545,0,0,0,0,0,2197,2197,2197,2197,3,6,9,12,'Chocotonic','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60510,1,0,0,0,0,0,0,0,15,0,4096,4238,497,0,0,0,0,0,0,0,943,943,943,943,2,4,6,8,'Gigas Socks (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60511,0,0,0,0,0,0,0,0,15,0,4099,4241,947,1134,1134,0,0,0,0,0,4167,4167,4167,4167,33,66,99,99,'Cracker','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (60512,0,0,0,0,0,0,0,0,15,0,4099,4241,947,1134,4545,0,0,0,0,0,2394,2394,2394,2394,3,6,9,12,'Gysahl Bomb','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60513,0,0,0,0,0,0,0,0,15,0,4099,4241,8891,0,0,0,0,0,0,0,4167,4167,4167,4167,33,33,33,33,'Cracker','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (60514,0,0,0,0,0,0,0,0,15,0,4099,4241,947,1134,4375,0,0,0,0,0,2395,2395,2395,2395,3,6,9,12,'Spore Bomb','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60515,0,0,0,0,0,0,0,0,16,0,4100,4242,4443,4443,4443,4443,0,0,0,0,914,914,914,914,1,2,3,4,'Mercury',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60516,0,0,0,0,0,0,0,0,17,0,4102,4244,914,2316,4104,0,0,0,0,0,2176,2176,2176,2176,33,66,99,99,'Fire Card','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60517,0,0,0,0,0,0,0,0,17,0,4101,4243,937,5298,16495,0,0,0,0,0,18008,18008,18008,18008,1,1,1,1,'Hushed Dagger','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60518,0,0,0,0,0,0,0,0,17,0,4101,4243,937,4162,16407,0,0,0,0,0,16429,16438,16438,16438,1,1,1,1,'Silence Baghnakhs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60519,0,0,0,0,0,0,0,0,17,0,4100,4242,5447,5447,5447,5447,0,0,0,0,914,914,914,914,1,2,3,4,'Mercury','TOAU'); -- Denizanasi
|
|
INSERT INTO `synth_recipes` VALUES (60520,0,0,0,0,0,0,0,0,17,0,4102,4244,914,2316,4105,0,0,0,0,0,2177,2177,2177,2177,33,66,99,99,'Ice Card','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60521,0,0,0,0,0,0,0,0,17,0,4102,4244,914,2316,4106,0,0,0,0,0,2178,2178,2178,2178,33,66,99,99,'Wind Card','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60522,0,0,0,0,0,0,0,0,17,0,4102,4244,914,2316,4110,0,0,0,0,0,2182,2182,2182,2182,33,66,99,99,'Light Card','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60523,0,0,0,0,0,0,0,0,17,0,4102,4244,914,2316,4111,0,0,0,0,0,2183,2183,2183,2183,33,66,99,99,'Dark Card','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60524,0,0,0,0,0,0,0,0,17,0,4102,4244,914,2316,4107,0,0,0,0,0,2179,2179,2179,2179,33,66,99,99,'Earth Card','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60525,0,0,0,0,0,0,0,0,17,0,4102,4244,914,2316,4108,0,0,0,0,0,2180,2180,2180,2180,33,66,99,99,'Thunder Card','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60526,0,0,0,0,0,0,0,0,17,0,4102,4244,914,2316,4109,0,0,0,0,0,2181,2181,2181,2181,33,66,99,99,'Water Card','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60527,0,0,0,0,0,0,0,0,18,0,4101,4243,914,943,0,0,0,0,0,0,4157,4157,4157,4157,1,1,1,1,'Poison Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60528,0,2035,0,0,0,0,0,0,18,0,4101,4243,914,914,914,943,943,943,2131,0,4157,4157,4157,4157,3,3,3,3,'Poison Potion','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60529,0,0,0,0,0,0,0,0,18,0,4096,4238,2563,2563,2563,2563,2563,0,0,0,360,360,360,360,1,1,1,1,'Matka','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (60530,0,0,0,0,0,0,0,0,19,0,4103,4245,4290,17395,17397,0,0,0,0,0,1191,1191,1191,1191,33,66,99,99,'Kodoku','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (60531,0,0,0,0,0,0,0,0,19,0,4098,4240,2272,0,0,0,0,0,0,0,2273,2273,2273,2273,1,2,3,4,'Coffee Powder','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (60532,0,0,0,0,0,0,0,0,19,0,4103,4245,5465,17395,17397,0,0,0,0,0,1191,1191,1191,1191,33,66,99,99,'Kodoku','TOAU'); -- Caedarva Frog
|
|
INSERT INTO `synth_recipes` VALUES (60533,0,2035,0,0,0,0,0,0,20,0,4101,4243,638,638,638,2131,4370,4370,4370,4509,4151,4151,4151,4151,3,6,9,12,'Echo Drops','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60534,0,0,0,0,0,0,0,0,20,0,4101,4243,638,4370,4509,0,0,0,0,0,4151,4151,4151,4151,1,2,3,4,'Echo Drops',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (60535,0,0,0,0,0,0,0,0,20,0,4101,4243,937,5298,16429,0,0,0,0,0,18355,18355,18355,18355,1,1,1,1,'Hushed Baghnakhs','COP');
|
|
INSERT INTO `synth_recipes` VALUES (60536,0,0,0,0,0,0,0,0,20,0,4101,4243,8892,0,0,0,0,0,0,0,18355,18355,18355,18355,1,1,1,1,'Hushed Baghnakhs','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (60537,0,0,0,0,0,0,0,0,20,0,4096,4238,1893,4509,0,0,0,0,0,0,2109,2109,2109,2109,6,8,10,12,'Bittern','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61001,0,0,0,20,0,0,0,0,21,0,4098,4240,648,651,937,4157,0,0,0,0,1252,1252,1252,1252,6,8,10,12,'Poison Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61002,1,0,0,0,0,0,0,0,21,0,4100,4242,511,0,0,0,0,0,0,0,933,933,933,933,2,4,6,8,'Goblin Mask (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61003,0,0,0,0,0,0,0,0,21,0,4096,4238,5466,0,0,0,0,0,0,0,2464,2464,2464,2464,6,8,10,12,'Carbon Dioxide','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61004,0,0,0,0,0,0,0,0,22,0,4100,4242,936,5165,0,0,0,0,0,0,2113,2113,2113,2113,6,8,10,12,'Baking Soda','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61005,0,0,0,0,0,0,0,0,22,0,4101,4243,937,4157,16450,0,0,0,0,0,16496,16741,16741,16741,1,1,1,1,'Poison Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61006,0,0,0,0,0,0,0,0,23,0,4101,4243,937,4162,16919,0,0,0,0,0,16906,16925,16925,16925,1,1,1,1,'Mokuto','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (61007,1,0,0,0,0,0,0,0,23,0,4100,4242,1162,0,0,0,0,0,0,0,933,933,933,933,3,6,9,12,'Tonberry Lantern (desynth)','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (61008,0,0,0,0,0,0,0,0,23,0,4101,4243,937,4157,16466,0,0,0,0,0,16472,16742,16742,16742,1,1,1,1,'Poison Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61009,0,0,0,0,0,0,0,0,24,0,4096,4238,914,1108,0,0,0,0,0,0,1813,1813,1813,1813,1,1,1,1,'Vermilion Lacquer','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61010,1,0,0,0,0,0,0,0,24,0,4101,4243,1162,0,0,0,0,0,0,0,633,915,637,637,3,2,1,1,'Tonberry Lantern (desynth)','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (61011,0,0,0,0,0,0,0,0,24,0,4101,4243,637,913,913,0,0,0,0,0,4165,4165,4165,4165,4,8,10,12,'Silent Oil',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61012,0,0,0,0,0,0,0,0,25,0,4102,4244,491,0,0,0,0,0,0,0,17385,17385,17385,17385,1,1,1,1,'Glass Fiber Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61013,0,0,0,0,0,0,0,0,25,0,4099,4241,947,1134,1241,0,0,0,0,0,4168,4168,4168,4168,33,66,99,99,'Twinkle Shower','ROTZ');
|
|
-- INSERT INTO `synth_recipes` VALUES (61014,0,0,0,255,0,0,0,0,25,0,4096,4238,813,1836,1886,2475,2475,2709,0,0,3699,3699,3699,3699,1,1,1,1,'Bathtub','SOA'); -- 2021.11.01 SM ??
|
|
INSERT INTO `synth_recipes` VALUES (61015,0,0,0,0,0,0,0,0,25,0,4101,4243,937,4157,16455,0,0,0,0,0,16458,16743,16743,16743,1,1,1,1,'Poison Baselard',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61016,0,2034,0,0,0,0,0,0,25,0,4096,4238,914,1108,1645,1646,1647,0,0,0,1814,1814,1814,1814,1,1,1,1,'Ethereal Vermilion Lacquer','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61017,0,0,0,0,0,0,0,0,25,0,4101,4243,8893,0,0,0,0,0,0,0,16458,16458,16458,16458,1,1,1,1,'Poison Baselard','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (61018,0,0,0,0,10,0,0,0,26,0,4096,4238,650,933,0,0,0,0,0,0,17407,17400,17400,17400,1,1,1,1,'Minnow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61019,0,0,0,0,6,0,0,0,26,0,4096,4238,648,947,0,0,0,0,0,0,18713,18713,18713,18713,33,99,99,99,'Copper Bullet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61020,0,0,0,0,0,0,0,0,26,0,4101,4243,937,5298,16906,0,0,0,0,0,17797,17797,17797,17797,1,1,1,1,'Seito','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61021,0,2035,0,0,0,0,0,0,27,0,4101,4243,621,621,952,952,2131,4374,4374,0,4163,4163,4163,4163,2,4,6,8,'Blinding Potion','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61022,0,0,0,0,0,0,0,0,27,0,4101,4243,621,952,4374,0,0,0,0,0,4163,4163,4163,4163,1,2,3,4,'Blinding Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61023,0,0,0,0,0,0,0,0,28,0,4100,4242,914,4361,0,0,0,0,0,0,4163,4163,4163,4163,2,4,6,8,'Blinding Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61024,0,0,0,0,0,0,0,0,28,11,4099,4241,612,928,1134,4570,0,0,0,0,1188,1188,1188,1188,33,66,99,99,'Sairui-Ran','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (61025,0,0,0,0,0,0,0,0,28,0,4101,4243,633,2310,2316,0,0,0,0,0,18731,18732,18733,19185,6,6,6,6,'Automaton Oil','TOAU'); -- 2011.11.01
|
|
INSERT INTO `synth_recipes` VALUES (61026,0,0,0,0,0,0,0,0,28,0,4101,4243,919,939,2015,4447,5474,0,0,0,19251,19251,19251,19251,33,66,66,99,'Pet Roborant','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61027,0,0,0,0,0,0,0,0,29,0,4101,4243,633,913,913,0,0,0,0,0,4165,4165,4165,4165,2,4,6,8,'Silent Oil',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61028,0,0,0,0,0,0,0,0,29,0,4101,4243,2713,0,0,0,0,0,0,0,2706,2706,2706,2706,12,12,12,12,'Blue Textile Dye','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61029,0,0,0,0,0,0,0,0,29,11,4099,4241,612,1134,2549,4570,0,0,0,0,1188,1188,1188,1188,33,66,99,99,'Sairui-Ran','WOTG'); -- Djinn Ash
|
|
INSERT INTO `synth_recipes` VALUES (61030,1,0,0,0,0,0,0,0,29,0,4100,4242,1638,0,0,0,0,0,0,0,933,933,933,933,2,4,6,8,'Moblin Mask (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61031,0,0,0,0,0,0,0,0,29,0,4101,4243,5650,0,0,0,0,0,0,0,2712,2712,2712,2712,12,12,12,12,'Red Textile Dye','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61032,0,0,0,0,0,0,0,0,29,0,4101,4243,2156,0,0,0,0,0,0,0,2707,2707,2707,2707,12,12,12,12,'Green Textile Dye','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61033,0,0,0,0,0,0,0,0,29,0,4101,4243,1554,0,0,0,0,0,0,0,2708,2708,2708,2708,12,12,12,12,'Yellow Textile Dye','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61034,0,0,0,0,0,0,0,0,29,0,4096,4238,818,933,933,933,933,0,0,0,17385,17385,17385,17385,1,1,1,1,'Glass Fiber Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61035,0,0,0,0,0,0,0,0,29,0,4101,4243,2113,0,0,0,0,0,0,0,2709,2709,2709,2709,12,12,12,12,'White Textile Dye','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61036,0,0,0,0,0,0,0,0,30,0,4099,4241,1882,1882,1883,1883,1884,0,0,0,1886,1886,1886,1886,1,1,1,1,'Sieglinde Putty','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61037,0,0,0,0,0,0,0,0,30,0,4101,4243,636,921,4509,0,0,0,0,0,4150,4150,4150,4150,2,4,6,8,'Eye Drops',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61038,0,2035,0,0,0,0,0,0,30,0,4101,4243,636,636,921,921,2131,4509,0,0,4150,4150,4150,4150,4,8,12,12,'Eye Drops','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61039,0,0,0,0,0,0,0,0,30,0,4099,4241,8894,0,0,0,0,0,0,0,1886,1886,1886,1886,1,1,1,1,'Sieglinde Putty','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (61501,0,0,0,0,11,0,0,0,31,0,4096,4238,648,933,0,0,0,0,0,0,17407,17400,17400,17400,1,1,1,1,'Minnow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61502,0,0,0,14,0,0,0,0,31,0,4098,4240,649,937,4163,0,0,0,0,0,1242,1242,1242,1242,6,8,10,12,'Blind Bolt Heads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61503,0,0,0,0,0,0,0,0,31,0,4101,4243,937,4157,16473,0,0,0,0,0,16478,16489,16489,16489,1,1,1,1,'Poison Kukri',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61504,0,0,0,0,0,0,0,0,32,0,4101,4243,937,4163,16448,0,0,0,0,0,16454,16493,16493,16493,1,1,1,1,'Blind Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61505,0,0,0,0,0,0,0,27,33,0,4101,4243,891,891,914,0,0,0,0,0,5350,5350,5350,5350,3,6,9,12,'Volant Serum','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61506,0,0,0,0,0,0,0,0,33,0,4101,4243,937,4157,16386,0,0,0,0,0,16387,16700,16700,16700,1,1,1,1,'Poison Cesti',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61507,0,0,0,0,0,0,0,0,33,0,4101,4243,937,4157,16919,0,0,0,0,0,16907,16927,16927,16927,1,1,1,1,'Busuto','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (61508,0,0,0,0,0,0,0,0,33,0,4099,4241,1882,1882,1883,1883,1885,1885,1885,0,1860,1860,1860,1860,1,1,1,1,'Moblin Putty','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61509,0,0,0,0,0,0,0,0,34,0,4101,4243,937,4163,16465,0,0,0,0,0,16471,16490,16490,16490,1,1,1,1,'Blind Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61510,0,0,0,0,0,0,0,0,34,0,4096,4238,933,933,0,0,0,0,0,0,1109,1109,1109,1109,1,1,1,1,'Artificial Lens',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61511,0,0,0,0,0,0,0,0,35,0,4103,4245,637,775,2792,0,0,0,0,0,2791,2791,2791,2791,3,6,9,12,'Dark Fewell','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61512,0,0,0,0,0,0,0,0,35,0,4101,4243,8895,0,0,0,0,0,0,0,16410,16410,16410,16410,1,1,1,1,'Poison Baghnakhs','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (61513,0,0,0,0,0,0,0,0,35,0,4098,4240,637,772,2792,0,0,0,0,0,2786,2786,2786,2786,3,6,9,12,'Wind Fewell','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61514,0,0,0,0,0,0,0,0,35,0,4101,4243,637,770,2792,0,0,0,0,0,2789,2789,2789,2789,3,6,9,12,'Water Fewell','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61515,0,0,0,0,0,0,0,0,35,0,4100,4242,637,774,2792,0,0,0,0,0,2788,2788,2788,2788,3,6,9,12,'Lightning Fewell','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61516,0,0,0,0,0,0,0,0,35,0,4097,4239,637,773,2792,0,0,0,0,0,2785,2785,2785,2785,3,6,9,12,'Ice Fewell','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61517,0,0,0,0,0,0,0,0,35,0,4099,4241,947,949,1134,1134,0,0,0,0,4169,4169,4169,4169,33,66,99,99,'Little Comet','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (61518,0,0,0,0,0,0,0,0,35,0,4096,4238,637,769,2792,0,0,0,0,0,2784,2784,2784,2784,3,6,9,12,'Fire Fewell','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61519,0,0,0,0,0,0,0,0,35,0,4101,4243,937,4157,16406,0,0,0,0,0,16410,16692,16692,16692,1,1,1,1,'Poison Baghnakhs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61520,0,0,0,0,0,0,0,0,35,0,4099,4241,637,771,2792,0,0,0,0,0,2787,2787,2787,2787,3,6,9,12,'Earth Fewell','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61521,0,0,0,0,0,0,0,0,35,0,4102,4244,637,776,2792,0,0,0,0,0,2790,2790,2790,2790,3,6,9,12,'Light Fewell','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (61522,0,0,0,0,0,0,0,0,36,0,4102,4244,557,933,933,0,0,0,0,0,4164,4164,4164,4164,8,10,11,12,'Prism Powder',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61523,0,0,0,0,0,0,0,0,36,0,4099,4241,2301,0,0,0,0,0,0,0,2316,2316,2316,2316,33,66,99,99,'Polyflan Paper','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (61524,0,0,0,0,0,0,0,0,37,0,4103,4245,929,930,1134,0,0,0,0,0,1182,1182,1182,1182,33,66,99,99,'Jusatsu','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (61525,0,0,0,0,0,0,0,0,38,0,4101,4243,937,4157,16411,0,0,0,0,0,16417,16439,16439,16439,1,1,1,1,'Poison Claws',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61526,0,2035,0,0,0,0,0,0,38,0,4100,4242,2131,2155,2155,2155,0,0,0,0,2229,2229,2229,2229,3,6,9,9,'Chimera Blood','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (61527,0,0,0,13,0,0,0,0,38,0,4096,4238,649,947,0,0,0,0,0,0,17343,17343,17343,17343,33,99,99,99,'Bronze Bullet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61528,0,0,0,0,0,0,0,0,38,0,4100,4242,2155,0,0,0,0,0,0,0,2229,2229,2229,2229,1,2,4,4,'Chimera Blood','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (61529,0,0,31,0,0,0,0,0,38,0,4099,4241,704,947,1230,0,0,0,0,0,4184,4184,4184,4184,33,99,99,99,'Kongou Inaho',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61530,0,0,0,0,0,0,0,0,38,0,4101,4243,633,633,2310,2316,0,0,0,0,18732,18732,18733,19185,6,9,9,9,'Automaton Oil +1','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (61531,0,0,0,0,0,0,0,0,39,0,4099,4241,928,928,934,0,0,0,0,0,947,947,947,947,3,6,9,12,'Firesand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61532,0,0,0,0,0,0,0,0,39,0,4101,4243,637,913,2513,0,0,0,0,0,1023,1023,1023,1023,3,6,9,12,'Living Key','WOTG'); -- Rafflesia
|
|
INSERT INTO `synth_recipes` VALUES (61533,0,0,0,0,0,0,0,0,39,0,4099,4241,637,947,16589,0,0,0,0,0,16594,16928,16928,16928,1,1,1,1,'Inferno Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61534,0,2037,0,0,0,0,0,0,39,0,4101,4243,914,2175,2175,0,0,0,0,0,2310,2310,2310,2310,33,66,99,99,'Plasma Oil','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (61535,0,0,0,0,0,0,0,0,39,0,4101,4243,637,913,920,0,0,0,0,0,1023,1023,1023,1023,2,4,6,8,'Living Key',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61536,0,2036,0,0,0,0,0,0,40,0,4096,4238,638,926,4509,0,0,0,0,0,5327,5327,5327,5327,1,2,3,4,'Potion Drop','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61537,0,0,0,0,0,0,0,0,40,0,4099,4241,928,928,1108,0,0,0,0,0,947,947,947,947,2,4,6,8,'Firesand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61538,0,2034,0,0,0,0,0,0,40,0,4099,4241,928,928,1108,1641,1646,1648,0,0,1775,1775,1775,1775,2,4,6,8,'Brimsand','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61539,0,0,0,0,0,0,0,0,40,0,4101,4243,638,926,4509,0,0,0,0,0,4112,4113,4114,4115,1,1,1,1,'Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (61540,0,2035,0,0,0,0,0,0,40,0,4099,4241,928,928,928,928,1108,1108,2131,0,947,947,947,947,4,8,12,12,'Firesand','COP');
|
|
INSERT INTO `synth_recipes` VALUES (61541,0,0,0,0,0,0,0,0,40,0,4099,4241,8896,0,0,0,0,0,0,0,947,947,947,947,2,2,2,2,'Firesand','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (62001,0,0,0,0,18,0,0,0,41,0,4096,4238,650,947,0,0,0,0,0,0,17340,17340,17340,17340,33,99,99,99,'Bullet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62002,0,0,0,0,0,0,0,0,41,0,4102,4244,933,933,1109,0,0,0,0,0,4164,4164,4164,4164,6,8,10,12,'Prism Powder',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62003,0,2035,0,0,0,0,0,0,41,0,4102,4244,933,933,933,933,1109,1109,2131,0,4164,4164,4164,4164,12,12,12,12,'Prism Powder','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62004,0,0,0,0,0,0,0,0,41,0,4099,4241,1108,1630,0,0,0,0,0,0,947,947,947,947,2,4,6,8,'Firesand','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62005,0,2034,0,0,0,0,0,0,41,0,4099,4241,1108,1630,1641,1646,1648,0,0,0,1775,1775,1775,1775,2,4,6,8,'Brimsand','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62006,0,0,0,0,0,0,0,0,42,0,4099,4241,637,947,16704,0,0,0,0,0,16709,16713,16713,16713,1,1,1,1,'Inferno Axe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62007,0,0,0,0,0,0,0,0,42,0,4101,4243,937,4163,16919,0,0,0,0,0,16905,16926,16926,16926,1,1,1,1,'Bokuto',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62008,0,0,0,0,0,0,0,0,42,0,4099,4241,637,1775,16594,0,0,0,0,0,18381,18381,18381,18381,1,1,1,1,'Prominence Sword','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62009,0,0,0,0,0,0,0,0,42,0,4099,4241,1108,2549,0,0,0,0,0,0,947,947,947,947,4,8,12,12,'Firesand','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (62010,0,0,0,0,0,0,0,0,42,0,4101,4243,541,0,0,0,0,0,0,0,4171,4171,4171,4171,1,2,3,4,'Vitriol',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62011,0,0,0,16,0,0,0,0,43,0,4096,4238,659,947,0,0,0,0,0,0,19229,19229,19229,19229,33,99,99,99,'Tin Bullet','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (62012,0,2035,0,0,0,0,0,0,43,0,4101,4243,953,953,953,953,953,953,2131,0,4171,4171,4171,4171,3,6,9,12,'Vitriol','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62013,0,2034,0,0,0,0,0,0,43,0,4101,4243,953,953,1641,1646,1648,0,0,0,5307,5307,5307,5307,1,2,3,4,'Invitriol','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62014,0,0,0,0,0,0,0,0,43,0,4101,4243,937,4157,16399,0,0,0,0,0,16403,16693,16693,16693,1,1,1,1,'Poison Katars',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62015,0,0,0,0,0,0,0,0,43,0,4101,4243,953,953,0,0,0,0,0,0,4171,4171,4171,4171,1,2,3,4,'Vitriol',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62016,0,0,0,0,18,0,0,0,43,0,4102,4244,744,917,1241,4164,0,0,0,0,4217,4217,4217,4217,33,66,66,99,'Sparkling Hand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62017,0,0,0,0,0,0,0,27,43,0,4101,4243,880,880,880,880,914,0,0,0,5351,5351,5351,5351,3,6,9,9,'Osseous Serum','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (62018,0,0,0,0,0,0,0,0,43,0,4096,4238,714,2475,2475,0,0,0,0,0,3608,3608,3608,3608,1,1,1,1,'Fictile Pot','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (62019,0,0,0,23,0,0,0,0,44,0,4096,4238,637,651,824,0,0,0,0,0,1218,1218,1218,1218,6,8,10,12,'Fire Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62020,0,0,0,0,0,0,0,0,44,0,4099,4241,637,947,16583,0,0,0,0,0,16588,16929,16929,16929,1,1,1,1,'Flame Claymore',NULL); -- 2021.11.01 BG has iron ingot instead of firesand
|
|
INSERT INTO `synth_recipes` VALUES (62021,0,0,0,0,0,0,1,0,44,0,4099,4241,850,1656,4112,4112,4112,4112,0,0,13684,13684,13684,13684,1,1,1,1,'Potion Tank','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62022,0,2037,0,0,4,0,0,0,44,0,4096,4238,671,1887,2154,2301,2310,0,0,0,2238,2238,2238,2238,12,12,12,12,'Strobe','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62023,0,0,0,14,0,0,0,0,45,0,4098,4240,649,937,4171,0,0,0,0,0,1243,1243,1243,1243,6,8,10,12,'Acid Bolt Heads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62024,0,0,0,0,0,0,0,0,45,0,4100,4242,8897,0,0,0,0,0,0,0,932,932,932,932,3,3,3,3,'Carbon Fiber','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (62025,0,0,0,0,0,0,0,0,45,0,4101,4243,937,4171,16451,0,0,0,0,0,17605,17606,17606,17606,1,1,1,1,'Acid Dagger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62026,0,0,0,0,0,0,0,0,45,0,4099,4241,637,1775,16709,0,0,0,0,0,18220,18220,18220,18220,1,1,1,1,'Prominence Axe','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62027,0,0,0,0,0,0,0,0,45,0,4100,4242,928,928,928,928,0,0,0,0,932,932,932,932,3,6,9,12,'Carbon Fiber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62028,0,0,0,0,0,0,0,0,45,0,4096,4238,651,947,0,0,0,0,0,0,17312,17312,17312,17312,33,99,99,99,'Iron Bullet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62029,0,0,0,0,12,0,0,0,46,0,4096,4238,650,933,17396,0,0,0,0,0,17404,17404,17404,17404,1,1,1,1,'Worm Lure',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62030,0,0,0,0,0,0,0,0,46,0,4099,4241,637,947,16536,0,0,0,0,0,16543,16621,16621,16621,1,1,1,1,'Fire Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62031,0,0,0,0,0,0,0,0,46,0,4100,4242,928,1630,0,0,0,0,0,0,932,932,932,932,3,6,9,12,'Carbon Fiber','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62032,0,2037,0,0,25,0,0,0,46,0,4096,4238,663,1886,2300,5138,13683,0,0,0,2254,2254,2254,2254,12,12,12,12,'Stabilizer','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62033,0,0,0,9,0,0,0,0,46,0,4096,4238,651,933,937,0,0,0,0,0,17404,17403,17402,17401,1,1,1,1,'Worm Lure',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62034,0,0,0,0,0,0,0,0,47,0,4101,4243,937,4171,16467,0,0,0,0,0,16501,17608,17608,17608,1,1,1,1,'Acid Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62035,0,0,0,0,12,0,0,0,47,0,4096,4238,650,933,4515,0,0,0,0,0,17403,17403,17403,17403,1,1,1,1,'Frog Lure',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62036,0,0,0,0,0,0,0,0,47,0,4099,4241,637,947,16517,0,0,0,0,0,16522,16823,16823,16823,1,1,1,1,'Flame Degen',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62037,0,0,0,0,0,0,0,0,47,0,4101,4243,5307,17605,0,0,0,0,0,0,18010,18010,18010,18010,1,1,1,1,'Melt Dagger','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62038,0,0,0,0,0,0,0,0,47,0,4099,4241,637,1775,16588,0,0,0,0,0,18379,18379,18379,18379,1,1,1,1,'Vulcan Claymore','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62039,0,0,0,0,0,0,0,0,47,0,4100,4242,2549,0,0,0,0,0,0,0,932,932,932,932,3,6,9,12,'Carbon Fiber','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (62040,0,0,0,0,21,0,0,0,48,0,4096,4238,744,933,4472,0,0,0,0,0,17402,17402,17402,17402,1,1,1,1,'Shrimp Lure',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62041,0,0,8,12,0,0,0,0,48,0,4098,4240,637,651,715,824,847,847,0,0,17322,17322,17322,17322,33,66,99,99,'Fire Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62042,0,0,0,30,0,0,0,0,48,0,4096,4238,652,947,0,0,0,0,0,0,18723,18723,18723,18723,33,99,99,99,'Steel Bullet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62043,0,2037,0,0,0,0,0,0,48,0,4096,4238,933,1886,1887,2216,13683,0,0,0,2263,2263,2263,2263,12,12,12,12,'Flashbulb','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62044,0,2037,0,0,0,0,0,22,48,0,4096,4238,953,1887,2113,2171,13683,0,0,0,2243,2243,2243,2243,12,12,12,12,'Loudspeaker','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62045,0,0,0,0,0,33,0,0,48,0,4101,4243,529,529,914,0,0,0,0,0,5352,5352,5352,5352,3,6,9,12,'Spectral Serum','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (62046,0,0,0,0,0,0,0,0,48,0,4101,4243,633,633,633,2310,2316,0,0,0,18733,18733,18733,19185,6,9,12,12,'Automaton Oil +2','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62047,0,0,0,0,0,0,0,0,49,0,4102,4244,490,0,0,0,0,0,0,0,17384,17384,17384,17384,1,1,1,1,'Carbon Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62048,0,0,0,0,0,0,0,0,49,0,4099,4241,637,947,16558,0,0,0,0,0,16564,16804,16804,16804,1,1,1,1,'Flame Blade',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62049,0,0,0,0,0,0,0,0,49,0,4099,4241,637,1775,16543,0,0,0,0,0,17704,17704,17704,17704,1,1,1,1,'Vulcan Sword','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62050,0,2037,0,0,6,0,0,0,49,0,4099,4241,914,927,1656,1656,2290,0,0,0,2267,2267,2267,2267,12,12,12,12,'Mana Converter','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62051,0,2037,0,0,3,0,0,0,49,0,4099,4241,914,924,1656,2290,18402,0,0,0,2242,2242,2242,2242,12,12,12,12,'Mana Booster','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62052,0,2037,0,0,4,0,0,0,49,0,4096,4238,752,2154,2301,2310,2460,0,0,0,9032,9032,9032,9032,12,12,12,12,'Strobe II','TOAU'); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (62053,0,0,0,0,0,0,0,0,49,0,4101,4243,5307,16501,0,0,0,0,0,0,18011,18011,18011,18011,1,1,1,1,'Melt Knife','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62054,0,0,0,0,0,0,0,0,50,0,4099,4241,913,2960,2960,0,0,0,0,0,2642,2642,2642,2642,33,66,66,99,'Kabenro','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (62055,0,0,0,0,0,0,0,0,50,0,4099,4241,637,1775,16522,0,0,0,0,0,17705,17705,17705,17705,1,1,1,1,'Vulcan Degen','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62056,0,0,0,0,0,0,0,0,50,0,4101,4243,622,922,922,923,4509,0,0,0,4128,4129,4130,4131,1,1,1,1,'Ether',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62057,0,2036,0,0,0,0,0,0,50,0,4096,4238,622,922,922,923,4509,0,0,0,5357,5357,5357,5357,1,2,3,4,'Ether Drop','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62058,0,0,0,0,0,0,0,0,50,0,4101,4243,8898,0,0,0,0,0,0,0,4128,4128,4128,4128,1,1,1,1,'Ether','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (62501,0,0,0,0,0,0,0,0,51,0,4102,4244,4509,0,0,0,0,0,0,0,4154,4154,4154,4154,1,2,3,4,'Holy Water',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62502,0,2035,0,0,0,0,0,0,51,0,4102,4244,2131,4509,4509,4509,0,0,0,0,4154,4154,4154,4154,3,6,9,12,'Holy Water','ABYSSEA'); -- 2012.06.13 Trituration
|
|
INSERT INTO `synth_recipes` VALUES (62503,0,2033,0,0,0,0,0,0,51,0,4102,4244,1641,1642,1647,4509,0,0,0,0,5306,5306,5306,5306,1,2,3,4,'Hallowed Water','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62504,0,0,0,0,0,0,0,0,51,0,4101,4243,937,4171,16412,0,0,0,0,0,16430,17487,17487,17487,1,1,1,1,'Acid Claws',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62505,0,0,0,0,0,0,0,0,52,0,4099,4241,8917,8917,0,0,0,0,0,0,8803,8803,8803,8803,33,66,66,99,'Ranka','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (62506,0,0,0,0,0,0,0,0,52,0,4102,4244,663,4154,0,0,0,0,0,0,667,667,667,667,1,1,1,1,'Blessed Mythril Sheet','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (62507,0,0,0,0,24,0,0,0,52,0,4096,4238,744,947,0,0,0,0,0,0,17341,17341,17341,17341,33,99,99,99,'Silver Bullet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62508,0,0,0,0,0,0,0,0,52,0,4096,4238,637,1775,16564,0,0,0,0,0,17706,17706,17706,17706,1,1,1,1,'Vulcan Blade','COP'); -- 2021.11.01
|
|
INSERT INTO `synth_recipes` VALUES (62509,0,0,0,14,0,0,0,0,53,0,4098,4240,649,4154,4154,0,0,0,0,0,1244,1244,1244,1244,6,8,10,12,'Holy Bolt Heads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62510,0,0,3,24,0,0,0,0,53,0,4099,4241,651,715,928,928,928,934,947,947,17313,17313,17313,17313,4,6,9,12,'Grenade',NULL); -- 2021.11.01 FFXIclopedia-WW 1, BG & JP WW 3. JP-AL 50
|
|
INSERT INTO `synth_recipes` VALUES (62511,0,0,3,24,0,0,0,0,53,0,4099,4241,651,715,928,928,928,947,947,1108,17313,17313,17313,17313,4,6,9,12,'Grenade',NULL); -- 2021.11.01 FFXIclopedia-WW 1, BG & JP WW 3.
|
|
INSERT INTO `synth_recipes` VALUES (62512,0,0,0,0,0,0,0,0,53,0,4096,4238,932,932,932,932,933,0,0,0,17384,17384,17384,17384,1,1,1,1,'Carbon Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62513,0,0,0,0,0,0,0,0,54,0,4101,4243,5307,16430,0,0,0,0,0,0,18357,18357,18357,18357,1,1,1,1,'Melt Claws','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62514,0,0,0,0,0,0,0,0,54,0,4102,4244,4154,16537,0,0,0,0,0,0,16581,16816,16816,16816,1,1,1,1,'Holy Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62515,0,0,0,0,0,0,0,0,54,0,4102,4244,947,1134,1241,1241,4164,0,0,0,4215,4215,4215,4215,33,66,99,99,'Popstar','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (62516,0,0,0,0,0,0,1,0,54,0,4099,4241,850,1656,4128,4128,4128,4128,0,0,13682,13682,13682,13682,1,1,1,1,'Ether Tank','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62517,0,0,3,24,0,0,0,0,54,0,4099,4241,651,715,947,947,1108,1630,0,0,17313,17313,17313,17313,4,6,9,12,'Grenade','COP'); -- 2021.11.01 FFXIclopedia-WW 1, BG & JP WW 3.
|
|
-- INSERT INTO `synth_recipes` VALUES (62518,0,2037,0,0,255,0,0,0,54,0,4096,4238,914,932,1647,1887,2310,0,0,0,9072,9072,9072,9072,12,12,12,12,'Arcanic Cell','ROV'); -- 2021.11.01 FFXIclopedia-AL 59, BG got info from JP, GS ???
|
|
INSERT INTO `synth_recipes` VALUES (62519,0,2037,0,0,0,0,0,0,55,0,4096,4238,939,1641,1887,2309,2310,0,0,0,2240,2240,2240,2240,12,12,12,12,'Inhibitor','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62520,0,0,0,0,0,0,0,0,55,0,4102,4244,4154,17036,0,0,0,0,0,0,17041,17411,17411,17411,1,1,1,1,'Holy Mace',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62521,0,0,0,0,0,0,0,0,55,0,4101,4243,937,4171,16919,0,0,0,0,0,16908,17768,17768,17768,1,1,1,1,'Yoto','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (62522,0,2037,0,0,0,0,0,0,55,0,4096,4238,939,1642,1887,2309,2310,0,0,0,2244,2244,2244,2244,12,12,12,12,'Scanner','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62523,0,2037,0,0,0,0,0,0,55,0,4096,4238,939,1643,1887,2309,2310,0,0,0,2248,2248,2248,2248,12,12,12,12,'Pattern Reader','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62524,0,2037,0,0,0,0,0,0,55,0,4096,4238,939,1644,1887,2309,2310,0,0,0,2252,2252,2252,2252,12,12,12,12,'Analyzer','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62525,0,2037,0,0,0,0,0,0,55,0,4096,4238,939,1645,1887,2309,2310,0,0,0,2256,2256,2256,2256,12,12,12,12,'Heat Seeker','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62526,0,2037,0,0,0,0,0,0,55,0,4096,4238,939,1647,1887,2309,2310,0,0,0,2264,2264,2264,2264,12,12,12,12,'Damage Gauge','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62527,0,2037,0,0,0,0,0,0,55,0,4096,4238,939,1648,1887,2309,2310,0,0,0,2268,2268,2268,2268,12,12,12,12,'Mana Conserver','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62528,0,2037,0,0,0,0,0,0,55,0,4096,4238,939,1646,1887,2309,2310,0,0,0,2260,2260,2260,2260,12,12,12,12,'Stealth Screen','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62529,0,0,0,0,0,0,0,0,55,0,4101,4243,8899,0,0,0,0,0,0,0,16908,16908,16908,16908,1,1,1,1,'Yoto','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (62530,0,0,0,0,0,0,0,0,56,0,4096,4238,954,954,954,954,0,0,0,0,931,931,931,931,1,2,3,4,'Cermet Chunk',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62531,0,0,0,0,0,0,0,0,56,0,4096,4238,936,1883,1888,1888,1888,1888,1888,1888,1887,1887,1887,1887,1,2,3,4,'Glass Sheet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62532,0,0,0,0,0,0,0,0,56,0,4101,4243,636,952,4374,0,0,0,0,0,4161,4161,4161,4161,1,2,3,4,'Sleeping Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62533,0,2035,0,0,0,0,0,0,56,0,4101,4243,636,636,952,952,2131,4374,4374,0,4161,4161,4161,4161,2,4,6,8,'Sleeping Potion','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62534,0,2037,0,0,23,0,0,0,56,0,4096,4238,663,1886,2362,5138,13683,0,0,0,2257,2257,2257,2257,12,12,12,12,'Stabilizer II','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62535,0,0,0,0,0,0,0,0,57,0,4102,4244,5306,16581,0,0,0,0,0,0,17682,17682,17682,17682,1,1,1,1,'Sacred Sword','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62536,0,0,0,33,0,0,0,0,57,0,4100,4242,648,652,0,0,0,0,0,0,1220,1220,1220,1220,6,8,10,12,'Lightning Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62537,0,0,0,0,0,0,0,0,57,0,4097,4239,648,931,0,0,0,0,0,0,1219,1219,1219,1219,6,8,10,12,'Ice Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62538,0,0,0,0,0,0,0,33,57,0,4101,4243,648,2146,0,0,0,0,0,0,2297,2297,2297,2297,6,8,10,12,'Water Arrowheads','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62539,0,0,0,0,0,0,0,35,57,0,4098,4240,648,2171,0,0,0,0,0,0,2298,2298,2298,2298,6,8,10,12,'Wind Arrowheads','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62540,0,0,0,0,0,0,0,44,57,0,4099,4241,648,2147,0,0,0,0,0,0,2299,2299,2299,2299,6,8,10,12,'Earth Arrowheads','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62541,0,2034,0,0,0,0,0,0,57,0,4102,4244,2230,2233,16581,0,0,0,0,0,16613,16613,16613,16613,1,1,1,1,'Spirit Sword','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62542,0,0,0,0,0,0,0,0,58,0,4102,4244,5306,17041,0,0,0,0,0,0,18391,18391,18391,18391,1,1,1,1,'Sacred Mace','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62543,0,0,0,0,0,0,0,0,58,0,4101,4243,5307,16908,0,0,0,0,0,0,18410,18410,18410,18410,1,1,1,1,'Melt Katana','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62544,0,0,0,29,0,0,0,0,58,0,4099,4241,651,651,928,928,928,934,947,947,17314,17314,17314,17314,4,6,9,12,'Quake Grenade',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62545,0,0,0,29,0,0,0,0,58,0,4099,4241,651,651,928,928,928,947,947,1108,17314,17314,17314,17314,4,6,9,12,'Quake Grenade',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62546,0,0,0,0,0,0,0,0,58,0,4102,4244,4154,16518,0,0,0,0,0,0,16523,16817,16817,16817,1,1,1,1,'Holy Degen',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62547,0,0,0,29,0,0,0,0,58,0,4099,4241,651,651,947,947,1108,1630,0,0,17314,17314,17314,17314,4,6,9,12,'Quake Grenade','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62548,0,0,0,0,0,0,0,0,58,0,4101,4243,633,633,633,633,2310,2316,0,0,19185,19185,19185,19185,6,9,12,12,'Automaton Oil +3','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (62549,0,0,0,0,0,0,0,0,59,0,4096,4238,931,12438,0,0,0,0,0,0,13897,13898,13898,13898,1,1,1,1,'Bastokan Visor','ROTZ'); -- 2022.03.03 mult. sources agree, but use fire crystals
|
|
INSERT INTO `synth_recipes` VALUES (62550,0,0,0,0,0,0,0,0,59,0,4096,4238,955,955,0,0,0,0,0,0,931,931,931,931,1,2,3,4,'Cermet Chunk',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62551,0,2037,0,0,0,0,0,0,59,0,4096,4238,953,953,1887,2113,2113,2171,13683,0,2245,2245,2245,2245,12,12,12,12,'Loudspeaker II','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62552,0,0,0,0,0,0,0,0,59,0,4099,4241,637,915,947,16982,0,0,0,0,16973,16986,16986,16986,1,1,1,1,'Homura','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (62553,0,0,7,0,48,0,0,0,59,0,4099,4241,714,746,931,1772,1772,0,0,0,18218,18219,18219,18219,1,1,1,1,'Leucous Voulge','COP'); -- 2021.11.01 BG has WW @ 9.
|
|
-- INSERT INTO `synth_recipes` VALUES (62554,0,2037,0,0,255,0,0,0,59,0,4096,4238,914,932,1647,2310,2460,0,0,0,9073,9073,9073,9073,12,12,12,12,'Arcanic Cell II','ROV'); -- 2021.11.01 All GS ??.
|
|
INSERT INTO `synth_recipes` VALUES (62555,0,2036,0,0,0,0,0,0,60,0,4096,4238,638,638,2513,4509,0,0,0,0,5328,5328,5328,5328,1,2,3,4,'Hi-Potion Drop','WOTG'); -- Rafflesia
|
|
INSERT INTO `synth_recipes` VALUES (62556,0,2037,0,0,0,0,0,0,60,0,4096,4238,939,1641,1887,2310,2460,0,0,0,9065,9065,9065,9065,12,12,12,12,'Inhibitor II','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (62557,0,2036,0,0,0,0,0,0,60,0,4096,4238,638,638,2361,4509,0,0,0,0,5328,5328,5328,5328,1,2,3,4,'Hi-Potion Drop','TOAU'); -- Ameretat
|
|
INSERT INTO `synth_recipes` VALUES (62558,0,0,0,0,0,0,0,0,60,0,4101,4243,638,638,2513,4509,0,0,0,0,4116,4117,4118,4119,1,1,1,1,'Hi-Potion','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (62559,0,2036,0,0,0,0,0,0,60,0,4096,4238,638,638,920,4509,0,0,0,0,5328,5328,5328,5328,1,2,3,4,'Hi-Potion Drop','COP');
|
|
INSERT INTO `synth_recipes` VALUES (62560,0,0,0,0,0,0,0,0,60,0,4096,4238,1165,1165,0,0,0,0,0,0,931,931,931,931,1,2,3,4,'Cermet Chunk',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62561,0,2037,0,0,0,0,0,0,60,0,4096,4238,939,1646,2309,2310,2460,0,0,0,9043,9043,9043,9043,12,12,12,12,'Stealth Screen II','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (62562,0,0,0,11,0,0,0,0,60,0,4099,4241,660,928,928,928,934,945,947,947,17315,17315,17315,17315,4,6,9,12,'Riot Grenade',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62563,0,0,0,0,0,0,0,0,60,0,4101,4243,638,638,920,4509,0,0,0,0,4116,4117,4118,4119,1,1,1,1,'Hi-Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (62564,0,0,0,0,0,0,0,0,60,0,4101,4243,638,638,2361,4509,0,0,0,0,4116,4117,4118,4119,1,1,1,1,'Hi-Potion','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (62565,0,0,0,0,0,0,0,0,60,0,4101,4243,8900,0,0,0,0,0,0,0,4116,4116,4116,4116,1,1,1,1,'Hi-Potion','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (63001,0,0,0,0,0,0,0,0,61,0,4096,4238,931,12694,0,0,0,0,0,0,14039,14040,14040,14040,1,1,1,1,'Bastokan Finger Gauntlets','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (63002,0,0,0,0,0,0,0,0,61,0,4096,4238,768,768,768,768,768,768,768,768,933,933,933,933,1,2,3,4,'Glass Fiber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63003,0,0,0,0,0,0,0,0,61,0,4102,4244,5306,16523,0,0,0,0,0,0,17683,17683,17683,17683,1,1,1,1,'Sacred Degen','COP');
|
|
-- INSERT INTO `synth_recipes` VALUES (63004,0,2037,0,0,255,0,0,0,61,0,4096,4238,752,1886,2362,5138,13683,0,0,0,9040,9040,9040,9040,12,12,12,12,'Stabilizer III','SOA'); -- Unknown GS sub
|
|
INSERT INTO `synth_recipes` VALUES (63005,0,0,0,0,0,0,0,0,61,0,4096,4238,931,0,0,0,0,0,0,0,216,216,216,216,1,1,1,1,'Porcelain Flowerpot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63006,0,0,0,0,0,0,0,0,61,0,4100,4242,897,897,0,0,0,0,0,0,944,944,944,944,1,2,3,4,'Venom Dust',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63007,0,0,0,0,0,0,0,0,62,0,4096,4238,716,931,0,0,0,0,0,0,16469,17609,17609,17609,1,1,1,1,'Cermet Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63008,0,0,0,0,0,0,0,0,62,0,4101,4243,937,4171,16456,0,0,0,0,0,16459,17607,17607,17607,1,1,1,1,'Acid Baselard',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63009,0,0,0,0,0,0,0,0,62,0,4099,4241,637,915,1775,16973,0,0,0,0,17828,17828,17828,17828,1,1,1,1,'Koen','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63010,0,0,0,0,0,0,0,0,62,0,4096,4238,582,0,0,0,0,0,0,0,933,933,933,933,3,6,9,12,'Glass Fiber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63011,0,0,0,0,0,0,0,0,62,0,4100,4242,5136,0,0,0,0,0,0,0,944,944,944,944,1,2,3,4,'Venom Dust','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63012,0,0,0,0,0,0,0,0,62,0,4100,4242,4481,4481,0,0,0,0,0,0,944,944,944,944,1,2,3,4,'Venom Dust',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63013,0,0,0,0,0,0,0,0,62,0,4100,4242,4462,0,0,0,0,0,0,0,944,944,944,944,2,4,6,8,'Venom Dust',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63014,0,2037,0,0,0,0,0,0,62,0,4096,4238,939,1642,1887,2310,2460,0,0,0,9066,9066,9066,9066,12,12,12,12,'Amplifier','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (63015,0,0,0,11,0,0,0,0,63,0,4099,4241,660,928,928,928,945,947,947,1108,17315,17315,17315,17315,4,6,9,12,'Riot Grenade',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63016,0,0,0,0,0,0,0,16,63,0,4096,4238,894,931,0,0,0,0,0,0,16414,17488,17488,17488,1,1,1,1,'Cermet Claws',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63017,0,0,0,0,0,0,0,0,63,0,4100,4242,1108,2175,2175,0,0,0,0,0,2300,2300,2300,2300,2,2,2,2,'Ebonite','TOAU');
|
|
-- INSERT INTO `synth_recipes` VALUES (63018,0,2037,0,0,0,0,0,255,63,0,4096,4238,953,953,2113,2113,2171,2460,13683,0,9034,9034,9034,9034,12,12,12,12,'Loudspeaker III','SOA'); -- Unknown BS sub
|
|
INSERT INTO `synth_recipes` VALUES (63019,0,0,0,0,0,0,0,43,64,0,4098,4240,880,895,937,4161,0,0,0,0,1253,1253,1253,1253,6,8,10,12,'Sleep Arrowheads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63020,0,0,0,0,0,0,0,0,64,0,4102,4244,4154,4154,16545,0,0,0,0,0,16549,16826,16826,16826,1,1,1,1,'Divine Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63021,0,0,0,11,0,0,0,0,64,0,4099,4241,660,945,947,947,1108,1630,0,0,17315,17315,17315,17315,4,6,9,12,'Riot Grenade','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63022,0,2037,0,0,0,0,37,0,64,0,4096,4238,637,818,913,1122,1772,17305,0,0,2409,2409,2409,2409,12,12,12,12,'Flame Holder','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63023,0,2037,0,0,0,25,0,0,64,0,4096,4238,663,1772,2175,2315,17306,18230,0,0,2410,2410,2410,2410,12,12,12,12,'Ice Maker','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63024,0,0,0,0,0,0,0,0,64,0,4100,4242,3930,3930,0,0,0,0,0,0,3931,3931,3931,3931,1,2,3,4,'Twitherym Scale','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (63025,0,0,0,0,0,0,0,0,65,0,4101,4243,5307,16459,0,0,0,0,0,0,18012,18012,18012,18012,1,1,1,1,'Melt Baselard','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63026,0,0,8,0,0,0,0,0,65,0,4100,4242,652,705,846,846,0,0,0,0,17324,17324,17324,17324,33,66,99,99,'Lightning Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63027,0,0,0,0,0,0,0,0,65,0,4096,4238,931,12822,0,0,0,0,0,0,14267,14268,14268,14268,1,1,1,1,'Bastokan Cuisses','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (63028,0,0,0,0,0,0,0,0,65,0,4096,4238,1307,4149,0,0,0,0,0,0,1233,1233,1233,1233,9,12,12,12,'Silver Nugget','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (63029,0,0,28,0,0,0,0,0,65,0,4099,4241,928,947,1134,1230,0,0,0,0,4183,4183,4183,4183,33,66,99,99,'Konron Hassen',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63030,0,0,8,0,0,0,0,0,65,0,4097,4239,708,846,846,931,0,0,0,0,17323,17323,17323,17323,33,66,99,99,'Ice Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63031,0,2037,0,0,0,0,0,0,65,0,4096,4238,752,1886,2309,2310,2460,0,0,0,9035,9035,9035,9035,12,12,12,12,'Tranquilizer II','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (63032,0,0,0,0,0,0,0,0,65,0,4101,4243,2364,4509,4545,0,0,0,0,0,2197,2197,2197,2197,3,6,9,12,'Chocotonic','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63033,0,0,0,0,0,0,0,0,65,0,4101,4243,8901,0,0,0,0,0,0,0,18012,18012,18012,18012,1,1,1,1,'Melt Baselard','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (63034,0,0,8,0,0,0,0,0,65,0,4100,4242,652,708,846,846,0,0,0,0,17324,17324,17324,17324,33,66,99,99,'Lightning Arrow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63035,0,0,0,0,0,0,0,0,65,0,4102,4244,5306,16549,0,0,0,0,0,0,16550,16550,16550,16550,1,1,1,1,'Hallowed Sword','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63036,0,0,0,0,0,0,0,0,65,0,4102,4244,472,0,0,0,0,0,0,0,17382,17382,17382,17382,1,1,1,1,'Single Hook Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63037,0,0,0,0,0,0,0,0,66,0,4096,4238,931,12950,0,0,0,0,0,0,14147,14148,14148,14148,1,1,1,1,'Bastokan Greaves','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (63038,0,0,0,0,0,0,0,0,66,0,4096,4238,622,2159,4509,5562,0,0,0,0,5356,5356,5356,5356,3,6,9,12,'Remedy Ointment','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63039,0,0,0,6,0,0,0,0,66,0,4096,4238,648,659,931,936,4108,4509,0,0,18228,18228,18228,18228,99,99,99,99,'Battery',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63040,0,0,0,0,39,0,0,0,66,0,4096,4238,745,931,931,0,0,0,0,0,16554,17642,17642,17642,1,1,1,1,'Hanger',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63041,0,0,0,0,0,0,0,0,67,0,4101,4243,937,4171,16475,0,0,0,0,0,16479,16494,16494,16494,1,1,1,1,'Acid Kukri',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63042,0,0,0,14,0,0,0,0,67,0,4098,4240,649,937,4161,0,0,0,0,0,1247,1247,1247,1247,6,8,10,12,'Sleep Bolt Heads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63043,0,0,0,0,0,0,0,0,67,0,4096,4238,931,12566,0,0,0,0,0,0,14346,14347,14347,14347,1,1,1,1,'Bastokan Scale Mail','ROTZ'); -- 2022.03.03 mult. sources agree, but use fire crystals
|
|
INSERT INTO `synth_recipes` VALUES (63044,0,2037,0,0,0,0,0,0,67,0,4096,4238,939,1642,2310,2460,2460,0,0,0,9135,9135,9135,9135,12,12,12,12,'Amplifier II','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (63045,0,2037,0,0,255,0,0,0,67,0,4096,4238,754,1886,2362,5138,13683,0,0,0,9140,9140,9140,9140,12,12,12,12,'Stabilizer IV','ROV'); -- FFXIclopedia and BG have level at 67, JP has 66. Unknown GS sub.
|
|
INSERT INTO `synth_recipes` VALUES (63046,0,0,0,0,0,0,0,0,68,0,4101,4243,914,944,0,0,0,0,0,0,4158,4158,4158,4158,1,1,1,1,'Venom Potion',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (63047,0,2037,0,0,0,0,0,255,68,0,4096,4238,953,953,2113,2171,2460,2460,13683,0,9133,9133,9133,9133,12,12,12,12,'Loudspeaker IV','ROV'); -- Unknown BC sub.
|
|
INSERT INTO `synth_recipes` VALUES (63048,0,2035,0,0,0,0,0,0,68,0,4101,4243,914,914,914,944,944,944,2131,0,4158,4158,4158,4158,3,3,3,3,'Venom Potion','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63049,0,0,0,0,0,0,0,0,68,0,4101,4243,638,638,939,1617,5165,0,0,0,5254,5254,5254,5254,1,1,1,1,'Hyper Potion','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63050,0,2037,0,0,0,0,0,0,68,0,4096,4238,932,1772,2290,2310,2362,0,0,0,9041,9041,9041,9041,12,12,12,12,'Coiler II','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (63051,0,0,0,0,0,0,0,0,68,0,4096,4238,855,931,931,0,0,0,0,0,16539,16825,16825,16825,1,1,1,1,'Cermet Sword',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63052,0,0,0,0,0,0,0,0,69,0,4101,4243,622,622,922,922,922,922,923,4509,4132,4133,4134,4135,1,1,1,1,'Hi-Ether',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63053,0,0,0,0,0,0,0,0,69,0,4101,4243,622,636,638,918,919,951,4370,4509,4155,4155,4155,4155,2,4,6,8,'Remedy',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63054,0,0,0,0,0,0,0,0,69,0,4096,4238,932,932,932,932,932,933,933,0,17382,17382,17382,17382,1,1,1,1,'Single Hook Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63055,0,2036,0,0,0,0,0,0,69,0,4096,4238,622,622,923,2335,4509,0,0,0,5358,5358,5358,5358,1,2,3,4,'Hi-Ether Drop','TOAU'); -- Soulflayer version
|
|
INSERT INTO `synth_recipes` VALUES (63056,0,2036,0,0,0,0,0,0,69,0,4096,4238,622,622,922,922,922,922,923,4509,5358,5358,5358,5358,1,2,3,4,'Hi-Ether Drop','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63057,0,0,0,0,0,0,0,0,69,0,4101,4243,622,622,923,2335,4509,0,0,0,4132,4133,4134,4135,1,1,1,1,'Hi-Ether','TOAU'); -- Soulflayer version
|
|
INSERT INTO `synth_recipes` VALUES (63058,0,0,0,0,0,0,0,0,69,0,4101,4243,5307,16479,0,0,0,0,0,0,18013,18013,18013,18013,1,1,1,1,'Melt Kukri','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63059,0,0,0,0,0,0,0,0,70,0,4096,4238,855,931,931,931,0,0,0,0,16568,16612,16612,16612,1,1,1,1,'Saber',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63060,0,2037,0,0,0,0,0,0,70,0,4096,4238,754,1886,2309,2310,2460,0,0,0,9134,9134,9134,9134,12,12,12,12,'Tranquilizer III','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (63061,0,0,0,0,0,0,0,0,70,0,4101,4243,937,4158,16468,0,0,0,0,0,16502,16762,16762,16762,1,1,1,1,'Venom Knife',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63062,0,2037,0,0,0,0,0,0,70,0,4096,4238,933,1886,1887,2309,2362,0,0,0,9067,9067,9067,9067,12,12,12,12,'Repeater','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (63063,0,0,0,0,0,0,10,0,70,0,4097,4239,850,933,936,4154,4509,0,0,0,4216,4216,4216,4216,33,66,99,99,'Brilliant Snow',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63064,0,0,0,0,0,0,0,0,70,0,4096,4238,8902,0,0,0,0,0,0,0,16568,16568,16568,16568,1,1,1,1,'Saber','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (63501,0,0,0,13,0,0,0,0,71,0,4096,4238,648,649,947,1241,0,0,0,0,18160,18160,18160,18160,33,99,99,99,'Spartan Bullet',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63502,0,0,0,0,0,0,0,0,71,0,4102,4244,4154,17045,0,0,0,0,0,0,17080,17114,17114,17114,1,1,1,1,'Holy Maul',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63503,0,2035,0,0,0,0,0,0,71,0,4102,4244,933,933,933,933,2131,2338,2338,0,5362,5362,5362,5362,12,12,12,12,'Rainbow Powder','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63504,0,0,0,0,0,0,0,0,71,0,4096,4238,931,931,1888,0,0,0,0,0,2290,2290,2290,2290,1,2,3,4,'Imperial Cermet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63505,0,0,0,0,0,0,0,0,71,0,4102,4244,933,933,2338,0,0,0,0,0,5362,5362,5362,5362,6,8,10,12,'Rainbow Powder','TOAU');
|
|
-- INSERT INTO `synth_recipes` VALUES (63506,0,2037,0,0,255,0,0,0,71,0,4096,4238,668,1886,2362,5138,13683,0,0,0,9883,9883,9883,9883,12,12,12,12,'Stabilizer V','ROV'); -- BG shows this has an unknown GS sub. Others have no recipe.
|
|
INSERT INTO `synth_recipes` VALUES (63507,0,0,0,0,0,0,0,0,72,0,4102,4244,1833,0,0,0,0,0,0,0,17015,17015,17015,17015,1,1,1,1,'Halcyon Rod','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63508,0,0,0,0,0,0,0,0,72,0,4101,4243,937,4158,16413,0,0,0,0,0,16418,16425,16425,16425,1,1,1,1,'Venom Claws',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63509,0,0,0,0,0,0,0,0,72,0,4100,4242,4448,4448,0,0,0,0,0,0,945,945,945,945,1,2,3,4,'Paralysis Dust',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63510,0,0,0,0,0,0,0,0,72,0,4100,4242,4478,0,0,0,0,0,0,0,945,945,945,945,2,4,6,8,'Paralysis Dust',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63511,0,2037,0,0,42,0,0,0,72,0,4096,4238,663,1886,2316,2316,18236,0,0,0,2411,2411,2411,2411,12,12,12,12,'Replicator','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63512,0,0,0,19,0,0,0,0,72,0,4096,4238,947,1635,0,0,0,0,0,0,19228,19228,19228,19228,33,99,99,99,'Paktong Bullet','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (63513,0,0,0,14,0,0,0,0,72,0,4098,4240,649,940,2163,0,0,0,0,0,2650,2650,2650,2650,6,8,10,12,'Darkling Bolt Heads','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (63514,0,0,0,0,0,0,0,0,73,0,4100,4242,1108,2175,2175,2175,0,0,0,0,2362,2362,2362,2362,2,4,6,8,'High Ebonite','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63515,0,0,0,45,0,0,0,0,73,0,4096,4238,654,931,931,931,0,0,0,0,16560,17639,17639,17639,1,1,1,1,'Cutlass',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63516,0,0,0,0,0,0,0,0,73,0,4103,4245,2013,2361,17724,0,0,0,0,0,17729,17730,17730,17730,1,1,1,1,'Vermin Slayer','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63517,0,0,26,0,0,41,0,0,73,0,4099,4241,829,928,947,947,1134,1239,0,0,4186,4186,4186,4186,33,66,99,99,'Airborne',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63518,0,0,0,0,0,0,0,0,73,0,4103,4245,2014,2361,17724,0,0,0,0,0,17731,17732,17732,17732,1,1,1,1,'Aquan Slayer','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63519,0,2033,0,0,0,0,0,0,73,0,4102,4244,924,1133,1626,2013,2014,2229,2365,13447,28568,28568,28568,28568,1,1,1,1,'Resolution Ring','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (63520,0,2037,0,0,255,0,0,0,73,0,4096,4238,668,1886,2309,2310,2362,0,0,0,9141,9141,9141,9141,12,12,12,12,'Dynamo III','ROV'); -- BG and JP wiki shows an unknown GS sub
|
|
-- INSERT INTO `synth_recipes` VALUES (63521,0,2037,0,0,0,0,0,255,73,0,4096,4238,953,953,2113,2171,2460,2460,2460,13683,9881,9881,9881,9881,12,12,12,12,'Loudspeaker V','ROV'); -- BG shows this has an unknown BC sub. Others have no recipe.
|
|
INSERT INTO `synth_recipes` VALUES (63522,0,0,0,0,0,0,0,0,73,0,4101,4243,937,4158,16457,0,0,0,0,0,16507,16510,16510,16510,1,1,1,1,'Venom Baselard',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63523,0,0,0,0,0,0,0,0,73,0,4096,4238,1308,4149,0,0,0,0,0,0,1226,1226,1226,1226,9,12,12,12,'Mythril Nugget','ROTZ');
|
|
-- INSERT INTO `synth_recipes` VALUES (63524,0,2037,0,0,255,0,0,0,73,0,4096,4238,754,1886,2309,2310,2362,0,0,0,9069,9069,9069,9069,12,12,12,12,'Dynamo II','ROV'); -- BG and JP wiki show an unknown GS sub.
|
|
INSERT INTO `synth_recipes` VALUES (63525,0,2037,0,0,0,0,0,0,74,0,4096,4238,668,1886,2309,2310,2460,0,0,0,9882,9882,9882,9882,12,12,12,12,'Tranquilizer IV','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (63526,0,0,0,0,0,0,0,0,74,0,4102,4244,5306,17080,0,0,0,0,0,0,18392,18392,18392,18392,1,1,1,1,'Sacred Maul','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63527,0,2034,0,0,0,0,0,0,74,0,4102,4244,2230,2233,17080,0,0,0,0,0,18853,18853,18853,18853,1,1,1,1,'Spirit Maul','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63528,0,0,0,0,0,0,0,0,74,0,4101,4243,937,4158,16476,0,0,0,0,0,16505,17604,17604,17604,1,1,1,1,'Venom Kukri',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63529,0,2032,0,0,0,0,0,0,75,0,4099,4241,914,936,1108,1609,1609,1609,1609,0,1644,1644,1644,1644,10,20,30,40,'Earth Anima','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63530,0,2032,0,0,0,0,0,0,75,0,4098,4240,914,936,1108,1608,1608,1608,1608,0,1643,1643,1643,1643,10,20,30,40,'Wind Anima','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63531,0,2032,0,0,0,0,0,0,75,0,4100,4242,914,936,1108,1610,1610,1610,1610,0,1645,1645,1645,1645,10,20,30,40,'Lightning Anima','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63532,0,2032,0,0,0,0,0,0,75,0,4097,4239,914,936,1108,1607,1607,1607,1607,0,1642,1642,1642,1642,10,20,30,40,'Ice Anima','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63533,0,2032,0,0,0,0,0,0,75,0,4096,4238,914,936,1108,1606,1606,1606,1606,0,1641,1641,1641,1641,10,20,30,40,'Fire Anima','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63534,0,2032,0,0,0,0,0,0,75,0,4101,4243,914,936,1108,1611,1611,1611,1611,0,1646,1646,1646,1646,10,20,30,40,'Water Anima','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63535,0,0,0,0,0,0,0,0,75,0,4101,4243,9514,0,0,0,0,0,0,0,16505,16505,16505,16505,1,1,1,1,'Venom Kukri','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (63536,0,0,0,0,0,0,0,0,75,0,4096,4238,719,931,1122,0,0,0,0,0,16477,17603,17603,17603,1,1,1,1,'Cermet Kukri',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63537,0,2032,0,0,0,0,0,0,75,0,4103,4245,914,936,1108,1613,1613,1613,1613,0,1648,1648,1648,1648,10,20,30,40,'Dark Anima','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63538,0,0,0,0,31,0,0,0,75,0,4096,4238,947,2536,0,0,0,0,0,0,19201,19201,19201,19201,33,99,99,99,'Electrum Bullet','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (63539,0,2032,0,0,0,0,0,0,75,0,4102,4244,914,936,1108,1612,1612,1612,1612,0,1647,1647,1647,1647,10,20,30,40,'Light Anima','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63540,0,0,0,14,0,0,0,0,76,0,4098,4240,649,937,4158,0,0,0,0,0,1245,1245,1245,1245,6,8,10,12,'Venom Bolt Heads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63541,0,0,0,0,0,0,0,0,76,0,4096,4238,931,932,932,932,932,933,933,0,17015,17015,17015,17015,1,1,1,1,'Halcyon Rod','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63542,0,0,0,0,18,0,0,0,76,0,4101,4243,659,744,931,936,4108,4509,0,0,18229,18229,18229,18229,99,99,99,99,'Kilo Battery',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63543,0,2037,0,0,0,0,0,0,76,0,4096,4238,1656,1844,2229,2290,3935,0,0,0,9074,9074,9074,9074,12,12,12,12,'Regulator','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (63544,0,0,0,0,0,0,0,0,77,0,4101,4243,638,638,939,4449,4509,0,0,0,4120,4121,4122,4123,1,1,1,1,'X-Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63545,0,0,0,0,0,0,0,0,77,0,4101,4243,1888,1890,1892,4154,0,0,0,0,1895,1895,1895,1895,1,1,1,1,'Freshwater Set','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63546,0,0,0,0,0,0,0,0,77,0,4098,4240,648,937,2290,4159,0,0,0,0,2294,2294,2294,2294,6,8,10,12,'Paralysis Arrowheads','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (63547,0,0,0,0,23,0,0,0,77,0,4096,4238,784,817,817,2475,2475,0,0,0,355,355,355,355,1,1,1,1,'Bread Crock','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (63548,0,0,0,29,0,0,0,0,78,0,4096,4238,506,662,931,931,0,0,0,0,16401,17482,17482,17482,1,1,1,1,'Jamadhars','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (63549,0,0,0,0,0,0,0,0,78,0,4101,4243,914,945,0,0,0,0,0,0,4159,4159,4159,4159,1,1,1,1,'Paralyze Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63550,0,2035,0,0,0,0,0,0,78,0,4101,4243,914,914,914,945,945,945,2131,0,4159,4159,4159,4159,3,3,3,3,'Paralyze Potion','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63551,0,0,45,0,0,0,0,0,78,0,4096,4238,706,947,947,1134,1239,1241,0,0,4218,4218,4218,4218,33,66,99,99,'Air Rider',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63552,0,0,0,0,0,0,0,0,79,0,4101,4243,937,4158,16400,0,0,0,0,0,16404,17483,17483,17483,1,1,1,1,'Venom Katars',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63553,0,0,0,0,0,0,0,0,79,0,4101,4243,622,622,953,1621,1621,5165,0,0,5255,5255,5255,5255,1,1,1,1,'Hyper Ether','COP');
|
|
INSERT INTO `synth_recipes` VALUES (63554,0,0,0,0,19,47,0,0,79,0,4096,4238,633,650,744,829,1887,1997,2712,0,429,429,429,429,1,1,1,1,'Red Storm Lantern','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (63555,0,0,0,0,0,0,0,0,79,0,4102,4244,1269,4154,4154,12378,0,0,0,0,12379,12380,12380,12380,1,1,1,1,'Holy Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (63556,0,0,0,0,19,47,0,0,79,0,4096,4238,633,650,744,829,1887,1997,2706,0,430,430,430,430,1,1,1,1,'Blue Storm Lantern','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (63557,0,0,0,0,19,47,0,0,79,0,4096,4238,633,650,744,829,1887,1997,2708,0,432,432,432,432,1,1,1,1,'Yellow Storm Lantern','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (63558,0,0,0,0,19,47,0,0,79,0,4096,4238,633,650,744,829,1887,1997,2709,0,433,433,433,433,1,1,1,1,'White Storm Lantern','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (63559,0,0,0,0,19,47,0,0,79,0,4096,4238,633,650,744,829,1887,1997,2707,0,431,431,431,431,1,1,1,1,'Green Storm Lantern','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (63560,0,0,0,0,41,0,0,0,80,0,4101,4243,1588,1774,2154,2235,4136,17868,0,0,362,362,362,362,1,1,1,1,'Fluoro-flora','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (63561,0,0,0,0,0,0,0,0,80,0,4101,4243,937,4158,16919,0,0,0,0,0,16909,17769,17769,17769,1,1,1,1,'Kororito','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (63562,0,0,0,0,0,0,0,0,80,0,4101,4243,937,4159,16469,0,0,0,0,0,16503,17600,17600,17600,1,1,1,1,'Stun Knife','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (63563,0,0,0,0,0,0,0,0,80,0,4101,4243,9515,0,0,0,0,0,0,0,16503,16503,16503,16503,1,1,1,1,'Stun Knife','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64001,0,0,0,14,0,0,0,0,81,0,4098,4240,649,930,940,0,0,0,0,0,1246,1246,1246,1246,6,8,10,12,'Bloody Bolt Heads',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64002,0,0,0,0,0,0,0,0,81,0,4102,4244,4154,17056,0,0,0,0,0,0,17085,17434,17434,17434,1,1,1,1,'Holy Wand',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64003,0,0,0,0,0,0,0,0,81,0,4098,4240,924,930,1133,16755,0,0,0,0,17630,17631,17631,17631,1,1,1,1,'Hawker\'s Knife','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64004,0,0,33,0,0,0,0,0,81,0,4096,4238,693,704,1888,2549,2563,2563,2563,2563,361,361,361,361,1,1,1,1,'Gallipot','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (64005,0,0,0,0,0,0,0,0,82,0,4101,4243,937,4159,16414,0,0,0,0,0,16431,17486,17486,17486,1,1,1,1,'Stun Claws','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64006,0,0,0,0,0,0,0,0,82,0,4101,4243,1889,1891,1893,4154,0,0,0,0,1896,1896,1896,1896,1,1,1,1,'Saltwater Set','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64007,0,0,0,0,0,0,0,0,82,0,4102,4244,918,940,1309,4508,4509,0,0,0,2206,2345,2345,2345,1,1,1,1,'Chocolixir','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64008,0,0,0,0,0,0,0,0,82,0,4100,4242,2373,0,0,0,0,0,0,0,2374,2374,2374,2374,1,1,1,1,'Viper Dust','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64009,0,0,0,0,0,0,0,0,83,0,4102,4244,4154,4154,16847,0,0,0,0,0,16860,16880,16880,16880,1,1,1,1,'Holy Lance',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64010,0,0,0,0,0,0,0,0,83,0,4098,4240,2460,0,0,0,0,0,0,0,16132,16133,16133,16133,1,1,1,1,'Dandy Spectacles','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64011,0,0,0,0,0,0,0,0,83,0,4100,4242,2175,2229,0,0,0,0,0,0,2301,2301,2301,2301,2,4,4,4,'Polyflan','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64012,0,2037,0,0,0,0,0,0,83,0,4096,4238,663,1299,2309,2310,2362,0,0,0,9885,9885,9885,9885,12,12,12,12,'Magniplug','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64013,0,2037,0,0,0,0,0,0,83,0,4096,4238,663,1300,2309,2310,2362,0,0,0,9887,9887,9887,9887,12,12,12,12,'Arcanoclutch','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64014,0,0,0,0,0,0,0,0,83,0,4103,4245,930,940,16559,0,0,0,0,0,16556,16827,16827,16827,1,1,1,1,'Bloody Blade','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64015,0,0,0,0,0,0,0,0,84,0,4102,4244,5306,17085,0,0,0,0,0,0,18393,18393,18393,18393,1,1,1,1,'Sacred Wand','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64016,0,0,0,0,0,0,0,0,84,0,4100,4242,4486,0,0,0,0,0,0,0,1133,1133,1133,1133,4,6,6,6,'Dragon Blood','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64017,0,0,23,0,0,0,0,0,84,0,4099,4241,947,957,1134,1134,0,0,0,0,4256,4256,4256,4256,33,66,99,99,'Ouka Ranman',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64018,0,0,45,0,47,0,0,0,84,0,4096,4238,653,653,790,803,2152,2533,0,0,17746,17747,17747,17747,1,1,1,1,'Cermet Kilij','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (64019,0,0,0,0,0,0,0,0,84,0,4102,4244,924,1288,1289,1290,1291,1292,0,0,1298,1298,1298,1298,1,1,1,1,'Hakutaku Eye Cluster','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64020,0,0,0,0,0,0,0,0,85,0,4103,4245,930,940,16519,0,0,0,0,0,16528,16824,16824,16824,1,1,1,1,'Bloody Rapier','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64021,0,0,0,0,0,0,0,0,85,0,4102,4244,473,0,0,0,0,0,0,0,17381,17381,17381,17381,1,1,1,1,'Composite Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64022,0,2032,0,0,0,0,0,0,85,0,4096,4238,1641,1642,1643,1644,1645,1646,1647,1648,1717,1717,1717,1717,1,1,1,1,'Photoanima','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64023,0,0,0,0,38,0,0,0,85,0,4096,4238,745,947,0,0,0,0,0,0,17278,17278,17278,17278,33,99,99,99,'Gold Bullet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64024,0,0,0,0,0,0,0,0,85,0,4103,4245,9516,0,0,0,0,0,0,0,16528,16528,16528,16528,1,1,1,1,'Bloody Rapier','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64025,0,0,0,0,0,0,0,0,86,0,4102,4244,5306,16860,0,0,0,0,0,0,16858,16858,16858,16858,1,1,1,1,'Sacred Lance','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64026,0,0,0,31,16,0,0,0,86,0,4101,4243,651,744,931,936,4108,4509,0,0,18230,18230,18230,18230,99,99,99,99,'Mega Battery',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64027,0,0,0,0,0,0,0,0,86,0,4101,4243,937,4159,16477,0,0,0,0,0,16506,17614,17614,17614,1,1,1,1,'Stun Kukri','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64028,0,0,0,0,0,0,0,0,86,0,4103,4245,914,923,930,942,0,0,0,0,17882,17882,17882,17882,9,12,12,12,'Alchemist\'s Water','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64029,0,0,0,0,0,0,0,0,86,0,4096,4238,936,1883,1888,1888,1888,1888,2459,2459,2460,2460,2460,2460,1,2,3,4,'Flint Glass Sheet','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64030,0,0,0,0,0,0,0,0,87,0,4102,4244,851,4154,0,0,0,0,0,0,1992,1992,1992,1992,1,1,1,1,'Holy Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64031,0,0,57,0,0,0,0,0,87,0,4103,4245,914,923,924,1264,1265,0,0,0,14065,14066,14066,14066,1,1,1,1,'Garden Bangles',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64032,0,0,0,0,0,0,0,0,87,0,4101,4243,937,4158,16759,0,0,0,0,0,16499,16761,16761,16761,1,1,1,1,'Venom Kris','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64033,0,0,0,0,0,0,0,0,88,0,4102,4244,918,940,2163,2229,4509,0,0,0,5355,5355,5355,5355,1,1,1,1,'Elixir Vitae','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64034,0,0,0,0,0,0,0,0,88,0,4096,4238,1309,4149,0,0,0,0,0,0,1225,1225,1225,1225,9,12,12,12,'Gold Nugget','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64035,0,2035,0,0,0,0,0,0,88,0,4101,4243,914,914,914,2131,2374,2374,2374,0,5430,5430,5430,5430,3,3,3,3,'Viper Potion','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64036,0,0,0,0,0,0,0,0,88,0,4101,4243,914,2374,0,0,0,0,0,0,5430,5430,5430,5430,1,1,1,1,'Viper Potion','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64037,0,2037,0,0,0,0,0,0,88,0,4096,4238,754,1299,2309,2310,2362,0,0,0,9886,9886,9886,9886,12,12,12,12,'Magniplug II','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64038,0,2037,0,0,0,0,0,0,88,0,4096,4238,754,1300,2309,2310,2362,0,0,0,9888,9888,9888,9888,12,12,12,12,'Arcanoclutch II','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64039,0,2037,0,0,0,0,0,0,88,0,4096,4238,754,1301,2309,2310,2362,0,0,0,9889,9889,9889,9889,12,12,12,12,'Truesights','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64040,0,0,0,0,0,0,0,0,88,0,4103,4245,930,940,16577,0,0,0,0,0,16609,17646,17646,17646,1,1,1,1,'Bloody Sword','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64041,0,0,0,0,0,0,0,0,89,0,4096,4238,651,917,1887,2131,2150,2418,2419,2460,149,149,149,149,1,1,1,1,'Alchemist\'s Tools','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64042,0,0,0,0,0,0,0,0,89,0,4096,4238,931,931,932,932,932,933,933,0,17381,17381,17381,17381,1,1,1,1,'Composite Fishing Rod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64043,0,0,0,0,0,0,0,0,89,0,4101,4243,622,622,622,935,953,4509,0,0,4136,4137,4138,4139,1,1,1,1,'Super Ether',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64044,0,0,0,0,0,0,0,0,89,0,4101,4243,937,4159,16401,0,0,0,0,0,16432,17484,17484,17484,1,1,1,1,'Stun Jamadhars','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64045,0,0,0,0,0,0,0,0,90,0,4096,4238,506,931,931,931,0,0,0,0,16578,17645,17645,17645,1,1,1,1,'Espadon','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64046,0,0,0,0,0,0,0,0,90,0,4103,4245,930,930,940,16848,0,0,0,0,16846,16881,16881,16881,1,1,1,1,'Bloody Lance','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64047,0,0,0,0,0,0,0,0,90,0,4102,4244,918,940,1133,4508,4509,0,0,0,4145,4144,4144,4144,1,1,1,1,'Elixir',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64048,0,0,0,0,0,0,0,0,90,0,4101,4243,937,3923,3935,3936,16919,0,0,0,21009,21010,21010,21010,1,1,1,1,'Nakajimarai','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (64049,0,0,0,0,0,0,0,0,90,0,4101,4243,937,5430,18030,0,0,0,0,0,18032,18033,18033,18033,1,1,1,1,'Adder Jambiya','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64050,0,0,0,0,0,0,0,0,90,0,4101,4243,937,3923,3935,3936,16456,0,0,0,20639,20640,20640,20640,1,1,1,1,'Oxidant Baselard','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (64051,0,0,0,0,0,0,0,0,90,0,4103,4245,9517,0,0,0,0,0,0,0,16846,16846,16846,16846,1,1,1,1,'Bloody Lance','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64501,1,0,0,0,0,0,0,0,90,0,4100,4242,16578,0,0,0,0,0,0,0,931,506,506,506,3,1,1,1,'Espadon (desynth)','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64502,0,0,0,0,0,0,0,0,91,0,4101,4243,622,622,622,825,935,953,4509,0,1994,1994,1994,1994,1,1,1,1,'Ether Cotton','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64503,0,0,59,21,0,0,0,0,91,0,4096,4238,643,1448,1448,1448,1448,4370,0,0,1415,1415,1415,1415,2,4,6,8,'Urushi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64504,0,0,0,0,0,0,0,0,91,0,4101,4243,622,622,622,851,935,953,4509,0,1993,1993,1993,1993,1,1,1,1,'Ether Leather','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64505,0,0,0,0,0,0,0,0,91,0,4103,4245,9130,10361,0,0,0,0,0,0,27485,27486,27486,27486,1,1,1,1,'Vexed Nails','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64506,0,0,0,0,0,0,0,0,91,0,4101,4243,937,4159,16919,0,0,0,0,0,16910,17770,17770,17770,1,1,1,1,'Mamushito',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64507,0,0,0,0,0,0,0,0,91,0,4101,4243,622,622,622,714,935,953,4509,0,1995,1995,1995,1995,1,1,1,1,'Ether Holly','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64508,0,0,0,0,0,0,0,0,91,0,4103,4245,1393,9130,0,0,0,0,0,0,27394,27395,27395,27395,1,1,1,1,'Bewitched Greaves','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64509,0,0,0,0,0,0,0,0,92,0,4101,4243,939,1411,1443,4370,4509,0,0,0,4205,4205,4205,4205,1,1,1,1,'Agility Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64510,0,0,0,0,0,0,0,0,92,0,4101,4243,636,926,1443,4370,4509,0,0,0,4203,4203,4203,4203,1,1,1,1,'Vitality Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64511,0,0,0,0,0,0,0,0,92,0,4101,4243,927,1412,1443,4370,4509,0,0,0,4207,4207,4207,4207,1,1,1,1,'Intelligence Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64512,0,0,0,0,0,0,0,0,92,0,4101,4243,919,941,1443,4370,4509,0,0,0,4199,4199,4199,4199,1,1,1,1,'Strength Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64513,0,0,0,0,0,0,0,0,92,0,4101,4243,920,1410,1443,4370,4509,0,0,0,4201,4201,4201,4201,1,1,1,1,'Dexterity Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64514,0,0,0,0,0,0,0,0,92,0,4103,4245,940,1133,12820,0,0,0,0,0,1390,1391,1391,1391,1,1,1,1,'Cursed Cuisses',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64515,0,0,0,0,0,0,0,0,92,0,4101,4243,922,1120,1443,4370,4509,0,0,0,4209,4209,4209,4209,1,1,1,1,'Mind Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64516,0,0,0,0,0,0,0,0,92,0,4103,4245,1389,9130,0,0,0,0,0,0,27042,27043,27043,27043,1,1,1,1,'Bewitched Finger Gauntlets','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64517,0,0,60,0,0,0,0,0,92,0,4096,4238,1448,1448,1448,1448,1813,4370,0,0,4030,4030,4030,4030,2,4,6,8,'Sekishitsu','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (64518,0,0,0,0,0,0,0,0,92,0,4103,4245,9130,10311,0,0,0,0,0,0,27129,27130,27130,27130,1,1,1,1,'Vexed Gages','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64519,0,0,0,0,0,0,0,0,92,0,4101,4243,1413,1443,4368,4370,4509,0,0,0,4211,4211,4211,4211,1,1,1,1,'Charisma Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64520,1,0,0,0,0,0,0,0,92,0,4100,4242,1390,0,0,0,0,0,0,0,850,940,822,866,2,1,1,2,'Cursed Cuisses (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64521,0,0,0,0,0,0,0,0,93,0,4103,4245,940,1133,12692,0,0,0,0,0,1388,1389,1389,1389,1,1,1,1,'Cursed Finger Gauntlets',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64522,0,0,0,0,0,0,0,0,93,0,4101,4243,1443,1617,4370,5123,5165,0,0,0,5253,5253,5253,5253,1,1,1,1,'Hermes Quencher','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64523,0,0,0,0,0,0,0,0,93,0,4097,4239,936,4509,16849,0,0,0,0,0,16861,16895,16895,16895,1,1,1,1,'Ice Lance',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64524,0,0,0,0,0,0,0,0,93,0,4103,4245,1391,9130,0,0,0,0,0,0,27218,27219,27219,27219,1,1,1,1,'Bewitched Cuisses','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64525,1,0,0,0,0,0,0,0,93,0,4100,4242,1388,0,0,0,0,0,0,0,850,940,940,940,1,1,1,1,'Cursed Fng. Gnt. (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64526,0,0,0,0,0,0,0,0,93,0,4103,4245,9130,10591,0,0,0,0,0,0,27314,27315,27315,27315,1,1,1,1,'Vexed Slops','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64527,0,0,0,0,0,0,0,0,93,0,4098,4240,842,842,842,842,842,842,913,913,4213,4213,4213,4213,1,1,1,1,'Icarus Wing',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64528,0,0,0,0,0,0,0,0,93,43,4099,4241,622,627,636,1443,4509,0,0,0,4153,4153,4153,4153,1,2,3,4,'Antacid',NULL); -- JP wiki
|
|
INSERT INTO `synth_recipes` VALUES (64529,0,0,0,34,18,0,0,0,94,0,4096,4238,650,651,947,947,17316,0,0,0,17342,17342,17342,17342,6,8,10,12,'Cannon Shell',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64530,0,0,0,0,0,0,1,0,94,0,4096,4238,850,1656,4145,4145,4145,4145,0,0,16249,16249,16249,16249,1,1,1,1,'Elixir Tank','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (64531,0,0,0,0,0,0,0,0,94,0,4103,4245,940,1133,12948,0,0,0,0,0,1392,1393,1393,1393,1,1,1,1,'Cursed Greaves',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64532,0,0,0,0,0,0,0,0,94,0,4103,4245,9130,10427,0,0,0,0,0,0,25625,25626,25626,25626,1,1,1,1,'Vexed Coif','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64533,0,0,0,0,0,0,0,0,94,0,4103,4245,1385,9130,0,0,0,0,0,0,26690,26691,26691,26691,1,1,1,1,'Bewitched Mask','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64534,0,0,0,0,0,0,0,0,95,0,4101,4243,638,638,638,638,1133,4449,4509,0,4124,4125,4126,4127,1,1,1,1,'Max-Potion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64535,0,0,0,0,0,0,0,0,95,0,4101,4243,1520,1521,0,0,0,0,0,0,1468,1468,1468,1468,1,1,1,1,'Marksman\'s Oil',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64536,0,0,0,0,48,0,0,0,95,0,4096,4238,746,947,0,0,0,0,0,0,17300,17300,17300,17300,33,66,99,99,'Platinum Bullet','COP');
|
|
INSERT INTO `synth_recipes` VALUES (64537,0,0,0,0,0,0,0,0,95,0,4103,4245,9130,10248,0,0,0,0,0,0,25698,25699,25699,25699,1,1,1,1,'Vexed Doublet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64538,0,0,0,0,0,0,0,0,95,0,4101,4243,9518,0,0,0,0,0,0,0,4124,4124,4124,4124,1,1,1,1,'Max-Potion','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64539,0,0,0,0,0,0,0,0,95,0,4103,4245,1387,9130,0,0,0,0,0,0,26866,26867,26867,26867,1,1,1,1,'Bewitched Mail','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (64540,0,0,0,0,0,0,0,0,96,0,4103,4245,940,1133,12436,0,0,0,0,0,1384,1385,1385,1385,1,1,1,1,'Cursed Mask',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64541,0,0,0,0,0,0,0,0,96,0,4096,4238,1310,4149,0,0,0,0,0,0,1227,1227,1227,1227,9,12,12,12,'Platinum Nugget',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64542,0,0,0,0,0,0,0,0,97,0,4102,4244,821,846,846,1109,4164,0,0,0,4257,4257,4257,4257,33,66,99,99,'Papillion',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64543,0,0,0,0,0,0,0,0,97,0,4097,4239,936,4509,12310,0,0,0,0,0,12305,12357,12357,12357,1,1,1,1,'Ice Shield',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64544,0,0,0,0,0,0,0,0,98,0,4103,4245,2361,2365,17727,0,0,0,0,0,17733,17734,17734,17734,1,1,1,1,'Dragon Slayer','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64545,0,0,0,0,0,0,0,0,98,0,4102,4244,914,936,942,1108,0,0,0,0,4149,4149,4149,4149,1,2,3,4,'Panacea',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64546,0,0,0,0,0,0,0,0,98,0,4103,4245,1133,2361,17727,0,0,0,0,0,17735,17736,17736,17736,1,1,1,1,'Demon Slayer','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (64547,1,0,0,0,0,0,0,0,99,0,4100,4242,1386,0,0,0,0,0,0,0,866,866,866,866,1,2,2,2,'Cursed Mail (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64548,0,0,0,0,0,0,0,0,99,0,4103,4245,940,1133,1133,12564,0,0,0,0,1386,1387,1387,1387,1,1,1,1,'Cursed Mail',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64549,0,0,0,0,0,0,0,0,99,0,4102,4244,4154,4154,5306,13446,0,0,0,0,10790,10791,10791,10791,1,1,1,1,'Ephedra Ring','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (64550,0,0,0,0,0,0,0,0,99,0,4102,4244,4154,4154,5306,13466,0,0,0,0,10792,10793,10793,10793,1,1,1,1,'Saida Ring','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (64551,0,0,0,0,0,0,0,0,99,0,4096,4238,744,813,2475,2475,0,0,0,0,368,368,368,368,1,1,1,1,'San d\'Orian Tea Set','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (64552,0,0,0,0,0,0,0,0,99,0,4103,4245,914,944,945,1519,4509,0,0,0,4246,4246,4246,4246,1,1,1,1,'Cantarella',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (64553,0,0,0,0,0,0,0,0,100,0,4101,4243,622,622,622,935,935,953,1124,4509,4140,4141,4142,4143,1,1,1,1,'Pro-Ether','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (64554,0,0,0,0,60,0,0,0,100,0,4096,4238,2275,2460,2460,2460,0,0,0,0,318,318,318,318,1,1,1,1,'Crystal Rose','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (65001,0,0,0,0,60,0,0,0,101,0,4096,4238,723,745,745,1772,1772,1772,1772,2275,16587,16598,16598,16598,1,1,1,1,'Gold Algol','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (65002,0,0,0,0,0,0,0,0,100,0,4102,4244,914,930,942,1592,0,0,0,0,17884,17884,17884,17884,1,2,3,4,'Sun Water','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (65003,0,2037,0,0,0,0,0,0,103,0,4096,4238,663,933,1887,4665,18238,21380,0,0,2415,2415,2415,2415,3,3,3,3,'Turbo Charger II','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (65004,0,2037,0,0,0,0,0,0,103,0,4096,4238,663,933,1305,21380,0,0,0,0,2416,2416,2416,2416,3,3,3,3,'Vivi-Valve II','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (65005,0,0,0,0,0,0,0,0,104,0,4103,4245,914,930,942,8710,0,0,0,0,17913,17913,17913,17913,4,6,8,10,'Saline Broth','SOA');
|
|
-- INSERT INTO `synth_recipes` VALUES (65006,0,0,0,255,0,0,0,0,104,0,4098,4240,914,937,3549,3936,8748,0,0,0,8927,8927,8927,8927,6,8,10,12,'Abrasion Bolt Heads','SOA'); -- Blacksmithing sub is currently unknown.
|
|
-- INSERT INTO `synth_recipes` VALUES (65007,0,0,0,255,0,0,0,0,104,0,4098,4240,937,1626,5306,5306,8748,0,0,0,8928,8928,8928,8928,6,8,10,12,'Righteous Bolt Heads','SOA'); -- Smithing sub and yield amounts are currently unknown.
|
|
INSERT INTO `synth_recipes` VALUES (65008,0,0,0,0,0,0,0,0,105,0,4103,4245,940,2875,3549,12987,0,0,0,0,10356,10361,10361,10361,1,1,1,1,'Hexed Nails','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (65009,0,0,0,0,0,0,0,0,105,0,4096,4238,931,4149,9257,0,0,0,0,0,9258,9258,9258,9258,1,2,3,4,'Azure Cermet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65010,0,0,0,0,0,0,0,0,106,0,4103,4245,940,2875,3549,12859,0,0,0,0,10586,10591,10591,10591,1,1,1,1,'Hexed Slops','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (65011,0,0,0,0,25,0,0,0,106,0,4099,4241,760,760,778,1675,4154,4154,5306,0,10392,10393,10393,10393,1,1,1,1,'Malison Medallion','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (65012,0,0,0,0,0,0,0,0,107,0,4103,4245,940,2875,3549,12475,0,0,0,0,10422,10427,10427,10427,1,1,1,1,'Hexed Coif','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (65013,0,0,0,0,0,0,0,0,108,0,4103,4245,940,2875,3549,12731,0,0,0,0,10306,10311,10311,10311,1,1,1,1,'Hexed Gages','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (65014,0,0,0,0,0,0,0,0,110,0,4103,4245,940,2875,3549,3549,12603,0,0,0,10243,10248,10248,10248,1,1,1,1,'Hexed Doublet','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (65015,0,0,0,0,0,0,0,0,110,0,4103,4245,924,1133,1626,2015,2229,2361,2365,17727,18914,18915,18915,18915,1,1,1,1,'Killer\'s Kilij','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (65016,0,0,0,0,0,0,0,55,110,0,4102,4244,8752,9062,9255,9866,9874,0,0,0,25537,25538,25539,25539,1,1,1,1,'Bagua Charm','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65017,0,0,0,0,0,0,0,55,110,0,4102,4244,8752,9062,9255,9855,9874,0,0,0,25471,25472,25473,25473,1,1,1,1,'Bard\'s Charm','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65018,0,0,0,0,0,0,0,55,110,0,4102,4244,8752,9062,9255,9862,9874,0,0,0,25513,25514,25515,25515,1,1,1,1,'Commodore Charm','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65501,0,0,0,0,0,0,0,70,111,0,4103,4245,1392,8983,9002,9130,0,0,0,0,27394,27395,27395,27395,1,1,1,1,'Bewitched Greaves','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65502,0,0,0,0,0,70,0,0,111,0,4103,4245,8728,9007,9130,10356,0,0,0,0,27485,27486,27486,27486,1,1,1,1,'Vexed Nails','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65503,0,0,0,0,0,70,0,0,112,0,4103,4245,8728,9007,9130,10306,0,0,0,0,27129,27130,27130,27130,1,1,1,1,'Vexed Gages','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65504,0,0,0,0,0,0,0,70,112,0,4103,4245,1388,8983,9002,9130,0,0,0,0,27042,27043,27043,27043,1,1,1,1,'Bewitched Finger Gauntlets','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65505,0,0,0,0,0,70,0,0,113,0,4103,4245,8728,9007,9130,10586,0,0,0,0,27314,27315,27315,27315,1,1,1,1,'Vexed Slops','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65506,0,0,0,0,0,0,0,0,113,0,4103,4245,1133,4015,16577,0,0,0,0,0,20723,20724,20724,20724,1,1,1,1,'Dija Sword','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (65507,0,0,0,0,0,0,0,70,113,0,4103,4245,1390,8983,9002,9130,0,0,0,0,27218,27219,27219,27219,1,1,1,1,'Bewitched Cuisses','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65508,0,0,0,0,0,0,0,70,114,0,4103,4245,1384,8983,9002,9130,0,0,0,0,26690,26691,26691,26691,1,1,1,1,'Bewitched Mask','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65509,0,0,0,0,0,70,0,0,114,0,4103,4245,8728,9007,9130,10422,0,0,0,0,25625,25626,25626,25626,1,1,1,1,'Vexed Coif','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65510,0,0,0,0,0,0,0,70,115,0,4103,4245,1386,8983,9002,9130,0,0,0,0,26866,26867,26867,26867,1,1,1,1,'Bewitched Mail','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65511,0,0,0,0,0,70,0,0,115,0,4103,4245,8728,9007,9130,10243,0,0,0,0,25698,25699,25699,25699,1,1,1,1,'Vexed Doublet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (65512,0,0,0,0,0,0,0,0,118,0,4096,4238,9002,9004,9007,9062,0,0,0,0,26181,26182,26182,26182,1,1,1,1,'Chirich Ring','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (65513,0,1982,0,255,0,0,0,0,119,0,4096,4238,752,761,8752,9004,9258,9258,9258,0,25895,25896,25896,25896,1,1,1,1,'Ratri Cuisses','ROV'); -- Alchemy seems to be 115-119. Smithng sub is currently unknown.
|
|
-- INSERT INTO `synth_recipes` VALUES (65514,0,1982,0,0,0,255,0,0,119,0,4096,4238,664,682,3979,9006,9258,9258,9258,0,25899,25900,25900,25900,1,1,1,1,'Pinga Pants','ROV'); -- Alchemy seems to be 115-119. Cloth sub is unknown.
|
|
-- INSERT INTO `synth_recipes` VALUES (65515,0,1982,0,0,0,255,0,0,119,0,4096,4238,664,3979,9006,9258,9258,0,0,0,25966,25967,25967,25967,1,1,1,1,'Pinga Pumps','ROV'); -- Alchemy seems to be 115-119. Cloth sub is unknown.
|
|
-- INSERT INTO `synth_recipes` VALUES (65516,0,1982,0,0,0,255,0,0,119,0,4096,4238,664,682,3979,9006,9006,9258,9258,9258,26535,26536,26536,26536,1,1,1,1,'Pinga Tunic','ROV'); -- Alchemy seems to be 115-119. Cloth sub is unknown.
|
|
INSERT INTO `synth_recipes` VALUES (65517,0,1982,0,0,0,0,0,0,119,0,4096,4238,4074,9258,21661,0,0,0,0,0,21662,21663,21663,21663,1,1,1,1,'Raetic Algol','ROV'); -- Alchemy seems to be 115-119
|
|
-- INSERT INTO `synth_recipes` VALUES (65518,0,1983,255,0,255,0,0,0,113,0,4102,4244,9006,9062,9245,9836,9844,9845,9845,9859,21876,21877,21878,21878,1,1,1,1,'Wyrm Lance','ROV'); -- Alchemy seems to be 111-113. Marked it as 113. Cloth and Woodworking subs are currently unknown.
|
|
-- INSERT INTO `synth_recipes` VALUES (65519,0,1982,0,255,0,0,0,0,119,0,4096,4238,752,8752,9004,9258,9258,0,0,0,25962,25963,25963,25963,1,1,1,1,'Ratri Sollerets','ROV'); -- Alchemy seems to be 115-119. Smithng sub is currently unknown.
|
|
-- INSERT INTO `synth_recipes` VALUES (65520,0,1982,0,255,0,0,0,0,119,0,4096,4238,752,752,8752,9004,9258,9258,0,0,25982,25983,25983,25983,1,1,1,1,'Ratri Gadlings','ROV'); -- Alchemy seems to be 115-119. Smithng sub is currently unknown.
|
|
-- INSERT INTO `synth_recipes` VALUES (65521,0,1982,0,0,0,255,0,0,119,0,4096,4238,664,664,3979,9006,9258,9258,0,0,25986,25987,25987,25987,1,1,1,1,'Pinga Mittens','ROV'); -- Alchemy seems to be 115-119. Cloth sub is unknown.
|
|
-- INSERT INTO `synth_recipes` VALUES (65522,0,1982,0,255,0,0,0,0,119,0,4096,4238,752,761,8752,9004,9258,9258,0,0,25555,25556,25556,25556,1,1,1,1,'Ratri Sallet','ROV'); -- Alchemy seems to be 115-119. Smithng sub is currently unknown.
|
|
-- INSERT INTO `synth_recipes` VALUES (65523,0,1982,0,0,0,255,0,0,119,0,4096,4238,664,682,3979,9006,9258,9258,0,0,25559,25560,25560,25560,1,1,1,1,'Pinga Crown','ROV'); -- Alchemy seems to be 115-119. Cloth sub is unknown.
|
|
-- INSERT INTO `synth_recipes` VALUES (65524,0,1982,0,255,0,0,0,0,255,0,4096,4238,752,761,8752,9004,9004,9258,9258,9258,26531,26532,26532,26532,1,1,1,1,'Ratri Breastplate','ROV');
|
|
-- INSERT INTO `synth_recipes` VALUES (65525,0,1983,0,255,0,255,0,0,113,0,4102,4244,9006,9062,9247,9833,9844,9845,9845,9867,21667,21668,21669,21669,1,1,1,1,'Futhark Claymore','ROV'); -- Alchemy seems to be 111-113. Marked it as 113. Cloth and Smithing subs are currently unknown.
|
|
INSERT INTO `synth_recipes` VALUES (69901,1,0,0,0,0,0,0,0,34,0,4100,4242,16471,0,0,0,0,0,0,0,715,937,649,4163,1,1,1,1,'Blind Knife (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69902,1,0,0,0,0,0,0,0,63,0,4100,4242,16414,0,0,0,0,0,0,0,894,894,894,894,1,1,1,1,'Cermet Claws (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69903,1,0,0,0,0,0,0,0,54,0,4100,4242,13682,0,0,0,0,0,0,0,650,650,937,937,1,1,1,1,'Ether Tank (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (69904,1,0,0,0,0,0,0,0,46,0,4100,4242,17403,0,0,0,0,0,0,0,650,650,933,933,1,1,1,1,'Frog Lure (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (69905,1,0,0,0,0,0,0,0,255,0,4100,4242,12946,0,0,0,0,0,0,0,851,933,933,933,1,1,1,1,'Suzaku\'s Sune-Ate (desynth)',NULL); -- Unknown recipe level.
|
|
INSERT INTO `synth_recipes` VALUES (69906,1,0,0,0,0,0,0,0,45,0,4100,4242,17605,0,0,0,0,0,0,0,937,937,937,937,1,1,1,1,'Acid Dagger (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69907,1,0,0,0,0,0,0,0,6,0,4100,4242,13683,0,0,0,0,0,0,0,650,850,850,850,1,1,1,1,'Water Tank (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (69908,1,0,0,0,0,0,0,0,46,0,4100,4242,17402,0,0,0,0,0,0,0,937,933,933,933,1,1,1,1,'Shrimp Lure (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69909,1,0,0,0,0,0,0,0,93,0,4100,4242,16861,0,0,0,0,0,0,0,936,715,931,931,1,2,1,2,'Ice Lance (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69910,1,0,0,0,0,0,0,0,31,0,4100,4242,17407,0,0,0,0,0,0,0,648,648,933,933,1,1,1,1,'Minnow (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69911,1,0,0,0,0,0,0,0,33,0,4100,4242,16387,0,0,0,0,0,0,0,852,850,937,4157,1,2,2,2,'Poison Cesti (desynth)',NULL);
|
|
-- INSERT INTO `synth_recipes` VALUES (69912,1,0,0,0,0,0,0,0,255,0,4100,4242,16867,0,0,0,0,0,0,0,715,817,884,884,1,1,1,1,'Orc Piercer (desynth)',NULL); -- Unknown skill level. @ Level 41, it is "Beyond current skill level."
|
|
INSERT INTO `synth_recipes` VALUES (69913,1,0,0,0,0,0,0,0,80,0,4100,4242,16909,0,0,0,0,0,0,0,4158,707,651,657,1,1,1,1,'Kororito (desynth)','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (69914,1,0,0,0,0,0,0,0,71,0,4100,4242,17080,0,0,0,0,0,0,0,4154,716,1226,653,1,1,10,2,'Holy Maul (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69915,1,0,0,0,0,0,0,0,85,0,4100,4242,17381,0,0,0,0,0,0,0,931,931,932,932,1,2,1,1,'Comp. Fishing Rod (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69916,1,0,0,0,0,0,0,0,53,0,4100,4242,17384,0,0,0,0,0,0,0,933,932,932,932,1,2,3,4,'Carbon Fish. Rod (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69917,1,0,0,0,0,0,0,0,91,0,4100,4242,16910,0,0,0,0,0,0,0,4159,707,1234,657,1,1,6,1,'Mamushito (desynth)',NULL); -- FFXIclopedia is the only site I saw that has this recipe listed.
|
|
INSERT INTO `synth_recipes` VALUES (69918,1,0,0,0,0,0,0,0,51,0,4100,4242,16430,0,0,0,0,0,0,0,937,649,649,649,1,1,1,1,'Acid Claws (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69919,1,0,0,0,0,0,0,0,20,0,4100,4242,1624,0,0,0,0,0,0,0,933,933,933,933,4,6,8,10,'Bugbear Mask (desynth)','COP');
|
|
INSERT INTO `synth_recipes` VALUES (69920,1,0,0,0,0,0,0,0,86,0,4100,4242,16858,0,0,0,0,0,0,0,5306,1226,1226,1226,1,10,10,10,'Sacred Lance (desynth)','COP'); -- FFXIclopedia is the only site I saw that has this recipe listed.
|
|
INSERT INTO `synth_recipes` VALUES (69921,1,0,0,0,0,0,0,0,83,0,4100,4242,16860,0,0,0,0,0,0,0,4154,715,1226,1226,1,2,10,10,'Holy Lance (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69922,1,0,0,0,0,0,0,0,55,0,4100,4242,17041,0,0,0,0,0,0,0,4154,716,1226,653,1,1,10,2,'Holy Mace (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69923,1,0,0,0,0,0,0,0,78,0,4100,4242,12434,0,0,0,0,0,0,0,850,850,850,850,1,1,1,1,'Genbu\'s Kabuto (desynth)','ROTZ'); -- possible HQ1=ram leather x1 HQ2=cermet chip x1. Only JP site showed level.
|
|
INSERT INTO `synth_recipes` VALUES (69924,1,0,8,47,0,0,0,0,0,0,4100,4242,16651,0,0,0,0,0,0,0,707,707,1226,1226,1,1,4,6,'Mythril Pick (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (69925,1,0,8,47,0,0,0,0,0,0,4100,4242,16670,0,0,0,0,0,0,0,707,707,1226,1226,1,1,4,6,'Mythril Pick +1 (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70001,0,0,0,0,0,0,0,0,0,1,4101,4243,2203,2203,2343,4362,4509,0,0,0,2209,2209,2209,2209,2,4,6,8,'Worm Paste','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70002,0,0,0,0,0,0,0,0,0,1,4103,4245,727,4378,0,0,0,0,0,0,5575,5575,5575,5575,4,6,9,12,'Yogurt','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70003,0,0,0,0,0,0,0,0,0,2,4101,4243,5465,0,0,0,0,0,0,0,2397,2397,2397,2397,1,1,1,1,'Foulweather Frog','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70004,0,0,0,0,0,0,0,0,0,2,4101,4243,4290,0,0,0,0,0,0,0,2397,2397,2397,2397,1,1,1,1,'Foulweather Frog','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70005,0,0,0,0,0,0,0,0,0,2,4096,4238,629,0,0,0,0,0,0,0,4415,4334,4334,4334,1,1,1,1,'Roasted Corn',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70006,0,0,0,0,0,0,0,0,0,2,4097,4239,4365,4365,4365,0,0,0,0,0,5672,5673,5673,5673,3,3,3,3,'Dried Berry','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (70007,0,0,0,0,0,0,0,0,0,3,4101,4243,4389,4389,4389,4389,0,0,0,0,17860,17861,17861,17861,4,2,4,8,'Carrot Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70008,0,0,0,0,0,0,0,0,0,3,4098,4240,4472,0,0,0,0,0,0,0,16993,16993,16993,16993,1,1,1,1,'Peeled Crayfish',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70009,0,0,0,0,0,0,0,0,0,3,4096,4238,936,4358,0,0,0,0,0,0,5737,5737,5737,5737,1,1,1,1,'Salted Hare','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (70010,0,0,0,0,0,0,0,0,0,3,4096,4238,926,4370,0,0,0,0,0,0,5738,5738,5738,5738,1,1,1,1,'Sweet Lizard','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (70011,0,0,0,0,0,0,0,0,0,3,4101,4243,4370,4570,0,0,0,0,0,0,5739,5739,5739,5739,1,1,1,1,'Honeyed Egg','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (70012,0,0,0,0,0,0,0,0,0,4,4096,4238,4362,4509,0,0,0,0,0,0,4409,4532,4532,4532,1,1,1,1,'Hard-boiled Egg',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70013,0,0,0,0,0,0,0,0,0,5,4096,4238,768,768,768,4509,0,0,0,0,4455,4592,4592,4592,1,1,1,1,'Pebble Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70014,0,0,0,0,0,0,0,0,0,5,4096,4238,8903,0,0,0,0,0,0,0,4455,4455,4455,4455,1,1,1,1,'Pebble Soup','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (70015,0,0,0,0,0,0,0,0,0,6,4096,4238,622,4358,0,0,0,0,0,0,4371,4516,4516,4516,1,1,1,1,'Grilled Hare',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70016,0,0,0,0,0,0,0,0,0,6,4096,4238,4509,4570,0,0,0,0,0,0,4409,4532,4532,4532,1,1,1,1,'Hard-boiled Egg',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70017,0,0,0,0,0,0,0,0,0,7,4101,4243,4382,4382,4571,4571,0,0,0,0,17864,17865,17865,17865,4,2,4,8,'Herbal Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70018,0,0,0,0,0,0,0,0,0,7,4096,4238,621,626,4356,4390,5684,5688,0,0,5686,5687,5687,5687,1,1,1,1,'Cheese Sandwich','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (70019,0,0,0,0,0,0,0,0,0,7,4098,4240,4383,0,0,0,0,0,0,0,17394,17394,17394,17394,1,1,1,1,'Peeled Lobster',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70020,0,0,0,0,0,0,0,0,0,7,4098,4240,5453,0,0,0,0,0,0,0,17394,17394,17394,17394,1,1,1,1,'Peeled Lobster',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70021,0,0,0,0,0,0,0,0,0,8,4099,4241,621,625,4364,4366,4380,4390,0,0,4355,4266,4266,4266,1,1,1,1,'Salmon Sub',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70022,0,0,0,0,0,0,0,0,0,8,4101,4243,4363,4370,0,0,0,0,0,0,2389,2389,2389,2389,1,1,1,1,'Speed Apple','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70023,0,0,0,0,0,0,0,0,0,8,4101,4243,4363,5575,0,0,0,0,0,0,2390,2390,2390,2390,1,1,1,1,'Stamina Apple','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70024,0,0,0,0,0,0,0,0,0,8,4101,4243,2273,4363,0,0,0,0,0,0,2391,2391,2391,2391,1,1,1,1,'Shadow Apple','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70025,0,0,0,0,0,0,0,0,0,9,4096,4238,936,4472,4509,0,0,0,0,0,4535,4338,4338,4338,1,1,1,1,'Boiled Crayfish',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70026,0,0,0,0,0,0,0,0,0,9,4099,4241,631,4358,4509,4570,0,0,0,0,17016,17016,17016,17016,12,12,12,12,'Pet Food Alpha',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70027,0,0,0,0,0,0,0,0,0,10,4101,4243,4392,4392,4392,4392,0,0,0,0,4422,4422,4422,4422,1,1,1,1,'Orange Juice',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70028,0,0,0,0,0,0,0,0,0,10,4101,4243,17396,17397,0,0,0,0,0,0,17905,17905,17905,17905,4,6,8,10,'Wormy Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (70029,0,0,0,0,0,0,0,0,0,10,4097,4239,612,936,4509,5575,0,0,0,0,5576,5576,5576,5576,1,1,1,1,'Ayran','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70030,0,0,0,0,0,0,0,0,0,10,4101,4243,8904,0,0,0,0,0,0,0,4422,4422,4422,4422,1,1,1,1,'Orange Juice','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (70501,0,0,0,0,0,0,0,0,0,11,4101,4243,1111,4358,4358,16995,0,0,0,0,17866,17867,17867,17867,4,2,4,8,'Carrion Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70502,0,0,0,0,0,0,0,0,0,11,4097,4239,5566,0,0,0,0,0,0,0,5567,5574,5574,5574,1,1,1,1,'Dried Date','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70503,0,0,0,0,0,0,0,0,0,11,4101,4243,2201,2201,2343,4362,4509,0,0,0,2208,2208,2208,2208,2,4,6,8,'Herb Paste','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70504,0,0,0,0,0,0,0,0,0,11,4098,4240,4360,0,0,0,0,0,0,0,17392,17392,17392,17392,2,2,2,2,'Sliced Sardine',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70505,0,0,0,0,0,0,0,0,0,11,4098,4240,5449,0,0,0,0,0,0,0,17392,17392,17392,17392,2,2,2,2,'Sliced Sardine',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70506,0,0,0,0,0,0,0,0,0,11,4098,4240,5963,0,0,0,0,0,0,0,17392,17392,17392,17392,2,2,2,2,'Sliced Sardine',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70507,0,0,0,0,0,0,0,0,0,12,4098,4240,912,912,912,912,0,0,0,0,4370,4370,4370,4370,4,6,9,12,'Honey',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70508,0,0,0,0,0,0,0,0,5,13,4097,4239,1522,1522,1522,1522,1522,1522,1522,1522,622,622,622,622,9,12,12,12,'Dried Marjoram',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70509,0,0,0,0,0,0,0,0,0,13,4098,4240,4483,0,0,0,0,0,0,0,17393,17393,17393,17393,6,6,6,6,'Sliced Cod',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70510,0,0,0,0,0,0,0,0,0,14,4096,4238,610,629,633,936,0,0,0,0,4408,5181,5181,5181,4,6,9,12,'Tortilla',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70511,0,0,0,0,0,0,0,0,0,14,4096,4238,610,611,615,936,2236,4370,5575,0,5657,5657,5657,5657,33,33,66,99,'Army Biscuit','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (70512,0,0,0,0,0,0,0,0,0,15,4101,4243,17395,17395,17397,17397,0,0,0,0,17862,17863,17863,17863,4,2,4,8,'Bug Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70513,0,0,0,0,0,0,0,0,0,15,4098,4240,8905,0,0,0,0,0,0,0,16992,16992,16992,16992,4,4,4,4,'Slice of Bluetail','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (70514,0,0,0,0,0,0,0,0,0,15,4098,4240,4399,0,0,0,0,0,0,0,16992,16992,16992,16992,4,4,4,4,'Slice of Bluetail',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70515,0,0,0,0,0,0,0,0,0,15,4096,4238,627,936,2237,4372,4390,4509,5688,5740,5889,5889,5889,5889,2,4,6,8,'Stuffed Pitaru','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (70516,0,0,0,0,0,0,0,0,0,15,4096,4238,619,627,633,2237,4387,4435,4570,5740,5885,5885,5885,5885,2,4,6,8,'Saltena','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (70517,0,0,0,0,0,0,0,0,0,16,4096,4238,936,4375,4375,0,0,0,0,0,4410,4343,4343,4343,1,1,1,1,'Roast Mushroom',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70518,0,0,0,0,0,0,0,0,0,16,4096,4238,936,4373,4373,0,0,0,0,0,4410,4343,4343,4343,1,1,1,1,'Roast Mushroom',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70519,0,0,0,0,0,0,0,0,0,16,4096,4238,936,4374,4374,0,0,0,0,0,4410,4343,4343,4343,1,1,1,1,'Roast Mushroom',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70520,0,0,0,0,0,0,0,0,0,16,4101,4243,3942,17397,0,0,0,0,0,0,17914,17914,17914,17914,4,6,8,12,'Wispy Broth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (70521,0,0,0,0,0,0,0,0,0,17,4098,4240,4289,0,0,0,0,0,0,0,16994,16994,16994,16994,2,2,2,2,'Slice of Carp',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70522,0,0,0,0,0,0,0,0,0,17,4096,4238,614,622,4372,0,0,0,0,0,4437,4335,4335,4335,1,1,1,1,'Roast Mutton',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70523,0,0,0,0,0,0,0,0,0,17,4098,4240,4401,0,0,0,0,0,0,0,16994,16994,16994,16994,2,2,2,2,'Slice of Carp',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70524,0,0,0,0,0,0,0,0,0,18,4096,4238,618,618,618,622,4387,4509,0,0,4416,4327,4327,4327,1,1,1,1,'Pea Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70525,0,0,0,0,0,0,0,0,0,18,4096,4238,5129,17316,0,0,0,0,0,0,5647,5648,5648,5648,1,1,1,1,'Lik Kabob','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (70526,0,0,0,0,0,0,0,0,0,19,4099,4241,631,4372,4509,4570,0,0,0,0,17017,17017,17017,17017,12,12,12,12,'Pet Food Beta',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70527,0,0,0,0,0,0,0,0,0,19,4096,4238,936,4289,0,0,0,0,0,0,4537,4586,4586,4586,1,1,1,1,'Roast Carp',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70528,0,0,0,0,0,0,0,0,0,19,4096,4238,936,4401,0,0,0,0,0,0,4537,4586,4586,4586,1,1,1,1,'Roast Carp',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70529,0,0,0,0,0,0,0,0,0,19,4099,4241,631,4509,5568,5571,0,0,0,0,17017,17017,17017,17017,12,12,12,12,'Pet Food Beta',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70530,0,0,0,0,0,0,0,0,0,20,4101,4243,4363,4363,4363,4363,0,0,0,0,4423,4423,4423,4423,1,1,1,1,'Apple Juice',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70531,0,0,0,0,0,0,0,0,0,20,4097,4239,936,4378,0,0,0,0,0,0,615,615,615,615,4,6,9,12,'Selbina Butter',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (70532,0,0,0,0,0,0,0,0,0,20,4101,4243,8906,0,0,0,0,0,0,0,4423,4423,4423,4423,1,1,1,1,'Apple Juice','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (71001,0,0,0,0,0,0,0,0,0,21,4096,4238,936,4464,0,0,0,0,0,0,4538,4585,4585,4585,1,1,1,1,'Roast Pipira',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71002,0,0,0,0,0,0,0,0,0,21,4096,4238,618,618,4509,0,0,0,0,0,5232,5232,5232,5232,1,2,3,4,'Soy Milk','COP');
|
|
INSERT INTO `synth_recipes` VALUES (71003,0,0,0,0,0,0,0,0,0,21,4101,4243,2343,4362,4509,4545,4545,0,0,0,2210,2210,2210,2210,2,4,6,8,'Vegetable Paste','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (71004,0,0,0,0,0,0,0,0,0,22,4096,4238,615,619,0,0,0,0,0,0,4436,4282,4282,4282,1,1,1,1,'Baked Popoto',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71005,0,0,0,0,0,0,0,0,0,22,4098,4240,2164,2164,2164,2164,0,0,0,0,5562,5562,5562,5562,4,6,9,12,'White Honey','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (71006,0,2041,0,0,0,0,0,0,0,23,4096,4238,612,614,633,936,1776,5195,0,0,5188,5188,5197,5197,2,4,2,4,'Peperoncino','COP');
|
|
INSERT INTO `synth_recipes` VALUES (71007,0,0,0,0,0,0,0,0,0,23,4096,4238,615,627,628,4363,0,0,0,0,4406,4336,4336,4336,1,1,1,1,'Baked Apple',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71008,0,0,0,0,0,0,0,0,0,23,4103,4245,632,632,632,951,4370,4378,4443,4505,4495,4324,4324,4324,33,33,66,99,'Goblin Chocolate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71009,0,0,0,0,0,0,0,0,0,24,4096,4238,611,631,4370,4509,0,0,0,0,4492,4533,4533,4533,1,1,1,1,'Puls',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71010,0,0,0,0,0,0,0,0,0,24,4101,4243,612,936,4387,4390,4545,0,0,0,5299,5299,5299,5299,12,12,12,12,'Salsa','COP');
|
|
INSERT INTO `synth_recipes` VALUES (71011,0,0,0,0,0,0,0,0,0,25,4096,4238,2271,0,0,0,0,0,0,0,2272,2272,2272,2272,2,4,6,8,'Roast Coffee Beans','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (71012,0,0,0,0,0,0,0,0,0,25,4096,4238,2503,0,0,0,0,0,0,0,5649,5649,5649,5649,2,6,8,8,'Roasted Almonds','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (71013,0,0,0,0,0,0,0,0,0,25,4096,4238,623,936,4366,4382,4387,4388,4389,4509,4560,4323,4323,4323,1,1,1,1,'Vegetable Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71014,0,0,0,0,0,0,0,0,0,25,4096,4238,8907,0,0,0,0,0,0,0,4560,4560,4560,4560,1,1,1,1,'Vegetable Soup','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (71015,0,0,0,0,0,0,0,0,0,26,4097,4239,622,936,4372,0,0,0,0,0,4376,4518,4518,4518,2,2,2,2,'Meat Jerky',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71016,0,0,0,0,0,0,0,0,0,26,4096,4238,610,636,4382,4444,4509,4571,0,0,4489,4534,4534,4534,1,1,1,1,'Vegetable Gruel',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71017,0,0,0,0,0,0,0,0,0,27,4096,4238,623,936,4400,4509,0,0,0,0,4456,4342,4342,4342,1,1,1,1,'Boiled Crab',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71018,0,0,0,0,0,0,0,0,0,27,4096,4238,936,1471,2201,4389,4483,4509,5450,5581,5618,5619,5619,5619,1,1,1,1,'Zoni','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (71019,0,0,0,0,0,0,0,0,0,28,4101,4243,1111,4358,4359,4372,0,0,0,0,17870,17871,17871,17871,4,2,4,8,'Meat Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71020,0,0,0,0,0,0,0,0,0,28,4101,4243,623,626,633,936,1590,4387,4390,5195,5194,5194,5194,5194,4,4,4,4,'Pomodoro Sauce','COP');
|
|
INSERT INTO `synth_recipes` VALUES (71021,0,0,0,0,0,0,0,0,0,28,4096,4238,620,636,4367,4382,4444,4509,0,0,4489,4534,4534,4534,1,1,1,1,'Vegetable Gruel',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71022,0,0,0,0,0,0,0,0,0,29,4096,4238,626,633,4359,0,0,0,0,0,4438,4519,4519,4519,1,1,1,1,'Dhalmel Steak',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71023,0,0,0,0,0,0,0,0,0,29,4099,4241,629,4509,17396,0,0,0,0,0,16998,16998,16998,16998,12,12,12,12,'Insect Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71024,0,0,0,0,0,0,0,0,0,29,4099,4241,631,4359,4509,4570,0,0,0,0,17018,17018,17018,17018,6,8,10,12,'Pet Fd. Gamma',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71025,0,0,0,0,0,0,0,0,0,29,4096,4238,693,936,4379,0,0,0,0,0,4380,4380,4380,4380,4,4,4,4,'Smoked Salmon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71026,0,0,0,0,0,0,0,0,0,30,4101,4243,4432,4432,0,0,0,0,0,0,4442,4442,4442,4442,1,1,1,1,'Pineapple Juice',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71027,0,0,0,0,0,0,0,0,0,30,4096,4238,615,936,1523,2214,2237,4509,5568,5575,5579,5580,5580,5580,1,1,1,1,'Yayla Corbasi','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (71028,0,0,0,0,0,0,0,0,0,30,4096,4238,627,633,936,2237,4435,4509,5568,5688,5890,5890,5890,5890,2,4,6,8,'Poultry Pitaru','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (71029,0,0,0,0,0,0,0,0,0,30,4096,4238,615,627,633,2237,4373,4447,4448,4570,5886,5886,5886,5886,2,4,6,8,'Elshena','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (71030,0,0,0,0,0,0,0,0,0,30,4101,4243,8908,0,0,0,0,0,0,0,4442,4442,4442,4442,1,1,1,1,'Pineapple Juice','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (71031,0,0,0,0,0,0,0,0,0,31,4103,4245,623,633,936,4291,4291,4291,4291,0,5652,5652,5652,5652,4,4,4,4,'Anchovy','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (71032,0,0,0,0,0,0,0,0,0,31,4103,4245,623,633,936,4470,4470,4470,4470,0,5652,5652,5652,5652,4,4,4,4,'Anchovy','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (71501,0,0,0,0,0,0,0,0,0,31,4100,4242,4379,0,0,0,0,0,0,0,5217,5217,5217,5217,3,6,9,12,'Salmon Eggs','COP');
|
|
INSERT INTO `synth_recipes` VALUES (71502,0,0,0,0,0,0,0,0,0,31,4101,4243,2343,4362,4509,5607,5607,0,0,0,2211,2211,2211,2211,2,4,6,8,'Carrot Paste',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71503,0,0,0,0,0,0,0,0,0,31,4096,4238,620,624,936,4509,0,0,0,0,4405,4604,4604,4604,4,2,3,4,'Rice Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71504,0,0,0,0,0,0,0,0,0,31,4099,4241,631,4360,4509,0,0,0,0,0,16996,16996,16996,16996,12,12,12,12,'Sardine Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71505,0,0,0,0,0,0,0,0,0,31,4099,4241,631,4509,5449,0,0,0,0,0,16996,16996,16996,16996,12,12,12,12,'Sardine Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71506,0,0,0,0,0,0,0,0,0,31,4099,4241,631,4509,5963,0,0,0,0,0,16996,16996,16996,16996,12,12,12,12,'Sardine Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71507,0,0,0,0,0,0,0,0,0,32,4096,4238,610,615,4357,4370,4504,4504,4504,4504,4510,4577,4577,4577,33,33,33,99,'Acorn Cookie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71508,0,0,0,0,0,0,0,0,0,32,4096,4238,610,612,615,4357,4370,4504,4504,4504,2393,2393,2393,2393,3,6,9,12,'Fire Biscuit','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (71509,0,0,0,0,0,0,0,0,0,32,4096,4238,936,4354,0,0,0,0,0,0,4404,4587,4587,4587,1,1,1,1,'Roast Trout',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71510,0,0,0,0,0,0,0,0,0,32,4096,4238,610,615,626,4357,4370,4504,4504,4504,2392,2392,2392,2392,3,6,9,12,'Pepper Biscuit','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (71511,0,0,0,0,0,0,0,0,0,32,4096,4238,936,5461,0,0,0,0,0,0,4404,4587,4587,4587,1,1,1,1,'Roast Trout',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71512,0,0,0,0,0,0,0,0,0,33,4099,4241,611,4354,4509,0,0,0,0,0,16999,16999,16999,16999,12,12,12,12,'Trout Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71513,0,0,0,0,0,0,0,0,0,33,4096,4238,614,615,4361,0,0,0,0,0,4459,4267,4267,4267,1,1,1,1,'Nebimonite Bake',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71514,0,0,0,0,0,0,0,0,0,33,4101,4243,4389,4389,4389,17306,0,0,0,0,17878,17878,17878,17878,4,6,8,10,'Lucky Carrot Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (71515,0,2041,0,0,0,0,0,0,0,33,4096,4238,612,614,633,936,1776,4382,4388,5650,5658,5658,5659,5659,2,4,2,4,'Ortolana','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (71516,0,0,0,0,0,0,0,0,0,33,4099,4241,611,4509,5461,0,0,0,0,0,16999,16999,16999,16999,12,12,12,12,'Trout Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71517,0,0,0,0,0,0,0,0,0,34,4096,4238,611,936,4509,0,0,0,0,0,4364,4591,4591,4591,4,4,4,4,'Black Bread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71518,0,0,0,0,0,0,0,0,0,34,4096,4238,610,936,4509,0,0,0,0,0,4499,4573,4573,4573,4,4,4,4,'Iron Bread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71519,0,2042,0,0,0,0,0,0,0,35,4096,4238,610,627,633,4378,4570,5568,0,0,5625,5626,5626,5626,1,1,1,1,'Maple Cake','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (71520,0,0,0,0,0,0,0,0,0,35,4099,4241,8909,0,0,0,0,0,0,0,17000,17000,17000,17000,12,12,12,12,'Meatball','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (71521,0,0,0,0,0,0,0,0,0,35,4096,4238,936,4375,4447,4450,4509,0,0,0,4419,4333,4333,4333,1,1,1,1,'Mushroom Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71522,0,0,0,0,0,0,0,0,0,35,4099,4241,610,4358,4509,0,0,0,0,0,17000,17000,17000,17000,12,12,12,12,'Meatball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71523,0,0,0,0,0,0,0,0,0,35,4096,4238,610,615,627,4570,5703,0,0,0,5766,5766,5767,5767,2,4,2,4,'Butter Crepe','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (71524,0,2042,0,0,0,0,0,0,0,35,4096,4238,627,2503,4362,4445,0,0,0,0,5779,5779,5779,5779,2,4,6,8,'Cherry Macaron','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (71525,0,0,0,0,0,0,0,0,0,36,4097,4239,622,936,5152,0,0,0,0,0,5196,5207,5207,5207,2,2,2,2,'Buffalo Jerky','COP');
|
|
INSERT INTO `synth_recipes` VALUES (71526,0,0,0,0,0,0,0,0,0,36,4098,4240,625,4365,4366,4389,4390,4432,4445,4468,4555,4321,4321,4321,1,1,1,1,'Windurst Salad',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71527,0,0,0,0,0,0,0,0,0,37,4096,4238,627,632,632,632,632,4378,0,0,4496,4497,4497,4497,12,1,1,1,'Bubble Chocolate',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71528,0,2042,0,0,0,0,0,0,0,37,4096,4238,627,632,632,632,632,1617,4378,0,5646,5646,5646,5646,3,6,9,12,'Bloody Chocolate','COP');
|
|
INSERT INTO `synth_recipes` VALUES (71529,0,0,0,0,0,0,0,0,0,37,4101,4243,4360,4360,4360,4360,0,0,0,0,17876,17877,17877,17877,2,1,2,3,'Fish Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71530,0,0,0,0,0,0,0,0,0,37,4101,4243,5449,5449,5449,5449,0,0,0,0,17876,17877,17877,17877,2,1,2,3,'Fish Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71531,0,0,0,0,0,0,0,0,0,37,4101,4243,5963,5963,5963,5963,0,0,0,0,17876,17877,17877,17877,2,1,2,3,'Fish Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71532,0,0,0,0,0,0,0,0,0,37,4101,4243,4382,4571,4571,5235,0,0,0,0,17895,17895,17895,17895,4,6,8,10,'Dancing Herbal Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (71533,0,0,0,0,0,0,0,0,0,38,4096,4238,630,913,0,0,0,0,0,0,4488,4488,4488,4488,1,1,1,1,'Jack-o\'-Lantern',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71534,0,0,0,0,0,0,0,0,0,38,4096,4238,612,614,4387,5581,0,0,0,0,4381,4381,4574,4574,6,12,6,12,'Meat Mithkabob',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71535,0,0,0,0,0,0,0,0,0,38,4096,4238,612,614,4387,4435,0,0,0,0,4381,4381,4574,4574,6,12,6,12,'Meat Mithkabob',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71536,0,0,0,0,0,0,0,0,0,38,4096,4238,3965,5233,5234,9193,9195,0,0,0,6466,6467,6467,6467,1,1,1,1,'Miso Soup','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (71537,0,0,0,0,0,0,0,0,0,39,4096,4238,633,936,4273,4356,4387,4390,5452,0,5590,5591,5591,5591,1,1,1,1,'Balik Sandvici','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (71538,0,0,0,0,0,2,0,0,0,39,4099,4241,825,2109,5232,0,0,0,0,0,5233,5233,5233,5233,4,6,9,12,'Cotton Tofu','COP');
|
|
INSERT INTO `synth_recipes` VALUES (71539,0,0,0,0,0,0,0,0,0,39,4099,4241,611,4400,4509,4570,0,0,0,0,17019,17019,17019,17019,6,8,10,12,'Pet Food Delta',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71540,0,2041,0,0,0,0,0,0,0,40,4096,4238,612,614,633,936,1776,4387,4388,5194,5213,5213,5213,5214,2,4,6,2,'Melanzane','COP');
|
|
INSERT INTO `synth_recipes` VALUES (71541,0,0,0,0,0,0,0,0,0,40,4101,4243,4412,4491,0,0,0,0,0,0,4424,4424,4424,4424,1,1,1,1,'Melon Juice',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (71542,0,0,0,0,0,0,0,0,0,40,4096,4238,614,622,1590,2561,5684,5747,0,0,5743,5744,5744,5744,1,1,1,1,'Marinara Pizza','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (71543,0,0,0,0,0,0,0,0,0,40,4098,4240,5187,0,0,0,0,0,0,0,5976,5977,5977,5977,1,1,1,1,'Ulbuconut Milk','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (71544,0,0,0,0,0,0,0,0,0,40,4098,4240,5966,0,0,0,0,0,0,0,5976,5977,5977,5977,1,1,1,1,'Ulbuconut Milk','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (71545,0,0,0,0,0,0,0,0,0,40,4096,4238,614,622,1590,2561,5684,5747,8740,0,6211,6211,6212,6212,6,8,6,8,'Marinara Slice','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (71546,0,0,0,0,0,0,0,0,0,40,4101,4243,8910,0,0,0,0,0,0,0,4424,4424,4424,4424,1,1,1,1,'Melon Juice','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (71547,0,2042,0,0,0,0,0,0,0,40,4096,4238,627,936,2214,2215,4378,5568,0,0,5577,5578,5578,5578,1,1,1,1,'Sutlac','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (72001,0,0,0,0,0,0,0,0,0,41,4103,4245,4363,4363,4363,4370,0,0,0,0,625,625,625,625,4,6,9,12,'Apple Vinegar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72002,0,0,0,0,0,0,0,0,0,41,4096,4238,4358,4387,4408,4408,4460,4555,5299,0,5172,5172,5173,5173,6,12,6,12,'Windurst Taco','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72003,0,0,0,0,0,0,0,0,0,41,4096,4238,620,624,936,4380,4509,0,0,0,4590,4605,4605,4605,4,2,2,2,'Salmon Rice Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72004,0,0,0,0,0,0,0,0,0,41,4101,4243,615,633,936,1840,0,0,0,0,2561,2561,2561,2561,4,6,9,12,'Pizza Dough','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72005,0,0,0,0,0,0,0,0,0,41,4103,4245,936,5217,0,0,0,0,0,0,5218,5218,5218,5218,3,3,6,9,'Salmon Roe','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72006,0,0,0,0,0,0,0,0,0,41,4096,4238,612,1111,4358,4509,16995,0,0,0,17897,17897,17897,17897,4,6,8,10,'Bubbling Carrion Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (72007,0,0,0,0,0,0,0,0,0,42,4101,4243,610,615,936,0,0,0,0,0,616,616,616,616,4,6,9,12,'Pie Dough',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72008,0,0,0,0,0,0,0,0,0,42,4096,4238,627,936,2236,2237,4378,4503,4509,5562,5596,5597,5597,5597,4,4,4,4,'Simit','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (72009,0,0,0,0,0,0,0,0,0,43,4101,4243,5452,5452,0,0,0,0,0,0,17876,17877,17877,17877,12,4,8,12,'Fish Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72010,0,0,0,0,0,0,0,0,0,43,4101,4243,936,4390,4390,4390,0,0,0,0,4425,4425,4425,4425,1,1,1,1,'Tomato Juice',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72011,0,2042,0,0,0,0,0,0,0,43,4096,4238,610,615,627,4378,4445,4570,0,0,5653,5654,5654,5654,4,1,1,1,'Cherry Muffin','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72012,0,0,0,0,0,0,0,0,0,43,4098,4240,3915,3915,3915,0,0,0,0,0,3916,3916,3916,3916,1,2,3,4,'Saffron','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (72013,0,0,0,0,0,0,0,0,0,44,4097,4239,627,1111,1523,2112,4570,5703,0,0,5729,5730,5730,5730,1,1,1,1,'Bavarois','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72014,0,2041,0,0,0,0,0,0,0,44,4101,4243,936,1840,0,0,0,0,0,0,1776,1776,1776,1776,1,2,3,4,'Spaghetti','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72015,0,0,0,0,0,0,0,0,0,44,4096,4238,610,615,936,4370,4509,0,0,0,4356,4292,4292,4292,4,4,4,4,'White Bread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72016,0,0,0,0,0,0,0,0,0,45,4096,4238,612,615,626,936,4387,4390,5569,5569,5586,5587,5587,5587,1,1,1,1,'Menemen','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (72017,0,0,0,0,0,0,0,0,0,45,4101,4243,5450,0,0,0,0,0,0,0,17876,17877,17877,17877,4,2,4,6,'Fish Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72018,0,0,0,0,0,0,0,0,0,45,4096,4238,619,4377,4390,4509,5740,0,0,0,5750,5751,5751,5751,1,1,1,1,'Goulash','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72019,0,0,0,0,0,0,0,0,0,45,4096,4238,619,4390,4509,5667,5740,0,0,0,5750,5751,5751,5751,1,1,1,1,'Goulash','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72020,0,0,0,0,0,0,0,0,0,45,4101,4243,4399,4399,0,0,0,0,0,0,17876,17877,17877,17877,12,4,8,12,'Fish Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72021,0,0,0,0,0,0,0,0,0,45,4101,4243,16995,17395,17397,17397,0,0,0,0,17896,17896,17896,17896,4,6,8,10,'Goblin Bug Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (72022,0,0,0,0,0,0,0,0,0,45,4096,4238,622,4368,4387,4425,4509,0,0,0,4420,4341,4341,4341,1,1,1,1,'Tomato Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72023,0,0,0,0,0,0,0,0,0,45,4101,4243,4480,0,0,0,0,0,0,0,17876,17877,17877,17877,4,2,4,6,'Fish Broth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72024,0,0,0,0,0,0,0,0,0,45,4099,4241,9099,9100,9101,9102,0,0,0,0,19326,19326,19326,19326,3,6,9,12,'Sea Dragon Liver','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (72025,0,2042,0,0,0,0,0,0,0,45,4096,4238,615,627,4499,4570,0,0,0,0,5782,5782,5782,5782,2,4,6,8,'Sugar Rusk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72026,0,2042,0,0,0,0,0,0,0,45,4096,4238,610,627,633,4378,4392,4570,5568,0,5629,5630,5630,5630,1,1,1,1,'Orange Cake','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (72027,0,2041,0,0,0,0,0,0,0,45,4101,4243,2702,0,0,0,0,0,0,0,2710,2710,2710,2710,1,2,3,4,'Soba Noodles','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72028,0,0,0,0,0,0,0,0,0,45,4098,4240,2155,2155,17397,0,0,0,0,0,17893,17893,17893,17893,4,6,8,10,'Wool Grease','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (72029,0,0,0,0,0,0,0,0,0,45,4096,4238,8911,0,0,0,0,0,0,0,5586,5586,5586,5586,1,1,1,1,'Menemen','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (72030,0,0,0,0,0,0,0,0,0,46,4097,4239,622,936,4482,0,0,0,0,0,4490,4490,5183,5183,4,4,4,4,'Pickled Herring',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72031,0,2041,0,0,0,0,0,0,0,46,4096,4238,612,614,626,633,1776,4387,5131,5194,5189,5189,5198,5198,2,4,2,4,'Vongole Rosso','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72032,0,0,0,0,0,0,0,0,0,46,4096,4238,610,633,4296,4570,0,0,0,0,5756,5756,5762,5762,6,12,6,12,'Green Curry Bun','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72033,0,2041,0,0,0,0,0,0,0,46,4101,4243,610,936,2113,4509,0,0,0,0,9196,9196,9196,9196,1,2,3,4,'Ramen Noodles','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (72034,0,0,0,0,0,0,0,0,0,47,4096,4238,610,615,627,628,4362,4509,0,0,4397,4520,4520,4520,33,33,33,99,'Cinna-cookie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72035,0,2042,0,0,0,0,0,0,0,47,4096,4238,610,615,627,639,639,4378,4509,4570,5557,5558,5558,5558,1,1,1,1,'Mont Blanc','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72036,0,0,0,0,0,0,0,0,0,47,4096,4238,610,2503,4370,4468,4496,4570,5703,0,5775,5775,5776,5776,2,4,2,4,'Chocolate Crepe','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72037,0,0,0,0,0,0,0,0,0,48,4096,4238,616,627,628,4362,4363,0,0,0,4413,4320,4320,4320,4,4,4,4,'Apple Pie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72038,0,0,0,0,0,0,0,0,0,48,4096,4238,622,623,4387,4425,4509,0,0,0,4420,4341,4341,4341,1,1,1,1,'Tomato Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72039,0,0,0,0,0,0,0,0,0,49,4096,4238,610,615,627,628,4509,4570,0,0,4397,4520,4520,4520,33,33,33,99,'Cinna-cookie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72040,0,0,0,0,0,0,0,0,0,49,4099,4241,611,4362,4509,5581,0,0,0,0,17020,17020,17020,17020,4,6,8,10,'Pet Fd. Epsilon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72041,0,0,0,0,0,0,0,0,0,49,4099,4241,611,4362,4435,4509,0,0,0,0,17020,17020,17020,17020,4,6,8,10,'Pet Fd. Epsilon',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72042,0,0,0,0,0,0,0,0,0,49,4096,4238,612,617,633,4317,4358,4366,4388,4444,5143,5143,5143,5143,1,1,1,1,'Goblin Stir-Fry','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72043,0,2040,0,0,0,0,0,0,0,49,4099,4241,620,1652,4400,4509,0,0,0,0,5721,5721,5722,5722,4,6,2,4,'Crab Sushi','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72044,0,0,0,0,0,0,0,0,0,49,4096,4238,5449,5452,5455,5456,5456,0,0,0,4398,4398,4575,4575,6,12,6,12,'Fish Mithkabob',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72045,0,0,0,0,0,0,0,0,0,49,4096,4238,614,620,936,4509,0,0,0,0,4467,4467,4280,4280,33,99,33,99,'Garlic Cracker',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72046,0,0,0,0,0,0,0,0,0,49,4096,4238,4360,4361,4399,4484,4484,0,0,0,4398,4398,4575,4575,6,12,6,12,'Fish Mithkabob',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72047,0,0,0,0,0,0,0,0,0,50,4096,4238,627,936,2237,4387,4509,5688,5908,17394,5891,5891,5891,5891,2,4,6,8,'Seafood Pitaru','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (72048,0,0,0,0,0,0,0,0,0,50,4096,4238,616,627,628,4363,4570,0,0,0,4413,4320,4320,4320,4,4,4,4,'Apple Pie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72049,0,0,0,0,0,0,0,0,0,50,4096,4238,1590,2561,4390,5194,5684,0,0,0,5695,5696,5696,5696,1,1,1,1,'Margherita Pizza','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72050,0,0,0,0,0,0,0,0,0,50,4096,4238,1590,2561,4390,5194,5684,8740,0,0,6213,6213,6214,6214,6,8,6,8,'Margherita Slice','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (72051,0,0,0,0,0,0,0,0,0,50,4096,4238,614,627,633,1695,2237,4570,5152,5651,5887,5887,5887,5887,2,4,6,8,'Montagna','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (72052,0,0,0,0,0,0,0,0,0,50,4103,4245,4431,4431,4431,4431,0,0,0,0,4441,4441,4441,4441,1,1,1,1,'Grape Juice',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72053,0,0,0,0,0,0,0,0,0,50,4096,4238,8912,0,0,0,0,0,0,0,4413,4413,4413,4413,4,4,4,4,'Apple Pie','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (72501,0,0,0,0,0,0,0,0,0,51,4096,4238,610,615,936,4362,4509,0,0,0,4391,4391,5182,5182,33,99,33,99,'Bretzel',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72502,0,0,0,0,0,0,0,0,0,51,4101,4243,4370,4378,4392,4392,0,0,0,0,4299,4299,4299,4299,1,1,1,1,'Orange au Lait',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72503,0,2043,0,0,0,0,0,0,0,51,4096,4238,2111,4368,4509,4570,5234,5469,5469,5651,5669,5670,5671,5671,1,1,1,1,'Loach Slop','WOTG'); -- there are differences for the HQ rate. I chose 1233 over 1223.
|
|
INSERT INTO `synth_recipes` VALUES (72504,0,0,0,0,0,0,0,0,0,52,4096,4238,615,4367,0,0,0,0,0,0,4553,5184,5184,5184,1,1,1,1,'Batagreen Saute',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72505,0,0,0,0,0,0,0,0,0,52,4099,4241,610,4472,4472,4472,4509,0,0,0,16997,16997,16997,16997,12,12,12,12,'Crayfish Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72506,0,0,0,0,0,0,0,0,0,52,4101,4243,2645,4389,4483,4509,0,0,0,0,2568,2568,2568,2568,4,6,8,10,'Lethe Consomme','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72507,0,0,0,0,0,0,0,0,0,52,4099,4241,610,4509,5453,0,0,0,0,0,16997,16997,16997,16997,12,12,12,12,'Crayfish Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72508,0,0,0,0,0,0,0,0,0,52,4099,4241,610,4383,4509,0,0,0,0,0,16997,16997,16997,16997,12,12,12,12,'Crayfish Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72509,0,2042,0,0,0,0,0,0,0,52,4096,4238,616,616,616,627,4365,4378,4509,4570,5559,5560,5560,5560,1,1,1,1,'Mille-Feuille','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72510,0,0,0,0,0,0,0,0,0,52,4101,4243,1981,1981,1982,1983,4366,4545,0,0,17885,17886,17886,17886,4,2,4,6,'Grasshopper Broth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72511,0,0,0,0,0,0,0,0,0,52,4096,4238,936,5953,0,0,0,0,0,0,6583,6584,6584,6584,1,1,1,1,'Salted Dragonfly Trout','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (72512,0,0,0,0,0,0,0,0,0,53,4096,4238,610,615,936,4509,4570,0,0,0,4391,4391,5182,5182,33,99,33,99,'Bretzel',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72513,0,0,0,0,0,0,0,0,0,53,4096,4238,633,4429,0,0,0,0,0,0,4457,4588,4588,4588,1,1,1,1,'Eel Kabob',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72514,0,0,0,0,0,0,0,0,0,53,4096,4238,633,5458,0,0,0,0,0,0,4457,4588,4588,4588,1,1,1,1,'Eel Kabob',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72515,0,2042,0,0,0,0,0,0,0,53,4096,4238,610,615,627,2273,4378,4570,0,0,5655,5656,5656,5656,4,4,4,4,'Coffee Muffin','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72516,0,0,0,0,0,0,0,0,0,54,4103,4245,620,936,4289,0,0,0,0,0,4407,5186,5186,5186,1,1,1,1,'Carp Sushi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72517,0,0,0,0,0,0,0,0,0,54,4103,4245,620,936,4401,0,0,0,0,0,4407,5186,5186,5186,1,1,1,1,'Carp Sushi',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72518,0,2042,0,0,0,0,0,0,0,54,4096,4238,615,627,1111,2112,4357,4365,4378,4509,4556,5555,5555,5555,1,1,1,1,'Icecap Rolanberry','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72519,0,0,0,0,0,0,0,0,0,54,4096,4238,615,627,1111,4357,4365,4378,4509,0,4556,4594,4594,4594,1,1,1,1,'Icecap Rolanberry',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72520,0,2040,0,0,0,0,0,0,0,54,4099,4241,620,1652,4509,5164,5473,0,0,0,5691,5692,5692,5692,2,2,3,4,'Shrimp Sushi','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72521,0,0,0,0,0,0,0,0,0,54,4097,4239,627,1111,2112,4445,4570,5703,0,0,5745,5746,5746,5746,1,1,1,1,'Cherry Bavarois','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72522,0,0,0,0,0,0,0,0,0,54,4096,4238,610,633,4517,4570,0,0,0,0,5757,5757,5763,5763,6,8,6,8,'Yellow Curry Bun','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72523,0,0,0,0,0,0,0,0,0,55,4096,4238,615,4571,0,0,0,0,0,0,4572,4293,4293,4293,1,1,1,1,'Beaugreen Saute',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72524,0,0,0,0,0,0,0,0,0,55,4096,4238,626,936,4362,4509,0,0,0,0,4417,4521,4521,4521,1,1,1,1,'Egg Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72525,0,0,0,0,0,0,1,0,0,55,4099,4241,879,1656,4299,4299,4299,4299,0,0,16223,16223,16223,16223,1,1,1,1,'Orange Tank','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (72526,0,2042,0,0,0,0,0,0,0,55,4096,4238,610,627,630,633,4378,4570,5568,0,5631,5631,5631,5631,1,1,1,1,'Pumpkin Cake','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (72527,0,2042,0,0,0,0,0,0,0,55,4096,4238,627,2271,2503,4362,0,0,0,0,5780,5780,5780,5780,2,4,6,8,'Coffee Macaron','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72528,0,0,0,0,0,0,0,0,0,55,4096,4238,8913,0,0,0,0,0,0,0,4572,4572,4572,4572,1,1,1,1,'Beaugreen Saute','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (72529,0,0,0,0,0,0,0,0,0,56,4096,4238,610,615,627,4468,4496,4496,4509,4570,4563,4287,4287,4287,1,1,1,1,'Pamama Tart',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72530,0,2041,0,0,0,0,0,0,0,56,4096,4238,614,626,1590,1776,4378,4460,4570,5196,5190,5190,5199,5199,2,4,2,4,'Carbonara','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72531,0,0,0,0,0,0,0,0,0,56,4097,4239,4370,4441,4509,0,0,0,0,0,4156,4156,4156,4156,1,1,1,1,'Mulsum',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72532,0,2041,0,0,0,0,0,0,0,56,4096,4238,624,2110,2710,4509,5164,5234,5569,0,5727,5728,5728,5728,1,1,1,1,'Zaru Soba','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72533,0,0,0,0,0,0,0,0,0,56,4096,4238,619,893,4358,4382,4389,0,0,0,5752,5752,5753,5753,2,4,2,4,'Pot-au-feu','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72534,0,0,0,0,0,0,0,0,0,57,4096,4238,616,626,936,4375,4378,4460,4553,4570,5168,5168,5169,5169,6,12,6,12,'Bataquiche','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72535,0,0,0,0,0,0,0,0,0,57,4096,4238,627,2156,4509,0,0,0,0,0,5570,5594,5594,5594,1,1,1,1,'Chai',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72536,0,0,0,0,0,0,0,0,0,57,4096,4238,626,936,4509,4570,0,0,0,0,4417,4521,4521,4521,1,1,1,1,'Egg Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72537,0,0,0,0,0,0,0,0,0,57,4101,4243,1984,1984,1985,2016,17395,17397,0,0,17887,17888,17888,17888,4,2,4,8,'Mole Broth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72538,0,0,0,0,0,0,0,0,0,57,4101,4243,924,930,2014,0,0,0,0,0,17879,17879,17879,17879,4,6,8,10,'Curdled Plasma Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (72539,0,0,0,0,0,0,0,0,0,58,4096,4238,610,615,617,627,4362,4509,0,0,4394,4576,4576,4576,33,33,33,99,'Ginger Cookie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72540,0,0,0,0,0,0,0,0,0,58,4096,4238,615,626,936,2213,2214,4503,4509,5581,5584,5585,5585,5585,1,1,1,1,'Ic Pilav','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (72541,0,2040,0,0,0,0,0,0,0,58,4099,4241,617,620,1652,4509,5448,0,0,0,5215,5215,5216,5216,1,2,1,2,'Tentacle Sushi','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (72542,0,2040,0,0,0,0,0,0,0,58,4099,4241,617,620,1652,4509,5128,0,0,0,5215,5215,5216,5216,1,2,1,2,'Tentacle Sushi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72543,0,0,0,0,0,0,0,0,0,58,4101,4243,1111,4358,4372,4435,0,0,0,0,17874,17874,17874,17874,4,6,8,10,'Cunning Brain Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (72544,0,0,0,0,0,0,0,0,0,59,4096,4238,610,615,627,936,4460,4509,5568,5575,5637,5638,5638,5638,33,33,33,99,'Pogaca','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (72545,0,0,0,0,0,0,0,0,0,59,4096,4238,612,936,4374,4375,4447,4509,4565,4566,4543,4543,4543,4543,1,1,1,1,'Goblin Mushpot',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72546,0,0,0,0,0,0,0,0,0,59,4099,4241,610,4362,4377,4509,0,0,0,0,17021,17021,17021,17021,4,6,8,10,'Pet Food Zeta','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72547,0,0,0,0,0,0,0,0,40,59,4097,4239,1524,1524,1524,1524,1524,1524,1524,1524,1443,1443,1443,1443,1,2,3,4,'Dried Mugwort','ROTZ');
|
|
INSERT INTO `synth_recipes` VALUES (72548,0,0,0,0,0,0,0,0,0,59,4096,4238,612,620,936,4509,0,0,0,0,4466,4281,4281,4281,33,33,33,99,'Spicy Cracker',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72549,0,0,0,0,0,0,0,0,0,59,4096,4238,2561,5194,5195,5660,5680,5684,0,0,5697,5698,5698,5698,1,1,1,1,'Pepperoni Pizza','WOTG'); -- FFXIclopedia has @ 60. Others have at 59.
|
|
INSERT INTO `synth_recipes` VALUES (72550,0,0,0,0,0,0,0,0,0,59,4096,4238,610,614,4390,4570,4578,5684,5703,0,5771,5771,5772,5772,2,4,2,4,'Ham & Ch. Crepe','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (72551,0,0,0,0,0,0,0,0,0,59,4096,4238,2561,5194,5195,5660,5680,5684,8740,0,6215,6215,6216,6216,6,8,6,8,'Pepperoni Slice','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (72552,0,0,0,0,0,0,0,0,0,60,4096,4238,610,615,617,627,4509,4570,0,0,4394,4576,4576,4576,33,33,33,99,'Ginger Cookie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72553,0,0,0,0,0,0,0,0,0,60,4096,4238,616,936,4375,4378,4460,4570,4572,0,5170,5170,5171,5171,6,12,6,12,'Green Quiche','COP');
|
|
INSERT INTO `synth_recipes` VALUES (72554,0,0,0,0,0,0,0,0,0,60,4096,4238,610,615,936,4509,6394,0,0,0,6396,6396,6397,6397,3,6,3,6,'Cutlet Sandwich','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (72555,0,0,0,0,0,0,0,0,0,60,4096,4238,8914,0,0,0,0,0,0,0,5170,5170,5170,5170,1,1,1,1,'Green Quiche','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (72556,0,0,0,0,0,0,0,0,0,60,4096,4238,626,3965,3965,4387,4509,5948,0,0,5998,5999,5999,5999,1,1,1,1,'Adoulinian Soup','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (72557,0,0,0,0,0,0,0,0,0,60,4103,4245,4445,4503,4503,4503,0,0,0,0,4558,4558,4558,4558,1,1,1,1,'Yagudo Drink',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (72558,0,0,0,0,0,0,0,0,0,61,4096,4238,614,626,936,4387,4390,5571,0,0,5598,5599,5599,5599,1,1,1,1,'Sis Kebabi','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73001,0,0,0,0,0,0,0,0,0,61,4096,4238,612,614,615,936,5568,5568,5575,0,5642,5643,5643,5643,1,1,1,1,'Cilbir','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73002,0,0,0,0,0,0,0,0,0,61,4096,4238,631,880,936,952,4357,4448,4509,0,4458,4328,4328,4328,4,4,4,4,'Goblin Bread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73003,0,2043,0,0,0,0,0,0,0,61,4096,4238,2110,4375,4383,4461,4509,5233,5234,5235,5238,5239,5240,5240,1,1,1,1,'Seafood Stewpot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73004,0,0,0,0,0,0,0,0,0,61,4103,4245,936,4378,0,0,0,0,0,0,4460,4593,4593,4593,4,4,4,4,'Stone Cheese',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73005,0,0,0,0,0,0,0,0,0,61,4101,4243,612,626,633,936,4390,5652,0,0,5747,5747,5747,5747,4,4,4,4,'Marinara Sauce','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73006,0,0,0,0,0,0,0,0,11,62,4097,4239,610,615,627,633,4378,4570,17306,0,5147,5155,5155,5155,4,4,6,8,'Snoll Gelato','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73007,0,0,0,0,0,0,0,0,0,62,4101,4243,4363,4363,4370,4378,0,0,0,0,4300,4300,4300,4300,1,1,1,1,'Apple au Lait',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73008,0,0,0,0,0,0,0,0,0,62,4096,4238,616,627,628,4362,4412,0,0,0,4421,4523,4523,4523,4,4,4,4,'Melon Pie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73009,0,0,0,0,0,0,0,0,0,62,4101,4243,1981,1981,4366,4545,17396,17397,0,0,17898,17898,17898,17898,4,6,8,10,'C. Grass. Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73010,0,2042,0,0,0,0,0,0,11,62,4097,4239,610,615,627,633,2112,4378,4570,17306,5147,5556,5556,5556,4,4,6,8,'Snoll Gelato','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73011,0,0,0,0,0,0,0,0,0,62,4101,4243,924,1979,2013,2014,2015,0,0,0,17889,17890,17890,17890,4,2,4,8,'Blood Broth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73012,0,0,0,0,0,0,0,0,0,63,4096,4238,612,614,626,936,4390,5451,0,0,5600,5601,5601,5601,1,1,1,1,'Balik Sis','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73013,0,0,9,0,0,0,0,0,0,63,4096,4238,626,638,691,936,4372,0,0,0,4578,4578,4578,4578,12,12,12,12,'Sausage',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73014,0,0,0,0,0,0,0,0,0,63,4101,4243,1984,1984,1985,2016,17396,17397,0,0,17887,17888,17888,17888,4,2,4,6,'Mole Broth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73015,0,2040,0,0,0,0,0,0,0,63,4099,4241,620,1652,4379,4509,5164,0,0,0,5663,5663,5664,5664,4,6,2,4,'Salmon Sushi','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73016,0,0,0,0,0,0,0,0,0,63,4101,4243,619,2645,4461,4509,0,0,0,0,2569,2569,2569,2569,4,6,8,10,'Lethe Potage','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73017,0,0,0,0,0,0,0,0,0,63,4101,4243,1111,4358,4372,5581,0,0,0,0,17875,17875,17875,17875,4,6,8,10,'Razor Brain Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73018,0,0,0,0,0,0,0,0,0,63,4101,4243,5135,5449,5454,0,0,0,0,0,17904,17904,17904,17904,4,6,8,10,'Briny Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73019,0,0,0,0,0,0,0,0,0,64,4096,4238,622,936,4515,0,0,0,0,0,4536,4326,4326,4326,1,1,1,1,'Blackened Frog',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73020,0,0,0,0,0,0,0,0,0,64,4096,4238,616,627,628,4412,4570,0,0,0,4421,4523,4523,4523,4,4,4,4,'Melon Pie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73021,0,2040,0,0,0,0,0,0,0,64,4099,4241,620,1652,4509,5164,5475,0,0,0,5693,5694,5694,5694,4,2,4,6,'Octopus Sushi','WOTG'); -- These are all over the place. Left results as NQx4, HQx2, HQx4, HQx6. Though they could be 4,6,4,6 or 4,6,2,4.
|
|
INSERT INTO `synth_recipes` VALUES (73022,0,0,0,0,0,0,0,0,0,64,4096,4238,610,633,4297,4570,0,0,0,0,5758,5758,5764,5764,6,8,6,8,'Black Curry Bun','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73023,0,2040,0,0,0,0,0,0,0,64,4099,4241,620,1652,4509,5164,5961,5961,0,0,5693,5694,5694,5694,4,2,4,6,'Octopus Sushi','SOA'); -- see above
|
|
INSERT INTO `synth_recipes` VALUES (73024,0,2040,0,0,0,0,0,0,0,64,4099,4241,620,1652,4509,5164,5962,5962,5962,0,5693,5694,5694,5694,4,2,4,6,'Octopus Sushi','SOA'); -- see above
|
|
INSERT INTO `synth_recipes` VALUES (73025,0,0,0,0,0,0,0,0,0,64,4096,4238,622,936,5993,0,0,0,0,0,4536,4326,4326,4326,1,1,1,1,'Blackened Frog','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (73026,0,0,0,0,0,0,0,0,0,65,4096,4238,8915,0,0,0,0,0,0,0,5731,5731,5731,5731,1,1,1,1,'Ratatouille','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (73027,0,2042,0,0,0,0,0,0,0,65,4096,4238,615,4496,4496,4499,4570,0,0,0,5783,5783,5783,5783,2,4,6,8,'Chocolate Rusk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73028,0,0,0,0,0,0,0,0,0,65,4096,4238,936,4509,5954,0,0,0,0,0,5980,5981,5981,5981,2,2,4,6,'Boiled Barnacles','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (73029,0,0,0,0,0,0,0,0,0,65,4101,4243,1774,1984,1985,2016,17396,17396,0,0,17899,17899,17899,17899,4,6,8,10,'Savage Mole Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73030,0,2042,0,0,0,0,0,0,0,65,4096,4238,610,616,627,4378,4431,4445,4509,4570,5614,5615,5615,5615,1,1,1,1,'Konigskuchen','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73031,0,0,0,0,0,0,0,0,0,65,4096,4238,614,623,633,4387,4388,4390,5726,5740,5731,5732,5732,5732,1,1,1,1,'Ratatouille','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73032,0,2042,0,0,0,0,0,0,0,65,4096,4238,615,1840,2213,4378,5562,5562,5562,0,5572,5573,5573,5573,1,1,1,1,'Irmik Helvasi','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73033,0,0,0,0,0,0,0,0,0,65,4096,4238,630,638,936,4378,4509,0,0,0,4430,4522,4522,4522,1,1,1,1,'Pumpkin Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73034,0,0,0,0,0,0,0,0,0,65,4096,4238,623,626,633,936,4444,5152,0,0,5142,5157,5157,5157,1,1,1,1,'Bison Steak','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73035,0,0,0,0,0,0,1,0,0,66,4099,4241,879,1656,4300,4300,4300,4300,0,0,16224,16224,16224,16224,1,1,1,1,'Apple Tank','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73036,0,0,0,0,0,0,0,0,0,66,4096,4238,4362,4366,4389,4509,0,0,0,0,4487,4595,4595,4595,1,1,1,1,'Colored Egg',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73037,0,2041,0,0,0,0,0,0,0,66,4096,4238,614,626,633,1590,1776,4387,4390,5448,5193,5193,5202,5202,2,4,2,4,'Nero di Seppia','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73038,0,2041,0,0,0,0,0,0,0,66,4096,4238,614,626,633,1590,1776,4387,4390,5128,5193,5193,5202,5202,2,4,2,4,'Nero di Seppia','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73039,0,0,0,0,0,0,0,0,0,66,4096,4238,610,615,936,4370,4509,4578,0,0,4396,4396,4396,4396,4,4,4,4,'Sausage Roll',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73040,0,0,0,0,0,0,0,0,0,67,4096,4238,631,898,900,924,936,4448,4509,16995,4465,4465,4465,4465,1,1,1,1,'Goblin Stew','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73041,0,2040,0,0,0,0,0,0,0,67,4099,4241,620,624,1652,4509,5218,0,0,0,5219,5219,5220,5220,1,2,1,1,'Ikra Gunkan','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73042,0,0,0,0,0,0,0,0,0,67,4096,4238,610,615,627,936,4431,4509,0,0,4546,4546,4546,4546,1,1,1,1,'Raisin Bread',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73043,0,0,0,0,0,0,0,0,0,67,4101,4243,1111,1118,1121,1980,0,0,0,0,17891,17892,17892,17892,4,2,4,6,'Antica Broth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73044,0,0,0,0,0,0,0,0,0,68,4096,4238,627,2273,4509,0,0,0,0,0,5592,5593,5593,5593,1,1,1,1,'Imperial Coffee','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73045,0,0,0,0,0,0,0,0,0,68,4096,4238,4366,4389,4509,4570,0,0,0,0,4487,4595,4595,4595,1,1,1,1,'Colored Egg',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73046,0,0,0,0,0,0,0,0,0,68,4101,4243,1111,4358,4372,5755,0,0,0,0,17901,17901,17901,17901,4,6,8,10,'Burning Carrion Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73047,0,0,0,0,0,0,0,0,0,68,4096,4238,620,936,4383,4509,0,0,0,0,5635,5636,5636,5636,33,33,33,99,'Shrimp Cracker','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73048,0,0,0,0,0,0,0,0,0,68,4096,4238,620,936,4509,5453,0,0,0,0,5635,5636,5636,5636,33,33,33,99,'Shrimp Cracker','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73049,0,0,0,0,0,0,0,0,0,68,4096,4238,615,622,623,626,936,4514,4514,4514,4559,4294,4294,4294,1,1,1,1,'Herb Quus',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73050,0,0,0,0,0,0,0,0,0,68,4096,4238,622,1590,2561,5194,5652,5684,0,0,5699,5700,5700,5700,1,1,1,1,'Anchovy Pizza','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73051,0,0,0,0,0,0,0,0,0,68,4096,4238,622,1590,2561,5194,5652,5684,8740,0,6217,6217,6218,6218,6,8,6,8,'Anchovy Slice','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (73052,0,0,0,0,0,0,0,0,0,69,4103,4245,610,898,924,936,4387,4509,5208,5209,5210,5210,5210,5210,1,1,1,1,'Adamantoise Soup','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73053,0,2042,0,0,0,0,0,0,0,69,4096,4238,610,615,627,4365,4365,4378,4509,4570,5542,5543,5543,5543,1,1,1,1,'Gateau aux Fraises','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73054,0,0,0,0,0,0,0,0,0,69,4096,4238,612,4366,4372,4390,4408,4425,4460,0,4506,4348,4348,4348,1,1,1,1,'Mutton Tortilla',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73055,0,0,0,0,0,0,0,0,0,69,4099,4241,610,4509,5152,5568,0,0,0,0,17022,17022,17022,17022,4,6,8,10,'Pet Food Eta','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73056,0,0,0,0,0,0,0,0,0,70,4096,4238,610,619,628,936,4359,4387,4390,4509,4433,4589,4589,4589,1,1,1,1,'Dhalmel Stew',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73057,0,0,0,0,0,0,0,0,0,70,4096,4238,8916,0,0,0,0,0,0,0,4494,4494,4494,4494,1,1,1,1,'San d\'Orian Tea','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (73058,0,0,0,0,0,0,0,0,0,70,4096,4238,627,635,638,4378,4509,0,0,0,4494,4524,4524,4524,1,1,1,1,'San d\'Orian Tea',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73059,0,0,0,0,0,0,0,0,0,70,4101,4243,1111,4359,4362,4435,4570,0,0,0,17883,17883,17883,17883,4,6,8,10,'Mellow Bird Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73060,0,2040,0,0,0,0,0,0,0,70,4099,4241,620,1652,4474,4509,5164,0,0,0,5148,5162,5162,5162,6,6,8,10,'Squid Sushi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73061,0,0,0,0,0,0,0,0,0,70,4096,4238,615,4356,4409,5688,0,0,0,0,6599,6599,6600,6600,6,8,6,8,'Egg Sandwich','TVR');
|
|
INSERT INTO `synth_recipes` VALUES (73501,0,2043,0,0,0,0,0,0,0,71,4096,4238,2110,4373,4400,4450,4509,5233,5234,5236,5544,5545,5546,5546,1,1,1,1,'Crab Stewpot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73502,0,2041,0,0,0,0,0,0,0,71,4096,4238,614,633,936,1776,5123,5194,5448,5473,5719,5719,5720,5720,2,4,2,4,'Marinara','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73503,0,0,0,0,0,0,0,0,0,71,4096,4238,625,930,939,939,939,1111,4382,4509,4453,4340,4340,4340,1,1,1,1,'Eyeball Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73504,0,0,0,0,0,0,0,0,0,71,4096,4238,617,898,936,4375,4389,4402,4504,4509,4418,4337,4337,4337,1,1,1,1,'Turtle Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73505,0,0,0,0,0,0,0,0,0,72,4096,4238,610,633,4298,4570,0,0,0,0,5759,5759,5765,5765,6,8,6,8,'Red Curry Bun','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73506,0,0,0,0,0,0,0,0,0,72,4096,4238,610,628,4352,4363,4370,4570,5703,0,5777,5777,5778,5778,2,4,2,4,'Pear Crepe','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73507,0,0,0,0,0,0,0,0,0,72,4096,4238,614,617,936,4389,4390,4435,4450,4509,4547,4547,4547,4547,1,1,1,1,'Boiled Cockatrice',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73508,0,2040,0,0,0,0,0,0,0,72,4099,4241,620,1652,4509,5164,5454,0,0,0,5176,5176,5177,5177,4,6,2,4,'Bream Sushi','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73509,0,2040,0,0,0,0,0,0,0,72,4099,4241,620,1652,4461,4509,5164,0,0,0,5176,5176,5177,5177,4,6,2,4,'Bream Sushi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73510,0,0,0,0,0,0,0,0,0,72,4101,4243,4352,4352,4370,4378,0,0,0,0,4301,4301,4301,4301,1,1,1,1,'Pear au Lait',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73511,0,0,0,0,0,0,0,0,0,73,4101,4243,930,1979,2013,2014,2015,0,0,0,17889,17890,17890,17890,4,2,4,6,'Blood Broth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73512,0,0,0,0,0,0,0,0,0,73,4096,4238,610,615,626,633,936,4379,0,0,4583,4347,4347,4347,1,1,1,1,'Salmon Meuniere',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73513,0,0,0,0,0,0,0,0,0,73,4103,4245,936,2464,5703,5703,0,0,0,0,5684,5684,5684,5684,4,6,8,10,'Chalaimbille','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73514,0,0,0,0,0,0,0,0,0,74,4096,4238,610,619,625,633,4483,4483,4570,5165,5145,5159,5159,5159,1,1,1,1,'Fish & Chips','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73515,0,0,0,0,0,0,0,0,0,74,4096,4238,614,615,620,626,633,4375,4448,4509,4434,4330,4330,4330,1,1,1,1,'Mushroom Risotto',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73516,0,0,0,0,0,0,0,0,0,74,4096,4238,610,626,936,4366,4378,5755,0,0,5760,5761,5761,5761,1,1,1,1,'Kohlrouladen','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73517,0,0,0,0,0,0,0,0,0,74,4096,4238,610,619,625,633,4313,4570,5165,0,5145,5159,5159,5159,1,1,1,1,'Fish & Chips','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73518,0,2042,0,0,0,0,0,0,0,75,4096,4238,627,2503,4273,4362,0,0,0,0,5781,5781,5781,5781,2,4,6,8,'Kitron Macaron','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (73519,0,0,0,0,0,0,0,0,0,75,4098,4240,534,618,2203,2343,4366,4386,5456,5607,2207,2346,2346,2346,1,1,1,1,'Celerity Salad',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73520,0,0,0,0,0,0,0,0,0,75,4096,4238,615,616,626,936,4359,4387,4389,4450,4411,4322,4322,4322,4,4,4,4,'Dhalmel Pie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73521,0,0,0,0,0,0,0,0,0,75,4098,4240,534,618,2203,2343,4366,4386,4484,5607,2207,2346,2346,2346,1,1,1,1,'Celerity Salad',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73522,0,0,0,0,0,0,0,0,0,75,4096,4238,627,936,2237,4409,4509,5196,5684,5907,5892,5892,5892,5892,2,4,6,8,'B.E.W. Pitaru','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73523,0,2042,0,0,0,0,0,0,0,75,4096,4238,610,627,633,4273,4378,4570,5568,5575,5627,5628,5628,5628,1,1,1,1,'Yogurt Cake','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73524,0,0,0,0,0,0,0,0,0,75,4096,4238,627,633,2237,4570,5131,5473,5475,5703,5888,5888,5888,5888,2,4,6,8,'Maringna','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73525,0,0,0,0,0,0,0,0,0,75,4096,4238,614,615,626,633,936,4388,4388,5575,5582,5583,5583,5583,1,1,1,1,'Patlican Salata','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73526,0,0,0,0,0,0,0,0,0,75,4098,4240,9519,0,0,0,0,0,0,0,2207,2207,2207,2207,1,1,1,1,'Celerity Salad','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (73527,0,0,0,0,0,0,0,0,0,76,4096,4238,618,623,1475,1590,4472,4509,4571,0,4296,4296,4296,4296,1,1,1,1,'Green Curry',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73528,0,0,0,0,0,0,1,0,0,76,4099,4241,879,1656,4301,4301,4301,4301,0,0,16225,16225,16225,16225,1,1,1,1,'Pear Tank','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73529,0,0,0,0,0,0,0,0,0,76,4096,4238,610,614,626,936,4358,4460,4509,4570,4507,4349,4349,4349,1,1,1,1,'Rarab Meatball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73530,0,2041,0,0,0,0,0,0,0,76,4096,4238,614,633,936,1590,1776,4387,5194,5450,5623,5623,5624,5624,2,4,2,4,'Tonno Rosso','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73531,0,2041,0,0,0,0,0,0,0,76,4096,4238,614,633,936,1590,1776,4387,4480,5194,5623,5623,5624,5624,2,4,2,4,'Tonno Rosso','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73532,0,0,0,0,0,0,0,0,0,77,4096,4238,619,626,633,936,4372,4387,4390,4509,4439,4284,4284,4284,1,1,1,1,'Navarin',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73533,0,0,0,0,0,0,0,0,0,77,4096,4238,619,626,936,4378,4387,4389,4509,5457,4601,4601,4601,4601,1,1,1,1,'Sopa Pez Blanco',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73534,0,0,0,0,0,0,0,0,0,77,4096,4238,619,626,936,4378,4387,4389,4509,5454,4440,4440,4440,4440,1,1,1,1,'Whitefish Stew',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73535,0,0,0,0,0,0,0,0,0,77,4096,4238,619,626,936,4378,4384,4387,4389,4509,4601,4601,4601,4601,1,1,1,1,'Sopa Pez Blanco',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73536,0,2040,0,0,0,0,0,0,0,77,4099,4241,620,1652,4509,5164,5450,0,0,0,5150,5150,5153,5153,4,6,1,2,'Tuna Sushi','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (73537,0,0,0,0,0,0,0,0,0,77,4096,4238,619,626,936,4378,4387,4389,4461,4509,4440,4440,4440,4440,1,1,1,1,'Whitefish Stew',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73538,0,2040,0,0,0,0,0,0,0,77,4099,4241,620,1652,4480,4509,5164,0,0,0,5150,5150,5153,5153,4,6,1,2,'Tuna Sushi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73539,0,0,0,0,0,0,0,0,0,78,4096,4238,622,623,936,4579,0,0,0,0,4581,4329,4329,4329,1,1,1,1,'Blackened Newt',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73540,0,2042,3,0,0,0,0,0,0,78,4096,4238,610,615,623,627,632,4378,4496,4570,5550,5551,5551,5551,1,1,1,1,'Buche au Chocolat','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73541,0,0,0,0,0,0,0,0,0,78,4096,4238,616,617,626,4357,4370,4388,4472,4505,4539,4325,4325,4325,4,4,4,4,'Goblin Pie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73542,0,0,0,0,0,0,0,0,0,78,4096,4238,610,1555,2237,4509,0,0,0,0,17900,17900,17900,17900,4,6,8,10,'Cloudy Wheat Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73543,0,0,0,0,0,0,0,0,0,79,4096,4238,627,632,632,632,632,4370,4378,4509,4498,4283,4283,4283,1,1,1,1,'Chocomilk',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73544,0,0,0,0,0,0,0,0,0,79,4096,4238,614,617,627,633,4357,4387,4389,4509,4552,4552,4552,4552,1,1,1,1,'Herb Crawler Eggs',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73545,0,0,0,0,0,0,0,0,0,79,4096,4238,622,623,936,5125,0,0,0,0,4581,4329,4329,4329,1,1,1,1,'Blackened Newt','COP');
|
|
INSERT INTO `synth_recipes` VALUES (73546,0,0,0,0,0,0,0,0,0,79,4096,4238,4399,4484,4484,5961,5963,0,0,0,5982,5982,5983,5983,6,12,6,12,'Senroh Skewer','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (73547,0,0,0,0,0,0,0,0,0,79,4096,4238,4399,4484,4484,5962,5962,5962,5963,0,5982,5982,5983,5983,6,12,6,12,'Senroh Skewer','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (73548,0,0,0,0,0,0,0,0,0,79,4099,4241,610,4509,5569,5755,0,0,0,0,17023,17023,17023,17023,4,6,8,10,'Pet Food Theta','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73549,0,0,0,0,0,0,0,0,0,80,4101,4243,1111,4471,5152,0,0,0,0,0,17902,17902,17902,17902,4,6,8,10,'Lucky Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (73550,0,0,0,0,0,0,0,0,0,80,4096,4238,620,2111,4368,4387,4570,6394,0,0,6406,6407,6407,6407,1,1,1,1,'Pork Cutlet Rice Bowl','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (73551,0,0,0,0,0,0,0,0,0,80,4096,4238,610,615,627,4392,4392,4570,0,0,4393,4332,4332,4332,1,1,1,1,'Orange Kuchen',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73552,0,0,0,0,0,0,0,0,0,80,4096,4238,615,623,936,4432,4484,4484,4509,0,4554,4554,4554,4554,1,1,1,1,'Shallops Tropicale',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (73553,0,2042,0,0,0,0,0,0,0,80,4096,4238,615,627,4362,4445,5562,5649,0,0,5645,5645,5645,5645,3,6,9,12,'Witch Nougat','TOAU'); -- BG has Selbina Milk (4378) listed where JP and FFXIclopedia have Selbina Butter.
|
|
INSERT INTO `synth_recipes` VALUES (73554,0,0,0,0,0,0,0,0,0,80,4096,4238,9520,0,0,0,0,0,0,0,4554,4554,4554,4554,1,1,1,1,'Shallops Tropicale','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (73555,0,0,0,0,0,0,0,0,0,81,4101,4243,4366,4382,4387,4389,4491,4509,4545,4579,4541,4541,4541,4541,1,1,1,1,'Goblin Drink','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74001,0,0,0,0,0,0,0,0,0,80,4096,4238,612,626,633,936,4387,4388,4390,5571,5588,5589,5589,5589,1,1,1,1,'Karni Yarik','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74002,0,0,0,0,0,0,0,0,0,81,4101,4243,4370,4378,4468,4468,0,0,0,0,4302,4302,4302,4302,1,1,1,1,'Pamama au Lait',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74003,0,2042,0,0,0,0,0,0,0,81,4096,4238,610,615,627,936,2112,4509,4570,5703,5718,5718,5718,5718,4,6,8,10,'Cream Puff','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74004,0,0,0,0,0,0,0,0,0,81,4096,4238,617,619,898,936,4374,4451,4509,4570,4452,4285,4285,4285,1,1,1,1,'Shark Fin Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74005,0,0,0,0,0,0,0,0,0,81,4099,4241,4279,4408,4408,5299,0,0,0,0,5174,5174,5175,5175,6,12,6,12,'Tavnazian Taco','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74006,0,0,0,0,0,0,0,0,0,81,4096,4238,1471,2215,4509,0,0,0,0,0,6258,6259,6259,6259,2,2,3,4,'Shiromochi','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74007,0,0,0,0,0,0,0,0,0,81,4096,4238,1471,1524,2215,4509,0,0,0,0,6262,6263,6263,6263,2,2,3,4,'Kusamochi','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74008,0,0,0,0,0,0,0,0,0,81,4096,4238,627,1471,2215,4509,5541,5541,8800,0,6343,6344,6344,6344,2,2,3,4,'Grape Daifuku','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74009,0,0,0,0,0,0,0,0,0,81,4096,4238,627,1471,2215,4365,4365,4509,8800,0,6339,6340,6340,6340,2,2,3,4,'Rolanberry Daifuku','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74010,0,0,0,0,0,0,0,0,0,81,4096,4238,627,1471,2215,4509,8800,0,0,0,6260,6261,6261,6261,2,2,3,4,'Akamochi','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74011,0,0,0,0,0,0,0,0,0,81,4096,4238,618,627,1471,2215,4509,8800,0,0,6341,6342,6342,6342,2,2,3,4,'Bean Daifuku','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74012,0,2043,0,0,0,0,0,0,0,82,4096,4238,2111,4509,4570,5152,5233,5234,5236,5237,5547,5548,5549,5549,1,1,1,1,'Beef Stewpot','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74013,0,0,0,0,0,0,0,0,0,82,4100,4242,4454,0,0,0,0,0,0,0,4275,4275,4275,4275,4,6,8,10,'Emperor Roe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74014,0,0,0,0,0,0,0,0,0,82,4096,4238,617,627,936,953,4441,4480,4509,4571,4540,4540,4540,4540,1,1,1,1,'Boiled Tuna Head',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74015,0,0,0,0,0,0,0,0,0,82,4100,4242,5462,0,0,0,0,0,0,0,4275,4275,4275,4275,4,6,8,10,'Emperor Roe',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74016,0,0,0,0,0,0,0,0,0,82,4098,4240,633,4367,4373,4386,5650,5651,5661,5680,5678,5679,5679,5679,1,1,1,1,'Mushroom Salad','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74017,0,2041,0,0,0,0,0,0,0,83,4096,4238,614,1776,4291,4304,4383,4484,5194,0,5191,5191,5200,5200,2,4,2,4,'Pescatora','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74018,0,0,19,0,0,0,0,0,0,83,4096,4238,612,626,638,699,936,4372,5152,0,5660,5660,5660,5660,12,12,12,12,'Pepperoni','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74019,0,2041,0,0,0,0,0,0,0,83,4096,4238,614,1776,4291,5194,5453,5455,5456,0,5191,5191,5200,5200,2,4,2,4,'Pescatora','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74020,0,0,0,0,0,0,0,0,0,83,4096,4238,636,636,4370,4509,0,0,0,0,4603,4286,4286,4286,1,1,1,1,'Chamomile Tea',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74021,0,0,0,0,0,0,0,0,0,83,4096,4238,610,615,626,633,936,4392,4428,0,4582,4346,4346,4346,1,1,1,1,'Bass Meuniere',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74022,0,0,0,0,0,0,0,0,0,83,4096,4238,610,626,4375,4448,4570,4571,5703,0,5773,5773,5774,5774,2,4,2,4,'Mushroom Crepe','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74023,0,0,0,0,0,0,0,0,0,84,4096,4238,614,615,620,626,633,638,4461,4509,4550,4268,4268,4268,1,1,1,1,'Bream Risotto',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74024,0,2040,0,0,0,0,0,0,0,84,4099,4241,620,1652,4509,5164,5457,0,0,0,5149,5163,5163,5163,2,2,3,4,'Sole Sushi','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74025,0,2040,0,0,0,0,0,0,0,84,4099,4241,620,1652,4384,4509,5164,0,0,0,5149,5163,5163,5163,2,2,3,4,'Sole Sushi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74026,0,0,0,0,0,0,0,0,0,84,4096,4238,619,622,627,4441,4469,4509,4545,0,4557,4557,4557,4557,1,1,1,1,'Steamed Catfish',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74027,0,0,0,0,0,0,0,0,0,85,4096,4238,619,623,626,633,936,4387,4389,5565,5609,5610,5610,5610,1,1,1,1,'Hellsteak','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74028,0,0,0,0,0,0,1,0,0,85,4099,4241,879,1656,4302,4302,4302,4302,0,0,16226,16226,16226,16226,1,1,1,1,'Pamama Tank','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74029,0,0,0,0,0,0,0,0,0,85,4096,4238,615,616,627,628,630,4378,4509,4570,4446,4525,4525,4525,4,4,4,4,'Pumpkin Pie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74030,0,0,0,0,0,0,0,0,0,85,4096,4238,619,1475,1554,4377,4378,4387,4509,0,4517,4517,4517,4517,1,1,1,1,'Yellow Curry',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74031,0,2042,0,0,0,0,0,0,0,85,4096,4238,615,616,627,628,630,4378,4509,5568,5644,5644,5644,5644,3,6,9,12,'Jack-o\'-Pie','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74032,0,2042,0,0,0,0,0,0,0,85,4096,4238,610,627,633,4378,4497,4570,5568,0,5633,5634,5634,5634,1,1,1,1,'Chocolate Cake','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74033,0,2042,0,0,0,0,0,0,0,85,4096,4238,615,4499,4570,5187,0,0,0,0,5784,5784,5784,5784,2,4,6,8,'Coconut Rusk','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74034,0,2042,0,0,0,0,0,0,0,85,4098,4240,627,1523,4363,4392,4432,4445,4468,5703,6063,6064,6064,6064,1,1,1,1,'Fruit Parfait','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74035,0,0,0,0,0,0,0,0,0,85,4096,4238,9521,0,0,0,0,0,0,0,4517,4517,4517,4517,1,1,1,1,'Yellow Curry','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (74036,0,0,0,0,0,0,0,0,0,86,4096,4238,615,619,626,936,4375,4448,4450,4509,4544,4344,4344,4344,1,1,1,1,'Mushroom Stew',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74037,0,2042,0,0,0,0,0,0,0,86,4103,4245,627,639,639,2113,4441,0,0,0,4502,5554,5554,5554,1,1,1,1,'Marron Glace','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74038,0,2041,0,0,0,0,0,0,0,86,4096,4238,614,633,1776,4375,4386,4387,4447,5194,5192,5192,5201,5201,2,4,2,4,'Boscaiola','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74039,0,0,0,0,0,0,0,0,0,86,4103,4245,627,639,639,4441,0,0,0,0,4502,4269,4269,4269,1,1,1,1,'Marron Glace',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74040,0,0,0,0,0,0,0,0,0,87,4101,4243,1111,1121,1121,1980,1980,0,0,0,17891,17892,17892,17892,4,2,4,6,'Antica Broth','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74041,0,0,0,0,0,0,0,0,0,87,4096,4238,619,626,936,4361,4383,4484,4509,4545,4561,4561,4561,4561,1,1,1,1,'Seafood Stew',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74042,0,0,0,0,0,0,0,0,0,87,4096,4238,619,626,936,4509,4545,5453,5455,5456,4561,4561,4561,4561,1,1,1,1,'Seafood Stew',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74043,0,0,0,0,0,0,0,0,0,88,4099,4241,627,1111,1523,1633,4431,4509,0,0,5144,5158,5158,5158,1,1,1,1,'Crimson Jelly','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74044,0,0,0,0,0,0,0,0,0,88,4096,4238,615,626,633,936,4370,4377,4387,4441,4548,4295,4295,4295,1,1,1,1,'Coeurl Saute',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74045,0,0,0,0,0,0,0,0,0,88,4096,4238,615,626,633,936,4370,4387,4441,5667,4548,4295,4295,4295,1,1,1,1,'Coeurl Saute',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74046,0,2042,0,0,0,0,0,0,0,89,4096,4238,610,615,628,4273,4392,4503,4570,5541,5552,5553,5553,5553,1,1,1,1,'Black Pudding','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74047,0,0,0,0,0,0,0,0,0,89,4096,4238,615,626,633,936,4386,4387,4435,4570,4564,4331,4331,4331,1,1,1,1,'Royal Omelette',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74048,0,2040,0,0,0,0,0,0,0,89,4099,4241,620,1652,4509,5140,5164,0,0,0,5665,5665,5666,5666,4,6,2,3,'Fin Sushi','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74049,0,2042,0,0,0,0,0,0,0,90,4096,4238,610,615,2113,4370,4397,4496,4509,4570,5616,5617,5617,5617,1,1,1,1,'Lebkuchen House','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74050,0,0,0,0,0,0,0,0,0,90,4096,4238,610,616,627,1111,4365,4378,4570,0,4414,4339,4339,4339,4,4,4,4,'Rolanberry Pie',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74051,0,0,0,0,0,0,0,0,0,90,4101,4243,4363,4365,4390,4402,0,0,0,0,4512,4512,4512,4512,1,1,1,1,'Vampire Juice',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74052,0,0,0,0,0,0,0,0,0,90,4101,4243,4363,4365,4390,5464,0,0,0,0,4512,4512,4512,4512,1,1,1,1,'Vampire Juice',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74053,0,0,0,0,0,0,0,0,0,90,4096,4238,610,615,627,4273,4274,4570,5703,5964,6567,6567,6568,6568,2,4,2,4,'Tropical Crepe','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (74054,0,0,0,0,0,0,0,0,0,90,4096,4238,633,4356,4570,5948,5948,0,0,0,6276,6276,6277,6277,6,8,6,8,'Deep-Fried Shrimp','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74055,0,0,0,0,0,0,0,0,0,90,4096,4238,633,4356,4435,4570,5569,0,0,0,6274,6274,6275,6275,6,8,6,8,'Pukatrice Egg','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74056,0,0,0,0,0,0,0,0,0,90,4096,4238,619,633,4356,4570,0,0,0,0,6272,6272,6273,6273,6,8,6,8,'Fried Popoto','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74057,0,2040,0,0,0,0,0,0,0,90,4099,4241,620,1652,4318,4379,4384,4480,4570,5164,6468,6468,6469,6469,4,6,2,4,'Sublime Sushi','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (74058,0,2040,0,0,0,0,0,0,0,90,4099,4241,620,1652,4318,4379,4384,4480,4570,9200,6468,6469,6469,6469,4,4,6,8,'Sublime Sushi','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (74059,0,2041,0,0,0,0,0,0,0,90,4096,4238,624,4483,4570,5234,6393,9196,9197,9201,6458,6458,6459,6459,4,1,1,1,'Soy Ramen','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (74060,0,2041,0,0,0,0,0,0,0,90,4096,4238,615,629,4444,6393,9196,9198,9201,0,6460,6461,6461,6461,4,4,6,8,'Miso Ramen','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (74061,0,2041,0,0,0,0,0,0,0,90,4096,4238,612,4360,4367,5948,9196,9199,9201,0,6462,6463,6463,6463,4,4,6,8,'Salt Ramen','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (74062,0,0,0,0,0,0,0,0,0,90,4101,4243,9522,0,0,0,0,0,0,0,4512,4512,4512,4512,1,1,1,1,'Vampire Juice','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (74501,0,2043,0,0,0,0,0,0,0,91,4096,4238,2110,4375,4509,5233,5234,5236,5237,5563,5611,5612,5613,5613,1,1,1,1,'Angler Stewpot','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74502,0,0,0,0,0,0,0,0,0,91,4101,4243,4272,5650,5680,0,0,0,0,0,17903,17903,17903,17903,4,6,8,10,'Shadowy Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (74503,0,0,0,0,0,0,0,0,0,91,4096,4238,614,616,638,936,4357,4379,4441,0,4551,4551,4551,4551,1,2,3,4,'Salmon Croute',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74504,0,0,0,0,0,0,0,0,0,91,4101,4243,4274,4274,4370,4378,0,0,0,0,4303,4303,4303,4303,1,1,1,1,'Persikos au Lait',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74505,0,0,0,0,0,0,0,0,0,91,4096,4238,610,618,626,936,4387,4570,5152,5667,5689,5690,5690,5690,1,1,1,1,'Meatloaf','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74506,0,0,0,0,0,0,0,0,0,92,4103,4245,936,4275,0,0,0,0,0,0,4276,4276,4276,4276,3,3,3,3,'Flint Caviar',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74507,0,0,0,0,0,0,0,0,0,92,4098,4240,625,4276,4304,4382,4389,4461,4485,4571,4279,5185,5185,5185,1,1,1,1,'Tavnazian Salad',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74508,0,0,0,0,0,0,0,0,0,92,4096,4238,612,614,615,4375,4449,5195,5661,5680,5676,5677,5677,5677,1,1,1,1,'Mushroom Saute','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74509,0,0,0,0,0,0,0,0,0,92,4096,4238,614,620,3916,4387,4474,4509,5948,5949,5968,5969,5969,5969,1,1,1,1,'Seafood Paella','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74510,0,0,0,0,0,0,0,0,0,92,4096,4238,614,620,3916,4373,4375,4387,4450,4509,5970,5971,5971,5971,1,1,1,1,'Mushroom Paella','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74511,0,0,0,0,0,0,0,0,0,92,4096,4238,614,620,3916,4387,4474,4509,5152,5949,5972,5973,5973,5973,1,1,1,1,'Beef Paella','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74512,0,0,0,0,0,0,0,0,0,92,4096,4238,614,620,3916,4387,4509,5949,5954,5954,5974,5975,5975,5975,1,1,1,1,'Barnacle Paella','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74513,0,0,0,0,0,0,0,0,0,93,4096,4238,610,615,626,633,936,4378,5457,0,4584,4345,4345,4345,1,1,1,1,'Flounder Meuniere','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74514,0,0,0,0,0,0,0,0,0,93,4099,4241,615,621,4356,4366,4390,4548,0,0,5166,5166,5167,5167,6,12,6,12,'Coeurl Sub','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74515,0,2040,0,0,0,0,0,0,0,93,4099,4241,620,1652,4485,4509,5164,0,0,0,5178,5179,5179,5179,2,2,3,4,'Dorado Sushi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74516,0,0,0,0,0,0,0,0,0,93,4101,4243,610,4509,5818,0,0,0,0,0,17906,17906,17906,17906,4,6,8,10,'Auroral Broth','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (74517,0,0,0,0,0,0,0,0,0,93,4096,4238,610,615,626,633,936,4378,4384,0,4584,4345,4345,4345,1,1,1,1,'Flounder Meuniere','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74518,0,2040,0,0,0,0,0,0,0,93,4099,4241,620,624,1652,4318,4509,0,0,0,5151,5160,5160,5160,1,1,1,1,'Urchin Sushi','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74519,0,0,0,0,0,0,0,0,0,94,4096,4238,615,616,618,936,4362,4386,4389,5152,5146,5156,5156,5156,1,1,1,1,'Hedgehog Pie','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74520,0,0,0,0,0,0,0,0,0,94,4096,4238,626,1475,4373,4388,4509,5450,5455,0,4297,4297,4297,4297,1,1,1,1,'Black Curry',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74521,0,0,0,0,0,0,0,0,0,94,4096,4238,626,1475,4361,4373,4388,4480,4509,0,4297,4297,4297,4297,1,1,1,1,'Black Curry',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74522,0,0,0,0,0,0,0,0,0,94,4096,4238,627,627,1111,4431,4509,5964,5964,0,5978,5979,5979,5979,1,1,1,1,'Felicifruit Gelatin','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74523,0,0,0,0,0,0,0,0,0,94,4096,4238,620,624,936,4276,4509,0,0,0,4277,4278,4278,4278,4,1,2,2,'Tonosama Rice Ball',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74524,0,0,0,0,0,0,0,0,0,94,4096,4238,615,616,626,936,4387,4389,5667,5680,5685,5685,5685,5685,2,4,6,8,'Rabbit Pie','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74525,0,0,0,0,0,0,0,0,0,95,4096,4238,619,623,626,633,936,4272,4389,4444,4350,4350,4350,4350,1,1,1,1,'Dragon Steak',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74526,0,0,0,0,0,0,1,0,0,95,4099,4241,879,1656,4303,4303,4303,4303,0,0,16227,16227,16227,16227,1,1,1,1,'Persikos Tank','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74527,0,0,15,0,0,0,0,0,0,95,4096,4238,627,704,936,1471,4359,4450,4509,0,4271,4271,4271,4271,3,6,9,12,'Rice Dumpling',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74528,0,0,0,0,0,0,0,0,0,95,4096,4238,626,633,936,2214,2237,4387,5564,5568,5602,5603,5603,5603,1,1,1,1,'Hydra Kofte','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (74529,0,0,0,0,0,0,0,0,0,95,4101,4243,4389,4389,4389,5967,0,0,0,0,17907,17915,17915,17915,4,2,4,8,'Swirling Broth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74530,0,0,0,0,0,0,0,0,0,95,4096,4238,9523,0,0,0,0,0,0,0,4350,4350,4350,4350,1,1,1,1,'Dragon Steak','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (74531,0,2041,0,0,0,0,0,0,0,96,4096,4238,612,614,633,936,1590,1776,4272,5194,5211,5211,5212,5212,2,4,2,4,'Arrabbiata','COP');
|
|
INSERT INTO `synth_recipes` VALUES (74532,0,0,0,0,0,0,0,0,0,96,4096,4238,610,621,625,1111,4370,4386,4403,4509,4542,5180,5180,5180,1,1,1,1,'Brain Stew',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74533,0,0,0,0,0,0,0,0,0,96,4101,4243,5952,5952,5952,5952,0,0,0,0,17908,17916,17916,17916,4,2,4,8,'Shimmering Broth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74534,0,0,0,0,0,0,0,0,0,97,4101,4243,4017,4017,4372,5965,0,0,0,0,17909,17917,17917,17917,4,2,4,8,'Spicy Broth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74535,0,0,0,0,0,50,0,0,0,97,4096,4238,829,936,2213,2236,2554,4432,5568,5651,5683,5683,5683,5683,1,1,1,1,'Humpty Dumpty','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74536,0,0,0,0,0,0,0,0,0,97,4096,4238,614,616,638,936,4362,4385,4386,4441,4353,4353,4353,4353,1,2,3,4,'Sea Bass Croute',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74537,0,0,0,0,0,0,0,0,0,97,4097,4239,4154,4441,5562,0,0,0,0,0,5411,5411,5411,5411,1,1,1,1,'Dawn Mulsum','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (74538,0,0,0,0,0,0,0,0,0,98,4101,4243,1111,4026,5152,5534,0,0,0,0,17911,17918,17918,17918,4,2,4,8,'Salubrious Broth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74539,0,0,0,0,0,0,0,0,0,98,4098,4240,612,633,936,1555,4273,4387,4390,5650,5701,5702,5702,5702,1,1,1,1,'Nopales Salad','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (74540,0,0,0,0,0,0,0,0,0,99,4096,4238,614,617,619,626,4272,4382,4387,4509,4549,4549,4549,4549,1,1,1,1,'Dragon Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74541,0,0,0,0,0,0,0,0,0,99,4103,4245,920,1444,4273,4378,4509,0,0,0,4234,4234,4234,4234,1,1,1,1,'Cursed Beverage',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74542,0,0,0,0,0,0,0,0,0,99,4101,4243,4365,4370,5661,5966,0,0,0,0,21440,21441,21441,21441,4,2,4,8,'Sugary Broth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74543,0,0,0,0,0,0,0,0,0,99,4096,4238,627,628,1471,1472,1524,4509,0,0,4270,4270,4270,4270,9,12,12,12,'Sweet Rice Cake',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74544,0,0,0,0,0,0,0,0,0,99,4096,4238,626,633,936,4356,4570,6393,0,0,6394,6395,6395,6395,1,1,2,3,'Pork Cutlet','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (74545,0,0,0,0,0,0,0,0,0,100,4101,4243,2522,3930,3939,3941,0,0,0,0,21442,21443,21443,21443,4,2,4,8,'Sticky Webbing','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74546,0,0,0,0,0,0,0,0,0,100,4101,4243,620,629,2213,5531,0,0,0,0,17912,17919,17919,17919,4,2,4,8,'Fizzy Broth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74547,0,0,0,0,0,0,0,0,0,100,4101,4243,944,3935,4509,5984,0,0,0,0,21438,21439,21439,21439,4,2,4,8,'Poisonous Broth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74548,0,0,0,0,0,0,0,0,0,100,4101,4243,2506,2522,3937,4031,0,0,0,0,21450,21451,21451,21451,4,2,4,8,'Electrified Broth','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (74549,0,0,0,0,0,0,0,0,0,100,4096,4238,936,4375,4387,4449,4509,5680,0,0,5930,5931,5931,5931,1,1,1,1,'Sprightly Soup','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (74550,0,0,0,0,0,0,0,0,0,100,4101,4243,4273,4273,4273,4273,0,0,0,0,5932,5932,5932,5932,1,1,1,1,'Kitron Juice','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (74551,0,0,0,0,0,0,0,0,0,100,4101,4243,4273,4274,4370,4508,4509,0,0,0,4235,4235,4235,4235,1,1,1,1,'Cursed Soup',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (74552,0,2043,0,0,0,0,0,0,0,100,4096,4238,2111,4375,4509,4570,5233,5235,5236,6222,6219,6220,6221,6221,1,1,1,1,'Warthog Stewpot','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (75001,0,0,0,0,0,0,0,0,0,100,4096,4238,612,1475,1555,4272,4389,4390,4509,0,4298,4298,4298,4298,1,1,1,1,'Red Curry',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (75002,0,0,0,0,0,0,0,0,0,102,4103,4245,95,583,612,614,936,1891,4273,0,5909,5909,5909,5909,1,1,1,1,'Pickled Rarab Tail','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (75003,0,0,0,0,0,0,0,0,0,102,4096,4238,4277,4578,4578,4590,5568,5688,5907,0,6381,6381,6381,6381,1,1,1,1,'Fisherman\'s Feast','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (75004,0,0,0,0,0,0,0,0,0,103,4096,4238,615,627,2237,4509,5568,5661,0,0,5922,5923,5923,5923,33,33,66,99,'Walnut Cookie','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (75005,0,0,0,0,0,0,0,0,0,103,4101,4243,5534,5536,5963,0,0,0,0,0,21492,21493,21493,21493,4,2,4,8,'Insipid Broth','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (75006,0,0,0,0,0,0,0,0,0,104,4096,4238,936,1019,4379,4399,4461,4509,5131,0,9199,9199,9199,9199,6,6,6,6,'Salt Ramen Soup','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (75007,0,0,0,0,0,0,0,0,0,104,4096,4238,898,898,4387,4435,4509,5234,9194,0,9197,9197,9197,9197,6,6,6,6,'Soy Ramen Soup','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (75008,0,0,0,0,0,0,0,0,0,104,4103,4245,703,2016,4031,4509,0,0,0,0,21494,21495,21495,21495,4,2,4,8,'Wetlands Broth','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (75009,0,0,0,0,0,0,0,0,0,104,4096,4238,614,617,898,898,4509,9193,9194,0,9198,9198,9198,9198,6,6,6,6,'Miso Ramen Soup','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (75010,0,0,0,0,0,0,0,0,0,105,4101,4243,4370,4378,5662,5662,0,0,0,0,5933,5933,5933,5933,1,1,1,1,'Dragon Fruit au Lait','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (75011,0,0,0,0,0,0,0,0,0,105,4096,4238,627,2156,4509,5566,0,0,0,0,5926,5927,5927,5927,1,1,1,1,'Date Tea','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (75012,0,0,0,0,0,0,0,0,0,107,4096,4238,620,624,936,4509,5152,5651,0,0,5928,5929,5929,5929,4,1,1,1,'Himesama R. Ball','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (75013,0,0,0,0,0,0,1,0,0,109,4099,4241,879,1656,5933,5933,5933,5933,0,0,11002,11002,11002,11002,1,1,1,1,'Dragon Tank','ABYSSEA');
|
|
INSERT INTO `synth_recipes` VALUES (75014,0,0,0,0,0,0,0,0,0,110,4096,4238,626,638,936,4356,4387,4570,5152,5565,5924,5925,5925,5925,1,1,1,1,'Smoldering Salisbury Steak','ABYSSEA');
|
|
-- INSERT INTO `synth_recipes` VALUES (75015,0,0,0,0,0,0,0,0,0,255,4101,4243,914,2175,4509,16995,0,0,0,0,21470,21471,21471,21471,4,2,4,6,'Decaying Broth','TVR'); -- item not in item_basic.sql
|
|
-- INSERT INTO `synth_recipes` VALUES (75016,0,0,0,0,0,0,0,0,0,255,4101,4243,6144,6144,6144,6144,0,0,0,0,21464,21465,21465,21465,4,2,4,6,'Rancid Broth','TVR'); -- item not in item_basic.sql
|
|
-- INSERT INTO `synth_recipes` VALUES (75017,0,0,0,0,0,0,0,0,0,255,4101,4243,1111,5955,6222,0,0,0,0,0,21472,21473,21473,21473,1,1,1,1,'Turpid Broth','TVR'); -- item not in item_basic.sql
|
|
-- INSERT INTO `synth_recipes` VALUES (75018,0,0,0,0,0,0,0,0,0,106,4101,4243,1111,4358,5571,5581,0,0,0,0,21466,21467,21467,21467,4,2,4,8,'Frizzante Broth','TVR'); -- unconfirmed skill level 106, item not in item_basic.sql
|
|
INSERT INTO `synth_recipes` VALUES (75501,0,0,0,0,0,0,0,0,0,112,4096,4238,619,623,626,629,633,936,4389,6068,6071,6072,6072,6072,1,1,1,1,'Magma Steak','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (75502,0,0,0,0,0,0,0,0,0,112,4098,4240,627,4365,4412,4412,8753,0,0,0,6223,6223,6224,6224,6,12,6,1,'Cehuetzi Snow Cone','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (75503,0,2042,0,0,0,0,0,0,0,112,4098,4240,627,4365,4370,4412,4412,8753,0,0,6223,6223,6225,6225,6,12,6,12,'Cehuetzi Snow Cone','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (75504,0,0,0,0,0,0,0,0,0,112,4096,4238,617,898,936,3978,4509,5234,5965,0,6069,6070,6070,6070,1,1,1,1,'Riverfin Soup','SOA');
|
|
INSERT INTO `synth_recipes` VALUES (75505,0,0,0,0,0,0,0,0,0,110,4096,4238,615,619,4273,4389,6416,0,0,0,6464,6465,6465,6465,1,1,1,1,'Behemoth Steak','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (75506,0,2046,0,0,0,0,0,0,0,113,4102,4244,4154,4154,4234,4235,9774,9775,9776,9777,6538,6539,6540,6540,1,1,1,1,'Altana\'s Repast','ROV'); -- unconfirmed skill level. Wikis state 111-113
|
|
INSERT INTO `synth_recipes` VALUES (75507,0,2043,0,0,0,0,0,0,0,116,4096,4238,2110,4509,5134,5233,5234,5236,5237,5680,5893,5894,5894,5894,1,1,1,1,'Marine Stewpot','ROV');
|
|
INSERT INTO `synth_recipes` VALUES (75508,1,0,0,98,0,0,0,0,0,0,4100,4242,12420,0,0,0,0,0,0,0,914,1225,654,655,1,6,1,1,'Adaman Barbuta (desynth)',NULL); -- use synth lvl, wiki results
|
|
INSERT INTO `synth_recipes` VALUES (75509,1,0,0,103,0,0,0,0,0,0,4100,4242,12548,0,0,0,0,0,0,0,855,1225,654,655,1,6,2,2,'Adaman Cuirass (desynth)',NULL); -- use synth lvl, wiki results
|
|
INSERT INTO `synth_recipes` VALUES (75510,1,0,0,100,0,0,0,0,0,0,4100,4242,12932,0,0,0,0,0,0,0,855,1225,654,655,1,6,2,1,'Adaman Sabatons (desynth)',NULL); -- use synth lvl, wiki results
|
|
INSERT INTO `synth_recipes` VALUES (75511,0,0,0,0,0,0,0,0,0,101,4096,4238,615,4356,5568,5569,5688,0,0,0,6601,6601,6602,6602,6,8,6,8,'Omelette Sandwich','TVR'); -- BG Wiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (75512,1,0,0,0,68,0,0,0,0,0,4100,4242,13316,0,0,0,0,0,0,0,746,746,746,746,1,1,2,2,'Platinum Earring (desynth)',NULL); -- ffxiclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75513,1,0,0,91,0,0,0,0,0,0,4100,4242,18405,0,0,0,0,0,0,0,2302,2302,2302,2302,1,1,2,2,'Jadagna_Desynth','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (75514,1,0,0,47,0,0,0,0,0,0,4100,4242,2542,0,0,0,0,0,0,0,652,654,654,654,1,1,1,1,'Goblin_mess_tin_desynth','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (75515,1,0,0,0,85,0,0,0,0,0,4100,4242,13357,0,0,0,0,0,0,0,813,813,746,746,1,1,1,2,'Angel\'s Earring (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (75516,1,0,22,0,0,0,0,0,0,0,4100,4242,2543,0,0,0,0,0,0,0,712,4379,5474,5789,1,1,4,4,'Goblin_weel_desynth','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (75517,1,0,0,102,0,0,0,0,0,0,4100,4242,14828,0,0,0,0,0,0,0,914,1225,654,655,1,6,1,1,'Gem_Gauntlets_Desynth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (75518,1,0,0,98,0,0,0,0,0,0,4100,4242,13941,0,0,0,0,0,0,0,914,1225,654,655,1,6,1,1,'Gem_Barbuta_Desynth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (75519,1,0,0,91,0,0,0,0,0,0,4100,4242,18406,0,0,0,0,0,0,0,2302,2302,2302,2302,1,1,2,2,'Jadagna_+1_Desynth','TOAU');
|
|
INSERT INTO `synth_recipes` VALUES (75520,1,0,0,0,85,0,0,0,0,0,4100,4242,13414,0,0,0,0,0,0,0,813,813,746,746,1,1,1,2,'Heavens_Earring_Desynth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (75521,1,0,0,0,85,0,0,0,0,0,4100,4242,14719,0,0,0,0,0,0,0,813,813,746,746,1,1,1,2,'Heavens_Earring_+1_Desynth',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (75522,2,0,70,0,0,0,0,0,0,0,4102,4244,9091,0,0,0,0,0,0,0,19320,19320,19320,19320,1,1,1,1,'Lu Shang\'s Fishing Rod +1','ROV'); -- BGWiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (75523,1,0,0,0,92,0,0,0,0,0,4100,4242,13185,0,0,0,0,0,0,0,650,650,1117,745,1,1,1,1,'Muscle_Belt_Desynth',NULL); -- ffxiclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75524,1,0,0,100,0,0,0,0,0,0,4100,4242,17252,0,0,0,0,0,0,0,1231,717,654,655,1,1,1,1,'Culverin (desynth)',NULL); -- FFXIClopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (75525,1,0,0,0,0,0,0,96,0,0,4100,4242,15813,0,0,0,0,0,0,0,5466,5466,5466,5466,1,1,1,1,'Trumpet ring (desynth)','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (75526,1,0,0,0,0,0,0,96,0,0,4100,4242,15814,0,0,0,0,0,0,0,5466,5466,5466,5466,1,1,1,1,'Nereid ring (desynth)','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (75527,0,0,0,0,0,0,0,0,6,0,4103,4245,929,2777,0,0,0,0,0,0,2774,2774,2774,2774,1,1,1,1,'Enchanted Ink','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (75528,0,0,0,0,0,0,0,0,10,0,4099,4241,2773,2773,2774,2774,2775,4162,0,0,2782,2782,2782,2782,1,1,1,1,'Enfeeb. Kit Silence','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (75529,0,0,0,0,0,0,0,0,10,0,4099,4241,2773,2773,2774,2774,2775,4157,0,0,2779,2779,2779,2779,1,1,1,1,'Enfeeb. Kit Poison','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (75530,0,0,0,0,0,0,0,0,10,0,4099,4241,2773,2773,2774,2774,2775,4163,0,0,2780,2780,2780,2780,1,1,1,1,'Enfeeb. Kit Blind','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (75531,0,0,0,0,0,0,0,0,10,0,4099,4241,2773,2773,2774,2774,2775,4161,0,0,2781,2781,2781,2781,1,1,1,1,'Enfeeb. Kit Sleep','WOTG');
|
|
INSERT INTO `synth_recipes` VALUES (75532,1,0,0,0,0,0,34,0,0,0,4100,4242,12994,0,0,0,0,0,0,0,818,818,848,848,2,3,1,2,'Shoes (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (75533,1,0,0,0,0,25,0,0,0,0,4100,4242,12722,0,0,0,0,0,0,0,834,819,819,819,2,5,6,7,'Bracers (desynth)',NULL); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75534,1,0,0,0,57,0,0,0,0,0,4100,4242,14018,0,0,0,0,0,0,0,653,653,745,745,1,2,1,1,'Gigas Bracelets (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (75535,1,0,0,0,69,0,0,0,0,0,4100,4242,16514,0,0,0,0,0,0,0,744,744,651,745,1,1,1,1,'Mailbreaker (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (75536,1,0,0,0,69,0,0,0,0,0,4100,4242,16618,0,0,0,0,0,0,0,744,744,651,745,1,1,1,1,'Mailbreaker +1 (desynth)',NULL);
|
|
INSERT INTO `synth_recipes` VALUES (75537,1,0,0,0,45,0,0,0,0,0,4100,4242,14790,0,0,0,0,0,0,0,653,653,653,653,1,2,2,2,'Reraise Earring (desynth)','COP'); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75538,1,0,0,0,0,0,0,82,0,0,4100,4242,13171,0,0,0,0,0,0,0,850,850,850,887,1,1,1,1,'Reraise Gorget (desynth)','COP'); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75539,1,0,0,0,86,0,0,0,0,0,4100,4242,17065,0,0,0,0,0,0,0,652,652,745,746,1,1,1,1,'Platinum Rod (desynth)',NULL); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75540,1,0,0,0,25,0,0,0,0,0,4098,4240,1625,0,0,0,0,0,0,0,661,661,661,752,1,1,1,1,'Moblin Helm (desynth)','COP'); -- FFXIclopedia and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (75541,1,0,0,0,26,0,0,0,0,0,4098,4240,1632,0,0,0,0,0,0,0,661,661,661,752,2,2,2,1,'Moblin Mail (desynth)','COP'); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (75542,1,0,0,95,0,0,0,0,0,0,4100,4242,2504,0,0,0,0,0,0,0,652,653,654,1711,1,1,1,1,'Heavy Quadav Chestplate (desynth)','WOTG'); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (75543,1,0,0,95,0,0,0,0,0,0,4100,4242,2505,0,0,0,0,0,0,0,652,653,654,659,2,2,2,2,'Heavy Quadav Backplate (desynth)','WOTG'); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (75544,1,0,0,47,0,0,0,0,0,0,4100,4242,2510,0,0,0,0,0,0,0,651,652,1629,1629,2,2,1,1,'Orc Helmet (desynth)',NULL); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (75545,1,0,0,43,0,0,0,0,0,0,4100,4242,2511,0,0,0,0,0,0,0,651,652,1629,1629,1,1,1,1,'Orc Pauldron (desynth)','WOTG'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (75546,1,0,0,0,0,0,44,0,0,0,4098,4240,2519,0,0,0,0,0,0,0,1629,2529,676,2006,1,1,1,1,'Yagudo Osode (desynth)','WOTG'); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (75547,1,0,0,0,0,0,44,0,0,0,4098,4240,2520,0,0,0,0,0,0,0,1629,2529,666,676,1,1,2,3,'Yagudo Kote (desynth)','WOTG'); -- BGwiki, FFXIclopedia and JP Wiki (highest level used)
|
|
INSERT INTO `synth_recipes` VALUES (75548,1,0,0,69,0,0,0,0,0,0,4100,4242,2652,0,0,0,0,0,0,0,651,651,653,1615,2,2,1,1,'Gigas Helm (desynth)','WOTG'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (75549,1,0,0,77,0,0,0,0,0,0,4100,4242,2653,0,0,0,0,0,0,0,651,651,654,1629,1,1,1,1,'Gigas Gauntlets (desynth)','WOTG'); -- BGwiki and JP Wiki
|
|
INSERT INTO `synth_recipes` VALUES (75550,1,0,0,96,0,0,0,0,0,0,4100,4242,16166,0,0,0,0,0,0,0,2303,2303,2303,2303,1,1,2,2,'Januwiyah -1 (desynth)','TOAU'); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (75551,1,0,0,0,85,0,0,0,0,0,4100,4242,13318,0,0,0,0,0,0,0,789,789,746,746,1,1,1,2,'Topaz Earring (desynth)',NULL); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (75552,1,0,0,0,85,0,0,0,0,0,4100,4242,13351,0,0,0,0,0,0,0,785,785,746,746,1,1,1,2,'Emerald Earring (desynth)',NULL); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (75553,1,0,0,0,85,0,0,0,0,0,4100,4242,13353,0,0,0,0,0,0,0,787,787,746,746,1,1,1,2,'Diamond Earring (desynth)',NULL); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (75554,1,0,0,0,85,0,0,0,0,0,4100,4242,13354,0,0,0,0,0,0,0,804,804,746,746,1,1,1,2,'Spinel Earring (desynth)',NULL); -- BGwiki
|
|
INSERT INTO `synth_recipes` VALUES (75555,1,0,0,0,85,0,0,0,0,0,4100,4242,13356,0,0,0,0,0,0,0,812,812,746,746,1,1,1,2,'Death Earring (desynth)',NULL); -- Based off other 85 Goldsmith earring desynths
|
|
INSERT INTO `synth_recipes` VALUES (75556,1,0,0,0,93,0,0,0,0,0,4100,4242,13466,0,0,0,0,0,0,0,747,747,747,747,1,1,2,2,'Orichalcum Ring (desynth)',NULL); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75557,1,0,0,0,9,0,0,0,0,0,4100,4242,12472,0,0,0,0,0,0,0,648,648,650,650,1,1,1,1,'Circlet (desynth)',NULL); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75558,1,0,0,0,9,0,0,0,0,0,4100,4242,12527,0,0,0,0,0,0,0,648,648,650,650,1,1,1,1,'Circlet +1 (desynth)',NULL); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75559,1,0,0,0,10,0,0,0,0,0,4100,4242,12449,0,0,0,0,0,0,0,649,650,850,850,1,1,1,2,'Brass Cap (desynth)',NULL); -- BGwiki and FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75560,1,0,0,0,10,0,0,0,0,0,4100,4242,12528,0,0,0,0,0,0,0,649,650,850,850,1,1,1,2,'Brass Cap +1 (desynth)',NULL); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75561,1,0,0,0,14,0,0,0,0,0,4100,4242,12961,0,0,0,0,0,0,0,649,650,850,850,1,1,1,2,'Brass Leggings (desynth)',NULL); -- BGwiki and FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75562,1,0,0,0,14,0,0,0,0,0,4100,4242,13027,0,0,0,0,0,0,0,649,650,850,850,1,1,1,2,'Brass Leggings +1 (desynth)',NULL); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75563,1,0,0,0,70,0,0,0,0,0,4100,4242,13983,0,0,0,0,0,0,0,745,745,745,745,1,1,2,2,'Gold Bangles (desynth)',NULL); -- BGwiki and FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75564,1,0,0,0,70,0,0,0,0,0,4100,4242,13984,0,0,0,0,0,0,0,745,745,745,745,1,1,2,2,'Gold Bangles +1 (desynth)',NULL); -- BGwiki and FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75565,1,0,0,0,77,0,0,0,0,0,4100,4242,12674,0,0,0,0,0,0,0,850,931,931,745,2,2,3,1,'Gold Gauntlets (desynth)',NULL); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75566,1,0,0,0,99,0,0,0,0,0,4100,4242,16520,0,0,0,0,0,0,0,745,746,804,1229,1,1,1,6,'Verdun (desynth)',NULL); -- FFXIclopedia
|
|
INSERT INTO `synth_recipes` VALUES (75567,1,0,0,50,0,0,0,0,0,0,4100,4242,12306,0,0,0,0,0,0,0,715,651,651,651,1,1,2,2,'Kite Shield (desynth)',NULL); -- BGwiki
|
|
-- INSERT INTO `synth_recipes` VALUES (75568,1,0,0,0,0,0,45,0,0,0,4098,4240,2544,0,0,0,0,0,0,0,851,1629,1629,1629,1,1,1,1,'Smilodon Collar (desynth)','WOTG'); -- FFXIClopedia, unverified cap
|
|
-- INSERT INTO `synth_recipes` VALUES (75569,1,0,0,0,31,0,0,0,0,0,4100,4242,2545,0,0,0,0,0,0,0,650,2536,745,745,1,1,1,1,'Lynx Collar (desynth)','WOTG'); -- FFXIClopedia, unverified cap
|
|
INSERT INTO `synth_recipes` VALUES (75570,0,2038,0,0,0,0,0,0,2,0,4101,4243,888,1893,4509,4509,0,0,0,0,2952,2952,2952,2952,2,3,4,5,'Phial of miasmal counteragent', 'ABYSSEA'); -- BGWiki
|
|
-- INSERT INTO `synth_recipes` VALUES (75571,0,0,58,0,0,0,0,0,0,0,4096,4238,732,4509,0,0,0,0,0,0,2644,2644,2644,2644,33,66,99,99,'Ryuno','ABYSSEA'); -- BGWiki, FFXIclopedia, unverified alchemy cap
|
|
-- INSERT INTO `synth_recipes` VALUES (75572,1,0,0,0,0,0,0,98,0,0,4100,4242,3928,0,0,0,0,0,0,0,891,891,884,903,1,2,1,1,'Velkk Necklace (Desynth)','SOA'); -- Unverified Bonecraft cap, JPWiki 98 or less
|
|
-- INSERT INTO `synth_recipes` VALUES (75573,1,0,0,0,0,0,98,0,0,0,4100,4242,3929,0,0,0,0,0,0,0,2538,2538,2538,2538,1,1,1,1,'Velkk Mask (Desynth)','SOA'); -- Unverified Leatherworking cap, JPWiki 98 or less, uncertain HQ3 HQ4
|
|
-- INSERT INTO `synth_recipes` VALUES (75574,1,0,0,90,0,0,0,0,0,0,4100,4242,8746,0,0,0,0,0,0,0,651,4028,745,8748,1,1,1,1,'Dullahan Armor (Desynth)','SOA'); -- Unverified Blacksmithing cap
|
|
INSERT INTO `synth_recipes` VALUES (77575,0,0,0,0,0,0,0,0,13,0,4103,4245,1,8929,0,0,0,0,0,0,8971,8971,8971,8971,2,4,6,8,'Miracle Mulch','SOA'); -- FFXIClopedia, BGWiki
|
|
-- INSERT INTO `synth_recipes` VALUES (77576,0,0,71,0,0,0,0,0,0,0,4099,4241,704,857,1629,0,0,0,0,0,3600,3600,3600,3600,1,1,1,1,'Bongo Drum','ROV'); -- Unknown leather subcraft
|
|
INSERT INTO `synth_recipes` VALUES (77577,0,0,0,0,0,0,118,0,0,0,4099,4241,765,8739,9003,0,0,0,0,0,26333,26334,26334,26334,1,1,1,1,'Ioskeha Belt','ROV'); -- BGWiki
|
|
-- INSERT INTO `synth_recipes` VALUES (77578,0,0,0,0,0,0,110,0,0,0,4099,4241,9360,9361,9361,9362,26443,0,0,0,26444,26444,26444,26444,1,1,1,1,'Beveler\'s Ecu','ROV'); -- Unveriefied leather cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77579,0,0,0,0,0,0,0,0,110,0,4099,4241,9386,9387,9387,9388,26453,0,0,0,26454,26454,26454,26454,1,1,1,1,'Brewer\'s Ecu','ROV'); -- Unverified alchemy cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77580,0,0,0,0,0,0,0,0,0,110,4099,4241,9399,9400,9400,9401,26458,0,0,0,26459,26459,26459,26459,1,1,1,1,'Chef\'s Ecu','ROV'); -- Unverified cooking cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77581,0,0,110,0,0,0,0,0,0,0,4099,4241,9308,9309,9309,9310,26423,0,0,0,26424,26424,26424,26424,1,1,1,1,'Joiner\'s Ecu','ROV'); -- Unverified woodworking cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77582,0,0,0,0,0,0,0,110,0,0,4099,4241,9373,9374,9374,9375,26448,0,0,0,26449,26449,26449,26449,1,1,1,1,'Ossifier\'s Ecu','ROV'); -- Unverified bonecraft cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77583,0,0,0,0,0,110,0,0,0,0,4099,4241,9347,9348,9348,9349,26438,0,0,0,26439,26439,26439,26439,1,1,1,1,'Plaiter\'s Ecu','ROV'); -- Unverified clothcraft cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77584,0,0,0,110,0,0,0,0,0,0,4099,4241,9321,9322,9322,9323,26428,0,0,0,26429,26429,26429,26429,1,1,1,1,'Smythe\'s Ecu','ROV'); -- Unverified smithing cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77585,0,0,0,0,110,0,0,0,0,0,4099,4241,9334,9335,9335,9336,26433,0,0,0,26434,26434,26434,26434,1,1,1,1,'Toreutic Ecu','ROV'); -- Unverified goldsmithing cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77586,0,0,0,0,0,0,110,0,0,0,4099,4241,9360,9362,9363,9367,26444,0,0,0,26445,26445,26445,26445,1,1,1,1,'Beveler\'s Scutum','ROV'); -- Unverified leather cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77587,0,0,0,0,0,0,0,0,110,0,4099,4241,9386,9388,9389,9393,26454,0,0,0,26455,26455,26455,26455,1,1,1,1,'Brewer\'s Scutum','ROV'); -- Unverified alchemy cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77588,0,0,0,0,0,0,0,0,0,110,4099,4241,9399,9401,9402,9406,26459,0,0,0,26460,26460,26460,26460,1,1,1,1,'Chef\'s Scutum','ROV'); -- Unverified cooking cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77589,0,0,110,0,0,0,0,0,0,0,4099,4241,9308,9310,9311,9315,26424,0,0,0,26425,26425,26425,26425,1,1,1,1,'Joiner\'s Scutum','ROV'); -- Unverified woodworking cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77590,0,0,0,0,0,0,0,110,0,0,4099,4241,9373,9375,9376,9380,26449,0,0,0,26450,26450,26450,26450,1,1,1,1,'Ossifier\'s Scutum','ROV'); -- Unverified bonecraft cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77591,0,0,0,0,0,110,0,0,0,0,4099,4241,9347,9349,9350,9354,26439,0,0,0,26440,26440,26440,26440,1,1,1,1,'Plaiter\'s Scutum','ROV'); -- Unverified clothcraft cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77592,0,0,0,110,0,0,0,0,0,0,4099,4241,9321,9323,9324,9328,26429,0,0,0,26430,26430,26430,26430,1,1,1,1,'Smythe\'s Scutum','ROV'); -- Unverified smithing cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77593,0,0,0,0,110,0,0,0,0,0,4099,4241,9334,9336,9337,9341,26434,0,0,0,26435,26435,26435,26435,1,1,1,1,'Toreutic Scutum','ROV'); -- Unverified goldsmithing cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77594,0,0,0,0,0,0,110,0,0,0,4099,4241,9360,9364,9365,9365,9368,9370,26445,0,26446,26446,26446,26446,1,1,1,1,'Beveler\'s Shield','ROV'); -- Unverified leather cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77595,0,0,0,0,0,0,0,0,110,0,4099,4241,9386,9390,9391,9391,9394,9396,26455,0,26456,26456,26456,26456,1,1,1,1,'Brewer\'s Shield','ROV'); -- Unverified alchemy cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77596,0,0,0,0,0,0,0,0,0,110,4099,4241,9399,9403,9404,9404,9407,9409,26460,0,26461,26461,26461,26461,1,1,1,1,'Chef\'s Shield','ROV'); -- Unverified cooking cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77597,0,0,110,0,0,0,0,0,0,0,4099,4241,9308,9312,9313,9313,9316,9318,26425,0,26426,26426,26426,26426,1,1,1,1,'Joiner\'s Shield','ROV'); -- Unverified woodworking cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77598,0,0,0,0,0,0,0,110,0,0,4099,4241,9373,9377,9378,9378,9381,9383,26450,0,26451,26451,26451,26451,1,1,1,1,'Ossifier\'s Shield','ROV'); -- Unverified bonecraft cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77599,0,0,0,0,0,110,0,0,0,0,4099,4241,9347,9351,9352,9352,9355,9357,26440,0,26441,26441,26441,26441,1,1,1,1,'Plaiter\'s Shield','ROV'); -- Unverified clothcraft cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77600,0,0,0,110,0,0,0,0,0,0,4099,4241,9321,9325,9326,9326,9329,9331,26430,0,26431,26431,26431,26431,1,1,1,1,'Smythe\'s Shield','ROV'); -- Unverified smithing cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77601,0,0,0,0,110,0,0,0,0,0,4099,4241,9334,9338,9339,9339,9342,9344,26435,0,26436,26436,26436,26436,1,1,1,1,'Toreutic Shield','ROV'); -- Unverified goldsmithing cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77602,0,0,0,0,0,0,0,0,110,0,4099,4241,9392,9392,9395,9397,9398,26456,0,0,26457,26457,26457,26457,1,1,1,1,'Brewer\'s Escutcheon','ROV'); -- Unverified alchemy cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77603,0,0,0,0,0,0,110,0,0,0,4099,4241,9366,9366,9369,9371,9372,26446,0,0,26447,26447,26447,26447,1,1,1,1,'Beveler\'s Escutcheon','ROV'); -- Unverified leather cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77604,0,0,0,0,0,0,0,0,0,110,4099,4241,9405,9405,9408,9410,9411,26461,0,0,26462,26462,26462,26462,1,1,1,1,'Chef\'s Escutcheon','ROV'); -- Unverified cooking cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77605,0,0,110,0,0,0,0,0,0,0,4099,4241,9314,9314,9317,9319,9320,26426,0,0,26427,26427,26427,26427,1,1,1,1,'Joiner\'s Escutcheon','ROV'); -- Unverified woodworking cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77606,0,0,0,0,0,0,0,110,0,0,4099,4241,9379,9379,9382,9384,9385,26451,0,0,26452,26452,26452,26452,1,1,1,1,'Ossifier\'s Escutcheon','ROV'); -- Unverified bonecraft cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77607,0,0,0,0,0,110,0,0,0,0,4099,4241,9353,9353,9356,9358,9359,26441,0,0,26442,26442,26442,26442,1,1,1,1,'Plaiter\'s Escutcheon','ROV'); -- Unverified clothcraft cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77608,0,0,0,110,0,0,0,0,0,0,4099,4241,9327,9327,9330,9332,9333,26431,0,0,26432,26432,26432,26432,1,1,1,1,'Smythe\'s Escutcheon','ROV'); -- Unverified smithing cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77609,0,0,0,0,110,0,0,0,0,0,4099,4241,9340,9340,9343,9345,9346,26436,0,0,26437,26437,26437,26437,1,1,1,1,'Toreutic Escutcheon','ROV'); -- Unverified goldsmithing cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77610,0,2020,0,0,0,0,120,0,0,0,4099,4241,821,830,3977,9064,9254,9254,0,0,25557,25558,25558,25558,1,1,1,1,'Arke Zuchetto','ROV'); -- Unverified leather/smithihng
|
|
-- INSERT INTO `synth_recipes` VALUES (77611,0,2020,0,0,0,0,120,0,0,0,4099,4241,664,682,4015,9005,9254,9254,0,0,25563,25564,25564,25564,1,1,1,1,'Heyoka Cap','ROV'); -- Unverified leather/bone
|
|
-- INSERT INTO `synth_recipes` VALUES (77612,0,2020,0,0,0,0,120,0,0,0,4099,4241,821,830,3977,9064,9064,9254,9254,9254,26533,26534,26534,26534,1,1,1,1,'Arke Corazza','ROV'); -- Unverified leather/smithing
|
|
-- INSERT INTO `synth_recipes` VALUES (77613,0,2020,0,0,0,0,120,0,0,0,4099,4241,664,682,4015,9005,9005,9254,9254,9254,26539,26540,26540,26540,1,1,1,1,'Heyoka Harness','ROV'); -- Unverified leather/bone
|
|
-- INSERT INTO `synth_recipes` VALUES (77614,0,2020,0,0,0,0,120,0,0,0,4099,4241,821,821,3977,9064,9254,9254,0,0,25984,25985,25985,25985,1,1,1,1,'Arke Manopolas','ROV'); -- Unverified leather/smithing
|
|
-- INSERT INTO `synth_recipes` VALUES (77615,0,2020,0,0,0,0,120,0,0,0,4099,4241,664,664,4015,9005,9254,9254,0,0,25990,25991,25991,25991,1,1,1,1,'Heyoka Mittens','ROV'); -- Unverified leather/bone
|
|
-- INSERT INTO `synth_recipes` VALUES (77616,0,2020,0,0,0,0,120,0,0,0,4099,4241,821,830,3977,9064,9254,9254,9254,0,25897,25898,25898,25898,1,1,1,1,'Arke Cosciales','ROV'); -- Unverified leather/smithing
|
|
-- INSERT INTO `synth_recipes` VALUES (77617,0,2020,0,0,0,0,120,0,0,0,4099,4241,664,682,4015,9005,9254,9254,9254,0,25903,25904,25904,25904,1,1,1,1,'Heyoka Subligar','ROV'); -- Unverified leather/bone
|
|
-- INSERT INTO `synth_recipes` VALUES (77618,0,2020,0,0,0,0,120,0,0,0,4099,4241,821,3977,9064,9254,9254,0,0,0,25964,25965,25965,25965,1,1,1,1,'Arke Gambieras','ROV'); -- Unverified leather/smithing
|
|
-- INSERT INTO `synth_recipes` VALUES (77619,0,2020,0,0,0,0,120,0,0,0,4099,4241,664,4015,9005,9254,9254,0,0,0,25970,25971,25971,25971,1,1,1,1,'Heyoka Leggings','ROV'); -- Unverified leather/bone
|
|
-- INSERT INTO `synth_recipes` VALUES (77620,0,0,0,0,0,0,120,0,0,0,4099,4241,763,9254,9254,9893,0,0,0,0,26360,26361,26361,26361,1,1,1,1,'Gerdr Belt','ROV'); -- Unverified leather/alchemy
|
|
INSERT INTO `synth_recipes` VALUES (77621,0,0,0,0,0,0,0,0,0,87,4096,4238,2110,6502,6503,6505,0,0,0,0,6470,6470,6471,6471,2,4,2,4,'Oden','TVR'); -- BGWiki
|
|
INSERT INTO `synth_recipes` VALUES (77622,0,0,0,0,0,0,0,0,0,37,4099,4241,936,4461,4483,0,0,0,0,0,6505,6505,6505,6505,2,4,6,8,'Chikuwa','TVR'); -- BGWiki
|
|
INSERT INTO `synth_recipes` VALUES (77623,0,0,0,0,0,0,0,0,0,27,4096,4238,888,4509,6501,0,0,0,0,0,6502,6502,6502,6502,2,4,6,8,'Konjak','TVR'); -- BGWiki
|
|
INSERT INTO `synth_recipes` VALUES (77624,0,0,0,0,0,0,0,0,0,73,4096,4238,610,615,619,936,4375,4378,4387,5684,6609,6609,6610,6610,4,6,2,4,'Popo. Con Queso','TVR'); -- BGWiki
|
|
-- INSERT INTO `synth_recipes` VALUES (77625,0,0,0,0,0,0,0,0,0,98,4096,4238,610,615,936,4375,4378,4474,5473,5684,6611,6611,6612,6612,4,6,2,4,'Seafood Gratin','TVR'); -- Unverified cooking cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77626,0,0,0,0,0,0,0,0,0,100,4096,4238,617,620,2111,4387,5152,5233,5236,5237,6686,6686,6687,6687,6,8,6,8,'Gyudon','TVR'); -- Placeholder, unknown cooking cap
|
|
-- INSERT INTO `synth_recipes` VALUES (77627,1,0,0,0,100,0,0,0,0,0,4100,4242,9933,0,0,0,0,0,0,0,2305,2305,1225,1225,2,4,2,4,'Golden Shell (Desynth)','TVR'); -- Placeholder, unknown goldsmithing cap, missing item_basic
|
|
INSERT INTO `synth_recipes` VALUES (77628,0,2035,0,0,0,0,0,0,24,0,4101,4243,637,637,913,913,913,913,2131,0,4165,4165,4165,4165,8,10,12,12,'Silent Oil','ABYSSEA'); -- 2012.06.13 Trituration
|
|
|
|
-- -----------
|
|
-- RECIPES END
|
|
|
|
-- INSERT INTO `synth_recipes` VALUES (ID,Desynth,KeyItem,WD,SM,GO,CL,LE,BO,AL,CK,Crystal,HQCrystal,I1,I2,I3,I4,I5,I6,I7,I8,R1,R2,R3,R4,Q1,Q2,Q3,Q4,ResultName,ContentTag); -- template
|
|
-- crystals = fire(4096,4238) ice(4097,4239) wind(4098,4240) earth(4099,4241) lightning(4100,4242) water(4101,4243) light(4102,4244) dark(4103,4245)
|
|
|
|
/*!40000 ALTER TABLE `synth_recipes` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|