-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alpha-0.2 - Added Pewter Items - Added Rose Gold Items - Added Britannia Silver Items (uncraftable at the moment) - Tweaked Osmium, Obsidian Shard,Bronze, Constantan, Enderium and Uranium item textures - Added missing recipes for Sulfur - Added Endstone and Netherrack Dust - Tweaked Lapis dust tags - Added more deconstruction recipes - Added English and Spanish lang localization for the new items
- Loading branch information
Showing
150 changed files
with
1,239 additions
and
26 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
6 changes: 3 additions & 3 deletions
6
src/generated/resources/.cache/474f4b2eac39f892f2cd7ba756fe752766f56205
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,4 +1,4 @@ | ||
// 1.21.1 2024-11-28T19:55:35.4264841 Tags for minecraft:block mod id eternalores | ||
799d847700acd811a73b0183b89e838192222e30 data/minecraft/tags/block/mineable/pickaxe.json | ||
// 1.21.1 2024-12-03T23:42:20.8609334 Tags for minecraft:block mod id eternalores | ||
395e57ec1ea9eb25294bc315812157006b865bba data/minecraft/tags/block/mineable/pickaxe.json | ||
5e28a27c841a1ca5ab67fc4048a07de9568f1b40 data/minecraft/tags/block/needs_diamond_tool.json | ||
74576d64b9c4db96d1483aed19aba6470f2de135 data/minecraft/tags/block/needs_iron_tool.json | ||
eb69d555414aa1d4cf29d18569e4ca2b28cf8549 data/minecraft/tags/block/needs_iron_tool.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
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/generated/resources/assets/eternalores/blockstates/britannia_silver_block.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": "eternalores:block/britannia_silver_block" | ||
} | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/generated/resources/assets/eternalores/blockstates/pewter_block.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": "eternalores:block/pewter_block" | ||
} | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/generated/resources/assets/eternalores/blockstates/rose_gold_block.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": "eternalores:block/rose_gold_block" | ||
} | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/block/britannia_silver_block.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": "eternalores:block/britannia_silver_block" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/block/pewter_block.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": "eternalores:block/pewter_block" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/block/rose_gold_block.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": "eternalores:block/rose_gold_block" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
src/generated/resources/assets/eternalores/models/item/britannia_silver_block.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": "eternalores:block/britannia_silver_block" | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/britannia_silver_dust.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": "eternalores:item/britannia_silver_dust" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/britannia_silver_ingot.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": "eternalores:item/britannia_silver_ingot" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/britannia_silver_nugget.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": "eternalores:item/britannia_silver_nugget" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/endstone_dust.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": "eternalores:item/endstone_dust" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/netherrack_dust.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": "eternalores:item/netherrack_dust" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
src/generated/resources/assets/eternalores/models/item/pewter_block.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": "eternalores:block/pewter_block" | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/pewter_dust.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": "eternalores:item/pewter_dust" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/pewter_ingot.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": "eternalores:item/pewter_ingot" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/pewter_nugget.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": "eternalores:item/pewter_nugget" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/plate_rose_gold.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": "eternalores:item/plate_rose_gold" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/rod_rose_gold.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/handheld", | ||
"textures": { | ||
"layer0": "eternalores:item/rod_rose_gold" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
src/generated/resources/assets/eternalores/models/item/rose_gold_block.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": "eternalores:block/rose_gold_block" | ||
} |
6 changes: 6 additions & 0 deletions
6
src/generated/resources/assets/eternalores/models/item/rose_gold_dust.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": "eternalores:item/rose_gold_dust" | ||
} | ||
} |
Oops, something went wrong.