This commit is contained in:
parent
8ff1a903a0
commit
14873aaa3e
78 changed files with 360 additions and 231 deletions
|
|
@ -136,7 +136,7 @@ namespace Server.Mobiles
|
|||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
|
||||
|
||||
switch( version )
|
||||
{
|
||||
case 1:
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ namespace Server.Mobiles
|
|||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
|
||||
|
||||
switch( version )
|
||||
{
|
||||
case 1:
|
||||
|
|
|
|||
|
|
@ -136,7 +136,7 @@ namespace Server.Mobiles
|
|||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
|
||||
|
||||
switch( version )
|
||||
{
|
||||
case 1:
|
||||
|
|
|
|||
|
|
@ -136,7 +136,7 @@ namespace Server.Mobiles
|
|||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
|
||||
|
||||
switch( version )
|
||||
{
|
||||
case 1:
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ namespace Server.Mobiles
|
|||
|
||||
Fame = 1000;
|
||||
Karma = -1000;
|
||||
|
||||
|
||||
PackReg( 10, 15 );
|
||||
PackItem( new Bandage( Utility.RandomMinMax( 1, 15 ) ) );
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ namespace Server.Mobiles
|
|||
Karma = -3000;
|
||||
|
||||
VirtualArmor = 40;
|
||||
|
||||
|
||||
switch ( Utility.Random( 6 ) )
|
||||
{
|
||||
case 0: PackItem( new PlateArms() ); break;
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ namespace Server.Mobiles
|
|||
Karma = -600;
|
||||
|
||||
VirtualArmor = 18;
|
||||
|
||||
|
||||
switch ( Utility.Random( 10 ))
|
||||
{
|
||||
case 0: PackItem( new LeftArm() ); break;
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ namespace Server.Mobiles
|
|||
while ( spirtsOrVortexes.Count > 6 )
|
||||
{
|
||||
int index = Utility.Random( spirtsOrVortexes.Count );
|
||||
//TODO: Confim if it's the dispel with all the pretty effects or just a Deletion of it.
|
||||
//TODO: Confirm if it's the dispel with all the pretty effects or just a deletion of it.
|
||||
Dispel( ( (Mobile) spirtsOrVortexes[index] ) );
|
||||
spirtsOrVortexes.RemoveAt( index );
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ namespace Server.Mobiles
|
|||
public class WhiteWyrm : BaseCreature
|
||||
{
|
||||
[Constructable]
|
||||
public WhiteWyrm () : base( AIType.AI_Mage, FightMode.Closest, 10, 1, 0.2, 0.4 )
|
||||
public WhiteWyrm() : base( AIType.AI_Mage, FightMode.Closest, 10, 1, 0.2, 0.4 )
|
||||
{
|
||||
Body = (Utility.Random(1,2)==1) ? 180 : 49;
|
||||
Body = Utility.RandomBool() ? 180 : 49;
|
||||
Name = "a white wyrm";
|
||||
BaseSoundID = 362;
|
||||
|
||||
|
|
@ -80,9 +80,6 @@ namespace Server.Mobiles
|
|||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if ( Core.AOS && Body == 49 )
|
||||
Body = 180;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -39,7 +39,7 @@ namespace Server.Mobiles
|
|||
Karma = -4000;
|
||||
|
||||
VirtualArmor = 40;
|
||||
|
||||
|
||||
PackItem( new LesserPoisonPotion() );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue