Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
45
Scripts/SubSystem/CassiusRaceSystem/KitsuneRaceGate.cs
Normal file
45
Scripts/SubSystem/CassiusRaceSystem/KitsuneRaceGate.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class KitsuneRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public KitsuneRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 2505;
|
||||
Name = "Kitsune Race Gate";
|
||||
}
|
||||
|
||||
public KitsuneRaceGate(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
|
||||
writer.Write((int) 0);
|
||||
}
|
||||
|
||||
public override bool OnMoveOver( Mobile m )
|
||||
{
|
||||
m.SendMessage( "You are Now an Kitsune" );
|
||||
m.Hue = 1150;
|
||||
m.Title = "The Kitsune";
|
||||
m.AddToBackpack( new KitsuneShiftTalisman() );
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
World.Broadcast( 0x35, true, "Another Kitsune has blessed us with their presence!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user