mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-08-01 23:53:39 -05:00
50 lines
1.8 KiB
C#
50 lines
1.8 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 Item : PokedexRecordBase
|
|
{
|
|
public Item(Pokedex pokedex, int id, int ? value3, int ? value4,
|
|
int ? value5, int ? value6, int price, LocalizedString name)
|
|
: base(pokedex)
|
|
{
|
|
ID = id;
|
|
// todo: Since ID numbers stopped moving around in Gen 4 -> 5, we
|
|
// only need to store value3, value4 and a minGenerationRequired field
|
|
Value3 = value3;
|
|
Value4 = value4;
|
|
Value5 = value5;
|
|
Value6 = value6;
|
|
Price = price;
|
|
Name = name;
|
|
}
|
|
|
|
public Item(Pokedex pokedex, IDataReader reader)
|
|
: this(
|
|
pokedex,
|
|
Convert.ToInt32(reader["id"]),
|
|
reader["Value3"] is DBNull ? null : (int?)Convert.ToInt32(reader["Value3"]),
|
|
reader["Value4"] is DBNull ? null : (int?)Convert.ToInt32(reader["Value4"]),
|
|
reader["Value5"] is DBNull ? null : (int?)Convert.ToInt32(reader["Value5"]),
|
|
reader["Value6"] is DBNull ? null : (int?)Convert.ToInt32(reader["Value6"]),
|
|
Convert.ToInt32(reader["Price"]),
|
|
LocalizedStringFromReader(reader, "Name_")
|
|
)
|
|
{
|
|
}
|
|
|
|
public int ID { get; private set; }
|
|
public int ? Value3 { get; private set; }
|
|
public int ? Value4 { get; private set; }
|
|
public int ? Value5 { get; private set; }
|
|
public int ? Value6 { get; private set; }
|
|
public int Price { get; private set; }
|
|
public LocalizedString Name { get; private set; }
|
|
}
|
|
}
|