Init Upload
This commit is contained in:
46
RaceGates/AirElementalRaceGate.cs
Normal file
46
RaceGates/AirElementalRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class AirElementalRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public AirElementalRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 2593;
|
||||
Name = "Air Elemental Race Gate";
|
||||
}
|
||||
|
||||
public AirElementalRaceGate(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 a Air Elemental" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Elements";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new AirElementalShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Another gust blows in, Another elemental of air has joined!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/AngelRaceGate.cs
Normal file
46
RaceGates/AngelRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class AngelRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public AngelRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 2064;
|
||||
Name = "Angel Race Gate";
|
||||
}
|
||||
|
||||
public AngelRaceGate(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 Angel" );
|
||||
m.Hue = 1150;
|
||||
m.Title = "The Angel";
|
||||
m.AddToBackpack( new AngelShiftTalisman() );
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
World.Broadcast( 0x35, true, "Another Angel 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/DeamonRaceGate.cs
Normal file
46
RaceGates/DeamonRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class DeamonRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public DeamonRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 1644;
|
||||
Name = "Deamon Race Gate";
|
||||
}
|
||||
|
||||
public DeamonRaceGate(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 Deamonic" );
|
||||
m.Hue = 434;
|
||||
m.Title = "The Deamon";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new DeamonShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Another walks the Path of the Deamon!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/DrowRaceGate.cs
Normal file
46
RaceGates/DrowRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class DrowRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public DrowRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 962;
|
||||
Name = "Drow Race Gate";
|
||||
}
|
||||
|
||||
public DrowRaceGate(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 Drow" );
|
||||
m.Hue = 2406;
|
||||
m.Title = "The Drow";
|
||||
m.AddToBackpack( new DrowShiftTalisman() );
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
World.Broadcast( 0x35, true, "Another feels the Dark as they walk with the Drow!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/DwarvenRaceGate.cs
Normal file
46
RaceGates/DwarvenRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class DwarvenRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public DwarvenRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 748;
|
||||
Name = "Dwarven Race Gate";
|
||||
}
|
||||
|
||||
public DwarvenRaceGate(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 Dwarven" );
|
||||
m.Hue = 748;
|
||||
m.Title = "The Dwarf";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new DwarvenShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "The Dwarves have added another to their Ranks..." );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/EarthElementalRaceGate.cs
Normal file
46
RaceGates/EarthElementalRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class EarthElementalRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public EarthElementalRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 2017;
|
||||
Name = "Earth Elemental Race Gate";
|
||||
}
|
||||
|
||||
public EarthElementalRaceGate(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 a Earth Elemental" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Elements";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new EarthElementalShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Another bolder rolls in. Another elemental of earth has joined!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
45
RaceGates/ElvenRaceGate.cs
Normal file
45
RaceGates/ElvenRaceGate.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class ElvenRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public ElvenRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 1169;
|
||||
Name = "Elven Race Gate";
|
||||
}
|
||||
|
||||
public ElvenRaceGate(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 Elven" );
|
||||
m.Hue = 1410;
|
||||
m.Title = "The Elf";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new ElvenShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Another Elf has Joined the community!" );
|
||||
return false;
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/FeyRaceGate.cs
Normal file
46
RaceGates/FeyRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class FeyRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public FeyRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 2637;
|
||||
Name = "Fey Race Gate";
|
||||
}
|
||||
|
||||
public FeyRaceGate(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 Fey" );
|
||||
m.Hue = 2637;
|
||||
m.Title = "The Fey";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new FeyShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Another feels the magic as they join the Fey..." );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/GoblinRaceGate.cs
Normal file
46
RaceGates/GoblinRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GoblinRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public GoblinRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 1005;
|
||||
Name = "Goblin Race Gate";
|
||||
}
|
||||
|
||||
public GoblinRaceGate(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 a part a Goblin" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Goblin";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new GoblinShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Another goblin has joined! Watch your coins!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/GremlinRaceGate.cs
Normal file
46
RaceGates/GremlinRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GremlinRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public GremlinRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 1001;
|
||||
Name = "Gremlin Race Gate";
|
||||
}
|
||||
|
||||
public GremlinRaceGate(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 a part a Gremlin" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Gremlin";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new GremlinShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Another gremlin has joined! Watch your backpacks!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/HiryuRaceGate.cs
Normal file
46
RaceGates/HiryuRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class HiryuRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public HiryuRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 100;
|
||||
Name = "Hiryu Race Gate";
|
||||
}
|
||||
|
||||
public HiryuRaceGate(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 a part of Hiryu" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Hiryu";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new HiryuShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Another Hiryu of legend has joined!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
45
RaceGates/ImpRaceGate.cs
Normal file
45
RaceGates/ImpRaceGate.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class ImpRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public ImpRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 1453;
|
||||
Name = "Imp Race Gate";
|
||||
}
|
||||
|
||||
public ImpRaceGate(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 part Imp" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Imp";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new ImpShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "I wonder what this Imp could be up to!?" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
45
RaceGates/KirinRaceGate.cs
Normal file
45
RaceGates/KirinRaceGate.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class KirinRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public KirinRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 2501;
|
||||
Name = "Kirin Race Gate";
|
||||
}
|
||||
|
||||
public KirinRaceGate(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 part Kirin" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Kirin";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new KirinShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Where did that Kirin come from?!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
45
RaceGates/KitsuneRaceGate.cs
Normal file
45
RaceGates/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 = 1161;
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/OrcRaceGate.cs
Normal file
46
RaceGates/OrcRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class OrcRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public OrcRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 558;
|
||||
Name = "Orc Race Gate";
|
||||
}
|
||||
|
||||
public OrcRaceGate(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 Orcish" );
|
||||
m.Hue = 2212;
|
||||
m.Title = "The Orc";
|
||||
m.AddToBackpack( new OrcShiftTalisman() );
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
World.Broadcast( 0x35, true, "The Orcs have Claimed another to their ranks!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
45
RaceGates/RaptorRaceGate.cs
Normal file
45
RaceGates/RaptorRaceGate.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class RaptorRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public RaptorRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 2212;
|
||||
Name = "Raptor Race Gate";
|
||||
}
|
||||
|
||||
public RaptorRaceGate(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 part Raptor" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Raptor";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new RaptorShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "WHAT?! did i just see a Raptor walk by??" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
45
RaceGates/RatmanRaceGate.cs
Normal file
45
RaceGates/RatmanRaceGate.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class RatmanRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public RatmanRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 2213;
|
||||
Name = "Ratman Race Gate";
|
||||
}
|
||||
|
||||
public RatmanRaceGate(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 part of the Ratmen" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Ratman";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new RatmanShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "I hope its friendly!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
45
RaceGates/RidgebackRaceGate.cs
Normal file
45
RaceGates/RidgebackRaceGate.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class RidgebackRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public RidgebackRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 26;
|
||||
Name = "Ridgeback Race Gate";
|
||||
}
|
||||
|
||||
public RidgebackRaceGate(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 part Ridgeback" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Ridgeback";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new RidgebackShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "WHAT?! why would you become a mount?" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/TreeEntRaceGate.cs
Normal file
46
RaceGates/TreeEntRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class TreeEntRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public TreeEntRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 2514;
|
||||
Name = "Tree Ent Race Gate";
|
||||
}
|
||||
|
||||
public TreeEntRaceGate(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 part of the Ents" );
|
||||
m.Hue = 1410;
|
||||
m.Title = "The Ents";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new TreeEntShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Another Ent has Joined the community!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
45
RaceGates/TrollRaceGate.cs
Normal file
45
RaceGates/TrollRaceGate.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class TrollRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public TrollRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 2579;
|
||||
Name = "Troll Race Gate";
|
||||
}
|
||||
|
||||
public TrollRaceGate(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 part of the Trolls" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Troll";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new TrollShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "I hope its friendly!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
46
RaceGates/WolvenRaceGate.cs
Normal file
46
RaceGates/WolvenRaceGate.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
//Created By Cassius for Order of The Red Dragon
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class WolvenRaceGate : Item
|
||||
{
|
||||
[Constructable]
|
||||
public WolvenRaceGate() : base(0xF6C)
|
||||
{
|
||||
Movable = false;
|
||||
Light = LightType.Circle300;
|
||||
Hue = 705;
|
||||
Name = "Wolven Race Gate";
|
||||
}
|
||||
|
||||
public WolvenRaceGate(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 Wolven" );
|
||||
m.Hue = 1453;
|
||||
m.Title = "The Wolven";
|
||||
m.Location = new Point3D(1455, 1568, 30);
|
||||
m.AddToBackpack( new WolvenShiftTalisman() );
|
||||
World.Broadcast( 0x35, true, "Another Howls at the moon as the walk with the Pack of the Wolven!" );
|
||||
return false; //Changed this to false
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
RaceGates/tags.sqlite
Normal file
BIN
RaceGates/tags.sqlite
Normal file
Binary file not shown.
Reference in New Issue
Block a user