139 lines
4.8 KiB
C#
139 lines
4.8 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 RedRoseSeatAddon : BaseAddon
|
|
{
|
|
|
|
|
|
public override BaseAddonDeed Deed
|
|
{
|
|
get
|
|
{
|
|
return new RedRoseSeatAddonDeed();
|
|
}
|
|
}
|
|
|
|
[ Constructable ]
|
|
public RedRoseSeatAddon()
|
|
{
|
|
|
|
|
|
|
|
AddComplexComponent( (BaseAddon) this, 10388, 2, -2, 1, 33, -1, "", 1);// 1
|
|
AddComplexComponent( (BaseAddon) this, 10389, -2, 2, 1, 33, -1, "", 1);// 2
|
|
AddComplexComponent( (BaseAddon) this, 2877, 3, 0, 24, 33, -1, "", 1);// 3
|
|
AddComplexComponent( (BaseAddon) this, 2877, 1, -1, 2, 33, -1, "", 1);// 4
|
|
AddComplexComponent( (BaseAddon) this, 2878, -1, 2, 14, 33, -1, "", 1);// 5
|
|
AddComplexComponent( (BaseAddon) this, 2878, 0, 2, 14, 33, -1, "", 1);// 6
|
|
AddComplexComponent( (BaseAddon) this, 2878, 1, 2, 14, 33, -1, "", 1);// 7
|
|
AddComplexComponent( (BaseAddon) this, 2878, 1, 1, 2, 33, -1, "", 1);// 8
|
|
AddComplexComponent( (BaseAddon) this, 2877, 1, 0, 2, 33, -1, "", 1);// 9
|
|
AddComplexComponent( (BaseAddon) this, 7949, 1, 0, 8, 2276, -1, "", 1);// 10
|
|
AddComplexComponent( (BaseAddon) this, 7949, 1, 2, 20, 2276, -1, "", 1);// 11
|
|
AddComplexComponent( (BaseAddon) this, 7950, 3, 1, 30, 2276, -1, "", 1);// 12
|
|
AddComplexComponent( (BaseAddon) this, 7950, 0, 2, 20, 2276, -1, "", 1);// 13
|
|
AddComplexComponent( (BaseAddon) this, 7952, 3, 0, 30, 2276, -1, "", 1);// 14
|
|
AddComplexComponent( (BaseAddon) this, 7952, -1, 2, 20, 2276, -1, "", 1);// 15
|
|
AddComplexComponent( (BaseAddon) this, 3308, 2, -1, 1, 2255, -1, "", 1);// 16
|
|
AddComplexComponent( (BaseAddon) this, 3308, 2, 2, 1, 2255, -1, "", 1);// 17
|
|
AddComplexComponent( (BaseAddon) this, 3311, -1, 2, 1, 2255, -1, "", 1);// 18
|
|
AddComplexComponent( (BaseAddon) this, 3184, 2, 3, 16, 332, -1, "", 1);// 19
|
|
AddComplexComponent( (BaseAddon) this, 3184, 2, 2, 15, 332, -1, "", 1);// 20
|
|
AddComplexComponent( (BaseAddon) this, 3185, 2, 3, 23, 332, -1, "", 1);// 21
|
|
AddComplexComponent( (BaseAddon) this, 3185, 2, 2, 17, 332, -1, "", 1);// 22
|
|
AddComplexComponent( (BaseAddon) this, 3185, 2, 2, 7, 332, -1, "", 1);// 23
|
|
AddComplexComponent( (BaseAddon) this, 2860, 2, -1, 1, 33, -1, "", 1);// 24
|
|
AddComplexComponent( (BaseAddon) this, 2860, 2, 0, 1, 33, -1, "", 1);// 25
|
|
AddComplexComponent( (BaseAddon) this, 2861, -1, 2, 0, 33, -1, "", 1);// 26
|
|
AddComplexComponent( (BaseAddon) this, 2861, 0, 2, 0, 33, -1, "", 1);// 27
|
|
AddComplexComponent( (BaseAddon) this, 10388, 2, 1, 1, 33, -1, "", 1);// 28
|
|
AddComplexComponent( (BaseAddon) this, 10389, 1, 2, 1, 33, -1, "", 1);// 29
|
|
AddComplexComponent( (BaseAddon) this, 2861, 1, 2, 0, 33, -1, "", 1);// 30
|
|
AddComplexComponent( (BaseAddon) this, 2860, 2, 1, 1, 33, -1, "", 1);// 31
|
|
AddComplexComponent( (BaseAddon) this, 3312, 2, 2, 1, 2255, -1, "", 1);// 32
|
|
|
|
}
|
|
|
|
public RedRoseSeatAddon( 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 RedRoseSeatAddonDeed : BaseAddonDeed
|
|
{
|
|
public override BaseAddon Addon
|
|
{
|
|
get
|
|
{
|
|
return new RedRoseSeatAddon();
|
|
}
|
|
}
|
|
|
|
[Constructable]
|
|
public RedRoseSeatAddonDeed()
|
|
{
|
|
Name = "RedRoseSeat";
|
|
}
|
|
|
|
public RedRoseSeatAddonDeed( 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();
|
|
}
|
|
}
|
|
} |