72 lines
2.1 KiB
C#
72 lines
2.1 KiB
C#
// Automatically generated by the
|
|
// AddonGenerator script by Arya
|
|
// Generator edited 10.Mar.07 by Papler
|
|
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
namespace Server.Items
|
|
{
|
|
public class ValentinesCupidAddon : BaseAddon {
|
|
public override BaseAddonDeed Deed{get{return new ValentinesCupidAddonDeed();}}
|
|
[ Constructable ]
|
|
public ValentinesCupidAddon()
|
|
{
|
|
AddonComponent ac = null;
|
|
ac = new AddonComponent( 11563 );
|
|
ac.Hue = 2171;
|
|
ac.Name = "Cupid's Bow";
|
|
AddComponent( ac, 1, 1, 10 );
|
|
|
|
ac = new AddonComponent( 7405 );
|
|
AddComponent( ac, 1, -1, 15 );
|
|
|
|
ac = new AddonComponent( 3903 );
|
|
ac.Hue = 2171;
|
|
ac.Name = "Cupid's Arrow";
|
|
AddComponent( ac, 1, 0, 15 );
|
|
|
|
ac = new AddonComponent( 9609 );
|
|
ac.Hue = 1153;
|
|
ac.Name = "Cupid";
|
|
AddComponent( ac, 1, 2, 15 );
|
|
|
|
ac = new AddonComponent( 4666 );
|
|
ac.Hue = 942;
|
|
AddComponent( ac, 0, 3, 0 );
|
|
|
|
ac = new AddonComponent( 4667 );
|
|
ac.Hue = 942;
|
|
AddComponent( ac, 0, -1, 0 );
|
|
|
|
ac = new AddonComponent( 4667 );
|
|
ac.Hue = 942;
|
|
AddComponent( ac, 0, 0, 0 );
|
|
|
|
ac = new AddonComponent( 4667 );
|
|
ac.Hue = 942;
|
|
AddComponent( ac, 0, 1, 0 );
|
|
|
|
ac = new AddonComponent( 4667 );
|
|
ac.Hue = 942;
|
|
AddComponent( ac, 0, 2, 0 );
|
|
|
|
ac = new AddonComponent( 4668 );
|
|
ac.Hue = 942;
|
|
AddComponent( ac, 0, -2, 0 );
|
|
|
|
|
|
}
|
|
public ValentinesCupidAddon( Serial serial ) : base( serial ){}
|
|
public override void Serialize( GenericWriter writer ){base.Serialize( writer );writer.Write( 0 );}
|
|
public override void Deserialize( GenericReader reader ){base.Deserialize( reader );reader.ReadInt();}
|
|
}
|
|
|
|
public class ValentinesCupidAddonDeed : BaseAddonDeed {
|
|
public override BaseAddon Addon{get{return new ValentinesCupidAddon();}}
|
|
[Constructable]
|
|
public ValentinesCupidAddonDeed(){Name = "ValentinesCupid";}
|
|
public ValentinesCupidAddonDeed( Serial serial ) : base( serial ){}
|
|
public override void Serialize( GenericWriter writer ){ base.Serialize( writer );writer.Write( 0 );}
|
|
public override void Deserialize( GenericReader reader ) {base.Deserialize( reader );reader.ReadInt();}
|
|
}
|
|
} |