summaryrefslogtreecommitdiff
path: root/assets/blocks
diff options
context:
space:
mode:
Diffstat (limited to 'assets/blocks')
-rwxr-xr-xassets/blocks/blocks.json21
-rwxr-xr-xassets/blocks/bricks.json10
-rwxr-xr-xassets/blocks/cactus.json12
-rwxr-xr-xassets/blocks/chiseled_stone_bricks.json10
-rwxr-xr-xassets/blocks/cobblestone.json10
-rwxr-xr-xassets/blocks/cracked_stone_bricks.json10
-rwxr-xr-xassets/blocks/dirt.json10
-rwxr-xr-xassets/blocks/glass.json10
-rwxr-xr-xassets/blocks/grass.json12
-rwxr-xr-xassets/blocks/leaves.json10
-rwxr-xr-xassets/blocks/mossy_cobblestone.json10
-rwxr-xr-xassets/blocks/mossy_stone_bricks.json10
-rwxr-xr-xassets/blocks/plank.json10
-rwxr-xr-xassets/blocks/sand.json10
-rwxr-xr-xassets/blocks/sandstone.json12
-rwxr-xr-xassets/blocks/stone.json10
-rwxr-xr-xassets/blocks/stone_bricks.json10
-rwxr-xr-xassets/blocks/water.json10
-rwxr-xr-xassets/blocks/wood.json12
-rwxr-xr-xassets/blocks/wool.json10
20 files changed, 219 insertions, 0 deletions
diff --git a/assets/blocks/blocks.json b/assets/blocks/blocks.json
new file mode 100755
index 0000000..aea0c74
--- /dev/null
+++ b/assets/blocks/blocks.json
@@ -0,0 +1,21 @@
+{
+ "0": "grass",
+ "1": "dirt",
+ "2": "stone",
+ "3": "cobblestone",
+ "4": "mossy_cobblestone",
+ "5": "stone_bricks",
+ "6": "mossy_stone_bricks",
+ "7": "cracked_stone_bricks",
+ "8": "chiseled_stone_bricks",
+ "9": "bricks",
+ "10": "wood",
+ "11": "plank",
+ "12": "leaves",
+ "13": "sand",
+ "14": "sandstone",
+ "15": "cactus",
+ "16": "glass",
+ "17": "water",
+ "18": "wool"
+} \ No newline at end of file
diff --git a/assets/blocks/bricks.json b/assets/blocks/bricks.json
new file mode 100755
index 0000000..5d7f506
--- /dev/null
+++ b/assets/blocks/bricks.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "bricks"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/cactus.json b/assets/blocks/cactus.json
new file mode 100755
index 0000000..2d63367
--- /dev/null
+++ b/assets/blocks/cactus.json
@@ -0,0 +1,12 @@
+{
+ "model": "cactus",
+ "texture": "side",
+ "textures": {
+ "side": "cactus",
+ "top": "cactus_top",
+ "bottom": "cactus_top"
+ },
+ "transparent": false,
+ "renderNeighbors": true,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/chiseled_stone_bricks.json b/assets/blocks/chiseled_stone_bricks.json
new file mode 100755
index 0000000..a4bdb90
--- /dev/null
+++ b/assets/blocks/chiseled_stone_bricks.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "chiseled_stone_bricks"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/cobblestone.json b/assets/blocks/cobblestone.json
new file mode 100755
index 0000000..02fb6ae
--- /dev/null
+++ b/assets/blocks/cobblestone.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "cobblestone"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/cracked_stone_bricks.json b/assets/blocks/cracked_stone_bricks.json
new file mode 100755
index 0000000..424c38a
--- /dev/null
+++ b/assets/blocks/cracked_stone_bricks.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "cracked_stone_bricks"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/dirt.json b/assets/blocks/dirt.json
new file mode 100755
index 0000000..0b7f530
--- /dev/null
+++ b/assets/blocks/dirt.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "dirt"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/glass.json b/assets/blocks/glass.json
new file mode 100755
index 0000000..e34c7c3
--- /dev/null
+++ b/assets/blocks/glass.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "glass"
+ },
+ "transparent": true,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/grass.json b/assets/blocks/grass.json
new file mode 100755
index 0000000..f97d0be
--- /dev/null
+++ b/assets/blocks/grass.json
@@ -0,0 +1,12 @@
+{
+ "model": "default",
+ "texture": "side",
+ "textures": {
+ "side": "grass_side",
+ "top": "grass_top",
+ "bottom": "dirt"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/leaves.json b/assets/blocks/leaves.json
new file mode 100755
index 0000000..4ccde34
--- /dev/null
+++ b/assets/blocks/leaves.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "leaves"
+ },
+ "transparent": true,
+ "renderNeighbors": true,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/mossy_cobblestone.json b/assets/blocks/mossy_cobblestone.json
new file mode 100755
index 0000000..081b40e
--- /dev/null
+++ b/assets/blocks/mossy_cobblestone.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "mossy_cobblestone"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/mossy_stone_bricks.json b/assets/blocks/mossy_stone_bricks.json
new file mode 100755
index 0000000..ed73511
--- /dev/null
+++ b/assets/blocks/mossy_stone_bricks.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "mossy_stone_bricks"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/plank.json b/assets/blocks/plank.json
new file mode 100755
index 0000000..93e197a
--- /dev/null
+++ b/assets/blocks/plank.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "plank"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/sand.json b/assets/blocks/sand.json
new file mode 100755
index 0000000..e1574c5
--- /dev/null
+++ b/assets/blocks/sand.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "sand"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/sandstone.json b/assets/blocks/sandstone.json
new file mode 100755
index 0000000..e38fec5
--- /dev/null
+++ b/assets/blocks/sandstone.json
@@ -0,0 +1,12 @@
+{
+ "model": "default",
+ "texture": "side",
+ "textures": {
+ "side": "sandstone_side",
+ "top": "sandstone_top",
+ "bottom": "sandstone_bottom"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/stone.json b/assets/blocks/stone.json
new file mode 100755
index 0000000..f3173af
--- /dev/null
+++ b/assets/blocks/stone.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "stone"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/stone_bricks.json b/assets/blocks/stone_bricks.json
new file mode 100755
index 0000000..ab61078
--- /dev/null
+++ b/assets/blocks/stone_bricks.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "stone_bricks"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/water.json b/assets/blocks/water.json
new file mode 100755
index 0000000..42afe44
--- /dev/null
+++ b/assets/blocks/water.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "water"
+ },
+ "transparent": true,
+ "renderNeighbors": false,
+ "placeable": false
+} \ No newline at end of file
diff --git a/assets/blocks/wood.json b/assets/blocks/wood.json
new file mode 100755
index 0000000..62fc90b
--- /dev/null
+++ b/assets/blocks/wood.json
@@ -0,0 +1,12 @@
+{
+ "model": "default",
+ "texture": "side",
+ "textures": {
+ "side": "wood_side",
+ "top": "wood_top",
+ "bottom": "wood_top"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file
diff --git a/assets/blocks/wool.json b/assets/blocks/wool.json
new file mode 100755
index 0000000..ef79773
--- /dev/null
+++ b/assets/blocks/wool.json
@@ -0,0 +1,10 @@
+{
+ "model": "default",
+ "texture": "all",
+ "textures": {
+ "face": "wool"
+ },
+ "transparent": false,
+ "renderNeighbors": false,
+ "placeable": true
+} \ No newline at end of file