Amaranita mushroom blocks (WIP), Sagnum

This commit is contained in:
paulevsGitch 2021-02-28 23:19:08 +03:00
parent 81fe38ad8d
commit 5e3a3ef6cd
40 changed files with 478 additions and 4 deletions

View file

@ -0,0 +1,13 @@
package ru.betterend.blocks;
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
import net.fabricmc.fabric.api.tool.attribute.v1.FabricToolTags;
import net.minecraft.block.Material;
import net.minecraft.sound.BlockSoundGroup;
import ru.betterend.blocks.basis.BlockBase;
public class AmaranitaCapBlock extends BlockBase {
public AmaranitaCapBlock() {
super(FabricBlockSettings.of(Material.WOOD).breakByTool(FabricToolTags.AXES).sounds(BlockSoundGroup.WOOD));
}
}

View file

@ -0,0 +1,20 @@
package ru.betterend.blocks;
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
import net.fabricmc.fabric.api.tool.attribute.v1.FabricToolTags;
import net.minecraft.block.Material;
import net.minecraft.sound.BlockSoundGroup;
import ru.betterend.blocks.basis.BlockBase;
import ru.betterend.client.render.ERenderLayer;
import ru.betterend.interfaces.IRenderTypeable;
public class AmaranitaHymenophoreBlock extends BlockBase implements IRenderTypeable {
public AmaranitaHymenophoreBlock() {
super(FabricBlockSettings.of(Material.WOOD).breakByTool(FabricToolTags.AXES).sounds(BlockSoundGroup.WOOD));
}
@Override
public ERenderLayer getRenderLayer() {
return ERenderLayer.CUTOUT;
}
}

View file

@ -12,8 +12,10 @@ public class BlockProperties {
public static final EnumProperty<TripleShape> TRIPLE_SHAPE = EnumProperty.of("shape", TripleShape.class);
public static final EnumProperty<PentaShape> PENTA_SHAPE = EnumProperty.of("shape", PentaShape.class);
public static final BooleanProperty TRANSITION = BooleanProperty.of("transition");
public static final BooleanProperty HAS_LIGHT = BooleanProperty.of("has_light");
public static final BooleanProperty HAS_ITEM = BooleanProperty.of("has_item");
public static final BooleanProperty IS_FLOOR = BooleanProperty.of("is_floor");
public static final BooleanProperty NATURAL = BooleanProperty.of("natural");
public static final BooleanProperty ACTIVE = BooleanProperty.of("active");

View file

@ -0,0 +1,44 @@
package ru.betterend.blocks;
import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.state.StateManager;
import net.minecraft.state.property.EnumProperty;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.WorldView;
import ru.betterend.blocks.BlockProperties.TripleShape;
import ru.betterend.blocks.basis.EndPlantBlock;
import ru.betterend.registry.EndBlocks;
public class LargeAmaranitaBlock extends EndPlantBlock {
public static final EnumProperty<TripleShape> SHAPE = BlockProperties.TRIPLE_SHAPE;
@Override
protected boolean isTerrain(BlockState state) {
return state.getBlock() == EndBlocks.SANGNUM;
}
@Override
protected void appendProperties(StateManager.Builder<Block, BlockState> stateManager) {
stateManager.add(SHAPE);
}
@Override
public boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) {
TripleShape shape = state.get(SHAPE);
if (shape == TripleShape.BOTTOM) {
return isTerrain(world.getBlockState(pos.down())) && world.getBlockState(pos.up()).isOf(this);
}
else if (shape == TripleShape.TOP) {
return world.getBlockState(pos.down()).isOf(this);
}
else {
return world.getBlockState(pos.down()).isOf(this) && world.getBlockState(pos.up()).isOf(this);
}
}
@Override
public OffsetType getOffsetType() {
return OffsetType.NONE;
}
}

View file

