-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stone indent and pillar + path assets
- Loading branch information
Showing
25 changed files
with
162 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/resources/assets/primeval/blockstates/grass_path.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"variants": { | ||
"snowy=false": [ | ||
{ | ||
"model": "primeval:block/grass_path" | ||
}, | ||
{ | ||
"model": "primeval:block/grass_path_dark", | ||
"y": 90 | ||
}, | ||
{ | ||
"model": "primeval:block/grass_path", | ||
"y": 180 | ||
}, | ||
{ | ||
"model": "primeval:block/grass_path_darkest", | ||
"y": 270 | ||
} | ||
] | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/primeval/blockstates/stone_indent.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "primeval:block/stone_indent" | ||
} | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
src/main/resources/assets/primeval/blockstates/stone_pillar.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"variants": { | ||
"axis=x": { | ||
"model": "primeval:block/stone_pillar", | ||
"x": 90, | ||
"y": 90 | ||
}, | ||
"axis=y": { | ||
"model": "primeval:block/stone_pillar" | ||
}, | ||
"axis=z": { | ||
"model": "primeval:block/stone_pillar", | ||
"x": 90 | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/primeval/models/block/grass_path.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "minecraft:block/template_farmland", | ||
"textures": { | ||
"dirt": "primeval:block/grass_path_side", | ||
"top": "primeval:block/grass_path_top" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/primeval/models/block/grass_path_dark.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "minecraft:block/template_farmland", | ||
"textures": { | ||
"dirt": "primeval:block/grass_path_side", | ||
"top": "primeval:block/grass_path_top_dark" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/primeval/models/block/grass_path_darkest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "minecraft:block/template_farmland", | ||
"textures": { | ||
"dirt": "primeval:block/grass_path_side", | ||
"top": "primeval:block/grass_path_top_darkest" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/primeval/models/block/stone_indent.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"parent": "minecraft:block/cube_all", | ||
"textures": { | ||
"all": "primeval:block/stone_indent" | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/resources/assets/primeval/models/block/stone_pillar.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"parent": "minecraft:block/cube_column", | ||
"textures": { | ||
"end": "primeval:block/stone_pillar_cap", | ||
"side": "primeval:block/stone_pillar_mid" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
src/main/resources/assets/primeval/models/item/stone_indent.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"parent": "primeval:block/stone_indent" | ||
} |
3 changes: 3 additions & 0 deletions
3
src/main/resources/assets/primeval/models/item/stone_pillar.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"parent": "primeval:block/stone_pillar" | ||
} |
Binary file added
BIN
+625 Bytes
src/main/resources/assets/primeval/textures/block/grass_path_side.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+389 Bytes
src/main/resources/assets/primeval/textures/block/grass_path_top.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+386 Bytes
src/main/resources/assets/primeval/textures/block/grass_path_top_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+373 Bytes
src/main/resources/assets/primeval/textures/block/grass_path_top_darkest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+421 Bytes
src/main/resources/assets/primeval/textures/block/stone_pillar_cap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+336 Bytes
src/main/resources/assets/primeval/textures/block/stone_pillar_mid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/primeval/loot_tables/blocks/stone_indent.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1.0, | ||
"bonus_rolls": 0.0, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "primeval:stone_indent" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/primeval/loot_tables/blocks/stone_pillar.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"type": "minecraft:block", | ||
"pools": [ | ||
{ | ||
"rolls": 1.0, | ||
"bonus_rolls": 0.0, | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "primeval:stone_pillar" | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
] | ||
} | ||
] | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/resources/data/primeval/recipes/stone_indent.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"type": "primeval:item_damaging", | ||
"ingredients": [ | ||
{ | ||
"tag": "primeval:chisels" | ||
}, | ||
{ | ||
"item": "primeval:smooth_stone" | ||
} | ||
], | ||
"result": { | ||
"item": "primeval:stone_indent", | ||
"count": 1 | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/resources/data/primeval/recipes/stone_pillar.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"type": "primeval:item_damaging", | ||
"ingredients": [ | ||
{ | ||
"tag": "primeval:chisels" | ||
}, | ||
{ | ||
"item": "primeval:stone_indent" | ||
} | ||
], | ||
"result": { | ||
"item": "primeval:stone_pillar", | ||
"count": 1 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters