mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
31 lines
786 B
C#
31 lines
786 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HISP.Game.Services
|
|
{
|
|
public class Trainer
|
|
{
|
|
public static List<Trainer> Trainers = new List<Trainer>();
|
|
|
|
public int Id;
|
|
public string ImprovesStat;
|
|
public int ImprovesAmount;
|
|
public int ThirstCost;
|
|
public int MoodCost;
|
|
public int HungerCost;
|
|
public int MoneyCost;
|
|
public int ExperienceGained;
|
|
|
|
public static Trainer GetTrainerById(int id)
|
|
{
|
|
foreach (Trainer trainer in Trainers)
|
|
if (trainer.Id == id)
|
|
return trainer;
|
|
|
|
throw new KeyNotFoundException("Trainer " + id + " not found");
|
|
}
|
|
}
|
|
}
|