#W# Initial Commit: Avatars Conquest
This commit is contained in:
commit
8eae46895e
7512 changed files with 416187 additions and 0 deletions
64
Scripts/Items/Addons/SandstoneFireplaceSouthAddon.cs
Normal file
64
Scripts/Items/Addons/SandstoneFireplaceSouthAddon.cs
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
using System;
|
||||
using Server;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class SandstoneFireplaceSouthAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed{ get{ return new SandstoneFireplaceSouthDeed(); } }
|
||||
|
||||
[Constructable]
|
||||
public SandstoneFireplaceSouthAddon()
|
||||
{
|
||||
AddComponent( new AddonComponent( 0x482 ), -1, 0, 0 );
|
||||
AddComponent( new AddonComponent( 0x47B ), 0, 0, 0 );
|
||||
}
|
||||
|
||||
public SandstoneFireplaceSouthAddon( 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 SandstoneFireplaceSouthDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon{ get{ return new SandstoneFireplaceSouthAddon(); } }
|
||||
public override int LabelNumber{ get{ return 1061845; } } // sandstone fireplace (south)
|
||||
|
||||
[Constructable]
|
||||
public SandstoneFireplaceSouthDeed()
|
||||
{
|
||||
}
|
||||
|
||||
public SandstoneFireplaceSouthDeed( 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