165 lines
3.9 KiB
C#
165 lines
3.9 KiB
C#
/////////////////////////////////////////////////
|
|
//
|
|
// Automatically generated by the
|
|
// AddonGenerator script by Arya
|
|
//
|
|
/////////////////////////////////////////////////
|
|
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class FlatScreenTVFEAddon : BaseAddon
|
|
{
|
|
public override BaseAddonDeed Deed
|
|
{
|
|
get
|
|
{
|
|
return new FlatScreenTVFEAddonDeed();
|
|
}
|
|
}
|
|
|
|
[ Constructable ]
|
|
public FlatScreenTVFEAddon()
|
|
{
|
|
AddonComponent ac;
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, -2, 0 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, -1, 0 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, 0, 0 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, 1, 0 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, 1, 5 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, 0, 5 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, -1, 5 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, -2, 5 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, -2, 10 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, -1, 10 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, 0, 10 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, 1, 10 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, 1, 15 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, 0, 15 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, -1, 15 );
|
|
ac = new AddonComponent( 1801 );
|
|
ac.Hue = 1995;
|
|
AddComponent( ac, 0, -2, 15 );
|
|
ac = new AddonComponent( 9236 );
|
|
AddComponent( ac, 1, -2, 0 );
|
|
ac = new AddonComponent( 9236 );
|
|
AddComponent( ac, 1, -1, 0 );
|
|
ac = new AddonComponent( 9236 );
|
|
AddComponent( ac, 1, -1, 0 );
|
|
ac = new AddonComponent( 9236 );
|
|
AddComponent( ac, 1, 0, 0 );
|
|
ac = new AddonComponent( 9234 );
|
|
ac.Hue = 946;
|
|
AddComponent( ac, 1, -2, 0 );
|
|
ac = new AddonComponent( 9234 );
|
|
AddComponent( ac, 1, -1, 0 );
|
|
ac = new AddonComponent( 9234 );
|
|
AddComponent( ac, 1, 0, 0 );
|
|
ac = new AddonComponent( 9238 );
|
|
ac.Hue = 946;
|
|
AddComponent( ac, 1, -1, 0 );
|
|
ac = new AddonComponent( 9238 );
|
|
ac.Hue = 946;
|
|
AddComponent( ac, 1, 0, 0 );
|
|
ac = new AddonComponent( 9238 );
|
|
ac.Hue = 946;
|
|
AddComponent( ac, 1, -1, 5 );
|
|
ac = new AddonComponent( 9238 );
|
|
ac.Hue = 946;
|
|
AddComponent( ac, 1, 0, 5 );
|
|
ac = new AddonComponent( 7847 );
|
|
AddComponent( ac, 0, 1, 5 );
|
|
ac = new AddonComponent( 13939 );
|
|
ac.Hue = 2908;
|
|
AddComponent( ac, 1, 1, 20 );
|
|
ac = new AddonComponent( 3878 );
|
|
AddComponent( ac, 1, 2, 12 );
|
|
ac = new AddonComponent( 3878 );
|
|
AddComponent( ac, 1, 2, 18 );
|
|
ac = new AddonComponent( 3878 );
|
|
AddComponent( ac, 1, 2, 25 );
|
|
|
|
}
|
|
|
|
public FlatScreenTVFEAddon( 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 FlatScreenTVFEAddonDeed : BaseAddonDeed
|
|
{
|
|
public override BaseAddon Addon
|
|
{
|
|
get
|
|
{
|
|
return new FlatScreenTVFEAddon();
|
|
}
|
|
}
|
|
|
|
[Constructable]
|
|
public FlatScreenTVFEAddonDeed()
|
|
{
|
|
Name = "FlatScreenTVFE";
|
|
}
|
|
|
|
public FlatScreenTVFEAddonDeed( 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();
|
|
}
|
|
}
|
|
} |