Files
abysmal-isle/Scripts/Scripts-master/Addons/BathtubRoseSouthAddon.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

139 lines
4.7 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 BathtubRoseSouthAddon : BaseAddon
{
private static int[,] m_AddOnSimpleComponents = new int[,] {
{1180, -2, 0, 0}, {1180, -1, 0, 0}, {1180, -1, 1, 0}// 6 8 9
, {1180, 0, 0, 0}, {1180, 0, 1, 0}, {1180, 1, 0, 0}// 10 11 12
, {1180, 1, 1, 0}, {1180, 2, 0, 0}, {13613, -1, 0, 0}// 13 14 26
, {13422, 0, 0, 0}, {13422, 1, 0, 0}, {13422, -1, 1, 0}// 27 28 29
, {13422, 0, 1, 0}, {13422, 1, 1, 0}// 30 31
};
public override BaseAddonDeed Deed
{
get
{
return new BathtubRoseSouthAddonDeed();
}
}
[ Constructable ]
public BathtubRoseSouthAddon()
{
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, 1180, -2, 2, 0, 1638, -1, "", 1);// 1
AddComplexComponent( (BaseAddon) this, 1180, -1, 2, 0, 1638, -1, "", 1);// 2
AddComplexComponent( (BaseAddon) this, 1180, 0, 2, 0, 1638, -1, "", 1);// 3
AddComplexComponent( (BaseAddon) this, 1180, 1, 2, 0, 1638, -1, "", 1);// 4
AddComplexComponent( (BaseAddon) this, 1180, 2, 2, 0, 1638, -1, "", 1);// 5
AddComplexComponent( (BaseAddon) this, 1180, -2, 1, 0, 1638, -1, "", 1);// 7
AddComplexComponent( (BaseAddon) this, 1180, 2, 1, 0, 1638, -1, "", 1);// 15
AddComplexComponent( (BaseAddon) this, 1801, -2, 0, 0, 1638, -1, "", 1);// 16
AddComplexComponent( (BaseAddon) this, 1801, 2, 0, 0, 1638, -1, "", 1);// 17
AddComplexComponent( (BaseAddon) this, 267, -1, -1, 0, 1638, -1, "", 1);// 18
AddComplexComponent( (BaseAddon) this, 267, 0, -1, 0, 1638, -1, "", 1);// 19
AddComplexComponent( (BaseAddon) this, 267, 1, -1, 0, 1638, -1, "", 1);// 20
AddComplexComponent( (BaseAddon) this, 279, 1, 1, 0, 1638, -1, "", 1);// 21
AddComplexComponent( (BaseAddon) this, 281, 1, 0, 0, 1638, -1, "", 1);// 22
AddComplexComponent( (BaseAddon) this, 281, -2, 1, 0, 1638, -1, "", 1);// 23
AddComplexComponent( (BaseAddon) this, 280, -1, 1, 0, 1638, -1, "", 1);// 24
AddComplexComponent( (BaseAddon) this, 280, 0, 1, 0, 1638, -1, "", 1);// 25
AddComplexComponent( (BaseAddon) this, 5154, -2, 0, 2, 0, -1, "Soap", 1);// 32
AddComplexComponent( (BaseAddon) this, 3835, -2, 0, 9, 0, -1, "Shampoo", 1);// 33
AddComplexComponent( (BaseAddon) this, 6420, 2, 0, 5, 2996, -1, "", 1);// 34
AddComplexComponent( (BaseAddon) this, 6812, 2, 0, 7, 2876, -1, "Loofa", 1);// 35
AddComplexComponent( (BaseAddon) this, 4100, -1, 0, 8, 1150, -1, "Faucet", 1);// 36
}
public BathtubRoseSouthAddon( 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 BathtubRoseSouthAddonDeed : BaseAddonDeed
{
public override BaseAddon Addon
{
get
{
return new BathtubRoseSouthAddon();
}
}
[Constructable]
public BathtubRoseSouthAddonDeed()
{
Name = "BathtubRoseSouth";
}
public BathtubRoseSouthAddonDeed( 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();
}
}
}