Files
abysmal-isle/Scripts/Scripts-master/Addons2/WasherDryerSAddon.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

82 lines
2.3 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 WasherDryerSAddon : BaseAddon {
public override BaseAddonDeed Deed{get{return new WasherDryerSAddonDeed();}}
[ Constructable ]
public WasherDryerSAddon()
{
AddonComponent ac = null;
ac = new AddonComponent( 1173 );
ac.Hue = 1153;
AddComponent( ac, 1, 0, 15 );
ac = new AddonComponent( 4234 );
ac.Hue = 33;
ac.Name = "dial";
AddComponent( ac, 0, 1, 17 );
ac = new AddonComponent( 4234 );
ac.Hue = 33;
ac.Name = "dial";
AddComponent( ac, 1, 1, 17 );
ac = new AddonComponent( 3607 );
ac.Hue = 66;
ac.Name = "Snuggle dryer sheets";
AddComponent( ac, 0, 0, 15 );
ac = new AddonComponent( 2448 );
ac.Hue = 388;
AddComponent( ac, 1, 0, 15 );
ac = new AddonComponent( 3622 );
ac.Hue = 45;
ac.Name = "Tide with bleach";
AddComponent( ac, 0, 0, 15 );
ac = new AddonComponent( 7726 );
ac.Hue = 2101;
ac.Name = "door";
AddComponent( ac, 0, 1, 0 );
ac = new AddonComponent( 7726 );
ac.Hue = 2101;
ac.Name = "door";
AddComponent( ac, 1, 1, 0 );
ac = new AddonComponent( 1801 );
ac.Hue = 1153;
ac.Name = "washer";
AddComponent( ac, 1, 0, 10 );
ac = new AddonComponent( 1801 );
ac.Hue = 1153;
ac.Name = "washer";
AddComponent( ac, 0, 0, 10 );
ac = new AddonComponent( 1173 );
ac.Hue = 1153;
AddComponent( ac, 0, 0, 15 );
}
public WasherDryerSAddon( 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 WasherDryerSAddonDeed : BaseAddonDeed {
public override BaseAddon Addon{get{return new WasherDryerSAddon();}}
[Constructable]
public WasherDryerSAddonDeed(){Name = "WasherDryerS";}
public WasherDryerSAddonDeed( 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();}
}
}