config: import pack config files
This commit is contained in:
parent
b76c650efe
commit
ed0f520976
126 changed files with 12995 additions and 0 deletions
38
config/balm-common.toml
Normal file
38
config/balm-common.toml
Normal file
|
@ -0,0 +1,38 @@
|
|||
|
||||
# This is an example boolean property
|
||||
exampleBoolean = true
|
||||
|
||||
# This is an example enum property
|
||||
exampleEnum = "Hello"
|
||||
|
||||
# This is an example enum list property
|
||||
exampleEnumList = [ "Hello", "World" ]
|
||||
|
||||
# This is an example int property
|
||||
exampleInt = 42
|
||||
|
||||
# This is an example int list property
|
||||
exampleIntList = [ 12, 24 ]
|
||||
|
||||
# This is an example multiline string property
|
||||
exampleMultilineString = "Hello World"
|
||||
|
||||
# This is an example resource location set property
|
||||
exampleResourceLocationSet = [ "minecraft:dirt", "minecraft:diamond" ]
|
||||
|
||||
# This is an example string property
|
||||
exampleString = "Hello World"
|
||||
|
||||
# This is an example string list property
|
||||
exampleStringList = [ "Hello", "World" ]
|
||||
|
||||
|
||||
# This is an example category
|
||||
[exampleCategory]
|
||||
|
||||
# This is an example float inside a category
|
||||
exampleFloat = 42.84
|
||||
|
||||
# This is an example string inside a category
|
||||
innerField = "I am inside"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue