config: import pack config files

This commit is contained in:
Ophestra 2025-06-23 05:08:29 +09:00
parent b76c650efe
commit 348be6b09f
Signed by: ophestra
SSH key fingerprint: SHA256:57+oNEzV2U/aq2eDPdDtPiJjVykuXMYYJMkcAo8QdRw
128 changed files with 13500 additions and 1 deletions

38
config/balm-common.toml Normal file
View 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"