Browse Source

Reword potion effect descriptions for consistency

pull/2115/head
Juliano Leal Goncalves 6 years ago committed by Anders Jenbo
parent
commit
604b72bb12
  1. 12
      Source/items.cpp

12
Source/items.cpp

@ -3318,11 +3318,11 @@ void PrintItemOil(char IDidx)
AddPanelString(tempstr); AddPanelString(tempstr);
break; break;
case IMISC_FULLHEAL: case IMISC_FULLHEAL:
strcpy(tempstr, _("fully recover life")); strcpy(tempstr, _("restore all life"));
AddPanelString(tempstr); AddPanelString(tempstr);
break; break;
case IMISC_HEAL: case IMISC_HEAL:
strcpy(tempstr, _("recover partial life")); strcpy(tempstr, _("restore some life"));
AddPanelString(tempstr); AddPanelString(tempstr);
break; break;
case IMISC_OLDHEAL: case IMISC_OLDHEAL:
@ -3334,11 +3334,11 @@ void PrintItemOil(char IDidx)
AddPanelString(tempstr); AddPanelString(tempstr);
break; break;
case IMISC_MANA: case IMISC_MANA:
strcpy(tempstr, _("recover mana")); strcpy(tempstr, _("restore some mana"));
AddPanelString(tempstr); AddPanelString(tempstr);
break; break;
case IMISC_FULLMANA: case IMISC_FULLMANA:
strcpy(tempstr, _("fully recover mana")); strcpy(tempstr, _("restore all mana"));
AddPanelString(tempstr); AddPanelString(tempstr);
break; break;
case IMISC_ELIXSTR: case IMISC_ELIXSTR:
@ -3374,11 +3374,11 @@ void PrintItemOil(char IDidx)
AddPanelString(tempstr); AddPanelString(tempstr);
break; break;
case IMISC_REJUV: case IMISC_REJUV:
strcpy(tempstr, _("recover life and mana")); strcpy(tempstr, _("restore some life and mana"));
AddPanelString(tempstr); AddPanelString(tempstr);
break; break;
case IMISC_FULLREJUV: case IMISC_FULLREJUV:
strcpy(tempstr, _("fully recover life and mana")); strcpy(tempstr, _("restore all life and mana"));
AddPanelString(tempstr); AddPanelString(tempstr);
break; break;
} }

Loading…
Cancel
Save