Files
abysmal-isle/Scripts/Scripts-master/Addons/KOvenSAddon.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

104 lines
2.6 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 KOvenSAddon : BaseAddon {
public override BaseAddonDeed Deed{get{return new KOvenSAddonDeed();}}
[ Constructable ]
public KOvenSAddon()
{
AddonComponent ac = null;
ac = new AddonComponent( 7945 );
ac.Hue = 1;
ac.Name = "dial";
AddComponent( ac, 1, 0, 17 );
ac = new AddonComponent( 7945 );
ac.Hue = 1;
ac.Name = "dial";
AddComponent( ac, 0, 0, 17 );
ac = new AddonComponent( 7027 );
ac.Hue = 957;
ac.Name = "burner";
AddComponent( ac, 1, 0, 12 );
ac = new AddonComponent( 7027 );
ac.Hue = 957;
ac.Name = "burner";
AddComponent( ac, 0, 0, 12 );
ac = new AddonComponent( 9231 );
ac.Hue = 1;
ac.Name = "door";
AddComponent( ac, 1, 1, 0 );
ac = new AddonComponent( 9231 );
ac.Hue = 1;
ac.Name = "door";
AddComponent( ac, 0, 1, 0 );
ac = new AddonComponent( 677 );
ac.Hue = 1150;
ac.Name = "oven";
AddComponent( ac, 1, -1, 12 );
ac = new AddonComponent( 677 );
ac.Hue = 1150;
ac.Name = "oven";
AddComponent( ac, 0, -1, 12 );
ac = new AddonComponent( 676 );
ac.Hue = 1150;
AddComponent( ac, 1, -1, 5 );
ac = new AddonComponent( 1801 );
ac.Hue = 1150;
ac.Name = "Sink";
AddComponent( ac, 1, 0, 5 );
ac = new AddonComponent( 1801 );
ac.Hue = 1150;
ac.Name = "Sink";
AddComponent( ac, 0, 0, 5 );
ac = new AddonComponent( 1801 );
ac.Hue = 1150;
ac.Name = "oven";
AddComponent( ac, 0, 0, 7 );
ac = new AddonComponent( 1801 );
ac.Hue = 1150;
ac.Name = "oven";
AddComponent( ac, 1, 0, 7 );
ac = new AddonComponent( 2467 );
ac.Hue = 1;
ac.Name = "oven settings";
AddComponent( ac, 0, 0, 15 );
ac = new AddonComponent( 2467 );
ac.Hue = 1;
ac.Name = "oven settings";
AddComponent( ac, 1, 0, 15 );
}
public KOvenSAddon( 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 KOvenSAddonDeed : BaseAddonDeed {
public override BaseAddon Addon{get{return new KOvenSAddon();}}
[Constructable]
public KOvenSAddonDeed(){Name = "KOvenS";}
public KOvenSAddonDeed( 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();}
}
}