Chorus forest ambient

This commit is contained in:
paulevsGitch 2020-10-15 21:18:12 +03:00
parent d38a034b1b
commit 101b49d043
8 changed files with 32 additions and 5 deletions

View file

@ -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");

View file

@ -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)

View file

@ -3,12 +3,27 @@
"category": "music",
"sounds": [
{
"name": "betterend:music/dan_henig_eternal_garden",
"name": "betterend:music/dan_henig-eternal_garden",
"volume": 0.1,
"stream": false
},
{
"name": "betterend:music/dan_henig_nebular_focus",
"name": "betterend:music/dan_henig-nebular_focus",
"volume": 0.1,
"stream": false
}
]
},
"betterend.music.chorus_forest": {
"category": "music",
"sounds": [
{
"name": "betterend:music/emmit_fenn-creep",
"volume": 0.1,
"stream": false
},
{
"name": "betterend:music/jesse_gallagher-the_anunnaki_return",
"volume": 0.1,
"stream": false
}
@ -24,6 +39,15 @@
}
]
},
"betterend.ambient.chorus_forest": {
"category": "ambient",
"sounds": [
{
"name": "betterend:ambient/chorus_forest",
"stream": false
}
]
},
"betterend.entity.dragonfly": {
"category": "entity",