mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-03-29 05:04:45 -05:00
65 lines
2.0 KiB
C#
65 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using PkmnFoundations.Support;
|
|
|
|
namespace PkmnFoundations.Pokedex
|
|
{
|
|
public class Form : PokedexRecordBase
|
|
{
|
|
public Form(Pokedex pokedex, int id, int species_id, byte value,
|
|
LocalizedString name, String suffix, int height, int weight, int experience)
|
|
: base(pokedex)
|
|
{
|
|
m_species_pair = new LazyKeyValuePair<int, Species>(k => k == 0 ? null : m_pokedex.Species(k), v => v.NationalDex);
|
|
m_lazy_pairs.Add(m_species_pair);
|
|
|
|
ID = id;
|
|
m_species_pair.Key = species_id;
|
|
Value = value;
|
|
Name = name;
|
|
Suffix = suffix;
|
|
Height = height;
|
|
Weight = weight;
|
|
Experience = experience;
|
|
|
|
}
|
|
|
|
public Form(Pokedex pokedex, IDataReader reader)
|
|
: this(
|
|
pokedex,
|
|
Convert.ToInt32(reader["id"]),
|
|
Convert.ToInt32(reader["NationalDex"]),
|
|
Convert.ToByte(reader["FormValue"]),
|
|
LocalizedStringFromReader(reader, "Name_"),
|
|
reader["FormSuffix"].ToString(),
|
|
Convert.ToInt32(reader["Height"]),
|
|
Convert.ToInt32(reader["Weight"]),
|
|
Convert.ToInt32(reader["Experience"])
|
|
)
|
|
{
|
|
}
|
|
|
|
public int ID { get; private set; }
|
|
public byte Value { get; private set; }
|
|
public LocalizedString Name { get; private set; }
|
|
public String Suffix { get; private set; }
|
|
public int Height { get; private set; }
|
|
public int Weight { get; private set; }
|
|
public int Experience { get; private set; }
|
|
|
|
private LazyKeyValuePair<int, Species> m_species_pair;
|
|
|
|
public int SpeciesID
|
|
{
|
|
get { return m_species_pair.Key; }
|
|
}
|
|
public Species Species
|
|
{
|
|
get { return m_species_pair.Value; }
|
|
}
|
|
}
|
|
}
|