10 lines
248 B
C#
10 lines
248 B
C#
|
using PkmnLib.Dynamic.ScriptHandling;
|
||
|
using PkmnLib.Dynamic.ScriptHandling.Registry;
|
||
|
|
||
|
namespace PkmnLib.Plugin.Gen7.Scripts.Weather;
|
||
|
|
||
|
[Script(ScriptCategory.Weather, "hail")]
|
||
|
public class Hail : Script
|
||
|
{
|
||
|
// TODO: Implement Hail weather effect
|
||
|
}
|