Пример #1
0
        public virtual void AddSeed(BaseSeed seed)
        {
            if (HasEarth && !HasPlant)
            {
                m_Plant      = seed.GetPlant();
                m_Plant.Bowl = this;
                seed.Delete();
                Console.WriteLine(seed.GetPlant());

                m_Plant.ActivateTimer();
            }
        }
Пример #2
0
 public AddBowlEntry(Mobile from, BaseSeed seed)
     : base(6054, 1)
 {
     m_From = from;
     m_Seed = seed;
 }