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,90 @@
/////////////////////////////////////////////////
//
// Automatically generated by the
// AddonGenerator script by Arya
//
/////////////////////////////////////////////////
using System;
using Server;
using Server.Items;
namespace Server.Items
{
public class D14EasterBunnyPinkEAddon : BaseAddon
{
public override BaseAddonDeed Deed
{
get
{
return new D14EasterBunnyPinkEAddonDeed();
}
}
[ Constructable ]
public D14EasterBunnyPinkEAddon()
{
AddComponent( new AddonComponent( 10139 ), 0, 0, 0 );
AddComponent( new AddonComponent( 3576 ), 0, 0, 1 );
AddComponent( new AddonComponent( 10118 ), 0, 0, 4 );
AddComponent( new AddonComponent( 3576 ), 0, 0, 5 );
AddComponent( new AddonComponent( 3576 ), 0, 0, 9 );
AddComponent( new AddonComponent( 8965 ), 1, 0, 8 );
AddComponent( new AddonComponent( 3864 ), 0, 0, 10 );
AddComponent( new AddonComponent( 3576 ), 0, 0, 2 );
AddComponent( new AddonComponent( 10136 ), 0, 0, 8 );
AddComponent( new AddonComponent( 5441 ), 0, 0, 14 );
AddComponent( new AddonComponent( 5441 ), 0, 1, 14 );
AddComponent( new AddonComponent( 6479 ), 0, 1, 3 );
}
public D14EasterBunnyPinkEAddon( 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 D14EasterBunnyPinkEAddonDeed : BaseAddonDeed
{
public override BaseAddon Addon
{
get
{
return new D14EasterBunnyPinkEAddon();
}
}
[Constructable]
public D14EasterBunnyPinkEAddonDeed()
{
Name = "D14EasterBunnyPinkE";
}
public D14EasterBunnyPinkEAddonDeed( 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();
}
}
}