144 lines
3.6 KiB
C#
144 lines
3.6 KiB
C#
/////////////////////////////////////////////////
|
|
//
|
|
// Automatically generated by the
|
|
// AddonGenerator script by Arya
|
|
//
|
|
/////////////////////////////////////////////////
|
|
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class Hall2010GhostTreeAddon : BaseAddon
|
|
{
|
|
public override BaseAddonDeed Deed
|
|
{
|
|
get
|
|
{
|
|
return new Hall2010GhostTreeAddonDeed();
|
|
}
|
|
}
|
|
|
|
[ Constructable ]
|
|
public Hall2010GhostTreeAddon()
|
|
{
|
|
AddComponent( new AddonComponent( 3375 ), -3, -1, 0 );
|
|
AddComponent( new AddonComponent( 6011 ), 1, -3, 0 );
|
|
AddComponent( new AddonComponent( 3253 ), 0, 3, 0 );
|
|
AddComponent( new AddonComponent( 3254 ), 3, -1, 0 );
|
|
AddComponent( new AddonComponent( 3253 ), -1, 4, 0 );
|
|
AddComponent( new AddonComponent( 3247 ), 4, -4, 0 );
|
|
AddonComponent ac;
|
|
ac = new AddonComponent( 7869 );
|
|
AddComponent( ac, 1, 0, 0 );
|
|
ac = new AddonComponent( 7869 );
|
|
AddComponent( ac, 2, -1, 0 );
|
|
ac = new AddonComponent( 1 );
|
|
AddComponent( ac, 3, -1, 0 );
|
|
ac = new AddonComponent( 3179 );
|
|
AddComponent( ac, 3, -1, 1 );
|
|
ac = new AddonComponent( 3885 );
|
|
ac.Hue = 154;
|
|
AddComponent( ac, 3, -1, 0 );
|
|
ac = new AddonComponent( 3871 );
|
|
ac.Hue = 154;
|
|
AddComponent( ac, 3, -1, 1 );
|
|
ac = new AddonComponent( 1 );
|
|
AddComponent( ac, -1, -1, 0 );
|
|
ac = new AddonComponent( 12486 );
|
|
AddComponent( ac, 0, -1, 0 );
|
|
ac = new AddonComponent( 12487 );
|
|
AddComponent( ac, 0, -2, 0 );
|
|
ac = new AddonComponent( 12486 );
|
|
AddComponent( ac, 0, -1, 0 );
|
|
ac = new AddonComponent( 12487 );
|
|
AddComponent( ac, 0, -2, 0 );
|
|
ac = new AddonComponent( 12484 );
|
|
AddComponent( ac, -1, 0, 0 );
|
|
ac = new AddonComponent( 12483 );
|
|
AddComponent( ac, 0, 0, 0 );
|
|
ac = new AddonComponent( 12484 );
|
|
AddComponent( ac, -1, 0, 0 );
|
|
ac = new AddonComponent( 12483 );
|
|
AddComponent( ac, 0, 0, 0 );
|
|
ac = new AddonComponent( 1 );
|
|
AddComponent( ac, 2, 0, 0 );
|
|
ac = new AddonComponent( 9671 );
|
|
ac.Hue = 1153;
|
|
AddComponent( ac, 2, 0, 6 );
|
|
ac = new AddonComponent( 3894 );
|
|
AddComponent( ac, 1, 1, 0 );
|
|
ac = new AddonComponent( 1 );
|
|
AddComponent( ac, 2, 2, 1 );
|
|
ac = new AddonComponent( 5703 );
|
|
ac.Light = LightType.Circle150;
|
|
AddComponent( ac, 2, 2, 1 );
|
|
ac = new AddonComponent( 3178 );
|
|
AddComponent( ac, 2, 2, 0 );
|
|
ac = new AddonComponent( 3883 );
|
|
ac.Hue = 1161;
|
|
AddComponent( ac, 2, 2, 2 );
|
|
ac = new AddonComponent( 3862 );
|
|
ac.Hue = 1161;
|
|
AddComponent( ac, 2, 2, 1 );
|
|
ac = new AddonComponent( 12485 );
|
|
AddComponent( ac, -2, 1, 0 );
|
|
ac = new AddonComponent( 12485 );
|
|
AddComponent( ac, -2, 1, 0 );
|
|
ac = new AddonComponent( 14217 );
|
|
ac.Hue = 1153;
|
|
AddComponent( ac, 3, 1, 0 );
|
|
|
|
}
|
|
|
|
public Hall2010GhostTreeAddon( 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 Hall2010GhostTreeAddonDeed : BaseAddonDeed
|
|
{
|
|
public override BaseAddon Addon
|
|
{
|
|
get
|
|
{
|
|
return new Hall2010GhostTreeAddon();
|
|
}
|
|
}
|
|
|
|
[Constructable]
|
|
public Hall2010GhostTreeAddonDeed()
|
|
{
|
|
Name = "Hall2010GhostTree";
|
|
}
|
|
|
|
public Hall2010GhostTreeAddonDeed( 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();
|
|
}
|
|
}
|
|
} |