connect four, and some minor fixes

This commit is contained in:
2026-03-22 17:31:09 +01:00
parent df80fed3fa
commit ff8e52f95d
18 changed files with 741 additions and 7 deletions

View File

@@ -2,6 +2,7 @@
"values": [
"szar:roulette",
"szar:slot_machine",
"szar:tictactoe"
"szar:tictactoe",
"szar:connectfour"
]
}

View File

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

View File

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