Files
abysmal-isle/Scripts/Scripts-master/Addons/FullBathroomSouthAddon.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

143 lines
5.2 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 FullBathroomSouthAddon : BaseAddon
{
private static int[,] m_AddOnSimpleComponents = new int[,] {
{2869, -2, -1, 0}, {2881, -2, 0, 0}, {2882, -2, 1, 0}// 16 21 22
, {3577, -2, 0, 3}, {4100, -2, 0, 9}// 23 25
};
public override BaseAddonDeed Deed
{
get
{
return new FullBathroomSouthAddonDeed();
}
}
[ Constructable ]
public FullBathroomSouthAddon()
{
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, 4550, 2, -1, 0, 0, -1, "Toilet Bowl", 1);// 1
AddComplexComponent( (BaseAddon) this, 7608, 2, -1, 1, 0, -1, "Toilet Lid", 1);// 2
AddComplexComponent( (BaseAddon) this, 4174, 2, -1, 0, 0, -1, "Toilet Tank", 1);// 3
AddComplexComponent( (BaseAddon) this, 4239, 3, -1, 7, 0, -1, "Toilet Handle", 1);// 4
AddComplexComponent( (BaseAddon) this, 1801, -1, -1, 0, 0, -1, "Counter", 1);// 5
AddComplexComponent( (BaseAddon) this, 1801, 0, -1, 0, 0, -1, "Counter", 1);// 6
AddComplexComponent( (BaseAddon) this, 9229, -1, -1, 4, 2997, -1, "Mirror", 1);// 7
AddComplexComponent( (BaseAddon) this, 4104, -1, -1, 5, 0, -1, "Sink", 1);// 8
AddComplexComponent( (BaseAddon) this, 4978, 0, -1, 5, 0, -1, "Hairbrush", 1);// 9
AddComplexComponent( (BaseAddon) this, 5986, 0, -1, 5, 2662, -1, "Handtowel", 1);// 10
AddComplexComponent( (BaseAddon) this, 3622, 1, -1, 5, 0, -1, "Bottle", 1);// 11
AddComplexComponent( (BaseAddon) this, 3625, 1, -1, 5, 0, -1, "Bottle", 1);// 12
AddComplexComponent( (BaseAddon) this, 3626, 1, -1, 5, 0, -1, "Bottle", 1);// 13
AddComplexComponent( (BaseAddon) this, 3628, 1, -1, 5, 0, -1, "Bottle", 1);// 14
AddComplexComponent( (BaseAddon) this, 1801, 1, -1, 0, 0, -1, "Counter", 1);// 15
AddComplexComponent( (BaseAddon) this, 6420, -2, -1, 8, 2670, -1, "", 1);// 17
AddComplexComponent( (BaseAddon) this, 6420, -2, -1, 10, 2670, -1, "", 1);// 18
AddComplexComponent( (BaseAddon) this, 10407, -1, 0, 0, 2670, -1, "", 1);// 19
AddComplexComponent( (BaseAddon) this, 10406, -1, 1, 0, 2670, -1, "", 1);// 20
AddComplexComponent( (BaseAddon) this, 5154, -2, 1, 2, 0, -1, "Soap", 1);// 24
AddComplexComponent( (BaseAddon) this, 2788, 0, 0, 0, 2670, -1, "", 1);// 26
AddComplexComponent( (BaseAddon) this, 2792, 1, 0, 0, 2670, -1, "", 1);// 27
AddComplexComponent( (BaseAddon) this, 2790, 2, 0, 0, 2670, -1, "", 1);// 28
AddComplexComponent( (BaseAddon) this, 2791, 0, 1, 0, 2670, -1, "", 1);// 29
AddComplexComponent( (BaseAddon) this, 2796, 1, 1, 0, 2670, -1, "", 1);// 30
AddComplexComponent( (BaseAddon) this, 2793, 2, 1, 0, 2670, -1, "", 1);// 31
AddComplexComponent( (BaseAddon) this, 2789, 0, 2, 0, 2670, -1, "", 1);// 32
AddComplexComponent( (BaseAddon) this, 2794, 1, 2, 0, 2670, -1, "", 1);// 33
AddComplexComponent( (BaseAddon) this, 2787, 2, 2, 0, 2670, -1, "", 1);// 34
}
public FullBathroomSouthAddon( 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 FullBathroomSouthAddonDeed : BaseAddonDeed
{
public override BaseAddon Addon
{
get
{
return new FullBathroomSouthAddon();
}
}
[Constructable]
public FullBathroomSouthAddonDeed()
{
Name = "FullBathroomSouth";
}
public FullBathroomSouthAddonDeed( 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();
}
}
}