-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTerraplugConfig.cs
76 lines (59 loc) · 1.99 KB
/
TerraplugConfig.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
64
65
66
67
68
69
70
71
72
73
74
75
76
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Terraria.ModLoader.Config;
using Terraria;
using Terraria.IO;
using Terraria.ModLoader;
namespace Terraplug.Config
{
public class TerraplugConfig : ModConfig
{
public override ConfigScope Mode => ConfigScope.ClientSide;
/*static string ConfigPath = Path.Combine(Main.SavePath, "Mod Configs", "Terraplug.json"); // deprecated? idk maybe the guide i followed was just out of date, this isnt needed now tho
static Preferences Configuration = new Preferences(ConfigPath);*/
[Header("Responses")]
[DefaultValue(true)]
[Label("Attacking Enemies")]
public bool RespondToAttacks;
[Label("Getting Hit")]
[DefaultValue(true)]
public bool RespondToHits;
[Label("Geting Killed")]
[DefaultValue(true)]
public bool RespondToDeath;
[Header("Durations")]
[Label("Duration for Attacking")]
[Range(100, 3000)]
[DefaultValue(350)]
public int AttackDuration;
[Label("Duration for Getting hit")]
[Range(100, 3000)]
[DefaultValue(500)]
public int HitDuration;
[Label("Duration for Dying")]
[Range(100, 10000)]
[DefaultValue(5000)]
public int DeathDuration;
[Header("Strengths")]
[Label("Strength for Attacking")]
[Range(0, 1)]
[Increment(0.05f)]
[DefaultValue(0.25)]
public float AttackStrength;
[Label("Strength for Getting hit")]
[Range(0, 1)]
[Increment(0.05f)]
[DefaultValue(0.5)]
public float HitStrength;
[Label("Strength for Dying")]
[Range(0, 1)]
[Increment(0.05f)]
[DefaultValue(0.75)]
public float deathStrength;
}
}