Basic support for mysticism spells, scrolls, inscription craftables, mystic reagents, 6 new spells
This commit is contained in:
parent
1e03efc24c
commit
7df658cd00
33 changed files with 2118 additions and 162 deletions
|
|
@ -23,8 +23,6 @@ namespace Server.Items
|
|||
{
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
|
|
|
|||
42
Scripts/Items/Resources/Reagents/DragonsBlood.cs
Normal file
42
Scripts/Items/Resources/Reagents/DragonsBlood.cs
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
using System;
|
||||
using Server;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class DragonsBlood : BaseReagent, ICommodity
|
||||
{
|
||||
int ICommodity.DescriptionNumber { get { return LabelNumber; } }
|
||||
bool ICommodity.IsDeedable { get { return Core.ML; } }
|
||||
|
||||
[Constructable]
|
||||
public DragonsBlood()
|
||||
: this( 1 )
|
||||
{
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public DragonsBlood( int amount )
|
||||
: base( 0x4077, amount )
|
||||
{
|
||||
}
|
||||
|
||||
public DragonsBlood( 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