This commit is contained in:
2026-03-22 18:04:53 +01:00
parent 0bb5eb0b0f
commit f2c6cccb0a
26 changed files with 806 additions and 5 deletions

View File

@@ -3,6 +3,7 @@
"szar:roulette",
"szar:slot_machine",
"szar:tictactoe",
"szar:connectfour"
"szar:connectfour",
"szar:chess"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "szar:chess"
}
]
}
]
}

View File

@@ -0,0 +1,23 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"RBR",
"BPB",
"RBR"
],
"key": {
"R": {
"item": "minecraft:white_dye"
},
"B": {
"item": "minecraft:black_dye"
},
"P": {
"tag": "minecraft:planks"
}
},
"result": {
"item": "szar:chess",
"count": 1
}
}