Exemple #1
0
        public override void OnCarve(Mobile from, Corpse corpse, Item with)
        {
            base.OnCarve(from, corpse, with);

            if (corpse == null)
            {
                return;
            }

            for (int i = 0; i < 6; i++)
            {
                corpse.AddItem(new Server.Engines.Plants.Seed());
                corpse.AddItem(new GreenThorns(Utility.RandomMinMax(2, 5)));
            }

            from.SendMessage("As you cut into her body you notice she is more plant-like than elven.");
        }