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
|
|
@ -0,0 +1,40 @@
|
|||
using System;
|
||||
using Server;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class SpellTriggerScroll : SpellScroll
|
||||
{
|
||||
[Constructable]
|
||||
public SpellTriggerScroll()
|
||||
: this( 1 )
|
||||
{
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public SpellTriggerScroll( int amount )
|
||||
: base( 685, 0x2DA6, amount )
|
||||
{
|
||||
}
|
||||
|
||||
public SpellTriggerScroll( 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