Giant stars, biome gen chance

This commit is contained in:
paulevsGitch 2020-12-11 02:26:49 +03:00
parent 8f19761c34
commit 929d758788
5 changed files with 11 additions and 4 deletions

View file

@ -27,7 +27,7 @@ public class ParticleSnowflake extends SpriteBillboardParticle {
setSprite(sprites);
this.maxAge = MHelper.randRange(150, 300, random);
this.scale = MHelper.randRange(0.05F, 0.3F, random);
this.scale = MHelper.randRange(0.05F, 0.2F, random);
this.setColorAlpha(0F);
preVX = random.nextGaussian() * 0.015;

View file

@ -119,6 +119,7 @@ public class EndFeatures {
public static final EndFeature SULPHURIC_CAVE = EndFeature.makeCountRawFeature("sulphuric_cave", new SulphuricCaveFeature(), 2);
public static final EndFeature ICE_STAR = EndFeature.makeRawGenFeature("ice_star", new IceStarFeature(5, 15, 10, 25), 15);
public static final EndFeature ICE_STAR_SMALL = EndFeature.makeRawGenFeature("ice_star_small", new IceStarFeature(3, 5, 7, 12), 8);
public static final EndFeature ICE_STAR_GIANT = EndFeature.makeRawGenFeature("ice_star_giant", new IceStarFeature(15, 25, 20, 40), 512);
// Ores //
public static final EndFeature ENDER_ORE = EndFeature.makeOreFeature("ender_ore", EndBlocks.ENDER_ORE, 6, 3, 0, 4, 96);

View file

@ -10,7 +10,9 @@ public class BiomeIceStarfield extends EndBiome {
.setFogColor(224, 245, 254)
.setFogDensity(2.2F)
.setFoliageColor(193, 244, 244)
.setParticles(EndParticles.SNOWFLAKE, 0.001F)
.setGenChance(0.25F)
.setParticles(EndParticles.SNOWFLAKE, 0.002F)
.addFeature(EndFeatures.ICE_STAR_GIANT)
.addFeature(EndFeatures.ICE_STAR)
.addFeature(EndFeatures.ICE_STAR_SMALL)
.addMobSpawn(EntityType.ENDERMAN, 20, 1, 4));

View file

@ -461,5 +461,7 @@
"block.betterend.glowing_pillar_leaves": "Glowing Pillar Leaves",
"block.betterend.glowing_pillar_luminophor": "Glowing Pillar Luminophor",
"block.betterend.glowing_pillar_roots": "Glowing Pillar Roots",
"block.betterend.glowing_pillar_seed": "Glowing Pillar Seed"
"block.betterend.glowing_pillar_seed": "Glowing Pillar Seed",
"biome.betterend.ice_starfield": "Ice Starfield"
}

View file

@ -463,5 +463,7 @@
"block.betterend.glowing_pillar_leaves": "Листья светящейся колонны",
"block.betterend.glowing_pillar_luminophor": "Люминофор светящейся колонны",
"block.betterend.glowing_pillar_roots": "Корни светящейся колонны",
"block.betterend.glowing_pillar_seed": "Семя светящейся колонны"
"block.betterend.glowing_pillar_seed": "Семя светящейся колонны",
"biome.betterend.ice_starfield": "Поле ледяных звёзд"
}