Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
//Yrenwick Dragon Ultima IX pack, MiniQuest System & WyrmguardArms.cs created by Yrenwick Dragon (G. Younk)
|
||||
//From the Ultima: Britannia shard http://www.mac512.com/ultima/britannia/
|
||||
//This script was created on 5/31/04
|
||||
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[FlipableAttribute( 0x13ee, 0x13ef )]
|
||||
public class WyrmguardArms : BaseArmor
|
||||
{
|
||||
public override int BasePhysicalResistance{ get{ return 4; } }
|
||||
public override int BaseFireResistance{ get{ return 2; } }
|
||||
public override int BaseColdResistance{ get{ return 2; } }
|
||||
public override int BasePoisonResistance{ get{ return 4; } }
|
||||
public override int BaseEnergyResistance{ get{ return 3; } }
|
||||
|
||||
public override int InitMinHits{ get{ return 40; } }
|
||||
public override int InitMaxHits{ get{ return 50; } }
|
||||
|
||||
public override int AosStrReq{ get{ return 40; } }
|
||||
public override int OldStrReq{ get{ return 20; } }
|
||||
|
||||
public override int OldDexBonus{ get{ return -1; } }
|
||||
|
||||
public override int ArmorBase{ get{ return 22; } }
|
||||
|
||||
public override ArmorMaterialType MaterialType{ get{ return ArmorMaterialType.Ringmail; } }
|
||||
|
||||
[Constructable]
|
||||
public WyrmguardArms() : base( 0x13EE )
|
||||
{
|
||||
Weight = 15.0;
|
||||
Name = "WyrmGuard Arms";
|
||||
Hue = 14;
|
||||
}
|
||||
|
||||
public WyrmguardArms( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
writer.Write( (int) 0 );
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if ( Weight == 1.0 )
|
||||
Weight = 15.0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
//Yrenwick Dragon Ultima IX pack, MiniQuest System & WyrmguardChest.cs created by Yrenwick Dragon (G. Younk)
|
||||
//From the Ultima: Britannia shard http://www.mac512.com/ultima/britannia/
|
||||
//This script was created on 5/31/04
|
||||
|
||||
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[FlipableAttribute( 0x2641, 0x2642 )]
|
||||
public class WyrmguardChest : BaseArmor
|
||||
{
|
||||
public override int BasePhysicalResistance{ get{ return 4; } }
|
||||
public override int BaseFireResistance{ get{ return 2; } }
|
||||
public override int BaseColdResistance{ get{ return 4; } }
|
||||
public override int BasePoisonResistance{ get{ return 2; } }
|
||||
public override int BaseEnergyResistance{ get{ return 3; } }
|
||||
|
||||
public override int InitMinHits{ get{ return 55; } }
|
||||
public override int InitMaxHits{ get{ return 75; } }
|
||||
|
||||
public override int AosStrReq{ get{ return 75; } }
|
||||
public override int OldStrReq{ get{ return 60; } }
|
||||
|
||||
public override int OldDexBonus{ get{ return -8; } }
|
||||
|
||||
public override int ArmorBase{ get{ return 40; } }
|
||||
|
||||
public override ArmorMaterialType MaterialType{ get{ return ArmorMaterialType.Plate; } }
|
||||
//public override CraftResource DefaultResource{ get{ return CraftResource.RedScales; } }
|
||||
|
||||
[Constructable]
|
||||
public WyrmguardChest() : base( 0x2641 )
|
||||
{
|
||||
Weight = 10.0;
|
||||
Name = "WyrmGuard Chest";
|
||||
Hue = 14;
|
||||
}
|
||||
|
||||
public WyrmguardChest( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
writer.Write( (int) 0 );
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if ( Weight == 1.0 )
|
||||
Weight = 15.0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
//Yrenwick Dragon Ultima IX pack, MiniQuest System & WyrmguardGloves.cs created by Yrenwick Dragon (G. Younk)
|
||||
//From the Ultima: Britannia shard http://www.mac512.com/ultima/britannia/
|
||||
//This script was created on 5/31/04
|
||||
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[FlipableAttribute( 0x13eb, 0x13f2 )]
|
||||
public class WyrmguardGloves : BaseArmor
|
||||
{
|
||||
public override int BasePhysicalResistance{ get{ return 4; } }
|
||||
public override int BaseFireResistance{ get{ return 2; } }
|
||||
public override int BaseColdResistance{ get{ return 2; } }
|
||||
public override int BasePoisonResistance{ get{ return 4; } }
|
||||
public override int BaseEnergyResistance{ get{ return 3; } }
|
||||
|
||||
public override int InitMinHits{ get{ return 40; } }
|
||||
public override int InitMaxHits{ get{ return 50; } }
|
||||
|
||||
public override int AosStrReq{ get{ return 40; } }
|
||||
public override int OldStrReq{ get{ return 20; } }
|
||||
|
||||
public override int OldDexBonus{ get{ return -1; } }
|
||||
|
||||
public override int ArmorBase{ get{ return 22; } }
|
||||
|
||||
public override ArmorMaterialType MaterialType{ get{ return ArmorMaterialType.Ringmail; } }
|
||||
|
||||
[Constructable]
|
||||
public WyrmguardGloves() : base( 0x13EB )
|
||||
{
|
||||
Weight = 2.0;
|
||||
Name = "WyrmGuard Gloves";
|
||||
Hue = 14;
|
||||
}
|
||||
|
||||
public WyrmguardGloves( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
writer.Write( (int) 0 );
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if ( Weight == 1.0 )
|
||||
Weight = 2.0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
//Yrenwick Dragon Ultima IX pack, MiniQuest System & WyrmguardHelm.cs created by Yrenwick Dragon (G. Younk)
|
||||
//From the Ultima: Britannia shard http://www.mac512.com/ultima/britannia/
|
||||
//This script was created on 5/31/04
|
||||
|
||||
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[Flipable( 0x2645, 0x2646 )]
|
||||
public class WyrmguardHelm : BaseArmor
|
||||
{
|
||||
public override int BasePhysicalResistance{ get{ return 4; } }
|
||||
public override int BaseFireResistance{ get{ return 2; } }
|
||||
public override int BaseColdResistance{ get{ return 4; } }
|
||||
public override int BasePoisonResistance{ get{ return 2; } }
|
||||
public override int BaseEnergyResistance{ get{ return 3; } }
|
||||
|
||||
public override int InitMinHits{ get{ return 55; } }
|
||||
public override int InitMaxHits{ get{ return 75; } }
|
||||
|
||||
public override int AosStrReq{ get{ return 75; } }
|
||||
public override int OldStrReq{ get{ return 40; } }
|
||||
|
||||
public override int OldDexBonus{ get{ return -1; } }
|
||||
|
||||
public override int ArmorBase{ get{ return 40; } }
|
||||
|
||||
public override ArmorMaterialType MaterialType{ get{ return ArmorMaterialType.Plate; } }
|
||||
//public override CraftResource DefaultResource{ get{ return CraftResource.RedScales; } }
|
||||
|
||||
[Constructable]
|
||||
public WyrmguardHelm() : base( 0x2645 )
|
||||
{
|
||||
Weight = 5.0;
|
||||
Name = "WyrmGuard Helm";
|
||||
Hue = 14;
|
||||
}
|
||||
|
||||
public WyrmguardHelm( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
writer.Write( (int) 0 );
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if ( Weight == 1.0 )
|
||||
Weight = 5.0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
//Yrenwick Dragon Ultima IX pack, MiniQuest System & WyrmguardLegs.cs created by Yrenwick Dragon (G. Younk)
|
||||
//From the Ultima: Britannia shard http://www.mac512.com/ultima/britannia/
|
||||
//This script was created on 5/31/04
|
||||
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[FlipableAttribute( 0x13be, 0x13c3 )]
|
||||
public class WyrmguardLegs : BaseArmor
|
||||
{
|
||||
public override int BasePhysicalResistance{ get{ return 5; } }
|
||||
public override int BaseFireResistance{ get{ return 3; } }
|
||||
public override int BaseColdResistance{ get{ return 5; } }
|
||||
public override int BasePoisonResistance{ get{ return 0; } }
|
||||
public override int BaseEnergyResistance{ get{ return 2; } }
|
||||
|
||||
public override int InitMinHits{ get{ return 45; } }
|
||||
public override int InitMaxHits{ get{ return 60; } }
|
||||
|
||||
public override int AosStrReq{ get{ return 60; } }
|
||||
public override int OldStrReq{ get{ return 20; } }
|
||||
|
||||
public override int OldDexBonus{ get{ return -3; } }
|
||||
|
||||
public override int ArmorBase{ get{ return 28; } }
|
||||
|
||||
public override ArmorMaterialType MaterialType{ get{ return ArmorMaterialType.Chainmail; } }
|
||||
|
||||
[Constructable]
|
||||
public WyrmguardLegs() : base( 0x13BE )
|
||||
{
|
||||
Weight = 7.0;
|
||||
Name = "WyrmGuard Legs";
|
||||
Hue = 14;
|
||||
}
|
||||
|
||||
public WyrmguardLegs( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
writer.Write( (int) 0 );
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user