148 lines
3.4 KiB
C#
148 lines
3.4 KiB
C#
/////////////////////////////////////////////////
|
|
//
|
|
// Automatically generated by the
|
|
// AddonGenerator script by Arya
|
|
//
|
|
/////////////////////////////////////////////////
|
|
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class BalloonAndBasket1Addon : BaseAddon
|
|
{
|
|
public override BaseAddonDeed Deed
|
|
{
|
|
get
|
|
{
|
|
return new BalloonAndBasket1AddonDeed();
|
|
}
|
|
}
|
|
|
|
[ Constructable ]
|
|
public BalloonAndBasket1Addon()
|
|
{
|
|
AddonComponent ac;
|
|
ac = new AddonComponent( 13932 );
|
|
ac.Hue = 1153;
|
|
AddComponent( ac, 1, 1, 37 );
|
|
ac = new AddonComponent( 13932 );
|
|
ac.Hue = 1369;
|
|
AddComponent( ac, 1, 2, 35 );
|
|
ac = new AddonComponent( 13932 );
|
|
ac.Hue = 1194;
|
|
AddComponent( ac, 2, 0, 34 );
|
|
ac = new AddonComponent( 13932 );
|
|
ac.Hue = 1282;
|
|
AddComponent( ac, 2, 1, 33 );
|
|
ac = new AddonComponent( 13932 );
|
|
ac.Hue = 37;
|
|
AddComponent( ac, -1, 1, 13 );
|
|
ac = new AddonComponent( 13932 );
|
|
ac.Hue = 1266;
|
|
AddComponent( ac, -1, 1, 25 );
|
|
ac = new AddonComponent( 13932 );
|
|
ac.Hue = 1167;
|
|
AddComponent( ac, 0, -1, 25 );
|
|
ac = new AddonComponent( 13932 );
|
|
ac.Hue = 1276;
|
|
AddComponent( ac, 2, 2, 31 );
|
|
ac = new AddonComponent( 13932 );
|
|
ac.Hue = 1281;
|
|
AddComponent( ac, 2, 0, 25 );
|
|
ac = new AddonComponent( 13932 );
|
|
ac.Hue = 1359;
|
|
AddComponent( ac, 0, 1, 35 );
|
|
ac = new AddonComponent( 8758 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, 0, -1, 10 );
|
|
ac = new AddonComponent( 8760 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, -1, 0, 10 );
|
|
ac = new AddonComponent( 10556 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, 1, 0, 5 );
|
|
ac = new AddonComponent( 10553 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, 1, 1, 5 );
|
|
ac = new AddonComponent( 10556 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, -1, 1, 5 );
|
|
ac = new AddonComponent( 10556 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, -1, 0, 5 );
|
|
ac = new AddonComponent( 10559 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, 0, -1, 5 );
|
|
ac = new AddonComponent( 10559 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, 0, 1, 5 );
|
|
ac = new AddonComponent( 10559 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, 1, -1, 5 );
|
|
ac = new AddonComponent( 1301 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, -1, -1, 0 );
|
|
ac = new AddonComponent( 1301 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, 0, 0, 0 );
|
|
ac = new AddonComponent( 1301 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, -1, 0, 0 );
|
|
ac = new AddonComponent( 1301 );
|
|
ac.Hue = 1719;
|
|
AddComponent( ac, 0, -1, 0 );
|
|
|
|
}
|
|
|
|
public BalloonAndBasket1Addon( 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();
|
|
}
|
|
}
|
|
|
|
public class BalloonAndBasket1AddonDeed : BaseAddonDeed
|
|
{
|
|
public override BaseAddon Addon
|
|
{
|
|
get
|
|
{
|
|
return new BalloonAndBasket1Addon();
|
|
}
|
|
}
|
|
|
|
[Constructable]
|
|
public BalloonAndBasket1AddonDeed()
|
|
{
|
|
Name = "BalloonAndBasket1";
|
|
}
|
|
|
|
public BalloonAndBasket1AddonDeed( 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();
|
|
}
|
|
}
|
|
} |