An interface of Sounds the server is able to send to players. The sounds listed in this interface are present in the default server or can be enabled via a FeatureFlag. There may be additional sounds present in the server, for example from a io.papermc.paper.datapack.Datapack whi
| 22 | * depend on the ordinal values of this class. |
| 23 | */ |
| 24 | public interface Sound extends OldEnum<Sound>, Keyed, net.kyori.adventure.sound.Sound.Type { // Paper - implement Sound.Type |
| 25 | |
| 26 | // Start generate - Sound |
| 27 | Sound AMBIENT_BASALT_DELTAS_ADDITIONS = getSound("ambient.basalt_deltas.additions"); |
| 28 | |
| 29 | Sound AMBIENT_BASALT_DELTAS_LOOP = getSound("ambient.basalt_deltas.loop"); |
| 30 | |
| 31 | Sound AMBIENT_BASALT_DELTAS_MOOD = getSound("ambient.basalt_deltas.mood"); |
| 32 | |
| 33 | Sound AMBIENT_CAVE = getSound("ambient.cave"); |
| 34 | |
| 35 | Sound AMBIENT_CRIMSON_FOREST_ADDITIONS = getSound("ambient.crimson_forest.additions"); |
| 36 | |
| 37 | Sound AMBIENT_CRIMSON_FOREST_LOOP = getSound("ambient.crimson_forest.loop"); |
| 38 | |
| 39 | Sound AMBIENT_CRIMSON_FOREST_MOOD = getSound("ambient.crimson_forest.mood"); |
| 40 | |
| 41 | Sound AMBIENT_NETHER_WASTES_ADDITIONS = getSound("ambient.nether_wastes.additions"); |
| 42 | |
| 43 | Sound AMBIENT_NETHER_WASTES_LOOP = getSound("ambient.nether_wastes.loop"); |
| 44 | |
| 45 | Sound AMBIENT_NETHER_WASTES_MOOD = getSound("ambient.nether_wastes.mood"); |
| 46 | |
| 47 | Sound AMBIENT_SOUL_SAND_VALLEY_ADDITIONS = getSound("ambient.soul_sand_valley.additions"); |
| 48 | |
| 49 | Sound AMBIENT_SOUL_SAND_VALLEY_LOOP = getSound("ambient.soul_sand_valley.loop"); |
| 50 | |
| 51 | Sound AMBIENT_SOUL_SAND_VALLEY_MOOD = getSound("ambient.soul_sand_valley.mood"); |
| 52 | |
| 53 | Sound AMBIENT_UNDERWATER_ENTER = getSound("ambient.underwater.enter"); |
| 54 | |
| 55 | Sound AMBIENT_UNDERWATER_EXIT = getSound("ambient.underwater.exit"); |
| 56 | |
| 57 | Sound AMBIENT_UNDERWATER_LOOP = getSound("ambient.underwater.loop"); |
| 58 | |
| 59 | Sound AMBIENT_UNDERWATER_LOOP_ADDITIONS = getSound("ambient.underwater.loop.additions"); |
| 60 | |
| 61 | Sound AMBIENT_UNDERWATER_LOOP_ADDITIONS_RARE = getSound("ambient.underwater.loop.additions.rare"); |
| 62 | |
| 63 | Sound AMBIENT_UNDERWATER_LOOP_ADDITIONS_ULTRA_RARE = getSound("ambient.underwater.loop.additions.ultra_rare"); |
| 64 | |
| 65 | Sound AMBIENT_WARPED_FOREST_ADDITIONS = getSound("ambient.warped_forest.additions"); |
| 66 | |
| 67 | Sound AMBIENT_WARPED_FOREST_LOOP = getSound("ambient.warped_forest.loop"); |
| 68 | |
| 69 | Sound AMBIENT_WARPED_FOREST_MOOD = getSound("ambient.warped_forest.mood"); |
| 70 | |
| 71 | Sound BLOCK_AMETHYST_BLOCK_BREAK = getSound("block.amethyst_block.break"); |
| 72 | |
| 73 | Sound BLOCK_AMETHYST_BLOCK_CHIME = getSound("block.amethyst_block.chime"); |
| 74 | |
| 75 | Sound BLOCK_AMETHYST_BLOCK_FALL = getSound("block.amethyst_block.fall"); |
| 76 | |
| 77 | Sound BLOCK_AMETHYST_BLOCK_HIT = getSound("block.amethyst_block.hit"); |
| 78 | |
| 79 | Sound BLOCK_AMETHYST_BLOCK_PLACE = getSound("block.amethyst_block.place"); |
| 80 | |
| 81 | Sound BLOCK_AMETHYST_BLOCK_RESONATE = getSound("block.amethyst_block.resonate"); |
no test coverage detected
searching dependent graphs…