Omni submitted a new resource:

Special Abilities - Custom Abilities for creatures

Ok, examples...

So... you want dragons in your shard to do five firebreaths at once ocasionally.

Code:
Code (text):
using System;
using Server;
using Server.Items;

namespace Server.Mobiles
{
    [CorpseName( "a dragon corpse" )]
    public class Dragon : BaseCreature
    {
        [Constructable]
        public Dragon () : base( AIType.AI_Mage, FightMode.Closest, 10, 1, 0.2, 0.4 )
        {
            Name = "a dragon";
            Body = Utility.RandomList( 12, 59 );...

Read more about this resource...
 
Back