-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuilding Gadgets.cfg
204 lines (163 loc) · 7.77 KB
/
Building Gadgets.cfg
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# Configuration file
general {
# Disable absolute coords-mode for the Copy-Paste gadget
B:"Allow absolute Coord-Mode"=true
# Whether the Building / CopyPaste Gadget can overwrite blocks like water, lava, grass, etc (like a player can).
# False will only allow it to overwrite air blocks.
B:"Allow non-Air-Block-Overwrite"=true
# The maximum number of construction paste items dropped by a dense construction block.
# Min: 0
# Max: 2147483647
I:"Construction Paste Drop Count - Max"=3
# The minimum number of construction paste items dropped by a dense construction block.
# Min: 0
# Max: 2147483647
I:"Construction Paste Drop Count - Min"=1
# Determines if the Copy/Paste GUI's coordinate mode starts in 'Absolute' mode by default.
# Set to true for Absolute, set to False for Relative.
B:"Default to absolute Coord-Mode"=false
# Set to false to disable the recipe for construction paste.
B:"Enable Construction Paste"=true
# Set to false to disable the Destruction Gadget.
B:"Enable Destruction Gadget"=true
# Defines how far away you can build
# Min: 1.0
# Max: 48.0
D:"Max Build Distance"=32.0
# Set to true for Forge Energy Support, set to False for vanilla Item Damage
B:"Powered by Forge Energy"=true
##########################################################################################################
# blacklist settings
#--------------------------------------------------------------------------------------------------------#
# Configure your Blacklist-Settings here
##########################################################################################################
"blacklist settings" {
# All Blocks added to this will be treated similar to TileEntities. Not at all.
# Notice that you can use Regular Expressions as defined by Java Patterns to express more complex name combinations.
# Use for example "awfulmod:.*" to blacklist all awfulmod Blocks.
S:"Blacklisted Blocks" <
minecraft:.*_door.*
minecraft:piston_head
>
}
##########################################################################################################
# gadgets
#--------------------------------------------------------------------------------------------------------#
# Configure the Gadgets here
##########################################################################################################
gadgets {
# The max energy of Building, Exchanging & Copy-Paste Gadget
# Min: 0
# Max: 2147483647
I:"Maximum Energy"=500000
# The max range of the Gadgets
# Min: 1
# Max: 25
I:"Maximum allowed Range"=15
##########################################################################################################
# building gadget
#--------------------------------------------------------------------------------------------------------#
# Energy Cost & Durability of the Building Gadget
##########################################################################################################
"building gadget" {
# The Gadget's Damage cost per Operation
# Min: 0
# Max: 2000
I:"Damage Cost"=1
# The Gadget's Durability (0 means no durability is used) (Ignored if powered by FE)
# Min: 0
# Max: 100000
I:Durability=10000
# The Gadget's Energy cost per Operation
# Min: 0
# Max: 100000
I:"Energy Cost"=50
}
##########################################################################################################
# exchanging gadget
#--------------------------------------------------------------------------------------------------------#
# Energy Cost & Durability of the Exchanging Gadget
##########################################################################################################
"exchanging gadget" {
# The Gadget's Damage cost per Operation
# Min: 0
# Max: 2000
I:"Damage Cost"=2
# The Gadget's Durability (0 means no durability is used) (Ignored if powered by FE)
# Min: 0
# Max: 100000
I:Durability=10000
# The Gadget's Energy cost per Operation
# Min: 0
# Max: 100000
I:"Energy Cost"=100
}
##########################################################################################################
# destruction gadget
#--------------------------------------------------------------------------------------------------------#
# Energy Cost, Durability & Maximum Energy of the Destruction Gadget
##########################################################################################################
"destruction gadget" {
# The Gadget's Damage cost per Operation
# Min: 0
# Max: 2000
I:"Damage Cost"=2
# The Gadget's Durability (0 means no durability is used) (Ignored if powered by FE)
# Min: 0
# Max: 100000
I:Durability=10000
# The Gadget's Energy cost per Operation
# Min: 0
# Max: 100000
I:"Energy Cost"=200
# The max energy of the Destruction Gadget
# Min: 0
# Max: 2147483647
I:"Maximum Energy"=1000000
# If enabled, the Destruction Gadget can be taken out of fuzzy mode, allowing only instances of the block clicked to be removed (at a higher cost)
B:"Non-Fuzzy Mode Enabled"=false
# The cost in energy/durability will increase by this amount when not in fuzzy mode
# Min: 0.0
# Max: 1.7976931348623157E308
D:"Non-Fuzzy Mode Multiplier"=2.0
}
##########################################################################################################
# copy-paste gadget
#--------------------------------------------------------------------------------------------------------#
# Energy Cost & Durability of the Copy-Paste Gadget
##########################################################################################################
"copy-paste gadget" {
# The Gadget's Damage cost per Operation
# Min: 0
# Max: 2000
I:"Damage Cost"=1
# The Gadget's Durability (0 means no durability is used) (Ignored if powered by FE)
# Min: 0
# Max: 100000
I:Durability=10000
# The Gadget's Energy cost per Operation
# Min: 0
# Max: 100000
I:"Energy Cost"=50
}
}
##########################################################################################################
# paste containers
#--------------------------------------------------------------------------------------------------------#
# Configure the Paste Containers here
##########################################################################################################
"paste containers" {
# The maximum capacity of a tier 1 (iron) Construction Paste Container
# Min: 1
# Max: 2147483647
I:"T1 Container Capacity"=512
# The maximum capacity of a tier 2 (gold) Construction Paste Container
# Min: 1
# Max: 2147483647
I:"T2 Container Capacity"=2048
# The maximum capacity of a tier 3 (diamond) Construction Paste Container
# Min: 1
# Max: 2147483647
I:"T3 Container Capacity"=8192
}
}