Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
103
Scripts/Scripts-master/Addons/KitchenIslandEastAddon.cs
Normal file
103
Scripts/Scripts-master/Addons/KitchenIslandEastAddon.cs
Normal file
@@ -0,0 +1,103 @@
|
||||
|
||||
////////////////////////////////////////
|
||||
// //
|
||||
// Generated by CEO's YAAAG - V1.2 //
|
||||
// (Yet Another Arya Addon Generator) //
|
||||
// //
|
||||
////////////////////////////////////////
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class KitchenIslandEastAddon : BaseAddon
|
||||
{
|
||||
private static int[,] m_AddOnSimpleComponents = new int[,] {
|
||||
{1848, 0, -1, 0}, {2881, -1, -1, 3}, {1293, 0, -1, 7}// 1 2 3
|
||||
, {1848, 0, -1, 2}, {2602, 1, -1, 0}, {2479, 0, -1, 7}// 4 5 6
|
||||
, {2517, 0, -1, 7}, {2495, 0, -1, 7}, {4100, -1, -1, 9}// 7 8 9
|
||||
, {1848, -1, 0, 0}, {1848, -1, 1, 0}, {1848, -1, 2, 0}// 10 11 12
|
||||
, {1848, 0, 0, 0}, {1848, 0, 1, 0}, {1848, 0, 2, 0}// 13 14 15
|
||||
, {1293, -1, 0, 5}, {1293, -1, 1, 5}, {1293, -1, 2, 5}// 16 17 18
|
||||
, {1293, 0, 0, 7}, {1293, 0, 1, 7}, {1293, 0, 2, 7}// 19 20 21
|
||||
, {1848, 0, 0, 2}, {1848, 0, 1, 2}, {1848, 0, 2, 2}// 22 23 24
|
||||
, {2602, 1, 0, 0}, {2602, 1, 1, 0}, {2602, 1, 2, 0}// 25 26 27
|
||||
, {2479, 0, 0, 7}, {2479, 0, 1, 7}, {2479, 0, 2, 7}// 28 29 30
|
||||
, {2517, 0, 2, 7}, {2517, 0, 1, 7}, {2517, 0, 0, 7}// 31 32 33
|
||||
, {2495, 0, 0, 7}, {2495, 0, 1, 7}, {2495, 0, 2, 7}// 34 35 36
|
||||
, {11599, -1, 1, 5}, {2449, -1, 2, 5}, {2539, -1, 2, 6}// 37 38 39
|
||||
, {5636, -1, 0, 5}// 40
|
||||
};
|
||||
|
||||
|
||||
|
||||
public override BaseAddonDeed Deed
|
||||
{
|
||||
get
|
||||
{
|
||||
return new KitchenIslandEastAddonDeed();
|
||||
}
|
||||
}
|
||||
|
||||
[ Constructable ]
|
||||
public KitchenIslandEastAddon()
|
||||
{
|
||||
|
||||
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 KitchenIslandEastAddon( 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 KitchenIslandEastAddonDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon
|
||||
{
|
||||
get
|
||||
{
|
||||
return new KitchenIslandEastAddon();
|
||||
}
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public KitchenIslandEastAddonDeed()
|
||||
{
|
||||
Name = "KitchenIslandEast";
|
||||
}
|
||||
|
||||
public KitchenIslandEastAddonDeed( 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