//////////////////////////////////////// // // // Generated by CEO's YAAAG - V1.2 // // (Yet Another Arya Addon Generator) // // // //////////////////////////////////////// using System; using Server; using Server.Items; namespace Server.Items { public class kidtownzoocage2Addon : BaseAddon { private static int[,] m_AddOnSimpleComponents = new int[,] { {9314, -2, -2, 0}, {9314, -2, -1, 0}, {9314, -2, 0, 0}// 4 5 6 , {9314, -1, -2, 0}, {9314, -1, -1, 0}, {9314, -1, 0, 0}// 7 8 9 , {9314, 0, -2, 0}, {9314, 0, -1, 0}, {9314, 0, 0, 0}// 10 11 12 , {9314, 1, -2, 0}, {9314, 1, -1, 0}, {9314, 1, 0, 0}// 13 14 15 , {9314, 2, -2, 0}, {9314, 2, -1, 0}, {9314, 2, 0, 0}// 16 17 18 , {9314, 3, -2, 0}, {9314, 3, -1, 0}, {9314, 3, 0, 0}// 19 20 21 , {9314, -2, 1, 0}, {9314, -2, 2, 0}, {9314, -2, 3, 0}// 39 40 41 , {9314, -1, 1, 0}, {9314, -1, 2, 0}, {9314, -1, 3, 0}// 42 43 44 , {9314, 0, 1, 0}, {9314, 0, 2, 0}, {9314, 0, 3, 0}// 45 46 47 , {9314, 1, 1, 0}, {9314, 1, 2, 0}, {9314, 1, 3, 0}// 48 49 50 , {9314, 2, 1, 0}, {9314, 2, 2, 0}, {9314, 2, 3, 0}// 51 52 53 , {9314, 3, 1, 0}, {9314, 3, 2, 0}, {9314, 3, 3, 0}// 54 55 56 }; public override BaseAddonDeed Deed { get { return new kidtownzoocage2AddonDeed(); } } [ Constructable ] public kidtownzoocage2Addon() { 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, 2081, 3, -1, 0, 1153, -1, "", 1);// 1 AddComplexComponent( (BaseAddon) this, 2081, 3, 0, 0, 1153, -1, "", 1);// 2 AddComplexComponent( (BaseAddon) this, 2081, 3, -2, 0, 1153, -1, "", 1);// 3 AddComplexComponent( (BaseAddon) this, 2081, -3, -2, 0, 1153, -1, "", 1);// 22 AddComplexComponent( (BaseAddon) this, 2081, -3, -1, 0, 1153, -1, "", 1);// 23 AddComplexComponent( (BaseAddon) this, 2081, -3, 0, 0, 1153, -1, "", 1);// 24 AddComplexComponent( (BaseAddon) this, 2083, -2, -3, 0, 1153, -1, "", 1);// 25 AddComplexComponent( (BaseAddon) this, 2083, -1, -3, 0, 1153, -1, "", 1);// 26 AddComplexComponent( (BaseAddon) this, 2083, 0, -3, 0, 1153, -1, "", 1);// 27 AddComplexComponent( (BaseAddon) this, 2083, 1, -3, 0, 1153, -1, "", 1);// 28 AddComplexComponent( (BaseAddon) this, 2083, 2, -3, 0, 1153, -1, "", 1);// 29 AddComplexComponent( (BaseAddon) this, 2083, 3, -3, 0, 1153, -1, "", 1);// 30 AddComplexComponent( (BaseAddon) this, 2082, 3, 3, 0, 1153, -1, "", 1);// 31 AddComplexComponent( (BaseAddon) this, 2081, 3, 1, 0, 1153, -1, "", 1);// 32 AddComplexComponent( (BaseAddon) this, 2081, 3, 2, 0, 1153, -1, "", 1);// 33 AddComplexComponent( (BaseAddon) this, 2083, -1, 3, 0, 1153, -1, "", 1);// 34 AddComplexComponent( (BaseAddon) this, 2083, 0, 3, 0, 1153, -1, "", 1);// 35 AddComplexComponent( (BaseAddon) this, 2083, 1, 3, 0, 1153, -1, "", 1);// 36 AddComplexComponent( (BaseAddon) this, 2083, 2, 3, 0, 1153, -1, "", 1);// 37 AddComplexComponent( (BaseAddon) this, 2083, -2, 3, 0, 1153, -1, "", 1);// 38 AddComplexComponent( (BaseAddon) this, 2081, -3, 1, 0, 1153, -1, "", 1);// 57 AddComplexComponent( (BaseAddon) this, 2081, -3, 2, 0, 1153, -1, "", 1);// 58 AddComplexComponent( (BaseAddon) this, 2081, -3, 3, 0, 1153, -1, "", 1);// 59 } public kidtownzoocage2Addon( 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 kidtownzoocage2AddonDeed : BaseAddonDeed { public override BaseAddon Addon { get { return new kidtownzoocage2Addon(); } } [Constructable] public kidtownzoocage2AddonDeed() { Name = "kidtownzoocage2"; } public kidtownzoocage2AddonDeed( 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(); } } }