From: Deskull Date: Sat, 15 Dec 2018 10:37:58 +0000 (+0900) Subject: [Feature] #38796 マーフォークの初期装備に浮遊の指輪を追加。 / Add ring of levitation to initial equipment... X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=be53995bf06e2f100286cf461d672e9314203bb2;p=hengband%2Fhengband.git [Feature] #38796 マーフォークの初期装備に浮遊の指輪を追加。 / Add ring of levitation to initial equipment of Merfolk. --- diff --git a/src/birth.c b/src/birth.c index 142896fe8..ad99a516f 100644 --- a/src/birth.c +++ b/src/birth.c @@ -2393,6 +2393,13 @@ void player_outfit(void) } q_ptr = &forge; + if (p_ptr->prace == RACE_MERFOLK) + { + object_prep(q_ptr, lookup_kind(TV_RING, SV_RING_LEVITATION_FALL)); + q_ptr->number = 1; + add_outfit(q_ptr); + } + if ((p_ptr->pclass == CLASS_RANGER) || (p_ptr->pclass == CLASS_CAVALRY)) { /* Hack -- Give the player some arrows */