12 lines
376 B
C#
12 lines
376 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
|
|
|
|
/// <summary>
|
|
/// Pickup is an ability that allows the Pokémon to pick up items after battle.
|
|
///
|
|
/// <see href="https://bulbapedia.bulbagarden.net/wiki/Pickup_(Ability)">Bulbapedia - Pickup</see>
|
|
/// </summary>
|
|
[Script(ScriptCategory.Ability, "pickup")]
|
|
public class Pickup : Script
|
|
{
|
|
// TODO: Implement Pickup effect.
|
|
} |