-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: smilodon79 <jayaramv2@hexaware.com>
- Loading branch information
smilodon79
committed
Feb 24, 2021
1 parent
5403735
commit dfa1313
Showing
9 changed files
with
38 additions
and
19 deletions.
There are no files selected for viewing
11 changes: 10 additions & 1 deletion
11
src/main/java/azzy/fabric/lookingglass/block/CursedEarthBlock.java
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
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
11 changes: 11 additions & 0 deletions
11
src/main/java/azzy/fabric/lookingglass/item/CursedEarthBlockItem.java
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 @@ | ||
package azzy.fabric.lookingglass.item; | ||
|
||
import net.fabricmc.fabric.api.item.v1.FabricItemSettings; | ||
import net.minecraft.block.Block; | ||
import net.minecraft.item.BlockItem; | ||
|
||
public class CursedEarthBlockItem extends BlockItem { | ||
public CursedEarthBlockItem(Block cursedEarthBlock, FabricItemSettings fabricItemSettings) { | ||
super(cursedEarthBlock, fabricItemSettings); | ||
} | ||
} |
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: 3 additions & 4 deletions
7
src/main/resources/assets/lookingglass/models/block/cursed_earth.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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
{ | ||
"variants": { | ||
"": { | ||
"model": "minecraft:block/grass" | ||
} | ||
"parent": "minecraft:block/cube_all", | ||
"textures": { | ||
"all": "lookingglass:block/polished_whitestone" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
src/main/resources/assets/lookingglass/models/item/cursed_earth.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": "lookingglass:block/polished_whitestone" | ||
} |