From: henkma Date: Mon, 20 Oct 2003 15:09:05 +0000 (+0000) Subject: auto_scum廃止に向けて, アイテム生成, ピット, ネストを調整. X-Git-Tag: v2.1.2~983 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d06906cf20e1478277f75450bef8f4cbe74c1c31;p=hengband%2Fhengband.git auto_scum廃止に向けて, アイテム生成, ピット, ネストを調整. --- diff --git a/src/object2.c b/src/object2.c index e71fe1dd2..4131f1f17 100644 --- a/src/object2.c +++ b/src/object2.c @@ -4168,7 +4168,7 @@ void apply_magic(object_type *o_ptr, int lev, u32b mode) if (f1 > d_info[dungeon_type].obj_good) f1 = d_info[dungeon_type].obj_good; /* Base chance of being "great" */ - f2 = f1 / 2; + f2 = f1 * 2 / 3; /* Maximal chance of being "great" */ if ((p_ptr->pseikaku != SEIKAKU_MUNCHKIN) && (f2 > d_info[dungeon_type].obj_great)) diff --git a/src/rooms.c b/src/rooms.c index 0b0fc9fd7..eb0c17cb1 100644 --- a/src/rooms.c +++ b/src/rooms.c @@ -2126,7 +2126,7 @@ static bool build_type5(void) while (attempts--) { /* Get a (hard) monster type */ - r_idx = get_mon_num(dun_level + 10); + r_idx = get_mon_num(dun_level + 11); r_ptr = &r_info[r_idx]; /* Decline incorrect alignment */ @@ -2355,7 +2355,7 @@ static bool build_type6(void) while (attempts--) { /* Get a (hard) monster type */ - r_idx = get_mon_num(dun_level + 10); + r_idx = get_mon_num(dun_level + 11); r_ptr = &r_info[r_idx]; /* Decline incorrect alignment */