tictactoe and cosmetics system fix
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "szar:block/tictactoe" }
|
||||
}
|
||||
}
|
||||
@@ -185,5 +185,7 @@
|
||||
"advancement.szar.dontknow.description": "Ask a question from Merl",
|
||||
|
||||
"advancement.szar.backrooms.title": "Where did the world go?",
|
||||
"advancement.szar.backrooms.description": "Step into the Backrooms"
|
||||
"advancement.szar.backrooms.description": "Step into the Backrooms",
|
||||
|
||||
"block.szar.tictactoe": "Tic Tac Toe"
|
||||
}
|
||||
|
||||
24
src/main/resources/assets/szar/models/block/tictactoe.json
Normal file
24
src/main/resources/assets/szar/models/block/tictactoe.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"parent": "block/block",
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "szar:block/tictactoe",
|
||||
"1": "szar:block/plank",
|
||||
"particle": "szar:block/tictactoe"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 12], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 12], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 12], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "szar:block/tictactoe"
|
||||
}
|
||||
BIN
src/main/resources/assets/szar/textures/block/plank.png
Normal file
BIN
src/main/resources/assets/szar/textures/block/plank.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 405 B |
BIN
src/main/resources/assets/szar/textures/block/tictactoe.png
Normal file
BIN
src/main/resources/assets/szar/textures/block/tictactoe.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 579 B |
BIN
src/main/resources/assets/szar/textures/gui/o.png
Normal file
BIN
src/main/resources/assets/szar/textures/gui/o.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 754 B |
BIN
src/main/resources/assets/szar/textures/gui/tictactoe.png
Normal file
BIN
src/main/resources/assets/szar/textures/gui/tictactoe.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.7 KiB |
BIN
src/main/resources/assets/szar/textures/gui/x.png
Normal file
BIN
src/main/resources/assets/szar/textures/gui/x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 794 B |
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"values": [
|
||||
"szar:roulette",
|
||||
"szar:slot_machine"
|
||||
"szar:slot_machine",
|
||||
"szar:tictactoe"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"rolls": 1,
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "szar:tictactoe"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
23
src/main/resources/data/szar/recipes/tictactoe.json
Normal file
23
src/main/resources/data/szar/recipes/tictactoe.json
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user