Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
72
Scripts/Scripts-master/Addons2/ValentinesCupidAddon.cs
Normal file
72
Scripts/Scripts-master/Addons2/ValentinesCupidAddon.cs
Normal file
@@ -0,0 +1,72 @@
|
||||
// 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();}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user