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