• R/O
  • HTTP
  • SSH
  • HTTPS

hengband: Commit

変愚蛮怒のメインリポジトリです


Commit MetaInfo

Revisionbd6050ced4891554a31aa3c464141b3dd4492ee5 (tree)
Time2002-05-05 08:58:55
Authormogami <mogami@0568...>
Commitermogami

Log Message

- 人食いの武器の耐性自動刻みは"/p"にするべきなので修正。
- 耐性自動刻みのヘルプ文章修正。特に英語版は文章修正。
- "%"の働きは変愚に馴れ親しんだ日本人にしか意味ないので、

英語版のサンプル設定では"%all"を使う事にした。

Change Summary

Incremental Difference

--- a/lib/help/jobjects.txt
+++ b/lib/help/jobjects.txt
@@ -491,7 +491,7 @@ r
491491 +探 : +Sr : 探索修正 |切 : |S : 切れ味の武器
492492 +赤 : +If : 赤外線修正 |理 : |M : 理力の武器
493493 +掘 : +Dg : 採掘力修正 |邪 : |* : 滅邪の武器
494-(腕 : (St : 腕力維持 |人 : |H : 人斬りの武器
494+(腕 : (St : 腕力維持 /人 : /p : 人食いの武器
495495 (知 : (In : 知力維持 /龍 : /D : *ドラゴン・スレイヤー*
496496 (賢 : (Wi : 賢さ維持 /竜 : /d : ドラゴン・スレイヤー
497497 (器 : (Dx : 器用さ維持 /オ : /o : オーク・スレイヤー
--- a/lib/help/objects.txt
+++ b/lib/help/objects.txt
@@ -478,12 +478,12 @@ Auto Inscription of Resistances and Powers
478478 ------------------------------------------
479479
480480 When you inscribe {%all} on an *identified* object, the '%all' will
481-automatically transform and become a string which describe its
482-resistances and powers. For example, when you inscribe {%all} on a
483-robe of Resistance which has resistance to four elements and extra
484-resistance to Nether, the inscription will transform to {AcElFiClNt}.
485-The 'Ac' means resistance to acid while El, Fi, Cl and Nt mean
486-resistances to electricity, fire, cold and nether.
481+automatically transforms and changes into a string which describe its
482+resistances and powers. For example, when you inscribe {%all} on a
483+robe of Resistance which has resistance to four elements and an extra
484+resistance to Nether, the inscription will change into {AcElFiClNt}.
485+The 'Ac' is abbreviation of resistance to ACid, while El, Fi, Cl and
486+Nt are resistances to ELectricity, FIre, CoLd and NeTher.
487487
488488 On the other hand, when you inscribe {%} on an *identified* object,
489489 the {%} will transform to a string which describes only its extra
@@ -491,7 +491,7 @@ resistances. In the example above, the inscription will become {Nt},
491491 meaning the extra resistance of Nether.
492492
493493
494-List of auto-inscription codes:
494+List of abbreviations:
495495
496496 *Ac : immune to acid Ma : decreases mana consumption
497497 *El : immune to electricity Th : suitable for throwing
@@ -525,7 +525,7 @@ Sl : affects stealth |Q : weapon of quake
525525 Sr : affects searching ability |S : vorpal hit
526526 If : affects infravision |M : weapon of the force
527527 Dg : affects tunneling ability /* : slay evil
528-(St : sustain strength /H : slay human
528+(St : sustain strength /p : slay human
529529 (In : sustain intelligence /D : kill dragon
530530 (Wi : sustain wisdom /d : slay dragon
531531 (Dx : sustain dexterity /o : slay orc
--- a/lib/pref/pickpref.prf
+++ b/lib/pref/pickpref.prf
@@ -23,7 +23,7 @@ collecting missiles
2323 (collecting items
2424
2525 # Auto-inscribe resistances...
26-~*identified* artifacts#%
26+~*identified* artifacts#%all
2727
2828 *Destruction*
2929 Genocide
--- a/src/cmd3.c
+++ b/src/cmd3.c
@@ -1400,7 +1400,7 @@ static flag_insc_table flag_insc_brand[] =
14001400 static flag_insc_table flag_insc_slay[] =
14011401 {
14021402 { "邪", "*", TR1_SLAY_EVIL, 1, 0 },
1403- { "人", "H", TR3_SLAY_HUMAN, 3, 0 },
1403+ { "人", "p", TR3_SLAY_HUMAN, 3, 0 },
14041404 { "龍", "D", TR1_KILL_DRAGON, 1, 0 },
14051405 { "竜", "d", TR1_SLAY_DRAGON, 1, TR1_KILL_DRAGON },
14061406 { "オ", "o", TR1_SLAY_ORC, 1, 0 },
@@ -1528,7 +1528,7 @@ static flag_insc_table flag_insc_brand[] =
15281528 static flag_insc_table flag_insc_slay[] =
15291529 {
15301530 { "*", TR1_SLAY_EVIL, 1, 0 },
1531- { "H", TR3_SLAY_HUMAN, 3, 0 },
1531+ { "p", TR3_SLAY_HUMAN, 3, 0 },
15321532 { "D", TR1_KILL_DRAGON, 1, 0 },
15331533 { "d", TR1_SLAY_DRAGON, 1, TR1_KILL_DRAGON },
15341534 { "o", TR1_SLAY_ORC, 1, 0 },
Show on old repository browser