Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
151
Scripts/Scripts-master/Addons/EasterAngSE4Addon.cs
Normal file
151
Scripts/Scripts-master/Addons/EasterAngSE4Addon.cs
Normal file
@@ -0,0 +1,151 @@
|
||||
/////////////////////////////////////////////////
|
||||
//
|
||||
// Automatically generated by the
|
||||
// AddonGenerator script by Arya
|
||||
//
|
||||
/////////////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class EasterAngSE4Addon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new EasterAngSE4AddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public EasterAngSE4Addon()
|
||||
{
|
||||
AddonComponent ac;
|
||||
ac = new AddonComponent( 1993 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, 2, -1, 0 );
|
||||
ac = new AddonComponent( 1997 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, -1, 1, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, 2, 1, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, 1, 2, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, -2, -2, 0 );
|
||||
ac = new AddonComponent( 1997 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, -1, 0, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, -2, 1, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, 0, -2, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, -2, -1, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, -2, 0, 0 );
|
||||
ac = new AddonComponent( 1993 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, -1, -1, 0 );
|
||||
ac = new AddonComponent( 1993 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, 0, -1, 0 );
|
||||
ac = new AddonComponent( 1993 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, 1, -1, 0 );
|
||||
ac = new AddonComponent( 1993 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, 1, 0, 0 );
|
||||
ac = new AddonComponent( 1997 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, -1, 2, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, 2, -2, 0 );
|
||||
ac = new AddonComponent( 1993 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, 2, 0, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, -1, -2, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, -2, 2, 0 );
|
||||
ac = new AddonComponent( 1997 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, 0, 0, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, 1, 1, 0 );
|
||||
ac = new AddonComponent( 3265 );
|
||||
ac.Hue = 2345;
|
||||
AddComponent( ac, 1, -2, 0 );
|
||||
ac = new AddonComponent( 1997 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, 0, 2, 0 );
|
||||
ac = new AddonComponent( 1997 );
|
||||
ac.Hue = 2224;
|
||||
AddComponent( ac, 0, 1, 0 );
|
||||
|
||||
}
|
||||
|
||||
public EasterAngSE4Addon( 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 EasterAngSE4AddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new EasterAngSE4Addon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public EasterAngSE4AddonDeed()
|
||||
{
|
||||
Name = "EasterAngSE4";
|
||||
}
|
||||
|
||||
public EasterAngSE4AddonDeed( 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user