-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRedMageSettings.cs
63 lines (47 loc) · 1.38 KB
/
RedMageSettings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration;
using System.Linq;
using System.Text;
using ff14bot.Helpers;
namespace Kupo.Settings
{
internal class RedMageSettings : KupoSettings
{
public RedMageSettings(string filename = "RedMage-KupoSettings") : base(filename)
{
}
[Setting]
[DefaultValue(true)]
public bool UseAoe { get; set; }
[Setting]
[DefaultValue(3.0f)]
public float MinMonstersToAoe { get; set; }
[DefaultValue(true)]
public bool UseCorpsACorps { get; set; }
[DefaultValue(true)]
public bool UseDisplacement { get; set; }
[Setting]
[DefaultValue(true)]
public bool UseSwiftcast { get; set; }
[Setting]
[DefaultValue(true)]
public bool UseAcceleration { get; set; }
[Setting]
[DefaultValue(true)]
public bool UseEmbolden { get; set; }
[Setting]
[DefaultValue(true)]
public bool UseLucidDreaming { get; set; }
[Setting]
[DefaultValue(70.0f)]
public float LucidDreamingManaPercent { get; set; }
[Setting]
[DefaultValue(true)]
public bool UseHeal { get; set; }
[Setting]
[DefaultValue(40.0f)]
public float HealAtHealthPercent { get; set; }
}
}