mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
Move block data from TOML to JSON under assets/cubed/blocks, add registry.json for block and item IDs, and relocate textures and sounds to the cubed namespace.
27 lines
496 B
JSON
27 lines
496 B
JSON
{
|
|
"blocks": {
|
|
"air": 0,
|
|
"grass_block": 1,
|
|
"dirt": 2,
|
|
"stone": 3,
|
|
"sand": 4,
|
|
"log": 5,
|
|
"leaf": 6,
|
|
"water": 7,
|
|
"snowy_grass_block": 8,
|
|
"grass": 9
|
|
},
|
|
"items": {
|
|
"air": 0,
|
|
"grass_block": 1,
|
|
"dirt": 2,
|
|
"stone": 3,
|
|
"sand": 4,
|
|
"log": 5,
|
|
"leaf": 6,
|
|
"water": 7,
|
|
"snowy_grass_block": 8,
|
|
"grass": 9,
|
|
"pig_spawn_egg": 10
|
|
}
|
|
} |