10 lines
262 B
C#
10 lines
262 B
C#
|
using PkmnLib.Dynamic.ScriptHandling;
|
||
|
using PkmnLib.Dynamic.ScriptHandling.Registry;
|
||
|
|
||
|
namespace PkmnLib.Plugin.Gen7.Scripts.Status;
|
||
|
|
||
|
[Script(ScriptCategory.Status, "poisoned")]
|
||
|
public class Poisoned : Script
|
||
|
{
|
||
|
// TODO: Implement the Poisoned status effect.
|
||
|
}
|