//////////////////////////////////////// // // // Generated by CEO's YAAAG - V1.2 // // (Yet Another Arya Addon Generator) // // // //////////////////////////////////////// using System; using Server; using Server.Items; namespace Server.Items { public class kidtownzoocage1Addon : BaseAddon { private static int[,] m_AddOnSimpleComponents = new int[,] { {6077, -2, -2, 0}, {6077, -2, -1, 0}, {6077, -2, 0, 0}// 1 2 3 , {6077, -2, 1, 0}, {6077, -1, -2, 0}, {6077, -1, -1, 0}// 4 5 6 , {6077, -1, 0, 0}, {6077, -1, 1, 0}, {6077, 0, -2, 0}// 7 8 9 , {6077, 0, -1, 0}, {6077, 0, 0, 0}, {6077, 0, 1, 0}// 10 11 12 , {6077, 1, -2, 0}, {6077, 1, -1, 0}, {6077, 1, 0, 0}// 13 14 15 , {6077, 1, 1, 0}, {6077, 2, -2, 0}, {6077, 2, -1, 0}// 16 17 18 , {6077, 2, 0, 0}, {6077, 2, 1, 0}, {6077, 3, -2, 0}// 19 20 21 , {6077, 3, -1, 0}, {6077, 3, 0, 0}, {6077, 3, 1, 0}// 22 23 24 , {2121, -3, 0, 0}, {2121, -3, 1, 0}, {6077, -2, 2, 0}// 27 28 41 , {6077, -2, 3, 0}, {6077, -1, 2, 0}, {6077, -1, 3, 0}// 42 43 44 , {6077, 0, 2, 0}, {6077, 0, 3, 0}, {6077, 1, 2, 0}// 45 46 47 , {6077, 1, 3, 0}, {6077, 2, 2, 0}, {6077, 2, 3, 0}// 48 49 50 , {6077, 3, 2, 0}, {6077, 3, 3, 0}// 51 52 }; public override BaseAddonDeed Deed { get { return new kidtownzoocage1AddonDeed(); } } [ Constructable ] public kidtownzoocage1Addon() { 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] ); AddComplexComponent( (BaseAddon) this, 2121, -3, -2, 0, 1153, -1, "", 1);// 25 AddComplexComponent( (BaseAddon) this, 2121, -3, -1, 0, 1153, -1, "", 1);// 26 AddComplexComponent( (BaseAddon) this, 2121, -3, 0, 0, 1153, -1, "", 1);// 29 AddComplexComponent( (BaseAddon) this, 2121, -3, 1, 0, 1153, -1, "", 1);// 30 AddComplexComponent( (BaseAddon) this, 2121, 3, -2, 0, 1153, -1, "", 1);// 31 AddComplexComponent( (BaseAddon) this, 2121, 3, -1, 0, 1153, -1, "", 1);// 32 AddComplexComponent( (BaseAddon) this, 2121, 3, 0, 0, 1153, -1, "", 1);// 33 AddComplexComponent( (BaseAddon) this, 2121, 3, 1, 0, 1153, -1, "", 1);// 34 AddComplexComponent( (BaseAddon) this, 2123, -2, -3, 0, 1153, -1, "", 1);// 35 AddComplexComponent( (BaseAddon) this, 2123, -1, -3, 0, 1153, -1, "", 1);// 36 AddComplexComponent( (BaseAddon) this, 2123, 0, -3, 0, 1153, -1, "", 1);// 37 AddComplexComponent( (BaseAddon) this, 2123, 1, -3, 0, 1153, -1, "", 1);// 38 AddComplexComponent( (BaseAddon) this, 2123, 2, -3, 0, 1153, -1, "", 1);// 39 AddComplexComponent( (BaseAddon) this, 2123, 3, -3, 0, 1153, -1, "", 1);// 40 AddComplexComponent( (BaseAddon) this, 2123, -2, 3, 0, 1153, -1, "", 1);// 53 AddComplexComponent( (BaseAddon) this, 2123, -1, 3, 0, 1153, -1, "", 1);// 54 AddComplexComponent( (BaseAddon) this, 2123, 0, 3, 0, 1153, -1, "", 1);// 55 AddComplexComponent( (BaseAddon) this, 2123, 1, 3, 0, 1153, -1, "", 1);// 56 AddComplexComponent( (BaseAddon) this, 2123, 2, 3, 0, 1153, -1, "", 1);// 57 AddComplexComponent( (BaseAddon) this, 2122, 3, 3, 0, 1153, -1, "", 1);// 58 AddComplexComponent( (BaseAddon) this, 2121, -3, 2, 0, 1153, -1, "", 1);// 59 AddComplexComponent( (BaseAddon) this, 2121, -3, 3, 0, 1153, -1, "", 1);// 60 AddComplexComponent( (BaseAddon) this, 2121, 3, 2, 0, 1153, -1, "", 1);// 61 } public kidtownzoocage1Addon( Serial serial ) : base( serial ) { } private static void AddComplexComponent(BaseAddon addon, int item, int xoffset, int yoffset, int zoffset, int hue, int lightsource) { AddComplexComponent(addon, item, xoffset, yoffset, zoffset, hue, lightsource, null, 1); } private static void AddComplexComponent(BaseAddon addon, int item, int xoffset, int yoffset, int zoffset, int hue, int lightsource, string name, int amount) { AddonComponent ac; ac = new AddonComponent(item); if (name != null && name.Length > 0) ac.Name = name; if (hue != 0) ac.Hue = hue; if (amount > 1) { ac.Stackable = true; ac.Amount = amount; } if (lightsource != -1) ac.Light = (LightType) lightsource; addon.AddComponent(ac, xoffset, yoffset, zoffset); } 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 kidtownzoocage1AddonDeed : BaseAddonDeed { public override BaseAddon Addon { get { return new kidtownzoocage1Addon(); } } [Constructable] public kidtownzoocage1AddonDeed() { Name = "kidtownzoocage1"; } public kidtownzoocage1AddonDeed( 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(); } } }