• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

JNetHackのソースをいじくったものを置いておくための場所


Commit MetaInfo

修訂79248bc3c0cae645cbdf3193d6c3358a6a715ab3 (tree)
時間2017-10-11 14:15:36
作者SHIRAKATA Kentaro <argrath@ub32...>
CommiterSHIRAKATA Kentaro

Log Message

fix comment-out

Change Summary

差異

--- a/src/eat.c
+++ b/src/eat.c
@@ -1234,8 +1234,9 @@ register int pm;
12341234 case PM_SANDESTIN: /* moot--they don't leave corpses */
12351235 if (Unchanging) {
12361236 #if 0 /*JP*/
1237- You_feel("一瞬違った感じがした."); /* same as poly trap */
1237+ You_feel("momentarily different."); /* same as poly trap */
12381238 #else
1239+ You_feel("一瞬違った感じがした."); /* same as poly trap */
12391240 #endif
12401241 } else {
12411242 /*JP
--- a/src/pline.c
+++ b/src/pline.c
@@ -488,6 +488,7 @@ register struct monst *mtmp;
488488 /*JP
489489 Strcat(info, ", shapechanger");
490490 */
491+ Strcat(info, ", 変化");
491492
492493 /* pets eating mimic corpses mimic while eating, so this comes first */
493494 if (mtmp->meating)
--- a/src/potion.c
+++ b/src/potion.c
@@ -2518,7 +2518,7 @@ dodip()
25182518
25192519 if (potion->otyp == POT_WATER && obj->otyp == TOWEL) {
25202520 /*JP
2521- pline_The("towel soak up!");
2521+ pline_The("towel soaks it up!");
25222522 */
25232523 pline_The("タオルは水を吸い込んだ!");
25242524 /* wetting towel already done via water_damage() in H2Opotion_dip */
--- a/src/rumors.c
+++ b/src/rumors.c
@@ -571,6 +571,9 @@ struct monst *oracl;
571571 if (umoney <= (long) minor_cost /* don't even ask */
572572 || (oracle_cnt == 1 || oracle_flg < 0))
573573 return 0;
574+/*JP
575+ Sprintf(qbuf, "\"Then dost thou desire a major one?\" (%d %s)",
576+*/
574577 Sprintf(qbuf, "「ならば汝,高位の神託を受けるか?」(%d%s)",
575578 major_cost, currency((long) major_cost));
576579 if (yn(qbuf) != 'y')
--- a/src/shk.c
+++ b/src/shk.c
@@ -3865,7 +3865,7 @@ boolean croaked;
38653865
38663866 if (saw_untrap) {
38673867 #if 0 /*JP*/
3868- Sprintf(trapmsg, "% trap",
3868+ Sprintf(trapmsg, "%s trap%s",
38693869 (saw_untrap > 3) ? "several" : (saw_untrap > 1) ? "some"
38703870 : "a",
38713871 plur(saw_untrap));