#W# Initial Commit: Avatars Conquest
This commit is contained in:
commit
8eae46895e
7512 changed files with 416187 additions and 0 deletions
41
Scripts/Items/Rares/Elixirs/StrongVigorElixir.cs
Normal file
41
Scripts/Items/Rares/Elixirs/StrongVigorElixir.cs
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
using System;
|
||||
using Server;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class StrongVigorElixir : BaseVigorElixir
|
||||
{
|
||||
public override int MinRejuv { get{ return 20; } }
|
||||
public override int MaxRejuv { get{ return 25; } }
|
||||
public override double Delay { get{ return 10.0; } }
|
||||
|
||||
[Constructable]
|
||||
public StrongVigorElixir( ) : base( PotionEffect.VigorStrong )
|
||||
{
|
||||
Name = "elixir of vigor";
|
||||
ItemID = 0x2037;
|
||||
}
|
||||
|
||||
public override void AddNameProperties( ObjectPropertyList list )
|
||||
{
|
||||
base.AddNameProperties( list );
|
||||
list.Add( 1070722, "Strong" );
|
||||
}
|
||||
|
||||
public StrongVigorElixir( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
writer.Write( (int) 0 ); // version
|
||||
}
|
||||
|
||||
public override void Deserialize( GenericReader reader )
|
||||
{
|
||||
base.Deserialize( reader );
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue