ethereal chimera and ethereal boura definitions
This commit is contained in:
parent
e0b1dced1f
commit
c4a490ece7
1 changed files with 56 additions and 0 deletions
|
|
@ -870,4 +870,60 @@ namespace Server.Mobiles
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class EtherealChimera : EtherealMount
|
||||
{
|
||||
[Constructable]
|
||||
public EtherealChimera() : base( 0x2D95, 0x3E90 )
|
||||
{
|
||||
Name = "Ethereal Chimera Statuette";
|
||||
}
|
||||
|
||||
public EtherealChimera( 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();
|
||||
}
|
||||
}
|
||||
|
||||
public class EtherealBoura : EtherealMount
|
||||
{
|
||||
public override int LabelNumber { get { return 1150006; } } // Rideable Boura Statuette
|
||||
|
||||
[Constructable]
|
||||
public EtherealBoura() : base( 0x46F8, 0x3EC6 )
|
||||
{
|
||||
Hue = 0x4000;
|
||||
}
|
||||
|
||||
public EtherealBoura( 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue