forked from MadYeling/Fargowiltas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FargoConfig.cs
58 lines (46 loc) · 1.7 KB
/
FargoConfig.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
using System.ComponentModel;
using Terraria.ID;
using Terraria.ModLoader.Config;
namespace Fargowiltas
{
public sealed class FargoConfig : ModConfig
{
public override ConfigScope Mode => ConfigScope.ServerSide;
[Label("[i:771] Unlimited Ammo at 3996+")]
[DefaultValue(true)]
public bool UnlimitedAmmo { get; set; }
[Label("[i:42] Unlimited Consumable Weapons at 3996+")]
[DefaultValue(true)]
public bool UnlimitedConsumableWeapons { get; set; }
[Label("[i:292] Unlimited Potion Buffs for 60+ Potions")]
[DefaultValue(true)]
public bool UnlimitedPotionBuffsOn120 { get; set; }
[Label("[i:2374] Angler Quest Instant Reset")]
[DefaultValue(true)]
public bool AnglerQuestInstantReset { get; set; }
[Label("[i:2294] Extra Lures on Fishing Rods")]
[DefaultValue(true)]
public bool ExtraLures
{
get; set;
}
[Label("[i:3213] Stalker Money Trough")]
[DefaultValue(true)]
public bool StalkerMoneyTrough { get; set; }
[Label("[i:267] Catch Town NPCs")]
[DefaultValue(true)]
public bool CatchNPCs { get; set; }
[Label("[i:1683] Banner Recipes")]
[DefaultValue(true)]
public bool BannerRecipes { get; set; }
[Label("[i:284] Weapon Conversions")]
[DefaultValue(true)]
public bool WeaponConversions { get; set; }
[Label("[i:2] Increased Max Stacks")]
[DefaultValue(true)]
public bool IncreaseMaxStack { get; set; }
[Label("[i:997] Increased Extractinator Speed")]
[DefaultValue(true)]
public bool ExtractSpeed { get; set; }
}
}