Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,161 @@
using System;
using Server.Network;
namespace Server.Items
{
public enum GasTrapType
{
NorthWall,
WestWall,
Floor
}
public class GasTrap : BaseTrap
{
private Poison m_Poison;
[Constructable]
public GasTrap()
: this(GasTrapType.Floor)
{
}
[Constructable]
public GasTrap(GasTrapType type)
: this(type, Poison.Lesser)
{
}
[Constructable]
public GasTrap(Poison poison)
: this(GasTrapType.Floor, Poison.Lesser)
{
}
[Constructable]
public GasTrap(GasTrapType type, Poison poison)
: base(GetBaseID(type))
{
this.m_Poison = poison;
}
public GasTrap(Serial serial)
: base(serial)
{
}
[CommandProperty(AccessLevel.GameMaster)]
public Poison Poison
{
get
{
return this.m_Poison;
}
set
{
this.m_Poison = value;
}
}
[CommandProperty(AccessLevel.GameMaster)]
public GasTrapType Type
{
get
{
switch ( this.ItemID )
{
case 0x113C:
return GasTrapType.NorthWall;
case 0x1147:
return GasTrapType.WestWall;
case 0x11A8:
return GasTrapType.Floor;
}
return GasTrapType.WestWall;
}
set
{
this.ItemID = GetBaseID(value);
}
}
public override bool PassivelyTriggered
{
get
{
return false;
}
}
public override TimeSpan PassiveTriggerDelay
{
get
{
return TimeSpan.Zero;
}
}
public override int PassiveTriggerRange
{
get
{
return 0;
}
}
public override TimeSpan ResetDelay
{
get
{
return TimeSpan.FromSeconds(0.0);
}
}
public static int GetBaseID(GasTrapType type)
{
switch ( type )
{
case GasTrapType.NorthWall:
return 0x113C;
case GasTrapType.WestWall:
return 0x1147;
case GasTrapType.Floor:
return 0x11A8;
}
return 0;
}
public override void OnTrigger(Mobile from)
{
if (this.m_Poison == null || !from.Player || !from.Alive || from.IsStaff())
return;
Effects.SendLocationEffect(this.Location, this.Map, GetBaseID(this.Type) - 2, 16, 3, this.GetEffectHue(), 0);
Effects.PlaySound(this.Location, this.Map, 0x231);
from.ApplyPoison(from, this.m_Poison);
from.LocalOverheadMessage(MessageType.Regular, 0x22, 500855); // You are enveloped by a noxious gas cloud!
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int)0); // version
Poison.Serialize(this.m_Poison, writer);
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
switch ( version )
{
case 0:
{
this.m_Poison = Poison.Deserialize(reader);
break;
}
}
}
}
}