[jnh-cvs 420] CVS update: jnethack/src

Back to archive index

Kentaro Shirakata argra****@users*****
2005年 1月 2日 (日) 18:53:42 JST


Index: jnethack/src/do_name.c
diff -u jnethack/src/do_name.c:1.31 jnethack/src/do_name.c:1.32
--- jnethack/src/do_name.c:1.31	Thu Jul 29 01:07:23 2004
+++ jnethack/src/do_name.c	Sun Jan  2 18:53:41 2005
@@ -1039,8 +1039,12 @@
        its own obfuscation) */
     if (mon->data == &mons[PM_HIGH_PRIEST] && !Hallucination &&
 	    Is_astralevel(&u.uz) && distu(mon->mx, mon->my) > 2) {
+#if 0 /*JP*/
 	Strcpy(outbuf, article == ARTICLE_THE ? "the " : "");
 	Strcat(outbuf, mon->female ? "high priestess" : "high priest");
+#else
+	Strcpy(outbuf, "法王");
+#endif
     } else {
 	Strcpy(outbuf, x_monnam(mon, article, (char *)0, 0, TRUE));
     }
Index: jnethack/src/priest.c
diff -u jnethack/src/priest.c:1.16 jnethack/src/priest.c:1.17
--- jnethack/src/priest.c:1.16	Thu Dec 25 20:12:03 2003
+++ jnethack/src/priest.c	Sun Jan  2 18:53:41 2005
@@ -301,10 +301,15 @@
 */
 				Strcat(pname, "裏切り者の");
 			if (mon->data == &mons[PM_HIGH_PRIEST])
-/*JP
+#if 0 /*JP*/
 				Strcat(pname, "high ");
-*/
-				Strcat(pname, "位の高い");
+#else
+				if (Hallucination)
+					Strcat(pname, "無能高級官僚");
+				else
+					Strcat(pname, "法王");
+			else /* 上記で完成させて、以下のコードは通らなくする */
+#endif
 			if (Hallucination)
 /*JP
 				Strcat(pname, "poohbah ");


Jnethack-cvs メーリングリストの案内
Back to archive index