125 lines
2.8 KiB
C#
125 lines
2.8 KiB
C#
/////////////////////////////////////////////////
|
|
//
|
|
// Automatically generated by the
|
|
// AddonGenerator script by Arya
|
|
//
|
|
/////////////////////////////////////////////////
|
|
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class DwarvenMiningAreaJadeAddon : BaseAddon
|
|
{
|
|
public override BaseAddonDeed Deed
|
|
{
|
|
get
|
|
{
|
|
return new DwarvenMiningAreaJadeAddonDeed();
|
|
}
|
|
}
|
|
|
|
[ Constructable ]
|
|
public DwarvenMiningAreaJadeAddon()
|
|
{
|
|
AddonComponent ac;
|
|
ac = new AddonComponent( 1 );
|
|
AddComponent( ac, 1, -1, 2 );
|
|
ac = new AddonComponent( 4015 );
|
|
ac.Hue = 2349;
|
|
AddComponent( ac, 0, 0, 0 );
|
|
ac = new AddonComponent( 7949 );
|
|
ac.Hue = 2937;
|
|
AddComponent( ac, -2, 0, 0 );
|
|
ac = new AddonComponent( 7950 );
|
|
ac.Hue = 2937;
|
|
AddComponent( ac, -1, -1, 0 );
|
|
ac = new AddonComponent( 14133 );
|
|
ac.Hue = 1150;
|
|
AddComponent( ac, 1, -1, 2 );
|
|
ac = new AddonComponent( 4017 );
|
|
ac.Hue = 2349;
|
|
AddComponent( ac, -1, 0, 0 );
|
|
ac = new AddonComponent( 3707 );
|
|
AddComponent( ac, 1, -1, 2 );
|
|
ac = new AddonComponent( 3380 );
|
|
ac.Hue = 2937;
|
|
AddComponent( ac, 1, 1, 0 );
|
|
ac = new AddonComponent( 7949 );
|
|
ac.Hue = 2937;
|
|
AddComponent( ac, 0, 0, 0 );
|
|
ac = new AddonComponent( 6585 );
|
|
ac.Hue = 1164;
|
|
AddComponent( ac, -3, 2, 0 );
|
|
ac = new AddonComponent( 7154 );
|
|
ac.Hue = 1164;
|
|
AddComponent( ac, 2, -2, 0 );
|
|
ac = new AddonComponent( 7154 );
|
|
ac.Hue = 1164;
|
|
AddComponent( ac, 3, -2, 0 );
|
|
ac = new AddonComponent( 7154 );
|
|
ac.Hue = 1164;
|
|
AddComponent( ac, 3, -1, 5 );
|
|
ac = new AddonComponent( 6811 );
|
|
AddComponent( ac, 0, 1, 2 );
|
|
ac = new AddonComponent( 6810 );
|
|
AddComponent( ac, -1, 1, 0 );
|
|
ac = new AddonComponent( 6809 );
|
|
AddComponent( ac, -1, -1, 0 );
|
|
ac = new AddonComponent( 3214 );
|
|
ac.Hue = 2654;
|
|
AddComponent( ac, 1, 0, 0 );
|
|
|
|
}
|
|
|
|
public DwarvenMiningAreaJadeAddon( Serial serial ) : base( serial )
|
|
{
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer )
|
|
{
|
|
base.Serialize( writer );
|
|
writer.Write( 0 ); // Version
|
|
}
|
|
|
|
public override void Deserialize( GenericReader reader )
|
|
{
|
|
base.Deserialize( reader );
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
|
|
public class DwarvenMiningAreaJadeAddonDeed : BaseAddonDeed
|
|
{
|
|
public override BaseAddon Addon
|
|
{
|
|
get
|
|
{
|
|
return new DwarvenMiningAreaJadeAddon();
|
|
}
|
|
}
|
|
|
|
[Constructable]
|
|
public DwarvenMiningAreaJadeAddonDeed()
|
|
{
|
|
Name = "DwarvenMiningAreaJade";
|
|
}
|
|
|
|
public DwarvenMiningAreaJadeAddonDeed( Serial serial ) : base( serial )
|
|
{
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer )
|
|
{
|
|
base.Serialize( writer );
|
|
writer.Write( 0 ); // Version
|
|
}
|
|
|
|
public override void Deserialize( GenericReader reader )
|
|
{
|
|
base.Deserialize( reader );
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
} |