forked from Fargo-Team/BestOfBothWorlds
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorldConfig.cs
More file actions
75 lines (56 loc) · 1.83 KB
/
Copy pathWorldConfig.cs
File metadata and controls
75 lines (56 loc) · 1.83 KB
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Terraria.ModLoader.Config;
namespace FargoSeeds
{
[Label("Fargo Seeds Config")]
class WorldConfig : ModConfig
{
public override ConfigScope Mode => ConfigScope.ServerSide;
public static WorldConfig Instance
{
get; private set;
}
public override void OnLoaded()
{
Instance = this;
}
[Header("$Mods.FargoSeeds.Configs.WorldConfig.Header1")]
[Label("[i:68][i:1330] Both Evils")]
[DefaultValue(true)]
public bool BothEvils;
[Label("[i:12][i:699] Spawn Both Ore Sets")]
[DefaultValue(true)]
public bool BothOres;
[Label("[i:207] Inverted Underworld")]
[DefaultValue(false)]
public bool InvertedHell;
[Label("[i:324] Guarantee Ocean Caves")]
[DefaultValue(true)]
public bool OceanCaves;
[Label("[i:832] More Surface Living Trees")]
[DefaultValue(true)]
public bool LivingTrees;
[Label("[i:5066] Big Bee Hives")]
[DefaultValue(true)]
public bool BigHives;
[Header("$Mods.FargoSeeds.Configs.WorldConfig.Header2")]
[Label("[i:848] Guarantee Pyramid Entrance to Underground Desert")]
[DefaultValue(true)]
public bool PyramidEntrance;
[Label("[i:324] Ocean Spawn Point")]
[DefaultValue(false)]
public bool OceanSpawn;
[Header("$Mods.FargoSeeds.Configs.WorldConfig.Header3")]
[Label("[i:1153] Huge Jungle Temple")]
[DefaultValue(true)]
public bool HugeTemple;
[Label("[i:952] Extra Spider Caves")]
[DefaultValue(true)]
public bool MoreSpiders;
}
}