-
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.
- Loading branch information
Showing
20 changed files
with
164 additions
and
1 deletion.
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
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:item/generated", | ||
"textures": { | ||
"layer0": "primeval:item/cement" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/primeval/models/item/cement_mix.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:item/generated", | ||
"textures": { | ||
"layer0": "primeval:item/cement_mix" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/resources/assets/primeval/models/item/crushed_terracotta.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:item/generated", | ||
"textures": { | ||
"layer0": "primeval:item/crushed_terracotta" | ||
} | ||
} |
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
+334 Bytes
src/main/resources/assets/primeval/textures/item/crushed_terracotta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions
11
src/main/resources/data/primeval/recipes/ashes_campfire_log.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,11 @@ | ||
{ | ||
"type": "primeval:open_fire", | ||
"input": { | ||
"tag": "primeval:logs" | ||
}, | ||
"result": { | ||
"item": "primeval:ashes", | ||
"count": 4 | ||
}, | ||
"cook_time": 200 | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/resources/data/primeval/recipes/ashes_campfire_stick.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,11 @@ | ||
{ | ||
"type": "primeval:open_fire", | ||
"input": { | ||
"item": "primeval:stick" | ||
}, | ||
"result": { | ||
"item": "primeval:ashes", | ||
"count": 1 | ||
}, | ||
"cook_time": 200 | ||
} |
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:crafting_shaped", | ||
"pattern": [ | ||
"###", | ||
"#D#", | ||
"###" | ||
], | ||
"key": { | ||
"#": { | ||
"item": "primeval:cement_mix" | ||
}, | ||
"D": { | ||
"item": "primeval:water_wooden_bucket" | ||
} | ||
}, | ||
"result": { | ||
"item": "primeval:cement", | ||
"count": 12 | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data/primeval/recipes/cement_mix_ashes.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,18 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"ingredients": [ | ||
{ | ||
"item": "primeval:crushed_terracotta" | ||
}, | ||
{ | ||
"item": "primeval:ashes" | ||
}, | ||
{ | ||
"item": "primeval:ashes" | ||
} | ||
], | ||
"result": { | ||
"item": "primeval:cement_mix", | ||
"count": 4 | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/resources/data/primeval/recipes/crushed_terracotta_fired_clay_bowl.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,11 @@ | ||
{ | ||
"type": "primeval:quern_grinding", | ||
"input": { | ||
"item": "primeval:fired_clay_bowl" | ||
}, | ||
"result": { | ||
"item": "primeval:crushed_terracotta", | ||
"count": 3 | ||
}, | ||
"wheelDamage":2 | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/resources/data/primeval/recipes/crushed_terracotta_fired_clay_brick.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,11 @@ | ||
{ | ||
"type": "primeval:quern_grinding", | ||
"input": { | ||
"item": "primeval:fired_clay_brick" | ||
}, | ||
"result": { | ||
"item": "primeval:crushed_terracotta", | ||
"count": 1 | ||
}, | ||
"wheelDamage":2 | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/resources/data/primeval/recipes/crushed_terracotta_fired_clay_jug.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,11 @@ | ||
{ | ||
"type": "primeval:quern_grinding", | ||
"input": { | ||
"item": "primeval:fired_clay_jug" | ||
}, | ||
"result": { | ||
"item": "primeval:crushed_terracotta", | ||
"count": 6 | ||
}, | ||
"wheelDamage":2 | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/resources/data/primeval/recipes/crushed_terracotta_fired_clay_molds.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,11 @@ | ||
{ | ||
"type": "primeval:quern_grinding", | ||
"input": { | ||
"tag": "primeval:fired_clay_molds" | ||
}, | ||
"result": { | ||
"item": "primeval:crushed_terracotta", | ||
"count": 3 | ||
}, | ||
"wheelDamage":2 | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/resources/data/primeval/recipes/crushed_terracotta_fired_clay_tile.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,11 @@ | ||
{ | ||
"type": "primeval:quern_grinding", | ||
"input": { | ||
"item": "primeval:fired_clay_tile" | ||
}, | ||
"result": { | ||
"item": "primeval:crushed_terracotta", | ||
"count": 2 | ||
}, | ||
"wheelDamage":2 | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/resources/data/primeval/recipes/crushed_terracotta_fired_clay_vessel.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,11 @@ | ||
{ | ||
"type": "primeval:quern_grinding", | ||
"input": { | ||
"item": "primeval:fired_clay_vessel" | ||
}, | ||
"result": { | ||
"item": "primeval:crushed_terracotta", | ||
"count": 5 | ||
}, | ||
"wheelDamage":2 | ||
} |
13 changes: 13 additions & 0 deletions
13
src/main/resources/data/primeval/tags/items/fired_clay_molds.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,13 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"primeval:fired_clay_mold_ingot", | ||
"primeval:fired_clay_mold_axe_head", | ||
"primeval:fired_clay_mold_chisel_head", | ||
"primeval:fired_clay_mold_knife_blade", | ||
"primeval:fired_clay_mold_pickaxe_head", | ||
"primeval:fired_clay_mold_shovel_head", | ||
"primeval:fired_clay_mold_sword_blade", | ||
"primeval:fired_clay_mold_hoe_head" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"primeval:clay_ball" | ||
"primeval:cement" | ||
] | ||
} |