server-master/srcs/WingsAPI.Game/Portals/ITimeSpacePortalEntity.cs
2026-02-10 18:21:30 +01:00

24 lines
No EOL
712 B
C#

using System.Collections.Generic;
using WingsEmu.Game.Helpers.Damages;
namespace WingsEmu.Game.Portals;
public interface ITimeSpacePortalEntity
{
public long TimeSpaceId { get; }
public Position Position { get; }
public bool IsHero { get; }
public bool IsSpecial { get; }
public bool IsHidden { get; }
public byte MinLevel { get; }
public byte MaxLevel { get; }
public byte SeedsOfPowerRequired { get; }
public string Name { get; }
public string Description { get; }
public List<(short, short)> DrawRewards { get; }
public List<(short, short)> SpecialRewards { get; }
public List<(short, short)> BonusRewards { get; }
public long? GroupId { get; }
}