18 lines
507 B
C#
18 lines
507 B
C#
using MRBot.IsxEq2.AbilityEffect;
|
|
|
|
namespace MRBot.Bot.AbilityExporter
|
|
{
|
|
internal class ExportableAbilityEffect
|
|
{
|
|
public ExportableAbilityEffect(AbilityEffect effect)
|
|
{
|
|
PercentSuccess = effect.PercentSuccess;
|
|
Indentation = effect.Indentation;
|
|
Description = effect.Description;
|
|
}
|
|
|
|
public int PercentSuccess { get; set; }
|
|
public int Indentation { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
} |