129 lines
4.1 KiB
C#
129 lines
4.1 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 cactusgardenAddon : BaseAddon
|
|
{
|
|
|
|
|
|
public override BaseAddonDeed Deed
|
|
{
|
|
get
|
|
{
|
|
return new cactusgardenAddonDeed();
|
|
}
|
|
}
|
|
|
|
[ Constructable ]
|
|
public cactusgardenAddon()
|
|
{
|
|
|
|
|
|
|
|
AddComplexComponent( (BaseAddon) this, 3374, 1, 1, 0, 2655, -1, "", 1);// 1
|
|
AddComplexComponent( (BaseAddon) this, 3375, 1, 1, 0, 2662, -1, "", 1);// 2
|
|
AddComplexComponent( (BaseAddon) this, 3374, 2, 0, 0, 2662, -1, "", 1);// 3
|
|
AddComplexComponent( (BaseAddon) this, 3375, 2, 0, 1, 2662, -1, "", 1);// 4
|
|
AddComplexComponent( (BaseAddon) this, 3381, 1, 0, 0, 2663, -1, "", 1);// 5
|
|
AddComplexComponent( (BaseAddon) this, 3370, 2, -1, 3, 2726, -1, "", 1);// 6
|
|
AddComplexComponent( (BaseAddon) this, 3371, 2, -1, 1, 2450, -1, "", 1);// 7
|
|
AddComplexComponent( (BaseAddon) this, 3375, 1, 1, 1, 2450, -1, "", 1);// 8
|
|
AddComplexComponent( (BaseAddon) this, 3381, -1, 0, 0, 2547, -1, "", 1);// 9
|
|
AddComplexComponent( (BaseAddon) this, 3381, 1, -2, 0, 2573, -1, "", 1);// 10
|
|
AddComplexComponent( (BaseAddon) this, 3374, -1, 1, 0, 2587, -1, "", 1);// 11
|
|
AddComplexComponent( (BaseAddon) this, 3374, 2, -2, 0, 2921, -1, "", 1);// 12
|
|
AddComplexComponent( (BaseAddon) this, 3374, 0, 1, 0, 2803, -1, "", 1);// 13
|
|
AddComplexComponent( (BaseAddon) this, 3374, 2, -1, 0, 2828, -1, "", 1);// 14
|
|
AddComplexComponent( (BaseAddon) this, 3373, 2, -2, 2, 2850, -1, "", 1);// 15
|
|
AddComplexComponent( (BaseAddon) this, 3373, 2, -2, 0, 2881, -1, "", 1);// 16
|
|
AddComplexComponent( (BaseAddon) this, 3375, 2, -2, 0, 2927, -1, "", 1);// 17
|
|
AddComplexComponent( (BaseAddon) this, 3375, 0, 2, 8, 2927, -1, "", 1);// 18
|
|
AddComplexComponent( (BaseAddon) this, 3372, 0, 2, 8, 2981, -1, "", 1);// 19
|
|
AddComplexComponent( (BaseAddon) this, 3372, 0, 2, 3, 2840, -1, "", 1);// 20
|
|
AddComplexComponent( (BaseAddon) this, 3373, 0, 2, 7, 2819, -1, "", 1);// 21
|
|
AddComplexComponent( (BaseAddon) this, 3373, 0, 2, 5, 2819, -1, "", 1);// 22
|
|
|
|
}
|
|
|
|
public cactusgardenAddon( 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 cactusgardenAddonDeed : BaseAddonDeed
|
|
{
|
|
public override BaseAddon Addon
|
|
{
|
|
get
|
|
{
|
|
return new cactusgardenAddon();
|
|
}
|
|
}
|
|
|
|
[Constructable]
|
|
public cactusgardenAddonDeed()
|
|
{
|
|
Name = "cactusgarden";
|
|
}
|
|
|
|
public cactusgardenAddonDeed( 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();
|
|
}
|
|
}
|
|
} |