| 5318 | } |
| 5319 | |
| 5320 | void float_player() |
| 5321 | { |
| 5322 | if (you.fishtail) |
| 5323 | { |
| 5324 | mpr("Your tail turns into legs as you fly out of the water."); |
| 5325 | merfolk_stop_swimming(); |
| 5326 | } |
| 5327 | else if (you.has_mutation(MUT_TENGU_FLIGHT)) |
| 5328 | mpr("You swoop lightly up into the air."); |
| 5329 | else |
| 5330 | mpr("You fly up into the air."); |
| 5331 | } |
| 5332 | |
| 5333 | void fly_player(int pow, bool already_flying) |
| 5334 | { |
no test coverage detected