generated from NTCat/mcpacktemp
31 lines
1.0 KiB
TOML
31 lines
1.0 KiB
TOML
|
#This is an example boolean property
|
||
|
exampleBoolean = true
|
||
|
#This is an example int property
|
||
|
# Default: 42
|
||
|
# Range: > -2147483648
|
||
|
exampleInt = 42
|
||
|
#This is an example string property
|
||
|
exampleString = "Hello World"
|
||
|
#This is an example multiline string property
|
||
|
exampleMultilineString = "Hello World"
|
||
|
#This is an example enum property
|
||
|
#Allowed Values: Hello, World
|
||
|
exampleEnum = "Hello"
|
||
|
#This is an example string list property
|
||
|
exampleStringList = ["Hello", "World"]
|
||
|
#This is an example resource location set property
|
||
|
exampleResourceLocationSet = ["minecraft:diamond", "minecraft:dirt"]
|
||
|
#This is an example int list property
|
||
|
exampleIntList = [12, 24]
|
||
|
#This is an example enum list property
|
||
|
exampleEnumList = ["Hello", "World"]
|
||
|
|
||
|
[exampleCategory]
|
||
|
#This is an example category
|
||
|
#This is an example string inside a category
|
||
|
innerField = "I am inside"
|
||
|
#This is an example float inside a category
|
||
|
# Default: 42.84000015258789
|
||
|
# Range: -3.4028234663852886E38 ~ 3.4028234663852886E38
|
||
|
exampleFloat = 42.84000015258789
|