* Examine a given ability. List its description and details. * * @param ability The ability in question. */
| 4822 | * @param ability The ability in question. |
| 4823 | */ |
| 4824 | void describe_ability(ability_type ability) |
| 4825 | { |
| 4826 | describe_info inf; |
| 4827 | inf.title = ability_name(ability); |
| 4828 | inf.body << get_ability_desc(ability, false); |
| 4829 | tile_def tile = tile_def(tileidx_ability(ability)); |
| 4830 | show_description(inf, &tile); |
| 4831 | } |
| 4832 | |
| 4833 | /** |
| 4834 | * Examine a given deck. |
no test coverage detected