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

93 lines
2.0 KiB
C#

////////////////////////////////////////
// //
// Generated by CEO's YAAAG - V1.2 //
// (Yet Another Arya Addon Generator) //
// //
////////////////////////////////////////
using System;
using Server;
using Server.Items;
namespace Server.Items
{
public class lightcouchnorthAddon : BaseAddon
{
private static int[,] m_AddOnSimpleComponents = new int[,] {
{1824, -2, 1, 0}, {1824, -1, 1, 0}, {1824, 0, 1, 0}// 1 2 3
, {1824, 1, 1, 0}, {1824, 2, 1, 0}, {1824, -2, 0, 0}// 4 5 6
, {1824, 2, 0, 0}, {2861, -1, 0, 0}, {2861, 0, 0, 0}// 7 8 9
, {2861, 1, 0, 0}// 10
};
public override BaseAddonDeed Deed
{
get
{
return new lightcouchnorthAddonDeed();
}
}
[ Constructable ]
public lightcouchnorthAddon()
{
for (int i = 0; i < m_AddOnSimpleComponents.Length / 4; i++)
AddComponent( new AddonComponent( m_AddOnSimpleComponents[i,0] ), m_AddOnSimpleComponents[i,1], m_AddOnSimpleComponents[i,2], m_AddOnSimpleComponents[i,3] );
}
public lightcouchnorthAddon( 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 lightcouchnorthAddonDeed : BaseAddonDeed
{
public override BaseAddon Addon
{
get
{
return new lightcouchnorthAddon();
}
}
[Constructable]
public lightcouchnorthAddonDeed()
{
Name = "lightcouchnorth";
}
public lightcouchnorthAddonDeed( 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();
}
}
}