diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-12-23 04:17:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-12-23 04:17:13 -0300 |
commit | c532251eeecf9323977a69d2d207dfdefed716e8 (patch) | |
tree | fce35b9e448daf98615ea0e7712b8e7248ef49ae /npc | |
parent | 24067d4f3c855778f5325687b906814eb4a043f6 (diff) | |
download | serverdata-c532251eeecf9323977a69d2d207dfdefed716e8.tar.gz serverdata-c532251eeecf9323977a69d2d207dfdefed716e8.tar.bz2 serverdata-c532251eeecf9323977a69d2d207dfdefed716e8.tar.xz serverdata-c532251eeecf9323977a69d2d207dfdefed716e8.zip |
Make obtaining master blueprints from ancient BPs harder
Diffstat (limited to 'npc')
-rw-r--r-- | npc/craft/alchemy.txt | 6 | ||||
-rw-r--r-- | npc/craft/recipes.txt | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/npc/craft/alchemy.txt b/npc/craft/alchemy.txt index 055529c81..11681847e 100644 --- a/npc/craft/alchemy.txt +++ b/npc/craft/alchemy.txt @@ -104,8 +104,8 @@ OK Broken Warp Crystal? (Wurtizite + Black Mamba Skin) OK Magic Apple? (Divine Apple + Manapple? Death Potion? Sacred Life/Revival?) OK Purification Potion (Nymph Poison + Sacred Life) OK Iced Bottle (Tonori W. + Argaes W.) -RE Insurance Contract (» Insurance?) (Quill + Reed Bundle) -RE Insurance (Quill + Death Potion) +OK Insurance Contract (» Insurance?) (Quill + Reed Bundle) +OK Insurance (Quill + Death Potion) Mysterious Fruit? (Legendary) For all Scrolls: Quill + ? (depends on scroll itself) @@ -121,7 +121,7 @@ For all Scrolls: Quill + ? (depends on scroll itself) » Moggun/Yeti: Frozen Yeti Tear (Lv 60) » Terranite/T.Prot.: Terranite Ore (Lv 90) » Magnus Heal (Lifestone) - » Area Provoke? + » Area Provoke? → Scent grenade? » Guild Skills? // Skills for Aegis Shield, all beyond maximum level diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index aa5bd0665..f54209dc1 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -541,8 +541,10 @@ function script MakeRandomBlueprint { if (BaseLevel > 100) { array_push(.@blueprints, AlchemyBlueprintD); array_push(.@blueprints, EquipmentBlueprintD); - array_push(.@blueprints, AlchemyBlueprintE); - array_push(.@blueprints, EquipmentBlueprintE); + if (any(true,false)) { + array_push(.@blueprints, AlchemyBlueprintE); + array_push(.@blueprints, EquipmentBlueprintE); + } } getitem any_of(.@blueprints), 1; return; |