chess
5
src/main/resources/assets/szar/blockstates/chess.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "szar:block/chess" }
|
||||
}
|
||||
}
|
||||
@@ -188,5 +188,6 @@
|
||||
"advancement.szar.backrooms.description": "Step into the Backrooms",
|
||||
|
||||
"block.szar.tictactoe": "Tic Tac Toe",
|
||||
"block.szar.connectfour": "Connect Four"
|
||||
"block.szar.connectfour": "Connect Four",
|
||||
"block.szar.chess": "Chess"
|
||||
}
|
||||
|
||||
24
src/main/resources/assets/szar/models/block/chess.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"parent": "block/block",
|
||||
"format_version": "1.9.0",
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "szar:block/chess",
|
||||
"1": "szar:block/plank",
|
||||
"particle": "szar:block/chess"
|
||||
},
|
||||
"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"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
3
src/main/resources/assets/szar/models/item/chess.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "szar:block/chess"
|
||||
}
|
||||
BIN
src/main/resources/assets/szar/textures/block/chess.png
Normal file
|
After Width: | Height: | Size: 562 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_bb.png
Normal file
|
After Width: | Height: | Size: 390 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_bk.png
Normal file
|
After Width: | Height: | Size: 438 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_bn.png
Normal file
|
After Width: | Height: | Size: 398 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_bp.png
Normal file
|
After Width: | Height: | Size: 337 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_bq.png
Normal file
|
After Width: | Height: | Size: 390 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_br.png
Normal file
|
After Width: | Height: | Size: 379 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_wb.png
Normal file
|
After Width: | Height: | Size: 376 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_wk.png
Normal file
|
After Width: | Height: | Size: 403 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_wn.png
Normal file
|
After Width: | Height: | Size: 381 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_wp.png
Normal file
|
After Width: | Height: | Size: 313 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_wq.png
Normal file
|
After Width: | Height: | Size: 378 B |
BIN
src/main/resources/assets/szar/textures/gui/chess_wr.png
Normal file
|
After Width: | Height: | Size: 378 B |
@@ -3,6 +3,7 @@
|
||||
"szar:roulette",
|
||||
"szar:slot_machine",
|
||||
"szar:tictactoe",
|
||||
"szar:connectfour"
|
||||
"szar:connectfour",
|
||||
"szar:chess"
|
||||
]
|
||||
}
|
||||
14
src/main/resources/data/szar/loot_tables/blocks/chess.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"rolls": 1,
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "szar:chess"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
23
src/main/resources/data/szar/recipes/chess.json
Normal 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
|
||||
}
|
||||
}
|
||||