summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-07-06 17:03:59 +0300
committerAndrei Karas <akaras@inbox.ru>2014-07-06 17:03:59 +0300
commit54f35a2def4709ec4aa5973bba6223812239b3c3 (patch)
tree13b6ca84d1372213d4455908a60bbe659408e263 /src
parenta0f118acae10932de56f5b9eed61333e0b581e81 (diff)
downloadplus-54f35a2def4709ec4aa5973bba6223812239b3c3.tar.gz
plus-54f35a2def4709ec4aa5973bba6223812239b3c3.tar.bz2
plus-54f35a2def4709ec4aa5973bba6223812239b3c3.tar.xz
plus-54f35a2def4709ec4aa5973bba6223812239b3c3.zip
Add some item text attributes.
Diffstat (limited to 'src')
-rw-r--r--src/resources/db/itemdb.cpp34
1 files changed, 24 insertions, 10 deletions
diff --git a/src/resources/db/itemdb.cpp b/src/resources/db/itemdb.cpp
index a8cd1422c..01b5fc913 100644
--- a/src/resources/db/itemdb.cpp
+++ b/src/resources/db/itemdb.cpp
@@ -94,16 +94,30 @@ namespace
static const FieldType fields[] =
{
- // TRANSLATORS: item info label
- { "attack", N_("Attack %s"), true },
- // TRANSLATORS: item info label
- { "defense", N_("Defense %s"), true },
- // TRANSLATORS: item info label
- { "hp", N_("HP %s"), true },
- // TRANSLATORS: item info label
- { "mp", N_("MP %s"), true },
- // TRANSLATORS: item info label
- { "level", N_("Level %s"), false }
+ // TRANSLATORS: item info label (attack)
+ { "attack", N_("Attack %s"), true },
+ // TRANSLATORS: item info label (attack)
+ { "criticalattack", N_("Critical attack %s"), true },
+ // TRANSLATORS: item info label (magic attack)
+ { "mattack", N_("M. Attack %s"), true },
+ // TRANSLATORS: item info label (defence)
+ { "defense", N_("Defense %s"), true },
+ // TRANSLATORS: item info label (defence)
+ { "criticaldefense", N_("Critical defense %s"), true },
+ // TRANSLATORS: item info label (magic defence)
+ { "mdefense", N_("M. Defense %s"), true },
+ // TRANSLATORS: item info label (health)
+ { "hp", N_("HP %s"), true },
+ // TRANSLATORS: item info label (mana)
+ { "mp", N_("MP %s"), true },
+ // TRANSLATORS: item info label (level)
+ { "level", N_("Level %s"), false },
+ // TRANSLATORS: item info label (moving speed)
+ { "speed", N_("Speed %s"), true },
+ // TRANSLATORS: item info label (health)
+ { "range", N_("Range %s"), true },
+ // TRANSLATORS: item info label (health)
+ { "flee", N_("Flee %s"), true }
};
} // namespace