'There is a white aura surrounding you' - what is it?
I hava an old mutation spoiler, but doesn't exist a thing like this.
I hava an old mutation spoiler, but doesn't exist a thing like this.
MUT3_GOOD_LUCK, "There is a white aura surrounding you.", "There is a benevolent white aura surrounding you...", "Your white aura shimmers and fades.", "(nothing)", 0, 0, 0, 0, 0
/* "Good Luck" mutation */
if ((p_ptr->muta3 & MUT3_GOOD_LUCK) && one_in_(13))
{
/* The player is lucky - the item is better than normal */
delta_level += 20;
}
/* Good luck */
if ((p_ptr->muta3 & MUT3_GOOD_LUCK) && !one_in_(13))
{
heavy = TRUE;
}
Comment