@ -13,7 +13,7 @@ import ru.betterend.blocks.basis.BlockBase;
import ru.betterend.registry.EndBlocks;
public class MossyGlowshroomCapBlock extends BlockBase {
public static final BooleanProperty TRANSITION = BooleanProperty.of("transition");
public static final BooleanProperty TRANSITION = BlockProperties.TRANSITION;
public MossyGlowshroomCapBlock() {
super(FabricBlockSettings.of(Material.WOOD).breakByTool(FabricToolTags.AXES).sounds(BlockSoundGroup.WOOD));

View file

@ -0,0 +1,12 @@
package ru.betterend.blocks;
import net.minecraft.block.BlockState;
import ru.betterend.blocks.basis.EndPlantBlock;
import ru.betterend.registry.EndBlocks;
public class SmallAmaranitaBlock extends EndPlantBlock {
@Override
protected boolean isTerrain(BlockState state) {
return state.getBlock() == EndBlocks.SANGNUM;
}
}

View file

@ -18,9 +18,10 @@ import net.minecraft.util.math.Direction;
import net.minecraft.world.BlockView;
import net.minecraft.world.WorldAccess;
import net.minecraft.world.WorldView;
import ru.betterend.blocks.BlockProperties;
public class EndLanternBlock extends BlockBaseNotFull implements Waterloggable, FluidFillable {
public static final BooleanProperty IS_FLOOR = BooleanProperty.of("is_floor");
public static final BooleanProperty IS_FLOOR = BlockProperties.IS_FLOOR;
public static final BooleanProperty WATERLOGGED = Properties.WATERLOGGED;
public EndLanternBlock(Block source) {

View file

@ -9,6 +9,8 @@ import net.minecraft.util.registry.Registry;
import ru.betterend.BetterEnd;
import ru.betterend.blocks.AeterniumAnvil;
import ru.betterend.blocks.AeterniumBlock;
import ru.betterend.blocks.AmaranitaCapBlock;
import ru.betterend.blocks.AmaranitaHymenophoreBlock;
import ru.betterend.blocks.AmberBlock;
import ru.betterend.blocks.AncientEmeraldIceBlock;
import ru.betterend.blocks.AuroraCrystalBlock;
@ -59,6 +61,7 @@ import ru.betterend.blocks.JellyshroomCapBlock;
import ru.betterend.blocks.LacugroveSaplingBlock;
import ru.betterend.blocks.LanceleafBlock;
import ru.betterend.blocks.LanceleafSeedBlock;
import ru.betterend.blocks.LargeAmaranitaBlock;
import ru.betterend.blocks.LumecornBlock;
import ru.betterend.blocks.LumecornSeedBlock;
import ru.betterend.blocks.MengerSpongeBlock;
@ -77,6 +80,7 @@ import ru.betterend.blocks.RunedFlavolite;
import ru.betterend.blocks.ShadowBerryBlock;
import ru.betterend.blocks.ShadowGrassBlock;
import ru.betterend.blocks.SilkMothNestBlock;
import ru.betterend.blocks.SmallAmaranitaBlock;
import ru.betterend.blocks.SmallJellyshroomBlock;
import ru.betterend.blocks.SulphurCrystalBlock;
import ru.betterend.blocks.TenaneaFlowersBlock;
@ -122,6 +126,7 @@ public class EndBlocks {
public static final Block PINK_MOSS = registerBlock("pink_moss", new EndTerrainBlock(MaterialColor.PINK));
public static final Block AMBER_MOSS = registerBlock("amber_moss", new EndTerrainBlock(MaterialColor.ORANGE));
public static final Block JUNGLE_MOSS = registerBlock("jungle_moss", new EndTerrainBlock(MaterialColor.GREEN));
public static final Block SANGNUM = registerBlock("sangnum", new EndTerrainBlock(MaterialColor.RED));
public static final Block RUTISCUS = registerBlock("rutiscus", new EndTerrainBlock(MaterialColor.ORANGE));
// Roads //
@ -134,6 +139,7 @@ public class EndBlocks {
public static final Block PINK_MOSS_PATH = registerBlock("pink_moss_path", new EndPathBlock(PINK_MOSS));
public static final Block AMBER_MOSS_PATH = registerBlock("amber_moss_path", new EndPathBlock(AMBER_MOSS));
public static final Block JUNGLE_MOSS_PATH = registerBlock("jungle_moss_path", new EndPathBlock(JUNGLE_MOSS));
public static final Block SANGNUM_PATH = registerBlock("sangnum_path", new EndPathBlock(SANGNUM));
public static final Block RUTISCUS_PATH = registerBlock("rutiscus_path", new EndPathBlock(RUTISCUS));
public static final Block MOSSY_OBSIDIAN = registerBlock("mossy_obsidian", new MossyObsidian());
@ -247,6 +253,13 @@ public class EndBlocks {
public static final Block LUMECORN_SEED = registerBlock("lumecorn_seed", new LumecornSeedBlock());
public static final Block LUMECORN = registerBlockNI("lumecorn", new LumecornBlock());
public static final Block SMALL_AMARANITA_MUSHROOM = registerBlock("small_amaranita_mushroom", new SmallAmaranitaBlock());
public static final Block LARGE_AMARANITA_MUSHROOM = registerBlockNI("large_amaranita_mushroom", new LargeAmaranitaBlock());
public static final Block AMARANITA_HYPHAE = registerBlock("amaranita_hyphae", new AmaranitaCapBlock());
public static final Block AMARANITA_HYMENOPHORE = registerBlock("amaranita_hymenophore", new AmaranitaHymenophoreBlock());
public static final Block AMARANITA_FUR = registerBlock("amaranita_fur", new FurBlock(MOSSY_GLOWSHROOM_SAPLING, 15, 4));
public static final Block AMARANITA_CAP = registerBlock("amaranita_cap", new AmaranitaCapBlock());
// Crops
public static final Block BLOSSOM_BERRY = registerBlock("blossom_berry_seed", new EndCropBlock(EndItems.BLOSSOM_BERRY, PINK_MOSS));

View file

@ -42,6 +42,11 @@ public class BonemealUtil {
addBonemealGrass(EndBiomes.GLOWING_GRASSLANDS, EndBlocks.END_MOSS, EndBlocks.CREEPING_MOSS, 0.1F);
addBonemealGrass(EndBiomes.GLOWING_GRASSLANDS, EndBlocks.END_MOSS, EndBlocks.UMBRELLA_MOSS, 0.1F);
addBonemealGrass(EndBiomes.GLOWING_GRASSLANDS, EndBlocks.END_MOSS, EndBlocks.TWISTED_UMBRELLA_MOSS, 0.1F);
addBonemealGrass(EndBlocks.RUTISCUS, EndBlocks.ORANGO);
addBonemealGrass(EndBlocks.RUTISCUS, EndBlocks.AERIDIUM, 0.2F);
addBonemealGrass(EndBlocks.RUTISCUS, EndBlocks.LUTEBUS, 0.2F);
addBonemealGrass(EndBlocks.RUTISCUS, EndBlocks.LAMELLARIUM);
}
public static void addBonemealGrass(Block terrain, Block plant) {

View file

@ -13,7 +13,7 @@ public class DragonGraveyardsBiome extends EndBiome {
.setFogDensity(1.1F)
.setMusic(EndSounds.MUSIC_OPENSPACE)
.setLoop(EndSounds.AMBIENT_GLOWING_GRASSLANDS)
.setSurface(EndBlocks.CAVE_MOSS)
.setSurface(EndBlocks.SANGNUM)
.setWaterAndFogColor(203, 59, 167)
.setPlantsColor(244, 46, 79)
.addFeature(EndFeatures.OBSIDIAN_PILLAR_BASEMENT)

View file

@ -0,0 +1,10 @@
{
"variants": {
"facing=up": { "model": "betterend:block/amaranita_fur" },
"facing=down": { "model": "betterend:block/amaranita_fur", "x": 180 },
"facing=north": { "model": "betterend:block/amaranita_fur", "x": 90 },
"facing=south": { "model": "betterend:block/amaranita_fur", "x": 90, "y": 180 },
"facing=east": { "model": "betterend:block/amaranita_fur", "x": 90, "y": 90 },
"facing=west": { "model": "betterend:block/amaranita_fur", "x": 90, "y": 270 }
}
}

View file

@ -0,0 +1,7 @@
{
"variants": {
"shape=top": { "model": "betterend:block/large_amaranita_cap" },
"shape=middle": { "model": "betterend:block/large_amaranita_stem" },
"shape=bottom": { "model": "betterend:block/large_amaranita_roots" }
}
}

View file

@ -0,0 +1,8 @@
{
"variants": {
"": [
{ "model": "betterend:block/small_amaranita_mushroom_01" },
{ "model": "betterend:block/small_amaranita_mushroom_02" }
]
}
}

View file

@ -0,0 +1,75 @@
{
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "betterend:block/amaranita_fur",
"texture": "betterend:block/amaranita_fur"
},
"elements": [
{
"__comment": "PlaneY1",
"from": [ 0, -0.001, -8 ],
"to": [ 16, 0, 8 ],
"rotation": { "origin": [ 0, 0, 8 ], "axis": "x", "angle": 22.5 },
"shade": false,
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
}
},
{
"__comment": "PlaneY1",
"from": [ 0, 0, 8 ],
"to": [ 16, 0.001, 24 ],
"rotation": { "origin": [ 0, 0.000000954, 8 ], "axis": "x", "angle": -22.5 },
"shade": false,
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneY4",
"from": [ 8, -0.001, 0 ],
"to": [ 24, 0, 16 ],
"rotation": { "origin": [ 8, 0, 16 ], "axis": "z", "angle": 22.5 },
"shade": false,
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 270 },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 270 }
}
},
{
"__comment": "PlaneY4",
"from": [ -8, 0, 2 ],
"to": [ 8, 0.001, 18 ],
"rotation": { "origin": [ 8, 0, 18 ], "axis": "z", "angle": -22.5 },
"shade": false,
"faces": {
"down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 90 },
"up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 90 }
}
},
{
"__comment": "PlaneX6",
"from": [ 0, 0, -6.5 ],
"to": [ 0.001, 16, 16 ],
"rotation": { "origin": [ 0, 16, 16 ], "axis": "y", "angle": -45 },
"shade": false,
"faces": {
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
}
},
{
"__comment": "PlaneX6",
"from": [ -6.5, 0, 15.999 ],
"to": [ 16, 16, 16 ],
"rotation": { "origin": [ 16, 16, 16 ], "axis": "y", "angle": -45 },
"shade": false,
"faces": {
"north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 },
"south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture", "rotation": 180 }
}
}
]
}

View file

@ -0,0 +1,81 @@
{
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "betterend:block/amaranita_hymenophore_fur",
"texture": "betterend:block/amaranita_hymenophore_fur"
},
"elements": [
{
"__comment": "PlaneX1",
"from": [ 5, 12, 0 ],
"to": [ 5.001, 16, 16 ],
"faces": {
"west": { "uv": [ 16, 0, 0, 4 ], "texture": "#texture" },
"east": { "uv": [ 16, 0, 0, 4 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneX1",
"from": [ 11, 12, 0 ],
"to": [ 11.001, 16, 16 ],
"faces": {
"west": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" },
"east": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneX1",
"from": [ 16, 12, 0 ],
"to": [ 16.001, 16, 16 ],
"faces": {
"west": { "uv": [ 16, 0, 0, 4 ], "texture": "#texture" },
"east": { "uv": [ 16, 0, 0, 4 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneX1",
"from": [ 0, 12, 0 ],
"to": [ 0.001, 16, 16 ],
"faces": {
"west": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" },
"east": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneZ11",
"from": [ 0, 12, 0 ],
"to": [ 16, 16, 0.001 ],
"faces": {
"north": { "uv": [ 16, 0, 0, 4 ], "texture": "#texture" },
"south": { "uv": [ 16, 0, 0, 4 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneZ11",
"from": [ 0, 12, 5 ],
"to": [ 16, 16, 5.001 ],
"faces": {
"north": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" },
"south": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneZ11",
"from": [ 0, 12, 11 ],
"to": [ 16, 16, 11.001 ],
"faces": {
"north": { "uv": [ 16, 0, 0, 4 ], "texture": "#texture" },
"south": { "uv": [ 16, 0, 0, 4 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneZ11",
"from": [ 0, 12, 16 ],
"to": [ 16, 16, 16.001 ],
"faces": {
"north": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" },
"south": { "uv": [ 0, 0, 16, 4 ], "texture": "#texture" }
}
}
]
}

View file

@ -0,0 +1,96 @@
{
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "betterend:block/large_amaranita_cap_side",
"side": "betterend:block/large_amaranita_cap_side",
"top": "betterend:block/large_amaranita_cap_top",
"bottom": "betterend:block/large_amaranita_cap_bottom",
"stem": "betterend:block/amaranita_stem_top"
},
"elements": [
{
"__comment": "Box1",
"from": [ 1, 7, 1 ],
"to": [ 15, 14, 15 ],
"faces": {
"down": { "uv": [ 1, 1, 15, 15 ], "texture": "#bottom" },
"up": { "uv": [ 1, 1, 15, 15 ], "texture": "#top" },
"north": { "uv": [ 1, 2, 15, 9 ], "texture": "#side" },
"south": { "uv": [ 1, 2, 15, 9 ], "texture": "#side" },
"west": { "uv": [ 1, 2, 15, 9 ], "texture": "#side" },
"east": { "uv": [ 1, 2, 15, 9 ], "texture": "#side" }
}
},
{
"__comment": "Box1",
"from": [ 3, 14, 3 ],
"to": [ 13, 16, 13 ],
"faces": {
"up": { "uv": [ 3, 3, 13, 13 ], "texture": "#top", "cullface": "up" },
"north": { "uv": [ 3, 0, 13, 2 ], "texture": "#side" },
"south": { "uv": [ 3, 0, 13, 2 ], "texture": "#side" },
"west": { "uv": [ 3, 0, 13, 2 ], "texture": "#side" },
"east": { "uv": [ 3, 0, 13, 2 ], "texture": "#side" }
}
},
{
"__comment": "Box4",
"from": [ 6, 0, 6 ],
"to": [ 10, 4, 10 ],
"faces": {
"north": { "uv": [ 6, 12, 10, 16 ], "texture": "#stem" },
"south": { "uv": [ 6, 12, 10, 16 ], "texture": "#stem" },
"west": { "uv": [ 6, 12, 10, 16 ], "texture": "#stem" },
"east": { "uv": [ 6, 12, 10, 16 ], "texture": "#stem" }
}
},
{
"__comment": "Box4",
"from": [ 5, 4, 5 ],
"to": [ 11, 7, 11 ],
"faces": {
"down": { "uv": [ 5, 2, 11, 8 ], "texture": "#stem" },
"north": { "uv": [ 5, 9, 11, 12 ], "texture": "#stem" },
"south": { "uv": [ 5, 9, 11, 12 ], "texture": "#stem" },
"west": { "uv": [ 5, 9, 11, 12 ], "texture": "#stem" },
"east": { "uv": [ 5, 9, 11, 12 ], "texture": "#stem" }
}
},
{
"__comment": "PlaneX6",
"from": [ 2, 3, 1 ],
"to": [ 2.001, 7, 15 ],
"faces": {
"west": { "uv": [ 1, 9, 15, 13 ], "texture": "#side" },
"east": { "uv": [ 1, 9, 15, 13 ], "texture": "#side" }
}
},
{
"__comment": "PlaneX6",
"from": [ 14, 3, 1 ],
"to": [ 14.001, 7, 15 ],
"faces": {
"west": { "uv": [ 1, 9, 15, 13 ], "texture": "#side" },
"east": { "uv": [ 1, 9, 15, 13 ], "texture": "#side" }
}
},
{
"__comment": "PlaneZ8",
"from": [ 1, 3, 2 ],
"to": [ 15, 7, 2.001 ],
"faces": {
"north": { "uv": [ 1, 9, 15, 13 ], "texture": "#side" },
"south": { "uv": [ 1, 9, 15, 13 ], "texture": "#side" }
}
},
{
"__comment": "PlaneZ8",
"from": [ 1, 3, 14 ],
"to": [ 15, 7, 14.001 ],
"faces": {
"north": { "uv": [ 1, 9, 15, 13 ], "texture": "#side" },
"south": { "uv": [ 1, 9, 15, 13 ], "texture": "#side" }
}
}
]
}

View file

@ -0,0 +1,43 @@
{
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "betterend:block/amaranita_stem",
"texture": "betterend:block/amaranita_stem",
"texture1": "betterend:block/amaranita_roots"
},
"elements": [
{
"__comment": "Box1",
"from": [ 6, 0, 6 ],
"to": [ 10, 16, 10 ],
"faces": {
"north": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" },
"south": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" },
"west": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" },
"east": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }
}
},
{
"__comment": "PlaneX2",
"from": [ 0, 0, 0 ],
"to": [ 0.001, 16, 22.5 ],
"rotation": { "origin": [ 0, 0, 0 ], "axis": "y", "angle": 45 },
"shade": false,
"faces": {
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" }
}
},
{
"__comment": "PlaneX2",
"from": [ 16, 0, 0 ],
"to": [ 16.001, 16, 22.5 ],
"rotation": { "origin": [ 16, 0, 0 ], "axis": "y", "angle": -45 },
"shade": false,
"faces": {
"west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" },
"east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" }
}
}
]
}

View file

@ -0,0 +1,20 @@
{
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
"textures": {
"particle": "betterend:block/amaranita_stem",
"texture": "betterend:block/amaranita_stem"
},
"elements": [
{
"__comment": "Box1",
"from": [ 6, 0, 6 ],
"to": [ 10, 16, 10 ],
"faces": {
"north": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" },
"south": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" },
"west": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" },
"east": { "uv": [ 6, 0, 10, 16 ], "texture": "#texture" }
}
}
]
}

View file

@ -6,7 +6,7 @@
"north": "betterend:block/mossy_obsidian_side",
"particle": "betterend:block/mossy_obsidian_side",
"south": "betterend:block/mossy_obsidian_side",
"up": "betterend:block/cave_moss_top",
"up": "betterend:block/sangnum_top",
"west": "betterend:block/mossy_obsidian_side"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cross",
"textures": {
"cross": "betterend:block/small_amaranita_mushroom"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/cross_inverted",
"textures": {
"cross": "betterend:block/small_amaranita_mushroom"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "betterend:block/amaranita_fur"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "betterend:block/small_amaranita_mushroom"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 384 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 261 B

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B