-
Notifications
You must be signed in to change notification settings - Fork 31
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
28 changed files
with
636 additions
and
4 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
src/main/generated/assets/infernalexp/blockstates/luminous_fungus.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": "infernalexp:block/luminous_fungus" | ||
} | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/generated/assets/infernalexp/blockstates/shimmer_sand.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": "infernalexp:block/shimmer_sand" | ||
} | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/generated/assets/infernalexp/models/block/luminous_fungus.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/cross", | ||
"textures": { | ||
"cross": "infernalexp:block/luminous_fungus" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/generated/assets/infernalexp/models/block/shimmer_sand.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": "infernalexp:block/shimmer_sand" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/generated/assets/infernalexp/models/item/luminous_fungus.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": "infernalexp:block/luminous_fungus" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
src/main/generated/assets/infernalexp/models/item/shimmer_sand.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": "infernalexp:block/shimmer_sand" | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/generated/data/infernalexp/loot_tables/blocks/luminous_fungus.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": [ | ||
{ | ||
"bonus_rolls": 0.0, | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
], | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "infernalexp:luminous_fungus" | ||
} | ||
], | ||
"rolls": 1.0 | ||
} | ||
] | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/generated/data/infernalexp/loot_tables/blocks/shimmer_sand.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": [ | ||
{ | ||
"bonus_rolls": 0.0, | ||
"conditions": [ | ||
{ | ||
"condition": "minecraft:survives_explosion" | ||
} | ||
], | ||
"entries": [ | ||
{ | ||
"type": "minecraft:item", | ||
"name": "infernalexp:shimmer_sand" | ||
} | ||
], | ||
"rolls": 1.0 | ||
} | ||
] | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/generated/data/minecraft/tags/blocks/mineable/shovel.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 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
"infernalexp:shimmer_sand", | ||
"infernalexp:shimmer_sheet" | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/java/org/infernalstudios/infernalexp/block/ModBlocks.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 |
---|---|---|
@@ -1,9 +1,28 @@ | ||
package org.infernalstudios.infernalexp.block; | ||
|
||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; | ||
import net.minecraft.block.*; | ||
import net.minecraft.client.model.Model; | ||
import net.minecraft.data.client.Models; | ||
import org.infernalstudios.infernalexp.InfernalExpansion; | ||
import org.infernalstudios.infernalexp.setup.ModRegistry; | ||
|
||
public class ModBlocks { | ||
public static void register() { | ||
InfernalExpansion.log("Registering Blocks for " + InfernalExpansion.MOD_ID); | ||
} | ||
|
||
|
||
public static final Block SHIMMER_SAND = ModRegistry.ofBlock("shimmer_sand", | ||
new SandBlock(0xffffaa, FabricBlockSettings.copyOf(Blocks.SAND))) | ||
.model().drop().tool("wood_shovel").build(); | ||
|
||
public static final Block SHIMMER_SHEET = ModRegistry.ofBlock("shimmer_sheet", | ||
new SnowBlock(FabricBlockSettings.copyOf(Blocks.SAND))) | ||
.tool("wood_shovel").build(); | ||
|
||
|
||
public static final Block LUMINOUS_FUNGUS = ModRegistry.ofBlock("luminous_fungus", | ||
new PlantBlock(FabricBlockSettings.copyOf(Blocks.WARPED_FUNGUS).luminance(10))) | ||
.drop().model(ModRegistry.Models.CROSS).cutout().build(); | ||
} |
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
28 changes: 28 additions & 0 deletions
28
src/main/resources/assets/infernalexp/blockstates/shimmer_sheet.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,28 @@ | ||
{ | ||
"variants": { | ||
"layers=1": { | ||
"model": "infernalexp:block/shimmer_sheet2" | ||
}, | ||
"layers=2": { | ||
"model": "infernalexp:block/shimmer_sheet4" | ||
}, | ||
"layers=3": { | ||
"model": "infernalexp:block/shimmer_sheet6" | ||
}, | ||
"layers=4": { | ||
"model": "infernalexp:block/shimmer_sheet8" | ||
}, | ||
"layers=5": { | ||
"model": "infernalexp:block/shimmer_sheet10" | ||
}, | ||
"layers=6": { | ||
"model": "infernalexp:block/shimmer_sheet12" | ||
}, | ||
"layers=7": { | ||
"model": "infernalexp:block/shimmer_sheet14" | ||
}, | ||
"layers=8": { | ||
"model": "infernalexp:block/shimmer_sand" | ||
} | ||
} | ||
} |
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,3 +1,6 @@ | ||
{ | ||
"itemgroup.infernalexp": "Infernal Expansion", | ||
|
||
"block.infernalexp.shimmer_sand": "Shimmer Sand", | ||
"block.infernalexp.shimmer_sheet": "Shimmer Sheet" | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/assets/infernalexp/models/block/shimmer_sheet10.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,19 @@ | ||
{ | ||
"textures": { | ||
"particle": "infernalexp:block/shimmer_sand", | ||
"texture": "infernalexp:block/shimmer_sand" | ||
}, | ||
"elements": [ | ||
{ "from": [ 0, 0, 0 ], | ||
"to": [ 16, 10, 16 ], | ||
"faces": { | ||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, | ||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, | ||
"north": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "north" }, | ||
"south": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "south" }, | ||
"west": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "west" }, | ||
"east": { "uv": [ 0, 6, 16, 16 ], "texture": "#texture", "cullface": "east" } | ||
} | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/assets/infernalexp/models/block/shimmer_sheet12.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,19 @@ | ||
{ | ||
"textures": { | ||
"particle": "infernalexp:block/shimmer_sand", | ||
"texture": "infernalexp:block/shimmer_sand" | ||
}, | ||
"elements": [ | ||
{ "from": [ 0, 0, 0 ], | ||
"to": [ 16, 12, 16 ], | ||
"faces": { | ||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, | ||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, | ||
"north": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "north" }, | ||
"south": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "south" }, | ||
"west": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "west" }, | ||
"east": { "uv": [ 0, 4, 16, 16 ], "texture": "#texture", "cullface": "east" } | ||
} | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/assets/infernalexp/models/block/shimmer_sheet14.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,19 @@ | ||
{ | ||
"textures": { | ||
"particle": "infernalexp:block/shimmer_sand", | ||
"texture": "infernalexp:block/shimmer_sand" | ||
}, | ||
"elements": [ | ||
{ "from": [ 0, 0, 0 ], | ||
"to": [ 16, 14, 16 ], | ||
"faces": { | ||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, | ||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, | ||
"north": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "north" }, | ||
"south": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "south" }, | ||
"west": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "west" }, | ||
"east": { "uv": [ 0, 2, 16, 16 ], "texture": "#texture", "cullface": "east" } | ||
} | ||
} | ||
] | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/assets/infernalexp/models/block/shimmer_sheet2.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 @@ | ||
{ | ||
"parent": "block/thin_block", | ||
"textures": { | ||
"particle": "infernalexp:block/shimmer_sand", | ||
"texture": "infernalexp:block/shimmer_sand" | ||
}, | ||
"elements": [ | ||
{ "from": [ 0, 0, 0 ], | ||
"to": [ 16, 2, 16 ], | ||
"faces": { | ||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, | ||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, | ||
"north": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "north" }, | ||
"south": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "south" }, | ||
"west": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "west" }, | ||
"east": { "uv": [ 0, 14, 16, 16 ], "texture": "#texture", "cullface": "east" } | ||
} | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/assets/infernalexp/models/block/shimmer_sheet4.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,19 @@ | ||
{ | ||
"textures": { | ||
"particle": "infernalexp:block/shimmer_sand", | ||
"texture": "infernalexp:block/shimmer_sand" | ||
}, | ||
"elements": [ | ||
{ "from": [ 0, 0, 0 ], | ||
"to": [ 16, 4, 16 ], | ||
"faces": { | ||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, | ||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, | ||
"north": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "north" }, | ||
"south": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "south" }, | ||
"west": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "west" }, | ||
"east": { "uv": [ 0, 12, 16, 16 ], "texture": "#texture", "cullface": "east" } | ||
} | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/assets/infernalexp/models/block/shimmer_sheet6.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,19 @@ | ||
{ | ||
"textures": { | ||
"particle": "infernalexp:block/shimmer_sand", | ||
"texture": "infernalexp:block/shimmer_sand" | ||
}, | ||
"elements": [ | ||
{ "from": [ 0, 0, 0 ], | ||
"to": [ 16, 6, 16 ], | ||
"faces": { | ||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, | ||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, | ||
"north": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "north" }, | ||
"south": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "south" }, | ||
"west": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "west" }, | ||
"east": { "uv": [ 0, 10, 16, 16 ], "texture": "#texture", "cullface": "east" } | ||
} | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/resources/assets/infernalexp/models/block/shimmer_sheet8.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,19 @@ | ||
{ | ||
"textures": { | ||
"particle": "infernalexp:block/shimmer_sand", | ||
"texture": "infernalexp:block/shimmer_sand" | ||
}, | ||
"elements": [ | ||
{ "from": [ 0, 0, 0 ], | ||
"to": [ 16, 8, 16 ], | ||
"faces": { | ||
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "cullface": "down" }, | ||
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, | ||
"north": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "north" }, | ||
"south": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "south" }, | ||
"west": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "west" }, | ||
"east": { "uv": [ 0, 8, 16, 16 ], "texture": "#texture", "cullface": "east" } | ||
} | ||
} | ||
] | ||
} |
3 changes: 3 additions & 0 deletions
3
src/main/resources/assets/infernalexp/models/item/shimmer_sheet.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": "infernalexp:block/shimmer_sheet2" | ||
} |
Binary file added
BIN
+206 Bytes
src/main/resources/assets/infernalexp/textures/block/glimmer_gravel.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
+190 Bytes
src/main/resources/assets/infernalexp/textures/block/luminous_fungus.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
+183 Bytes
src/main/resources/assets/infernalexp/textures/block/luminous_fungus_off.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
+212 Bytes
src/main/resources/assets/infernalexp/textures/block/shimmer_sand.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
+192 Bytes
src/main/resources/assets/infernalexp/textures/block/shimmer_stone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.