Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,58 @@
// 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 HarvestWreathSAddon : BaseAddon {
public override BaseAddonDeed Deed{get{return new HarvestWreathSAddonDeed();}}
[ Constructable ]
public HarvestWreathSAddon()
{
AddonComponent ac = null;
ac = new AddonComponent( 9004 );
ac.Hue = 2117;
AddComponent( ac, 0, 0, 0 );
ac = new AddonComponent( 3195 );
AddComponent( ac, 0, 0, 10 );
ac = new AddonComponent( 3194 );
AddComponent( ac, 0, 0, 11 );
ac = new AddonComponent( 3192 );
AddComponent( ac, 0, 0, 15 );
ac = new AddonComponent( 3354 );
AddComponent( ac, 1, 0, 15 );
ac = new AddonComponent( 3182 );
AddComponent( ac, 0, 0, 18 );
ac = new AddonComponent( 3180 );
AddComponent( ac, 1, 0, 15 );
ac = new AddonComponent( 3186 );
AddComponent( ac, 0, 0, 7 );
ac = new AddonComponent( 2512 );
AddComponent( ac, 1, 0, 16 );
}
public HarvestWreathSAddon( 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 HarvestWreathSAddonDeed : BaseAddonDeed {
public override BaseAddon Addon{get{return new HarvestWreathSAddon();}}
[Constructable]
public HarvestWreathSAddonDeed(){Name = "HarvestWreathS";}
public HarvestWreathSAddonDeed( 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();}
}
}