Beispiel #1
0
        public IRuntimeMoheData CreateTestMohe(MoheID moheID, PlayerSeat seat)
        {
            MoheData mData = MoheDatabase.Instance.Get(moheID);

            MoheData.MoheStatData stats = new MoheData.MoheStatData();
            stats.health = 10;
            Mohe            sampleMohe        = new Mohe(mData, mData.Abilities.Select(ability => ability.ability.AbilityID).ToList(), stats);
            RuntimeMoheData sampleRuntimeMohe = new RuntimeMoheData(sampleMohe, seat, 1);

            return(sampleRuntimeMohe);
        }
Beispiel #2
0
 public void MoheListAdd(Mohe mohe)
 {
     moheList.Add(mohe);
 }