変愚蛮怒のメインリポジトリです
Revisión | 4c83d9332514300152e19d1e4234098d4bca8247 (tree) |
---|---|
Tiempo | 2018-08-02 21:13:47 |
Autor | Deskull <deskull@user...> |
Commiter | Deskull |
[Implement] #37468 SUMMONとREFLECTの効果音処理と効果音一つを追加。 / Add a sound file and sound processes for SUMMON and REFLECT.
@@ -50,7 +50,6 @@ x_heal = | ||
50 | 50 | bite = |
51 | 51 | claw = |
52 | 52 | m_spell = |
53 | -summon = se_maoudamashii_voice_monster01.wav | |
54 | 53 | breath = |
55 | 54 | ball = |
56 | 55 | m_heal = |
@@ -78,5 +77,5 @@ show = | ||
78 | 77 | unused = |
79 | 78 | explode = |
80 | 79 | glass = |
81 | -summon = | |
82 | -reflect = | |
80 | +summon = enemy-advent1-r.wav | |
81 | +reflect = sword-clash1-r.wav |
@@ -4047,6 +4047,7 @@ bool summon_specific(MONSTER_IDX who, POSITION y1, POSITION x1, DEPTH lev, int t | ||
4047 | 4047 | |
4048 | 4048 | summon_specific_type = 0; |
4049 | 4049 | /* Success */ |
4050 | + sound(SOUND_SUMMON); | |
4050 | 4051 | return (TRUE); |
4051 | 4052 | } |
4052 | 4053 |
@@ -5218,6 +5218,7 @@ static bool project_p(int who, cptr who_name, int r, POSITION y, POSITION x, HIT | ||
5218 | 5218 | { |
5219 | 5219 | POSITION t_y, t_x; |
5220 | 5220 | int max_attempts = 10; |
5221 | + sound(SOUND_REFLECT); | |
5221 | 5222 | |
5222 | 5223 | if (blind) |
5223 | 5224 | msg_print(_("何かが跳ね返った!", "Something bounces!")); |
@@ -7604,6 +7605,7 @@ bool project(MONSTER_IDX who, POSITION rad, POSITION y, POSITION x, HIT_POINT da | ||
7604 | 7605 | t_x = x_saver; |
7605 | 7606 | } |
7606 | 7607 | |
7608 | + sound(SOUND_REFLECT); | |
7607 | 7609 | if (is_seen(m_ptr)) |
7608 | 7610 | { |
7609 | 7611 | if ((m_ptr->r_idx == MON_KENSHIROU) || (m_ptr->r_idx == MON_RAOU)) |