(http://www.uodemise.com/forum/showthread.php?p=741663) - Arcane Circle spell now checks spellweavers are Playermobiles (http://www.uodemise.com/forum/showthread.php?t=142096) - Casting from necromancy scrolls will never result in a fail, if the caster has the minimum skill required. Otherwise it always result in a fail. (http://www.uodemise.com/forum/showthread.php?t=140663) - Creatures in Fan Dancers Dojo and Yomotsu Mines now are taken in consideration for ToT points (http://www.uodemise.com/forum/showthread.php?t=141670)
36 lines
786 B
C#
36 lines
786 B
C#
using System;
|
|
using Server;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class ConflagrationPotion : BaseConflagrationPotion
|
|
{
|
|
public override int MinDamage{ get{ return 2; } }
|
|
public override int MaxDamage{ get{ return 4; } }
|
|
|
|
public override int LabelNumber{ get{ return 1072095; } } // a Conflagration potion
|
|
|
|
[Constructable]
|
|
public ConflagrationPotion() : base( PotionEffect.Conflagration )
|
|
{
|
|
}
|
|
|
|
public ConflagrationPotion( 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();
|
|
}
|
|
}
|
|
}
|