18 lines
353 B
C#
18 lines
353 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FirstPlugin
|
|||
|
{
|
|||
|
public class PokemonTable
|
|||
|
{
|
|||
|
public Dictionary<ushort, string> Gen8 = new Dictionary<ushort, string>()
|
|||
|
{
|
|||
|
{ 891,"Meltan" },
|
|||
|
{ 892,"Melmetal" },
|
|||
|
};
|
|||
|
}
|
|||
|
}
|