Chorus forest ambient
This commit is contained in:
parent
d38a034b1b
commit
101b49d043
8 changed files with 32 additions and 5 deletions
|
@ -8,9 +8,11 @@ public class SoundRegistry
|
|||
{
|
||||
// Music
|
||||
public static final SoundEvent MUSIC_FOGGY_MUSHROOMLAND = register("music", "foggy_mushroomland");
|
||||
public static final SoundEvent MUSIC_CHORUS_FOREST = register("music", "chorus_forest");
|
||||
|
||||
// Ambient
|
||||
public static final SoundEvent AMBIENT_FOGGY_MUSHROOMLAND = register("ambient", "foggy_mushroomland");
|
||||
public static final SoundEvent AMBIENT_CHORUS_FOREST = register("ambient", "chorus_forest");
|
||||
|
||||
// Entity
|
||||
public static final SoundEvent ENTITY_DRAGONFLY = register("entity", "dragonfly");
|
||||
|
|
|
@ -7,6 +7,7 @@ import net.minecraft.world.gen.feature.ConfiguredFeatures;
|
|||
import ru.betterend.registry.BlockRegistry;
|
||||
import ru.betterend.registry.EntityRegistry;
|
||||
import ru.betterend.registry.FeatureRegistry;
|
||||
import ru.betterend.registry.SoundRegistry;
|
||||
|
||||
public class BiomeChorusForest extends EndBiome {
|
||||
public BiomeChorusForest() {
|
||||
|
@ -14,9 +15,9 @@ public class BiomeChorusForest extends EndBiome {
|
|||
.setFogColor(87, 26, 87)
|
||||
.setFogDensity(1.5F)
|
||||
.setSurface(BlockRegistry.CHORUS_NYLIUM)
|
||||
.setParticles(ParticleTypes.PORTAL, 0.001F)
|
||||
//.setLoop(SoundRegistry.AMBIENT_FOGGY_MUSHROOMLAND)
|
||||
//.setMusic(SoundRegistry.MUSIC_FOGGY_MUSHROOMLAND)
|
||||
.setParticles(ParticleTypes.PORTAL, 0.01F)
|
||||
.setLoop(SoundRegistry.AMBIENT_CHORUS_FOREST)
|
||||
.setMusic(SoundRegistry.MUSIC_CHORUS_FOREST)
|
||||
.addFeature(FeatureRegistry.ENDER_ORE)
|
||||
.addFeature(FeatureRegistry.RARE_END_LAKE)
|
||||
.addFeature(FeatureRegistry.PYTHADENDRON_TREE)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue