Files
abysmal-isle/Scripts/Scripts-master/Addons/GlassClothRackAddon.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

81 lines
2.2 KiB
C#

// Automatically generated by the
// AddonGenerator script by Arya
// Generator edited 10.Mar.07 by Papler
using System;
using Server;
using Server.Items;
namespace Server.Items
{
public class GlassClothRackAddon : BaseAddon {
public override BaseAddonDeed Deed{get{return new GlassClothRackAddonDeed();}}
[ Constructable ]
public GlassClothRackAddon()
{
AddonComponent ac = null;
ac = new AddonComponent( 2813 );
ac.Hue = 1150;
AddComponent( ac, 0, 0, 0 );
ac = new AddonComponent( 2815 );
ac.Hue = 1150;
AddComponent( ac, 0, 0, 0 );
ac = new AddonComponent( 2813 );
ac.Hue = 1150;
AddComponent( ac, 0, 0, 8 );
ac = new AddonComponent( 2815 );
ac.Hue = 1150;
AddComponent( ac, 0, 0, 4 );
ac = new AddonComponent( 2813 );
ac.Hue = 1150;
AddComponent( ac, 0, 0, 4 );
ac = new AddonComponent( 2815 );
ac.Hue = 1150;
AddComponent( ac, 0, 0, 8 );
ac = new AddonComponent( 7386 );
ac.Hue = 1150;
ac.Name = "glass";
AddComponent( ac, 0, 0, 8 );
ac = new AddonComponent( 7386 );
ac.Hue = 1150;
ac.Name = "glass";
AddComponent( ac, 0, 0, 12 );
ac = new AddonComponent( 7386 );
ac.Hue = 1150;
ac.Name = "glass";
AddComponent( ac, 0, 0, 4 );
ac = new AddonComponent( 5989 );
ac.Hue = 1161;
AddComponent( ac, 0, 0, 4 );
ac = new AddonComponent( 5989 );
ac.Hue = 1165;
AddComponent( ac, 0, 0, 8 );
ac = new AddonComponent( 5989 );
ac.Hue = 1168;
AddComponent( ac, 0, 0, 12 );
}
public GlassClothRackAddon( Serial serial ) : base( serial ){}
public override void Serialize( GenericWriter writer ){base.Serialize( writer );writer.Write( 0 );}
public override void Deserialize( GenericReader reader ){base.Deserialize( reader );reader.ReadInt();}
}
public class GlassClothRackAddonDeed : BaseAddonDeed {
public override BaseAddon Addon{get{return new GlassClothRackAddon();}}
[Constructable]
public GlassClothRackAddonDeed(){Name = "GlassClothRack";}
public GlassClothRackAddonDeed( Serial serial ) : base( serial ){}
public override void Serialize( GenericWriter writer ){ base.Serialize( writer );writer.Write( 0 );}
public override void Deserialize( GenericReader reader ) {base.Deserialize( reader );reader.ReadInt();}
}
}