[Script] Ninja Ostard

We try to put in new spawn areas, quests, events, items and scripts. This is where you submit your wish.
Locked
User avatar
Chroma
Grandmaster Scribe
Posts: 93
Joined: Mon Dec 01, 2008 8:45 pm

[Script] Ninja Ostard

Post by Chroma »

Here is a little something for you people out there that dont really like using nobles and such. A ninja ostard. has magery :)

Image

Code: Select all

using System;
using Server.Mobiles;

namespace Server.Mobiles
{
	[CorpseName( "an ostard corpse" )]
	public class NinjaOstard : BaseMount
	{
		[Constructable]
		public NinjaOstard() : this( "a ninja ostard" )
		{
		}

		[Constructable]
		public NinjaOstard( string name ) : base( name, 0xDA, 0x3EA4, AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4 )
		{
			Hue = Utility.RandomHairHue() | 0x8000;

			BaseSoundID = 0x275;

			SetStr( 300, 350 );
			SetDex( 150, 175 );
			SetInt( 50, 100 );

			SetHits( 470, 500 );
			SetMana( 0 );

			SetDamage( 20, 27 );

			SetDamageType( ResistanceType.Physical, 100 );

			SetResistance( ResistanceType.Physical, 40, 60 );
			SetResistance( ResistanceType.Fire, 10, 15 );
			SetResistance( ResistanceType.Poison, 20, 25 );
			SetResistance( ResistanceType.Energy, 20, 25 );

         SetSkill( SkillName.MagicResist, 79.9, 90.9 );
         SetSkill( SkillName.Tactics, 50.1, 100.0 );
         SetSkill( SkillName.Wrestling, 75.9, 90.2 );
         SetSkill( SkillName.Magery, 90.1, 100.0 );
         SetSkill( SkillName.EvalInt, 80.1, 90.0 );
         SetSkill( SkillName.Meditation, 90.1, 100.0 );
         SetSkill( SkillName.Anatomy, 90.1, 100.0 );

			Fame = 1500;
			Karma = -1500;

			Tamable = true;
			ControlSlots = 1;
			MinTameSkill = 105.1;
		}

		public override int Meat{ get{ return 3; } }
		public override FoodType FavoriteFood{ get{ return FoodType.Meat | FoodType.Fish | FoodType.Eggs | FoodType.FruitsAndVegies; } }
		public override PackInstinct PackInstinct{ get{ return PackInstinct.Ostard; } }

		public NinjaOstard( Serial serial ) : base( serial )
		{
		}

		public override void Serialize( GenericWriter writer )
		{
			base.Serialize( writer );

			writer.Write( (int) 0 ); // version
		}

		public override void Deserialize( GenericReader reader )
		{
			base.Deserialize( reader );

			int version = reader.ReadInt();
		}
	}
}
â–‘â–‘â–‘â–‘â–‘â–‘Excelsior Community Helperâ–‘â–‘â–‘â–‘â–‘â–‘
PM me in game or via MSN for Excelsior NON-GM support
User avatar
BlaZe
Legendary Scribe
Posts: 402
Joined: Thu Dec 25, 2008 12:54 am
Location: Ann Arbor, MI; USA

Re: [Script] Ninja Ostard

Post by BlaZe »

Aw Chroma why are you encouraging more crap for tamers?

You know, there's plenty of stuff that needs to be worked on that doesn't involve more meat-shields for the masses. :P
EasyUO Devotee
Download
My Popular ScripZ
Pet FightR | Doorman | TrainR: Lockpicking | HealR
User avatar
Lateralus
Master Scribe
Posts: 50
Joined: Fri Jan 23, 2009 10:42 am

Re: [Script] Ninja Ostard

Post by Lateralus »

Here here!
User avatar
Sorgon
Legendary Scribe
Posts: 272
Joined: Fri Oct 10, 2008 8:58 am
Location: Augusta,ME U.S.A.

Re: [Script] Ninja Ostard

Post by Sorgon »

Good work I personally love the idea's of more varity!
If it is worth doing at all, it is worth doing well.
User avatar
Chroma
Grandmaster Scribe
Posts: 93
Joined: Mon Dec 01, 2008 8:45 pm

Re: [Script] Ninja Ostard

Post by Chroma »

Nice to see someone likes it :) Gimmie some feedback? Ill be glad to add stuff to it. Cant make it to strong though. Got to get Coli to like this :P
â–‘â–‘â–‘â–‘â–‘â–‘Excelsior Community Helperâ–‘â–‘â–‘â–‘â–‘â–‘
PM me in game or via MSN for Excelsior NON-GM support
User avatar
Chroma
Grandmaster Scribe
Posts: 93
Joined: Mon Dec 01, 2008 8:45 pm

Re: [Script] Ninja Ostard

Post by Chroma »

No one wants a Ostard with magery?
â–‘â–‘â–‘â–‘â–‘â–‘Excelsior Community Helperâ–‘â–‘â–‘â–‘â–‘â–‘
PM me in game or via MSN for Excelsior NON-GM support
User avatar
OldManAlewar
Legendary Scribe
Posts: 408
Joined: Sun Jan 06, 2008 3:42 pm

Re: [Script] Ninja Ostard

Post by OldManAlewar »

Chroma wrote:No one wants a Ostard with magery?
wouldnt that basically end up as a mule with pack instinct ?

(but without a backpack)
User avatar
Bubba Ho Tep
Grandmaster Scribe
Posts: 88
Joined: Fri Jan 16, 2009 3:37 pm

Re: [Script] Ninja Ostard

Post by Bubba Ho Tep »

I love variety too...
Heck, we should have Toothed Chickens, Red Eyed Bunnies, Bearded Cats and other things like that...
A Ninja Ostard is great. But I would call it a Wise Ostard and script it to say something, like, I don't know, "The ostard stares you as it was thinking - maybe about sauces to go with".

You should read Terry Pratchett...Make Excelsior a bit more like Discworld
User avatar
Chroma
Grandmaster Scribe
Posts: 93
Joined: Mon Dec 01, 2008 8:45 pm

Re: [Script] Ninja Ostard

Post by Chroma »

:D Well atleast someone likes it :D
â–‘â–‘â–‘â–‘â–‘â–‘Excelsior Community Helperâ–‘â–‘â–‘â–‘â–‘â–‘
PM me in game or via MSN for Excelsior NON-GM support
Velius
Journeyman Scribe
Posts: 21
Joined: Sat Sep 05, 2009 1:24 pm
Contact:

Re: [Script] Ninja Ostard

Post by Velius »

why is that considered a ninja ostard, if its so much like a ninja set the AI to AI_Ninja and make it a true ninja ostard.
To hell with magery let it shadow clone itself to death.

Also I'd up the control slots to 2 not one.


also why do you have this code in there?

Code: Select all

Hue = Utility.RandomHairHue() | 0x8000;
I don't think the ostard has hair.

did you mean

Code: Select all

Hue = 0x8000;
"No man can hold what the darkness can sow" -Dax Riggs-
Locked