Lanceleaf feature rebalance & missing textures

This commit is contained in:
paulevsGitch 2020-12-10 13:21:56 +03:00
parent 0a7ee02b44
commit 3cbf575b87
3 changed files with 7 additions and 2 deletions

View file

@ -71,7 +71,7 @@ public class EndFeatures {
public static final EndFeature BUSHY_GRASS = new EndFeature("bushy_grass", new SinglePlantFeature(EndBlocks.BUSHY_GRASS, 8, false), 20); public static final EndFeature BUSHY_GRASS = new EndFeature("bushy_grass", new SinglePlantFeature(EndBlocks.BUSHY_GRASS, 8, false), 20);
public static final EndFeature BUSHY_GRASS_WG = new EndFeature("bushy_grass_wg", new SinglePlantFeature(EndBlocks.BUSHY_GRASS, 5), 10); public static final EndFeature BUSHY_GRASS_WG = new EndFeature("bushy_grass_wg", new SinglePlantFeature(EndBlocks.BUSHY_GRASS, 5), 10);
public static final EndFeature AMBER_GRASS = new EndFeature("amber_grass", new SinglePlantFeature(EndBlocks.AMBER_GRASS, 6), 9); public static final EndFeature AMBER_GRASS = new EndFeature("amber_grass", new SinglePlantFeature(EndBlocks.AMBER_GRASS, 6), 9);
public static final EndFeature LANCELEAF = new EndFeature("lanceleaf", new LanceleafFeature(), 1); public static final EndFeature LANCELEAF = new EndFeature("lanceleaf", new LanceleafFeature(), 3);
// Vines // // Vines //
public static final EndFeature DENSE_VINE = new EndFeature("dense_vine", new VineFeature(EndBlocks.DENSE_VINE, 24), 3); public static final EndFeature DENSE_VINE = new EndFeature("dense_vine", new VineFeature(EndBlocks.DENSE_VINE, 24), 3);

View file

@ -9,7 +9,7 @@ import ru.betterend.registry.EndBlocks;
public class LanceleafFeature extends ScatterFeature { public class LanceleafFeature extends ScatterFeature {
public LanceleafFeature() { public LanceleafFeature() {
super(5); super(7);
} }
@Override @Override
@ -22,4 +22,9 @@ public class LanceleafFeature extends ScatterFeature {
BlockPlantWithAge seed = ((BlockPlantWithAge) EndBlocks.LANCELEAF_SEED); BlockPlantWithAge seed = ((BlockPlantWithAge) EndBlocks.LANCELEAF_SEED);
seed.growAdult(world, random, blockPos); seed.growAdult(world, random, blockPos);
} }
@Override
protected int getChance() {
return 5;
}
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 195 B

After

Width:  |  Height:  |  Size: 262 B

Before After
Before After