diff options
Diffstat (limited to 'npc/011-1/manastone.txt')
-rw-r--r-- | npc/011-1/manastone.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/011-1/manastone.txt b/npc/011-1/manastone.txt index 7cb410790..6034546cd 100644 --- a/npc/011-1/manastone.txt +++ b/npc/011-1/manastone.txt @@ -72,8 +72,10 @@ L_NotWorthy: L_LevelUp: mes ""; mes l("A great rush of mana flows though you."); - if (!MAGIC_LVL) mes l("Magic Power is granted to you, but you die from it."); - if (MAGIC_LVL) mes l("More Magic Power is granted to you, but you die from it."); + if ($GAME_STORYLINE >= 5 && getq(General_Narrator) >= 23) mes l("You were worth of the Lightbringer's gift and blessing to the world."); + else if ($GAME_STORYLINE >= 5) mes l("You were worth of the Mana Source's gift and blessing to the world."); + else if (!MAGIC_LVL) mes l("Magic Power is granted to you, but you die from it."); + else if (MAGIC_LVL) mes l("More Magic Power is granted to you, but you die from it."); MAGIC_LVL = MAGIC_LVL+1; sk_lvup(AL_DP); // No penalty for death provoked by Mana Stone, see npc/001-8/hub.txt for more info |