New sounds
This commit is contained in:
parent
8ba1b3c0fc
commit
4c637f1fea
6 changed files with 30 additions and 1 deletions
|
@ -14,6 +14,7 @@ public class EndSounds {
|
||||||
public static final SoundEvent MUSIC_SHADOW_FOREST = register("music", "shadow_forest");
|
public static final SoundEvent MUSIC_SHADOW_FOREST = register("music", "shadow_forest");
|
||||||
public static final SoundEvent MUSIC_BLOSSOMING_SPIRES = register("music", "blossoming_spires");
|
public static final SoundEvent MUSIC_BLOSSOMING_SPIRES = register("music", "blossoming_spires");
|
||||||
public static final SoundEvent MUSIC_AMBER_LAND = register("music", "amber_land");
|
public static final SoundEvent MUSIC_AMBER_LAND = register("music", "amber_land");
|
||||||
|
public static final SoundEvent MUSIC_SULPHUR_SPRINGS = register("music", "sulphur_springs");
|
||||||
|
|
||||||
// Ambient
|
// Ambient
|
||||||
public static final SoundEvent AMBIENT_FOGGY_MUSHROOMLAND = register("ambient", "foggy_mushroomland");
|
public static final SoundEvent AMBIENT_FOGGY_MUSHROOMLAND = register("ambient", "foggy_mushroomland");
|
||||||
|
@ -22,6 +23,7 @@ public class EndSounds {
|
||||||
public static final SoundEvent AMBIENT_DUST_WASTELANDS = register("ambient", "dust_wastelands");
|
public static final SoundEvent AMBIENT_DUST_WASTELANDS = register("ambient", "dust_wastelands");
|
||||||
public static final SoundEvent AMBIENT_MEGALAKE_GROVE = register("ambient", "megalake_grove");
|
public static final SoundEvent AMBIENT_MEGALAKE_GROVE = register("ambient", "megalake_grove");
|
||||||
public static final SoundEvent AMBIENT_BLOSSOMING_SPIRES = register("ambient", "blossoming_spires");
|
public static final SoundEvent AMBIENT_BLOSSOMING_SPIRES = register("ambient", "blossoming_spires");
|
||||||
|
public static final SoundEvent AMBIENT_SULPHUR_SPRINGS = register("ambient", "sulphur_springs");
|
||||||
|
|
||||||
// Entity
|
// Entity
|
||||||
public static final SoundEvent ENTITY_DRAGONFLY = register("entity", "dragonfly");
|
public static final SoundEvent ENTITY_DRAGONFLY = register("entity", "dragonfly");
|
||||||
|
|
|
@ -4,12 +4,15 @@ import net.minecraft.entity.EntityType;
|
||||||
import ru.betterend.registry.EndEntities;
|
import ru.betterend.registry.EndEntities;
|
||||||
import ru.betterend.registry.EndFeatures;
|
import ru.betterend.registry.EndFeatures;
|
||||||
import ru.betterend.registry.EndParticles;
|
import ru.betterend.registry.EndParticles;
|
||||||
|
import ru.betterend.registry.EndSounds;
|
||||||
import ru.betterend.world.surface.SurfaceBuilders;
|
import ru.betterend.world.surface.SurfaceBuilders;
|
||||||
|
|
||||||
public class BiomeSulphurSprings extends EndBiome {
|
public class BiomeSulphurSprings extends EndBiome {
|
||||||
public BiomeSulphurSprings() {
|
public BiomeSulphurSprings() {
|
||||||
super(new BiomeDefinition("sulphur_springs")
|
super(new BiomeDefinition("sulphur_springs")
|
||||||
.setSurface(SurfaceBuilders.SULPHURIC_SURFACE)
|
.setSurface(SurfaceBuilders.SULPHURIC_SURFACE)
|
||||||
|
.setMusic(EndSounds.MUSIC_SULPHUR_SPRINGS)
|
||||||
|
.setLoop(EndSounds.AMBIENT_SULPHUR_SPRINGS)
|
||||||
.setWaterColor(25, 90, 157)
|
.setWaterColor(25, 90, 157)
|
||||||
.setWaterFogColor(30, 65, 61)
|
.setWaterFogColor(30, 65, 61)
|
||||||
.setFogColor(207, 194, 62)
|
.setFogColor(207, 194, 62)
|
||||||
|
@ -18,7 +21,6 @@ public class BiomeSulphurSprings extends EndBiome {
|
||||||
.setParticles(EndParticles.SULPHUR_PARTICLE, 0.001F)
|
.setParticles(EndParticles.SULPHUR_PARTICLE, 0.001F)
|
||||||
.addFeature(EndFeatures.GEYSER)
|
.addFeature(EndFeatures.GEYSER)
|
||||||
.addFeature(EndFeatures.SURFACE_VENT)
|
.addFeature(EndFeatures.SURFACE_VENT)
|
||||||
//.addFeature(EndFeatures.SULPHUR_HILL)
|
|
||||||
.addFeature(EndFeatures.SULPHURIC_LAKE)
|
.addFeature(EndFeatures.SULPHURIC_LAKE)
|
||||||
.addFeature(EndFeatures.SULPHURIC_CAVE)
|
.addFeature(EndFeatures.SULPHURIC_CAVE)
|
||||||
.addFeature(EndFeatures.HYDRALUX)
|
.addFeature(EndFeatures.HYDRALUX)
|
||||||
|
|
|
@ -119,6 +119,21 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"betterend.music.sulphur_springs": {
|
||||||
|
"category": "music",
|
||||||
|
"sounds": [
|
||||||
|
{
|
||||||
|
"name": "betterend:music/godmode-melancholia",
|
||||||
|
"volume": 0.2,
|
||||||
|
"stream": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "betterend:music/asher_fulero-elegy",
|
||||||
|
"volume": 0.2,
|
||||||
|
"stream": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
"betterend.ambient.foggy_mushroomland": {
|
"betterend.ambient.foggy_mushroomland": {
|
||||||
"category": "ambient",
|
"category": "ambient",
|
||||||
|
@ -174,6 +189,16 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"betterend.ambient.sulphur_springs": {
|
||||||
|
"category": "ambient",
|
||||||
|
"sounds": [
|
||||||
|
{
|
||||||
|
"name": "betterend:ambient/sulphur_springs",
|
||||||
|
"volume": 0.3,
|
||||||
|
"stream": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
"betterend.entity.dragonfly": {
|
"betterend.entity.dragonfly": {
|
||||||
"category": "entity",
|
"category": "entity",
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue