Reorganizes Project (#41)
This commit is contained in:
parent
08bf44af9a
commit
3614a66aee
3499 changed files with 79 additions and 55 deletions
59
Projects/Scripts/Items/Lights/HeatingStand.cs
Normal file
59
Projects/Scripts/Items/Lights/HeatingStand.cs
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class HeatingStand : BaseLight
|
||||
{
|
||||
[Constructible]
|
||||
public HeatingStand() : base(0x1849)
|
||||
{
|
||||
if (Burnout)
|
||||
Duration = TimeSpan.FromMinutes(25);
|
||||
else
|
||||
Duration = TimeSpan.Zero;
|
||||
|
||||
Burning = false;
|
||||
Light = LightType.Empty;
|
||||
Weight = 1.0;
|
||||
}
|
||||
|
||||
public HeatingStand(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override int LitItemID => 0x184A;
|
||||
public override int UnlitItemID => 0x1849;
|
||||
|
||||
public override void Ignite()
|
||||
{
|
||||
base.Ignite();
|
||||
|
||||
if (ItemID == LitItemID)
|
||||
Light = LightType.Circle150;
|
||||
else if (ItemID == UnlitItemID)
|
||||
Light = LightType.Empty;
|
||||
}
|
||||
|
||||
public override void Douse()
|
||||
{
|
||||
base.Douse();
|
||||
|
||||
if (ItemID == LitItemID)
|
||||
Light = LightType.Circle150;
|
||||
else if (ItemID == UnlitItemID)
|
||||
Light = LightType.Empty;
|
||||
}
|
||||
|
||||
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