diff options
Diffstat (limited to 'npc/craft')
-rw-r--r-- | npc/craft/alchemy.txt | 16 | ||||
-rw-r--r-- | npc/craft/recipes.txt | 8 |
2 files changed, 16 insertions, 8 deletions
diff --git a/npc/craft/alchemy.txt b/npc/craft/alchemy.txt index 0c987c321..68d2d8014 100644 --- a/npc/craft/alchemy.txt +++ b/npc/craft/alchemy.txt @@ -85,14 +85,14 @@ OK Coffee (Shadow Herb + Tonori Water) OK Piberries Infusion (Piberries + Curshroom) OK Atropos Mixture (Lachesis Brew + Clotho Liquor) OK Death Potion (Dragonfruit + Nightshade Tea) -R Smoke Grenade (Cactus pot + Coal) -R Grenade (Cactus pot + Sulfur Powder) -R Scented Grenade (Cactus pot + Moss) +RE Smoke Grenade (Cactus pot + Coal) +RE Grenade (Cactus pot + Sulfur Powder) +RE Scented Grenade (Cactus pot + Moss) OK Haste Potion (Plushshroom) OK Strength Potion (Chagashroom) Return Potion (Hurnscald Recipe => Ocean Croc Claw + Hard Spike? Grass Seeds?) OK Status Reset (Curshroom + Mana Piou Feather) -R Homun Stat Reset (Curshroom + Manapple) +RE Homun Stat Reset (Curshroom + Manapple) OK Move Speed (Gem Powder + Fluor Powder) OK Precision (Piberries + Mt. Snake Egg) OK Dodge Potion (Piberries + Snake Egg) @@ -100,12 +100,12 @@ OK Luck, Dex, Int, Vit, Agi (Gems + Tea) OK Sacred Life (Golden Apple + Elixir of Life) OK Sacred Mana (Golden Apple + Celestia Tea) OK Sacred Revival (Sacred Life + Sacred Mana) -R Broken Warp Crystal? (Wurtizite + Black Mamba Skin) -R Magic Apple? (Divine Apple + Manapple? Death Potion? Sacred Life/Revival?) +RE Broken Warp Crystal? (Wurtizite + Black Mamba Skin) +RE Magic Apple? (Divine Apple + Manapple? Death Potion? Sacred Life/Revival?) OK Purification Potion (Nymph Poison + Sacred Life) OK Iced Bottle (Tonori W. + Argaes W.) -R Insurance Contract (» Insurance?) (Quill + Reed Bundle) -R Insurance (Quill + Death Potion) +RE Insurance Contract (» Insurance?) (Quill + Reed Bundle) +RE Insurance (Quill + Death Potion) Mysterious Fruit? (Legendary) For all Scrolls: Quill + ? (depends on scroll itself) diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index 0cd4a7a5f..849638146 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -344,12 +344,17 @@ function script MakeBlueprint { array_push(.@recipes, CraftVitPotionA); array_push(.@recipes, CraftSpeedPotion); array_push(.@recipes, CraftIcedBottle); + array_push(.@recipes, CraftInsuranceContract); } if (.@rarity & CRAFT_ADVANCED) { array_push(.@recipes, CraftResetPotion); array_push(.@recipes, CraftPrecisionPotion); array_push(.@recipes, CraftDodgePotion); array_push(.@recipes, CraftDeathPotion); + array_push(.@recipes, CraftSmokeGrenade); + array_push(.@recipes, CraftScentGrenade); + array_push(.@recipes, CraftGrenade); + array_push(.@recipes, CraftInsurance); } if (.@rarity & CRAFT_EXPERT) { array_push(.@recipes, CraftLukPotionB); @@ -359,6 +364,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftVitPotionB); array_push(.@recipes, CraftAtroposMixture); array_push(.@recipes, CraftPurificationPotion); + array_push(.@recipes, CraftHomunResetPotion); } if (.@rarity & CRAFT_MASTER) { array_push(.@recipes, CraftLukPotionC); @@ -369,6 +375,8 @@ function script MakeBlueprint { array_push(.@recipes, CraftSacredLifePotion); array_push(.@recipes, CraftSacredManaPotion); array_push(.@recipes, CraftSacredImmortalityPotion); + array_push(.@recipes, CraftBrokenWarpCrystal); + array_push(.@recipes, CraftMagicApple); } // Now you'll learn some recipe! |