feat: change config format
This commit is contained in:
parent
25eae158b1
commit
3fb955bf0f
1 changed files with 27 additions and 1 deletions
|
|
@ -12,7 +12,33 @@ local REQUEST_TICKER = ""
|
||||||
local SLEEP_TIME = 30
|
local SLEEP_TIME = 30
|
||||||
local NUGGET_RATIO = 63 -- amount of nuggets per craft
|
local NUGGET_RATIO = 63 -- amount of nuggets per craft
|
||||||
local BLOCK_RATIO = 7 -- amount of blocks per craft
|
local BLOCK_RATIO = 7 -- amount of blocks per craft
|
||||||
local ITEM_TYPES = { "iron", "copper", "zinc", "gold", "electrum" }
|
local ITEM_TYPES = {
|
||||||
|
iron = {
|
||||||
|
nugget = "minecraft",
|
||||||
|
ingot = "minecraft",
|
||||||
|
block = "minecraft",
|
||||||
|
},
|
||||||
|
copper = {
|
||||||
|
nugget = "create",
|
||||||
|
ingot = "minecraft",
|
||||||
|
block = "minecraft",
|
||||||
|
},
|
||||||
|
zinc = {
|
||||||
|
nugget = "create",
|
||||||
|
ingot = "create",
|
||||||
|
block = "create",
|
||||||
|
},
|
||||||
|
gold = {
|
||||||
|
nugget = "minecraft",
|
||||||
|
ingot = "minecraft",
|
||||||
|
block = "minecraft",
|
||||||
|
},
|
||||||
|
electrum = {
|
||||||
|
nugget = "createaddition",
|
||||||
|
ingot = "createaddition",
|
||||||
|
block = "createaddition",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
local STACKS = 64
|
local STACKS = 64
|
||||||
local NUGGETS = 1
|
local NUGGETS = 1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue