This commit is contained in:
parent
cf787216fe
commit
4743dcb9e2
2 changed files with 33 additions and 1 deletions
|
|
@ -0,0 +1,33 @@
|
|||
using System;
|
||||
|
||||
namespace Server.Items.Holiday
|
||||
{
|
||||
public class AngelDecoration : Item
|
||||
{
|
||||
public AngelDecoration() : base ( 0x46FA )
|
||||
{
|
||||
LootType = LootType.Blessed;
|
||||
|
||||
Weight = 30;
|
||||
}
|
||||
|
||||
public AngelDecoration( 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Server.Items.Holiday
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue