Tag mixin & fixes
This commit is contained in:
parent
7316480289
commit
1d206295b7
116 changed files with 1669 additions and 802 deletions
7
src/main/java/ru/betterend/TagHelper.java
Normal file
7
src/main/java/ru/betterend/TagHelper.java
Normal file
|
@ -0,0 +1,7 @@
|
|||
package ru.betterend;
|
||||
|
||||
import net.minecraft.tag.Tag;
|
||||
|
||||
public class TagHelper {
|
||||
public static Tag.Entry lastEntry;
|
||||
}
|
|
@ -1,10 +1,18 @@
|
|||
package ru.betterend.blocks.complex;
|
||||
|
||||
import java.lang.reflect.Field;
|
||||
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.fabricmc.fabric.api.tag.TagRegistry;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.Material;
|
||||
import net.minecraft.block.MaterialColor;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.sound.BlockSoundGroup;
|
||||
import net.minecraft.tag.BlockTags;
|
||||
import net.minecraft.tag.SetTag;
|
||||
import net.minecraft.tag.Tag;
|
||||
import net.minecraft.util.Identifier;
|
||||
import ru.betterend.blocks.basis.BlockBarrel;
|
||||
import ru.betterend.blocks.basis.BlockBase;
|
||||
import ru.betterend.blocks.basis.BlockChest;
|
||||
|
@ -50,9 +58,10 @@ public class WoodenMaterial
|
|||
public final Block chest;
|
||||
public final Block barrel;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public WoodenMaterial(String name, MaterialColor woodColor, MaterialColor planksColor)
|
||||
{
|
||||
FabricBlockSettings materialPlanks = FabricBlockSettings.of(Material.WOOD).materialColor(planksColor);
|
||||
FabricBlockSettings materialPlanks = FabricBlockSettings.of(Material.WOOD).sounds(BlockSoundGroup.WOOD).materialColor(planksColor);
|
||||
|
||||
log_striped = BlockRegistry.registerBlock(name + "_striped_log", new BlockPillar(materialPlanks));
|
||||
bark_striped = BlockRegistry.registerBlock(name + "_striped_bark", new BlockPillar(materialPlanks));
|
||||
|
@ -91,6 +100,18 @@ public class WoodenMaterial
|
|||
RecipeBuilder.make(name + "_sign", sign).setOutputCount(3).setShape("###", "###", " I ").addMaterial('#', planks).addMaterial('I', Items.STICK).setGroup("end_signs").build();
|
||||
RecipeBuilder.make(name + "_chest", chest).setShape("###", "# #", "###").addMaterial('#', planks).setGroup("end_chests").build();
|
||||
RecipeBuilder.make(name + "_barrel", barrel).setShape("#S#", "# #", "#S#").addMaterial('#', planks).addMaterial('S', slab).setGroup("end_barrels").build();
|
||||
|
||||
/*try {
|
||||
Field field = BlockTags.CLIMBABLE.getClass().getDeclaredField("delegate");
|
||||
field.setAccessible(true);
|
||||
SetTag<Block> tag = SetTag.empty();
|
||||
tag = (SetTag<Block>) field.get(tag);
|
||||
System.out.println(tag.getClass());
|
||||
} catch (Exception e) {
|
||||
// TODO Auto-generated catch block
|
||||
e.printStackTrace();
|
||||
}*/
|
||||
//System.out.println(BlockTags.CLIMBABLE.getClass());
|
||||
}
|
||||
|
||||
public boolean isTreeLog(Block block)
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
package ru.betterend.mixin.common;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
import org.spongepowered.asm.mixin.injection.Inject;
|
||||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
||||
|
||||
import net.minecraft.tag.Tag;
|
||||
import net.minecraft.tag.TagGroup;
|
||||
import net.minecraft.tag.TagGroupLoader;
|
||||
import net.minecraft.util.Identifier;
|
||||
import ru.betterend.BetterEnd;
|
||||
|
||||
@Mixin(TagGroupLoader.class)
|
||||
public class TagGroupLoaderMixin {
|
||||
@Inject(method = "applyReload", at = @At(value = "HEAD"))
|
||||
private void onReload(Map<Identifier, Tag.Builder> tags, CallbackInfoReturnable<TagGroup<?>> info) {
|
||||
tags.forEach((id, builder) -> {
|
||||
if (id.toString().equals("minecraft:climbable")) {
|
||||
builder.add(new Identifier(BetterEnd.MOD_ID, "mossy_glowshroom_ladder"), "code");
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/aeternium_block"
|
||||
}
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/aeternium_block"
|
||||
}
|
||||
}
|
|
@ -1,42 +1,190 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"parent": "block/block",
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 1, 0, 1 ],
|
||||
"to": [ 15, 10, 15 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 3.5, 4.75, 7, 8.25 ], "texture": "#texture", "rotation": 180 },
|
||||
"north": { "uv": [ 10.5, 10.75, 14, 8.25 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 10.75, 3.5, 8.25 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7, 10.75, 10.5, 8.25 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 3.5, 10.75, 7, 8.25 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 1, 10, 1 ],
|
||||
"to": [ 15, 14, 15 ],
|
||||
"faces": {
|
||||
"up": { "uv": [ 7, 0, 10.5, 3.5 ], "texture": "#texture", "rotation": 180 },
|
||||
"north": { "uv": [ 10.5, 4.75, 14, 3.75 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 0, 4.75, 3.5, 3.75 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 7, 4.75, 10.5, 3.75 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 3.5, 4.75, 7, 3.75 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 7, 7, 0 ],
|
||||
"to": [ 9, 11, 1 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 0.25, 0, 0.75, 0.25 ], "texture": "#texture", "rotation": 180 },
|
||||
"up": { "uv": [ 0.75, 0, 1.25, 0.25 ], "texture": "#texture", "rotation": 180 },
|
||||
"north": { "uv": [ 0.5, 1.25, 1, 0.25 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 0, 1.25, 0.25, 0.25 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 0, 1.25, 0.25, 0.25 ], "texture": "#texture" }
|
||||
}
|
||||
}
|
||||
]
|
||||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"faces": {
|
||||
"down": {
|
||||
"rotation": 180,
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
3.5,
|
||||
4.75,
|
||||
7,
|
||||
8.25
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
3.5,
|
||||
10.75,
|
||||
7,
|
||||
8.25
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
10.5,
|
||||
10.75,
|
||||
14,
|
||||
8.25
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0,
|
||||
10.75,
|
||||
3.5,
|
||||
8.25
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
7,
|
||||
10.75,
|
||||
10.5,
|
||||
8.25
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
1,
|
||||
0,
|
||||
1
|
||||
],
|
||||
"to": [
|
||||
15,
|
||||
10,
|
||||
15
|
||||
]
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"faces": {
|
||||
"east": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
3.5,
|
||||
4.75,
|
||||
7,
|
||||
3.75
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
10.5,
|
||||
4.75,
|
||||
14,
|
||||
3.75
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0,
|
||||
4.75,
|
||||
3.5,
|
||||
3.75
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"rotation": 180,
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
7,
|
||||
0,
|
||||
10.5,
|
||||
3.5
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
7,
|
||||
4.75,
|
||||
10.5,
|
||||
3.75
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
1,
|
||||
10,
|
||||
1
|
||||
],
|
||||
"to": [
|
||||
15,
|
||||
14,
|
||||
15
|
||||
]
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"faces": {
|
||||
"down": {
|
||||
"rotation": 180,
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0.25,
|
||||
0,
|
||||
0.75,
|
||||
0.25
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0,
|
||||
1.25,
|
||||
0.25,
|
||||
0.25
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0.5,
|
||||
1.25,
|
||||
1,
|
||||
0.25
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"rotation": 180,
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0.75,
|
||||
0,
|
||||
1.25,
|
||||
0.25
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#texture",
|
||||
"uv": [
|
||||
0,
|
||||
1.25,
|
||||
0.25,
|
||||
0.25
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
7,
|
||||
7,
|
||||
0
|
||||
],
|
||||
"to": [
|
||||
9,
|
||||
11,
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"parent": "block/block"
|
||||
}
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"particle": "betterend:block/end_moss_side",
|
||||
"down": "block/end_stone",
|
||||
"up": "betterend:block/end_moss_top",
|
||||
"north": "betterend:block/end_moss_side",
|
||||
"east": "betterend:block/end_moss_side",
|
||||
"south": "betterend:block/end_moss_side",
|
||||
"west": "betterend:block/end_moss_side"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"down": "block/end_stone",
|
||||
"east": "betterend:block/end_moss_side",
|
||||
"north": "betterend:block/end_moss_side",
|
||||
"particle": "betterend:block/end_moss_side",
|
||||
"south": "betterend:block/end_moss_side",
|
||||
"up": "betterend:block/end_moss_top",
|
||||
"west": "betterend:block/end_moss_side"
|
||||
}
|
||||
}
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"particle": "betterend:block/end_mycelium_side",
|
||||
"down": "block/end_stone",
|
||||
"up": "betterend:block/end_mycelium_top",
|
||||
"north": "betterend:block/end_mycelium_side",
|
||||
"east": "betterend:block/end_mycelium_side",
|
||||
"south": "betterend:block/end_mycelium_side",
|
||||
"west": "betterend:block/end_mycelium_side"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"down": "block/end_stone",
|
||||
"east": "betterend:block/end_mycelium_side",
|
||||
"north": "betterend:block/end_mycelium_side",
|
||||
"particle": "betterend:block/end_mycelium_side",
|
||||
"south": "betterend:block/end_mycelium_side",
|
||||
"up": "betterend:block/end_mycelium_top",
|
||||
"west": "betterend:block/end_mycelium_side"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/orientable",
|
||||
"textures": {
|
||||
"top": "betterend:block/end_stone_smelter_top",
|
||||
"front": "betterend:block/end_stone_smelter_front",
|
||||
"side": "betterend:block/end_stone_smelter_side"
|
||||
}
|
||||
{
|
||||
"parent": "minecraft:block/orientable",
|
||||
"textures": {
|
||||
"front": "betterend:block/end_stone_smelter_front",
|
||||
"side": "betterend:block/end_stone_smelter_side",
|
||||
"top": "betterend:block/end_stone_smelter_top"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/orientable",
|
||||
"textures": {
|
||||
"top": "betterend:block/end_stone_smelter_top",
|
||||
"front": "betterend:block/end_stone_smelter_front_on",
|
||||
"side": "betterend:block/end_stone_smelter_side"
|
||||
}
|
||||
{
|
||||
"parent": "minecraft:block/orientable",
|
||||
"textures": {
|
||||
"front": "betterend:block/end_stone_smelter_front_on",
|
||||
"side": "betterend:block/end_stone_smelter_side",
|
||||
"top": "betterend:block/end_stone_smelter_top"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/ender_block"
|
||||
}
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/ender_block"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/ender_ore"
|
||||
}
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/ender_ore"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/endstone_dust"
|
||||
}
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/endstone_dust"
|
||||
}
|
||||
}
|
87
src/main/resources/assets/betterend/models/block/ladder.json
Normal file
87
src/main/resources/assets/betterend/models/block/ladder.json
Normal file
|
@ -0,0 +1,87 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"parent": "block/ladder",
|
||||
"textures": {
|
||||
"particle": "#texture"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 12, 0, 15 ],
|
||||
"to": [ 14, 16, 16 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 2, 15, 4, 16 ], "texture": "#texture", "cullface": "down", "rotation": 180 },
|
||||
"up": { "uv": [ 2, 0, 4, 1 ], "texture": "#texture", "cullface": "up", "rotation": 180 },
|
||||
"north": { "uv": [ 2, 0, 4, 16 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 2, 0, 4, 16 ], "texture": "#texture", "cullface": "north" },
|
||||
"west": { "uv": [ 3, 0, 4, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 2, 0, 3, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 2, 0, 15 ],
|
||||
"to": [ 4, 16, 16 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 12, 15, 14, 16 ], "texture": "#texture", "cullface": "down", "rotation": 180 },
|
||||
"up": { "uv": [ 12, 0, 14, 1 ], "texture": "#texture", "cullface": "up", "rotation": 180 },
|
||||
"north": { "uv": [ 12, 0, 14, 16 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 12, 0, 14, 16 ], "texture": "#texture", "cullface": "north" },
|
||||
"west": { "uv": [ 3, 0, 4, 16 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 2, 0, 3, 16 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box3",
|
||||
"from": [ 1, 1, 14.5 ],
|
||||
"to": [ 15, 3, 15.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 1, 14, 15, 15 ], "texture": "#texture", "rotation": 180 },
|
||||
"up": { "uv": [ 1, 13, 15, 14 ], "texture": "#texture", "rotation": 180 },
|
||||
"north": { "uv": [ 1, 13, 15, 15 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 1, 13, 15, 15 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 14, 13, 15, 15 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 1, 13, 2, 15 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box3",
|
||||
"from": [ 1, 5, 14.5 ],
|
||||
"to": [ 15, 7, 15.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 1, 10, 15, 11 ], "texture": "#texture", "rotation": 180 },
|
||||
"up": { "uv": [ 1, 9, 15, 10 ], "texture": "#texture", "rotation": 180 },
|
||||
"north": { "uv": [ 1, 9, 15, 11 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 1, 9, 15, 11 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 14, 9, 15, 11 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 1, 9, 2, 11 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box3",
|
||||
"from": [ 1, 9, 14.5 ],
|
||||
"to": [ 15, 11, 15.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 1, 6, 15, 7 ], "texture": "#texture", "rotation": 180 },
|
||||
"up": { "uv": [ 1, 5, 15, 6 ], "texture": "#texture", "rotation": 180 },
|
||||
"north": { "uv": [ 1, 5, 15, 7 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 1, 5, 15, 7 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 14, 5, 15, 7 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 1, 5, 2, 7 ], "texture": "#texture" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box3",
|
||||
"from": [ 1, 13, 14.5 ],
|
||||
"to": [ 15, 15, 15.5 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 1, 2, 15, 3 ], "texture": "#texture", "rotation": 180 },
|
||||
"up": { "uv": [ 1, 1, 15, 2 ], "texture": "#texture", "rotation": 180 },
|
||||
"north": { "uv": [ 1, 1, 15, 3 ], "texture": "#texture" },
|
||||
"south": { "uv": [ 1, 1, 15, 3 ], "texture": "#texture" },
|
||||
"west": { "uv": [ 14, 1, 15, 3 ], "texture": "#texture" },
|
||||
"east": { "uv": [ 1, 1, 2, 3 ], "texture": "#texture" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/mossy_glowshroom_log_side"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/mossy_glowshroom_log_side"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"top": "betterend:block/mossy_glowshroom_barrel_top",
|
||||
"bottom": "betterend:block/mossy_glowshroom_barrel_bottom",
|
||||
"side": "betterend:block/mossy_glowshroom_barrel_side"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_barrel_bottom",
|
||||
"side": "betterend:block/mossy_glowshroom_barrel_side",
|
||||
"top": "betterend:block/mossy_glowshroom_barrel_top"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"top": "betterend:block/mossy_glowshroom_barrel_top_open",
|
||||
"bottom": "betterend:block/mossy_glowshroom_barrel_bottom",
|
||||
"side": "betterend:block/mossy_glowshroom_barrel_side"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_barrel_bottom",
|
||||
"side": "betterend:block/mossy_glowshroom_barrel_side",
|
||||
"top": "betterend:block/mossy_glowshroom_barrel_top_open"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/button",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/button",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/button_inventory",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/button_inventory",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/button_pressed",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/button_pressed",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "betterend:block/mossy_glowshroom_crafting_table_front",
|
||||
"north": "betterend:block/mossy_glowshroom_crafting_table_front",
|
||||
"south": "betterend:block/mossy_glowshroom_crafting_table_side",
|
||||
"east": "betterend:block/mossy_glowshroom_crafting_table_side",
|
||||
"west": "betterend:block/mossy_glowshroom_crafting_table_front",
|
||||
"up": "betterend:block/mossy_glowshroom_crafting_table_top",
|
||||
"down": "betterend:block/mossy_glowshroom_crafting_table_bottom"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"down": "betterend:block/mossy_glowshroom_crafting_table_bottom",
|
||||
"east": "betterend:block/mossy_glowshroom_crafting_table_side",
|
||||
"north": "betterend:block/mossy_glowshroom_crafting_table_front",
|
||||
"particle": "betterend:block/mossy_glowshroom_crafting_table_front",
|
||||
"south": "betterend:block/mossy_glowshroom_crafting_table_side",
|
||||
"up": "betterend:block/mossy_glowshroom_crafting_table_top",
|
||||
"west": "betterend:block/mossy_glowshroom_crafting_table_front"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_bottom",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_door_bottom",
|
||||
"top": "betterend:block/mossy_glowshroom_door_bottom"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/door_bottom",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_door_bottom",
|
||||
"top": "betterend:block/mossy_glowshroom_door_bottom"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_bottom_rh",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_door_bottom",
|
||||
"top": "betterend:block/mossy_glowshroom_door_bottom"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/door_bottom_rh",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_door_bottom",
|
||||
"top": "betterend:block/mossy_glowshroom_door_bottom"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_top",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_door_top",
|
||||
"top": "betterend:block/mossy_glowshroom_door_top"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/door_top",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_door_top",
|
||||
"top": "betterend:block/mossy_glowshroom_door_top"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_top_rh",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_door_top",
|
||||
"top": "betterend:block/mossy_glowshroom_door_top"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/door_top_rh",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_door_top",
|
||||
"top": "betterend:block/mossy_glowshroom_door_top"
|
||||
}
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"textures": {
|
||||
"particle": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"textures": {
|
||||
"particle": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_fence_gate",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/template_fence_gate",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_fence_gate_open",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/template_fence_gate_open",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_inventory",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/fence_inventory",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_post",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/fence_post",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_side",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/fence_side",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_planks",
|
||||
"top": "betterend:block/mossy_glowshroom_planks",
|
||||
"side": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_planks",
|
||||
"side": "betterend:block/mossy_glowshroom_planks",
|
||||
"top": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_planks",
|
||||
"top": "betterend:block/mossy_glowshroom_planks",
|
||||
"side": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_planks",
|
||||
"side": "betterend:block/mossy_glowshroom_planks",
|
||||
"top": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"parent": "betterend:block/reeds_ladder",
|
||||
"textures": {
|
||||
"particle": "betterend:block/mossy_glowshroom_ladder",
|
||||
"texture": "betterend:block/mossy_glowshroom_ladder"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "betterend:block/ladder",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_ladder"
|
||||
}
|
||||
}
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"particle": "betterend:block/mossy_glowshroom_log_side",
|
||||
"down": "betterend:block/mossy_glowshroom_log_top",
|
||||
"up": "betterend:block/mossy_glowshroom_log_top",
|
||||
"north": "betterend:block/mossy_glowshroom_log_side",
|
||||
"east": "betterend:block/mossy_glowshroom_log_side",
|
||||
"south": "betterend:block/mossy_glowshroom_log_side",
|
||||
"west": "betterend:block/mossy_glowshroom_log_side"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"down": "betterend:block/mossy_glowshroom_log_top",
|
||||
"east": "betterend:block/mossy_glowshroom_log_side",
|
||||
"north": "betterend:block/mossy_glowshroom_log_side",
|
||||
"particle": "betterend:block/mossy_glowshroom_log_side",
|
||||
"south": "betterend:block/mossy_glowshroom_log_side",
|
||||
"up": "betterend:block/mossy_glowshroom_log_top",
|
||||
"west": "betterend:block/mossy_glowshroom_log_side"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_planks",
|
||||
"top": "betterend:block/mossy_glowshroom_planks",
|
||||
"side": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_planks",
|
||||
"side": "betterend:block/mossy_glowshroom_planks",
|
||||
"top": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/pressure_plate_down",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/pressure_plate_down",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/pressure_plate_up",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/pressure_plate_up",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_planks",
|
||||
"top": "betterend:block/mossy_glowshroom_planks",
|
||||
"side": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "betterend:block/mossy_glowshroom_planks",
|
||||
"side": "betterend:block/mossy_glowshroom_planks",
|
||||
"top": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/mossy_glowshroom_striped_log_side"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/mossy_glowshroom_striped_log_side"
|
||||
}
|
||||
}
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"particle": "betterend:block/mossy_glowshroom_striped_log_side",
|
||||
"down": "betterend:block/mossy_glowshroom_striped_log_top",
|
||||
"up": "betterend:block/mossy_glowshroom_striped_log_top",
|
||||
"north": "betterend:block/mossy_glowshroom_striped_log_side",
|
||||
"east": "betterend:block/mossy_glowshroom_striped_log_side",
|
||||
"south": "betterend:block/mossy_glowshroom_striped_log_side",
|
||||
"west": "betterend:block/mossy_glowshroom_striped_log_side"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"down": "betterend:block/mossy_glowshroom_striped_log_top",
|
||||
"east": "betterend:block/mossy_glowshroom_striped_log_side",
|
||||
"north": "betterend:block/mossy_glowshroom_striped_log_side",
|
||||
"particle": "betterend:block/mossy_glowshroom_striped_log_side",
|
||||
"south": "betterend:block/mossy_glowshroom_striped_log_side",
|
||||
"up": "betterend:block/mossy_glowshroom_striped_log_top",
|
||||
"west": "betterend:block/mossy_glowshroom_striped_log_side"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_orientable_trapdoor_bottom",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_trapdoor"
|
||||
},
|
||||
}
|
||||
{
|
||||
"parent": "block/template_orientable_trapdoor_bottom",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_trapdoor"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_fence_gate_wall",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/template_fence_gate_wall",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_fence_gate_wall_open",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
||||
{
|
||||
"parent": "block/template_fence_gate_wall_open",
|
||||
"textures": {
|
||||
"texture": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/terminite_block"
|
||||
}
|
||||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betterend:block/terminite_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"textures": {
|
||||
"particle": "betterend:block/mossy_glowshroom_planks"
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 2 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
|
@ -6,7 +6,8 @@
|
|||
"mixins": [
|
||||
"DimensionTypeMixin",
|
||||
"RecipeManagerMixin",
|
||||
"ServerPlayNetworkHandlerMixin"
|
||||
"ServerPlayNetworkHandlerMixin",
|
||||
"TagGroupLoaderMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue