12 lines
409 B
C#
12 lines
409 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
|
|
|
|
/// <summary>
|
|
/// Illuminate is an ability that increases the wild encounter rate when the Pokémon is leading the party.
|
|
///
|
|
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Illuminate_(Ability)">Bulbapedia - Illuminate</see>
|
|
/// </summary>
|
|
[Script(ScriptCategory.Ability, "illuminate")]
|
|
public class Illuminate : Script
|
|
{
|
|
// No effect in battle.
|
|
} |