tictactoe and cosmetics system fix

This commit is contained in:
2026-03-22 16:00:25 +01:00
parent 858b8b9169
commit 4bd026f40a
20 changed files with 738 additions and 97 deletions

View File

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

View File

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

View File

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