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

58 lines
1.8 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 HarvestWreathEAddon : BaseAddon {
public override BaseAddonDeed Deed{get{return new HarvestWreathEAddonDeed();}}
[ Constructable ]
public HarvestWreathEAddon()
{
AddonComponent ac = null;
ac = new AddonComponent( 9005 );
ac.Hue = 2117;
AddComponent( ac, 0, 0, 0 );
ac = new AddonComponent( 3196 );
AddComponent( ac, 0, 0, 14 );
ac = new AddonComponent( 3193 );
AddComponent( ac, 0, 0, 17 );
ac = new AddonComponent( 3192 );
AddComponent( ac, 0, 0, 14 );
ac = new AddonComponent( 3354 );
AddComponent( ac, 0, 1, 15 );
ac = new AddonComponent( 3181 );
AddComponent( ac, 0, 0, 14 );
ac = new AddonComponent( 3180 );
AddComponent( ac, 0, 1, 15 );
ac = new AddonComponent( 3187 );
AddComponent( ac, 0, 0, 10 );
ac = new AddonComponent( 2512 );
AddComponent( ac, 0, 0, 16 );
}
public HarvestWreathEAddon( 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 HarvestWreathEAddonDeed : BaseAddonDeed {
public override BaseAddon Addon{get{return new HarvestWreathEAddon();}}
[Constructable]
public HarvestWreathEAddonDeed(){Name = "HarvestWreathE";}
public HarvestWreathEAddonDeed( 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();}
}
}