Reorganizes Project (#41)
This commit is contained in:
parent
08bf44af9a
commit
3614a66aee
3499 changed files with 79 additions and 55 deletions
85
Projects/Scripts/Items/Lights/Lantern.cs
Normal file
85
Projects/Scripts/Items/Lights/Lantern.cs
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class Lantern : BaseEquipableLight
|
||||
{
|
||||
[Constructible]
|
||||
public Lantern() : base(0xA25)
|
||||
{
|
||||
if (Burnout)
|
||||
Duration = TimeSpan.FromMinutes(20);
|
||||
else
|
||||
Duration = TimeSpan.Zero;
|
||||
|
||||
Burning = false;
|
||||
Light = LightType.Circle300;
|
||||
Weight = 2.0;
|
||||
}
|
||||
|
||||
public Lantern(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override int LitItemID
|
||||
{
|
||||
get
|
||||
{
|
||||
if (ItemID == 0xA15 || ItemID == 0xA17)
|
||||
return ItemID;
|
||||
|
||||
return 0xA22;
|
||||
}
|
||||
}
|
||||
|
||||
public override int UnlitItemID
|
||||
{
|
||||
get
|
||||
{
|
||||
if (ItemID == 0xA18)
|
||||
return ItemID;
|
||||
|
||||
return 0xA25;
|
||||
}
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
|
||||
public class LanternOfSouls : Lantern
|
||||
{
|
||||
[Constructible]
|
||||
public LanternOfSouls()
|
||||
{
|
||||
Hue = 0x482;
|
||||
}
|
||||
|
||||
public LanternOfSouls(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override int LabelNumber => 1061618; // Lantern of Souls
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue