129 lines
4.0 KiB
C#
129 lines
4.0 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 FishtankEastAddon : BaseAddon
|
|
{
|
|
private static int[,] m_AddOnSimpleComponents = new int[,] {
|
|
{13566, 0, 1, 5}, {13566, 0, 0, 5}, {13566, 0, 0, 0}// 5 6 7
|
|
, {13566, 0, 1, 0}, {13596, 1, -1, 5}, {13596, 1, -1, 0}// 8 9 10
|
|
, {4965, 1, 0, 2}, {3543, 1, 0, 8}, {3542, 1, 1, 6}// 11 14 15
|
|
, {5365, 1, 1, 17}, {3836, 1, 0, 16}, {13566, 0, 2, 5}// 18 19 22
|
|
, {13566, 0, 2, 0}, {5364, 1, 2, 2}, {4039, 1, 2, 18}// 23 24 27
|
|
};
|
|
|
|
|
|
|
|
public override BaseAddonDeed Deed
|
|
{
|
|
get
|
|
{
|
|
return new FishtankEastAddonDeed();
|
|
}
|
|
}
|
|
|
|
[ Constructable ]
|
|
public FishtankEastAddon()
|
|
{
|
|
|
|
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, 1981, 1, 0, 0, 1, -1, "Aquarium Base", 1);// 1
|
|
AddComplexComponent( (BaseAddon) this, 1981, 1, 1, 0, 1, -1, "Aquarium Base", 1);// 2
|
|
AddComplexComponent( (BaseAddon) this, 9315, 1, 0, 2, 2013, -1, "", 1);// 3
|
|
AddComplexComponent( (BaseAddon) this, 9315, 1, 1, 2, 2013, -1, "", 1);// 4
|
|
AddComplexComponent( (BaseAddon) this, 3270, 1, 0, 6, 1256, -1, "Coral", 1);// 12
|
|
AddComplexComponent( (BaseAddon) this, 3183, 1, 1, 3, 0, -1, "Sea Grasses", 1);// 13
|
|
AddComplexComponent( (BaseAddon) this, 1173, 1, 0, 17, 1, -1, "Aquarium Lid", 1);// 16
|
|
AddComplexComponent( (BaseAddon) this, 1173, 1, 1, 17, 1, -1, "Aquarium Lid", 1);// 17
|
|
AddComplexComponent( (BaseAddon) this, 1981, 1, 2, 0, 1, -1, "Aquarium Base", 1);// 20
|
|
AddComplexComponent( (BaseAddon) this, 9315, 1, 2, 2, 2013, -1, "", 1);// 21
|
|
AddComplexComponent( (BaseAddon) this, 3182, 1, 2, 8, 0, -1, "Sea Grass", 1);// 25
|
|
AddComplexComponent( (BaseAddon) this, 1173, 1, 2, 17, 1, -1, "Aquarium Lid", 1);// 26
|
|
|
|
}
|
|
|
|
public FishtankEastAddon( 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 FishtankEastAddonDeed : BaseAddonDeed
|
|
{
|
|
public override BaseAddon Addon
|
|
{
|
|
get
|
|
{
|
|
return new FishtankEastAddon();
|
|
}
|
|
}
|
|
|
|
[Constructable]
|
|
public FishtankEastAddonDeed()
|
|
{
|
|
Name = "FishtankEast";
|
|
}
|
|
|
|
public FishtankEastAddonDeed( 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();
|
|
}
|
|
}
|
|
} |