diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eb79dd5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +.idea diff --git a/Config.js b/Config.js new file mode 100644 index 0000000..047c6dd --- /dev/null +++ b/Config.js @@ -0,0 +1,4 @@ +module.exports = { + version: "1.16.5", + versionCompared: "" +} diff --git a/Util.js b/Util.js new file mode 100644 index 0000000..1d66376 --- /dev/null +++ b/Util.js @@ -0,0 +1,40 @@ +const yaml = require("yaml"); +const fs = require("fs"); + +module.exports = { + fileExists(path) { + return fs.existsSync(path); + }, + loadYAML(path) { + return fs.readFileSync(path).toString(); + }, + loadYAMLasJSON(path) { + return yaml.parse(this.loadYAML(path)); + }, + saveJSONasYAML(path, json) { + fs.writeFileSync(path, yaml.stringify(json)); + }, + rename(path, name) { + fs.renameSync(path, name); + }, + createBaseMenu(prefixTitle) { + return { + "spell-class": ".MenuSpell", + "helper-spell": true, + tags: ["NotSilenceable"], + delay: 1, + "stay-open-non-option": true, + title: "&9" + prefixTitle + " Sounds", + options: {} + }; + }, + createSoundSpell(sound, category) { + return { + "spell-class": ".instant.DummySpell", + "helper-spell": true, + tags: ["NotSilenceable"], + "variable-mods-cast": ["Sound =" + sound, "Menu =" + category], + modifiers: ["chance 100 cast sb-selectsound"] + }; + } +} diff --git a/checkSoundConfig.js b/checkSoundConfig.js new file mode 100644 index 0000000..7167012 --- /dev/null +++ b/checkSoundConfig.js @@ -0,0 +1,23 @@ +const deepObjectDiff = require("deep-object-diff").detailedDiff; + +const Util = require("./Util"); +const Config = require("./Config"); +const {version, versionCompared} = Config; + +function getFile(version) { + const fileName = "./soundConfig/" + version + ".yml"; + + if (!Util.fileExists(fileName)) { + console.log("Final sound config for version '" + version + "' does not exit."); + return null; + } + + return Util.loadYAMLasJSON(fileName); +} + +const configFirst = getFile(version); +if (!configFirst) return; +const configSecond = getFile(versionCompared); +if (!configSecond) return; + +Util.saveJSONasYAML("./soundConfig/difference-" + version + "-" + versionCompared + ".yml", deepObjectDiff(configSecond, configFirst)); diff --git a/createSoundConfig.js b/createSoundConfig.js new file mode 100644 index 0000000..14014af --- /dev/null +++ b/createSoundConfig.js @@ -0,0 +1,51 @@ +const Util = require("./Util"); +const Config = require("./Config"); +const {version} = Config; + +const soundFileName = "./sounds/" + version + ".txt"; + +if (!Util.fileExists(soundFileName)) { + console.log("Sound list for version '" + version + "' does not exit."); + return; +} + +function createObject(sound) { + let obj = {icon: ""}; + if (!sound.includes(".")) { + // Store the singleton sound deep. + if (sound) obj.sounds = [sound]; + return obj; + } + const index = sound.indexOf("."); + const key = sound.substring(0, index); + const value = sound.substr(index + 1); + obj[key] = createObject(value); + return obj; +} + +const sounds = {}; + +const soundsTemp = Util.loadYAML(soundFileName) + .split("\n") + .sort() + .map(sound => createObject(sound.trim())); + +function mergeConfig(config, sound) { + // We don't need to merge icons. + const key = Object.keys(sound).find(key => key !== "icon"); + if (!key) return config; + // Array merging - for sounds. + if (key === "sounds" && config.sounds) config.sounds.push(sound.sounds[0]); + // Object merging. + else config[key] = config.hasOwnProperty(key) ? mergeConfig(config[key], sound[key]) : sound[key]; + return config; +} + +soundsTemp.filter((sound, index) => { + sound = JSON.stringify(sound); + // noinspection JSIncompatibleTypesComparison + return index === soundsTemp.findIndex(otherSound => JSON.stringify(otherSound) === sound); + }) + .forEach(sound => mergeConfig(sounds, sound)); + +Util.saveJSONasYAML("./soundConfig/" + version + ".yml", sounds); diff --git a/createSoundboard.js b/createSoundboard.js new file mode 100644 index 0000000..9986720 --- /dev/null +++ b/createSoundboard.js @@ -0,0 +1,123 @@ +const Util = require("./Util"); +const Config = require("./Config"); +const {version} = Config; + +String.prototype.toFormalCase = function() { + return this.length > 2 ? this.charAt(0).toUpperCase() + this.substr(1).toLowerCase() : this.toUpperCase(); +} + +String.prototype.toTitleCase = function() { + return this.replace(/_/g, " ").split(" ").map(e => e.toFormalCase()).join(" "); +} + +const soundConfigFileName = "./soundConfig/final-" + version + ".yml"; + +if (!Util.fileExists(soundConfigFileName)) { + console.log("Final sound config for version '" + version + "' does not exit."); + return; +} + +const spells = Util.loadYAMLasJSON("./soundboards/base.yml"); +const soundConfig = Util.loadYAMLasJSON(soundConfigFileName); +const soundSpells = {}; + +function getCategories(config) { + return Object.keys(config).filter(key => !["icon", "sounds"].includes(key)); +} + + +function createOption(options, categoryName, spell, item, slot) { + const option = {spell: spell, item: item}; + if (slot) option.slot = slot; + options[categoryName.replace(/\s/g, "")] = option; +} + +function paginateOptions(options, title, page = 0) { + let keys = Object.keys(options); + let spellName = title.substring(0, title.length - 1); + const hasPages = keys.length > 45 || page > 0; + if (hasPages) spellName += page + 1; + let titleName = spellName.substr(spellName.lastIndexOf("-") + 1); + if (hasPages) titleName = titleName.substring(0, titleName.length - 1); + spells[spellName] = Util.createBaseMenu(titleName.toFormalCase(), hasPages ? " - Page " + (page + 1) : ""); + + for (let i = 0; i < Math.min(45, keys.length); i++) { + const optionName = keys[i]; + const option = options[optionName]; + delete options[optionName]; + option.slot = i; + spells[spellName].options[optionName] = option; + } + + const hasNextPage = keys.length > 45; + const lastRow = Math.ceil(Math.min(45, keys.length) / 9) * 9; + const spellNamePageless = spellName.substr(0, spellName.length - 1); + + // Add previous page button. + if (page > 0) createOption(spells[spellName].options, "Button_Previous_Page", spellNamePageless + (page ? page : ""), {type: "arrow", name: "&6Previous Page"}, lastRow + 2); + + // Add back button. + let previousSpellName = spellName.substr(0, spellName.lastIndexOf("-")); + const spellNames = Object.keys(spells); + // If the back spell has pages, look for the paged version instead. + if (previousSpellName && !spellNames.includes(previousSpellName)) previousSpellName = spellNames.find(spell => spell.startsWith(previousSpellName)); + if (previousSpellName) { + if (hasNextPage) createOption(spells[spellName].options, "Button_Home", previousSpellName, {type: "book",name: "&6Home"}, lastRow + 4); + else { + createOption(spells[spellName].options, "Button_Back", previousSpellName, {type: "book", name: "&6Back"}, lastRow + 4); + return; + } + } + + // Set up next page. + if (!hasNextPage) return; + createOption(spells[spellName].options, "Button_Next_Page", spellNamePageless + (page + 2), {type: "arrow", name: "&6Next Page"}, lastRow + 6); + paginateOptions(options, title, page + 1); +} + +function createCategorySpells(config, title, soundName) { + const categories = getCategories(config); + const {icon} = config; + const sounds = config.sounds || []; + + // Collect options. + const options = {}; + + sounds.forEach(sound => { + const fullSound = (soundName ? soundName + "." : "") + sound; + const soundSpellName = "sound-" + fullSound.replace(/\./g, "-"); + createOption(options, "Sound_" + sound.toTitleCase(), soundSpellName, { + type: icon, + name: "&e" + sound.toTitleCase() + " Sound", + lore: ["&7&o" + fullSound] + }); + soundSpells[soundSpellName] = Util.createSoundSpell(fullSound, title.substring(3, title.length - 1).replace(/-/g, "_")); + }); + + categories.forEach(category => { + const categoryConfig = config[category]; + const categoryName = category.toTitleCase(); + const optionSpellName = title + category + (getCategories(categoryConfig).length > 45 ? "1" : ""); + createOption(options, categoryName, optionSpellName, {type: categoryConfig.icon, name: "&6" + categoryName + " Sounds"}); + if (!categoryConfig.sounds) return; + const menuName = (title + category).substr(3).replace(/-/g, "_"); + spells["sb-back-edit"].modifiers.push("variablestringequals Menu:" + menuName + " cast " + optionSpellName); + }); + + paginateOptions(options, title); + + // Go deeper. + categories.forEach(category => { + if (!config.hasOwnProperty(category)) return; + createCategorySpells(config[category], title + category + "-", (soundName ? soundName + "." : "") + category); + }); +} + +createCategorySpells(soundConfig, "sb-", ""); + +spells["sb"].title = "&9Soundboard"; + +// Add all the sound spells at the end. +Object.keys(soundSpells).forEach(key => spells[key] = soundSpells[key]); + +Util.saveJSONasYAML("./soundboards/" + version + ".yml", spells); diff --git a/finaliseSoundConfig.js b/finaliseSoundConfig.js new file mode 100644 index 0000000..1c64adb --- /dev/null +++ b/finaliseSoundConfig.js @@ -0,0 +1,16 @@ +const Util = require("./Util"); +const Config = require("./Config"); +const {version} = Config; + +function makeName(prefix = "") { + return "./soundConfig/" + prefix + version + ".yml"; +} + +const soundConfigFileName = makeName(); + +if (!Util.fileExists(soundConfigFileName)) { + console.log("Sound config for version '" + version + "' does not exit."); + return; +} + +Util.rename(soundConfigFileName, makeName("final-")); diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..a6b6c6a --- /dev/null +++ b/package-lock.json @@ -0,0 +1,18 @@ +{ + "name": "soundboard", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "deep-object-diff": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.0.tgz", + "integrity": "sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==" + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..d530475 --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ +{ + "name": "soundboard", + "version": "1.0.0", + "description": "Minecraft soundboard.", + "main": "createSoundboard.js", + "scripts": { + "reinstall": "npm i", + "create_sooundboard": "node createSoundboard.js", + "create_sound_config": "node createSoundConfig.js", + "finalise_sound_config": "node finaliseSoundConfig.js", + "check_sound_config": "node checkSoundConfig.js" + }, + "repository": { + "url": "https://github.com/JasperLorelai/minecraft-soundboard" + }, + "engines": { + "node": "14.17.0", + "npm": "6.14.13" + }, + "author": "JasperLorelai", + "license": "ISC", + "dependencies": { + "deep-object-diff": "^1.1.0", + "yaml": "^1.10.2" + } +} diff --git a/soundConfig/final-1.16.5.yml b/soundConfig/final-1.16.5.yml new file mode 100644 index 0000000..583c855 --- /dev/null +++ b/soundConfig/final-1.16.5.yml @@ -0,0 +1,1687 @@ +ambient: + icon: "coal_ore" + basalt_deltas: + icon: "basalt" + sounds: + - additions + - loop + - mood + sounds: + - cave + crimson_forest: + icon: "crimson_nylium" + sounds: + - additions + - loop + - mood + nether_wastes: + icon: "netherrack" + sounds: + - additions + - loop + - mood + soul_sand_valley: + icon: "soul_sand" + sounds: + - additions + - loop + - mood + underwater: + icon: "water_bucket" + sounds: + - enter + - exit + - loop + loop: + icon: "water_bucket" + sounds: + - additions + additions: + icon: "water_bucket" + sounds: + - rare + - ultra_rare + warped_forest: + icon: "warped_nylium" + sounds: + - additions + - loop + - mood +block: + icon: "stone" + ancient_debris: + icon: "ancient_debris" + sounds: + - break + - fall + - hit + - place + - step + anvil: + icon: "anvil" + sounds: + - break + - destroy + - fall + - hit + - land + - place + - step + - use + bamboo: + icon: "bamboo" + sounds: + - break + - fall + - hit + - place + - step + bamboo_sapling: + icon: "bamboo" + sounds: + - break + - hit + - place + barrel: + icon: "barrel" + sounds: + - close + - open + basalt: + icon: "basalt" + sounds: + - break + - fall + - hit + - place + - step + beacon: + icon: "beacon" + sounds: + - activate + - ambient + - deactivate + - power_select + beehive: + icon: "beehive" + sounds: + - drip + - enter + - exit + - shear + - work + bell: + icon: "bell" + sounds: + - resonate + - use + blastfurnace: + icon: "blast_furnace" + sounds: + - fire_crackle + bone_block: + icon: "bone_block" + sounds: + - break + - fall + - hit + - place + - step + brewing_stand: + icon: "brewing_stand" + sounds: + - brew + bubble_column: + icon: "light_blue_stained_glass" + sounds: + - bubble_pop + - upwards_ambient + - upwards_inside + - whirlpool_ambient + - whirlpool_inside + campfire: + icon: "campfire" + sounds: + - crackle + chain: + icon: "chain" + sounds: + - break + - fall + - hit + - place + - step + chest: + icon: "chest" + sounds: + - close + - locked + - open + chorus_flower: + icon: "chorus_flower" + sounds: + - death + - grow + comparator: + icon: "comparator" + sounds: + - click + composter: + icon: "composter" + sounds: + - empty + - fill + - fill_success + - ready + conduit: + icon: "conduit" + sounds: + - activate + - ambient + - deactivate + ambient: + icon: "conduit" + sounds: + - short + attack: + icon: "conduit" + sounds: + - target + coral_block: + icon: "horn_coral" + sounds: + - break + - fall + - hit + - place + - step + crop: + icon: "wheat_seeds" + sounds: + - break + dispenser: + icon: "dispenser" + sounds: + - dispense + - fail + - launch + enchantment_table: + icon: "enchanting_table" + sounds: + - use + end_gateway: + icon: "end_crystal" + sounds: + - spawn + end_portal: + icon: "ender_eye" + sounds: + - spawn + end_portal_frame: + icon: "end_portal_frame" + sounds: + - fill + ender_chest: + icon: "ender_chest" + sounds: + - close + - open + fence_gate: + icon: "oak_fence_gate" + sounds: + - close + - open + fire: + icon: "blaze_powder" + sounds: + - ambient + - extinguish + fungus: + icon: "crimson_fungus" + sounds: + - break + - fall + - hit + - place + - step + furnace: + icon: "furnace" + sounds: + - fire_crackle + gilded_blackstone: + icon: "gilded_blackstone" + sounds: + - break + - fall + - hit + - place + - step + glass: + icon: "glass" + sounds: + - break + - fall + - hit + - place + - step + grass: + icon: "grass" + sounds: + - break + - fall + - hit + - place + - step + gravel: + icon: "gravel" + sounds: + - break + - fall + - hit + - place + - step + grindstone: + icon: "grindstone" + sounds: + - use + honey_block: + icon: "honey_block" + sounds: + - break + - fall + - hit + - place + - slide + - step + iron_door: + icon: "iron_door" + sounds: + - close + - open + iron_trapdoor: + icon: "iron_trapdoor" + sounds: + - close + - open + ladder: + icon: "ladder" + sounds: + - break + - fall + - hit + - place + - step + lantern: + icon: "lantern" + sounds: + - break + - fall + - hit + - place + - step + lava: + icon: "lava_bucket" + sounds: + - ambient + - extinguish + - pop + lever: + icon: "lever" + sounds: + - click + lily_pad: + icon: "lily_pad" + sounds: + - place + lodestone: + icon: "lodestone" + sounds: + - break + - fall + - hit + - place + - step + metal: + icon: "iron_block" + sounds: + - break + - fall + - hit + - place + - step + metal_pressure_plate: + icon: "heavy_weighted_pressure_plate" + sounds: + - click_off + - click_on + nether_bricks: + icon: "nether_bricks" + sounds: + - break + - fall + - hit + - place + - step + nether_gold_ore: + icon: "nether_gold_ore" + sounds: + - break + - fall + - hit + - place + - step + nether_ore: + icon: "nether_gold_ore" + sounds: + - break + - fall + - hit + - place + - step + nether_sprouts: + icon: "nether_sprouts" + sounds: + - break + - fall + - hit + - place + - step + nether_wart: + icon: "nether_wart" + sounds: + - break + netherite_block: + icon: "netherite_block" + sounds: + - break + - fall + - hit + - place + - step + netherrack: + icon: "netherrack" + sounds: + - break + - fall + - hit + - place + - step + note_block: + icon: "note_block" + sounds: + - banjo + - basedrum + - bass + - bell + - bit + - chime + - cow_bell + - didgeridoo + - flute + - guitar + - harp + - hat + - iron_xylophone + - pling + - snare + - xylophone + nylium: + icon: "crimson_nylium" + sounds: + - break + - fall + - hit + - place + - step + piston: + icon: "piston" + sounds: + - contract + - extend + portal: + icon: "obsidian" + sounds: + - ambient + - travel + - trigger + pumpkin: + icon: "pumpkin" + sounds: + - carve + redstone_torch: + icon: "redstone_torch" + sounds: + - burnout + respawn_anchor: + icon: "respawn_anchor" + sounds: + - ambient + - charge + - deplete + - set_spawn + roots: + icon: "crimson_roots" + sounds: + - break + - fall + - hit + - place + - step + sand: + icon: "sand" + sounds: + - break + - fall + - hit + - place + - step + scaffolding: + icon: "scaffolding" + sounds: + - break + - fall + - hit + - place + - step + shroomlight: + icon: "shroomlight" + sounds: + - break + - fall + - hit + - place + - step + shulker_box: + icon: "shroomlight" + sounds: + - close + - open + slime_block: + icon: "slime_block" + sounds: + - break + - fall + - hit + - place + - step + smithing_table: + icon: "smithing_table" + sounds: + - use + smoker: + icon: "smoker" + sounds: + - smoke + snow: + icon: "snow_block" + sounds: + - break + - fall + - hit + - place + - step + soul_sand: + icon: "soul_sand" + sounds: + - break + - fall + - hit + - place + - step + soul_soil: + icon: "soul_soil" + sounds: + - break + - fall + - hit + - place + - step + stem: + icon: "crimson_stem" + sounds: + - break + - fall + - hit + - place + - step + stone: + icon: "stone" + sounds: + - break + - fall + - hit + - place + - step + stone_button: + icon: "stone_button" + sounds: + - click_off + - click_on + stone_pressure_plate: + icon: "stone_pressure_plate" + sounds: + - click_off + - click_on + sweet_berry_bush: + icon: "sweet_berries" + sounds: + - break + - place + tripwire: + icon: "tripwire_hook" + sounds: + - attach + - click_off + - click_on + - detach + vine: + icon: "vine" + sounds: + - step + wart_block: + icon: "warped_wart_block" + sounds: + - break + - fall + - hit + - place + - step + water: + icon: "water_bucket" + sounds: + - ambient + weeping_vines: + icon: "weeping_vines" + sounds: + - break + - fall + - hit + - place + - step + wet_grass: + icon: "kelp" + sounds: + - break + - fall + - hit + - place + - step + wood: + icon: "oak_log" + sounds: + - break + - fall + - hit + - place + - step + wooden_button: + icon: "oak_button" + sounds: + - click_off + - click_on + wooden_door: + icon: "oak_door" + sounds: + - close + - open + wooden_pressure_plate: + icon: "oak_pressure_plate" + sounds: + - click_off + - click_on + wooden_trapdoor: + icon: "oak_trapdoor" + sounds: + - close + - open + wool: + icon: "white_wool" + sounds: + - break + - fall + - hit + - place + - step +enchant: + icon: "enchanted_book" + thorns: + icon: "enchanted_book" + sounds: + - hit +entity: + icon: "ghast_spawn_egg" + armor_stand: + icon: "armor_stand" + sounds: + - break + - fall + - hit + - place + arrow: + icon: "arrow" + sounds: + - hit + - hit_player + - shoot + bat: + icon: "bat_spawn_egg" + sounds: + - ambient + - death + - hurt + - loop + - takeoff + bee: + icon: "bee_spawn_egg" + sounds: + - death + - hurt + - loop + - loop_aggressive + - pollinate + - sting + blaze: + icon: "blaze_spawn_egg" + sounds: + - ambient + - burn + - death + - hurt + - shoot + boat: + icon: "oak_boat" + sounds: + - paddle_land + - paddle_water + cat: + icon: "cat_spawn_egg" + sounds: + - ambient + - beg_for_food + - death + - eat + - hiss + - hurt + - purr + - purreow + - stray_ambient + chicken: + icon: "chicken_spawn_egg" + sounds: + - ambient + - death + - egg + - hurt + - step + cod: + icon: "cod" + sounds: + - ambient + - death + - flop + - hurt + cow: + icon: "cow_spawn_egg" + sounds: + - ambient + - death + - hurt + - milk + - step + creeper: + icon: "creeper_spawn_egg" + sounds: + - death + - hurt + - primed + dolphin: + icon: "dolphin_spawn_egg" + sounds: + - ambient + - ambient_water + - attack + - death + - eat + - hurt + - jump + - play + - splash + - swim + donkey: + icon: "donkey_spawn_egg" + sounds: + - ambient + - angry + - chest + - death + - eat + - hurt + dragon_fireball: + icon: "fire_charge" + sounds: + - explode + drowned: + icon: "drowned_spawn_egg" + sounds: + - ambient + - ambient_water + - death + - death_water + - hurt + - hurt_water + - shoot + - step + - swim + egg: + icon: "egg" + sounds: + - throw + elder_guardian: + icon: "elder_guardian_spawn_egg" + sounds: + - ambient + - ambient_land + - curse + - death + - death_land + - flop + - hurt + - hurt_land + ender_dragon: + icon: "dragon_head" + sounds: + - ambient + - death + - flap + - growl + - hurt + - shoot + ender_eye: + icon: "ender_eye" + sounds: + - death + - launch + ender_pearl: + icon: "ender_pearl" + sounds: + - throw + enderman: + icon: "enderman_spawn_egg" + sounds: + - ambient + - death + - hurt + - scream + - stare + - teleport + endermite: + icon: "endermite_spawn_egg" + sounds: + - ambient + - death + - hurt + - step + evoker: + icon: "evoker_spawn_egg" + sounds: + - ambient + - cast_spell + - celebrate + - death + - hurt + - prepare_attack + - prepare_summon + - prepare_wololo + evoker_fangs: + icon: "totem_of_undying" + sounds: + - attack + experience_bottle: + icon: "experience_bottle" + sounds: + - throw + experience_orb: + icon: "experience_bottle" + sounds: + - pickup + firework_rocket: + icon: "firework_rocket" + sounds: + - blast + - blast_far + - large_blast + - large_blast_far + - launch + - shoot + - twinkle + - twinkle_far + fish: + icon: "water_bucket" + sounds: + - swim + fishing_bobber: + icon: "fishing_rod" + sounds: + - retrieve + - splash + - throw + fox: + icon: "fox_spawn_egg" + sounds: + - aggro + - ambient + - bite + - death + - eat + - hurt + - screech + - sleep + - sniff + - spit + - teleport + generic: + icon: "bookshelf" + sounds: + - big_fall + - burn + - death + - drink + - eat + - explode + - extinguish_fire + - hurt + - small_fall + - splash + - swim + ghast: + icon: "ghast_spawn_egg" + sounds: + - ambient + - death + - hurt + - scream + - shoot + - warn + guardian: + icon: "guardian_spawn_egg" + sounds: + - ambient + - ambient_land + - attack + - death + - death_land + - flop + - hurt + - hurt_land + hoglin: + icon: "hoglin_spawn_egg" + sounds: + - ambient + - angry + - attack + - converted_to_zombified + - death + - hurt + - retreat + - step + horse: + icon: "horse_spawn_egg" + sounds: + - ambient + - angry + - armor + - breathe + - death + - eat + - gallop + - hurt + - jump + - land + - saddle + - step + - step_wood + hostile: + icon: "wooden_sword" + sounds: + - big_fall + - death + - hurt + - small_fall + - splash + - swim + husk: + icon: "husk_spawn_egg" + sounds: + - ambient + - converted_to_zombie + - death + - hurt + - step + illusioner: + icon: "lapis_lazuli" + sounds: + - ambient + - cast_spell + - death + - hurt + - mirror_move + - prepare_blindness + - prepare_mirror + iron_golem: + icon: "ghast_spawn_egg" + sounds: + - attack + - damage + - death + - hurt + - repair + - step + item: + icon: "paper" + sounds: + - break + - pickup + item_frame: + icon: "item_frame" + sounds: + - add_item + - break + - place + - remove_item + - rotate_item + leash_knot: + icon: "lead" + sounds: + - break + - place + lightning_bolt: + icon: "end_rod" + sounds: + - impact + - thunder + lingering_potion: + icon: "lingering_potion" + sounds: + - throw + llama: + icon: "llama_spawn_egg" + sounds: + - ambient + - angry + - chest + - death + - eat + - hurt + - spit + - step + - swag + magma_cube: + icon: "magma_cube_spawn_egg" + sounds: + - death + - death_small + - hurt + - hurt_small + - jump + - squish + - squish_small + minecart: + icon: "minecart" + sounds: + - inside + - riding + mooshroom: + icon: "mooshroom_spawn_egg" + sounds: + - convert + - eat + - milk + - shear + - suspicious_milk + mule: + icon: "mule_spawn_egg" + sounds: + - ambient + - angry + - chest + - death + - eat + - hurt + ocelot: + icon: "ocelot_spawn_egg" + sounds: + - ambient + - death + - hurt + painting: + icon: "painting" + sounds: + - break + - place + panda: + icon: "panda_spawn_egg" + sounds: + - aggressive_ambient + - ambient + - bite + - cant_breed + - death + - eat + - hurt + - pre_sneeze + - sneeze + - step + - worried_ambient + parrot: + icon: "parrot_spawn_egg" + sounds: + - ambient + - death + - eat + - fly + - hurt + - step + imitate: + icon: "parrot_spawn_egg" + sounds: + - blaze + - creeper + - drowned + - elder_guardian + - ender_dragon + - endermite + - evoker + - ghast + - guardian + - hoglin + - husk + - illusioner + - magma_cube + - phantom + - piglin + - pillager + - ravager + - shulker + - silverfish + - skeleton + - slime + - spider + - stray + - vex + - vindicator + - witch + - wither + - wither_skeleton + - zoglin + - zombie + - zombie_villager + phantom: + icon: "phantom_spawn_egg" + sounds: + - ambient + - bite + - death + - flap + - hurt + - swoop + pig: + icon: "pig_spawn_egg" + sounds: + - ambient + - death + - hurt + - saddle + - step + piglin: + icon: "piglin_spawn_egg" + sounds: + - admiring_item + - ambient + - angry + - celebrate + - converted_to_zombified + - death + - hurt + - jealous + - retreat + - step + pillager: + icon: "pillager_spawn_egg" + sounds: + - ambient + - celebrate + - death + - hurt + player: + icon: "player_head" + sounds: + - big_fall + - breath + - burp + - death + - hurt + - hurt_drown + - hurt_on_fire + - hurt_sweet_berry_bush + - levelup + - small_fall + - splash + - swim + attack: + icon: "iron_sword" + sounds: + - crit + - knockback + - nodamage + - strong + - sweep + - weak + splash: + icon: "water_bucket" + sounds: + - high_speed + polar_bear: + icon: "ghast_spawn_egg" + sounds: + - ambient + - ambient_baby + - death + - hurt + - step + - warning + puffer_fish: + icon: "pufferfish" + sounds: + - ambient + - blow_out + - blow_up + - death + - flop + - hurt + - sting + rabbit: + icon: "rabbit_spawn_egg" + sounds: + - ambient + - attack + - death + - hurt + - jump + ravager: + icon: "ravager_spawn_egg" + sounds: + - ambient + - attack + - celebrate + - death + - hurt + - roar + - step + - stunned + salmon: + icon: "salmon" + sounds: + - ambient + - death + - flop + - hurt + sheep: + icon: "sheep_spawn_egg" + sounds: + - ambient + - death + - hurt + - shear + - step + shulker: + icon: "shulker_spawn_egg" + sounds: + - ambient + - close + - death + - hurt + - hurt_closed + - open + - shoot + - teleport + shulker_bullet: + icon: "shulker_shell" + sounds: + - hit + - hurt + silverfish: + icon: "silverfish_spawn_egg" + sounds: + - ambient + - death + - hurt + - step + skeleton: + icon: "skeleton_spawn_egg" + sounds: + - ambient + - death + - hurt + - shoot + - step + skeleton_horse: + icon: "skeleton_horse_spawn_egg" + sounds: + - ambient + - ambient_water + - death + - gallop_water + - hurt + - jump_water + - step_water + - swim + slime: + icon: "slime_spawn_egg" + sounds: + - attack + - death + - death_small + - hurt + - hurt_small + - jump + - jump_small + - squish + - squish_small + snow_golem: + icon: "carved_pumpkin" + sounds: + - ambient + - death + - hurt + - shear + - shoot + snowball: + icon: "snowball" + sounds: + - throw + spider: + icon: "spider_spawn_egg" + sounds: + - ambient + - death + - hurt + - step + splash_potion: + icon: "splash_potion" + sounds: + - break + - throw + squid: + icon: "squid_spawn_egg" + sounds: + - ambient + - death + - hurt + - squirt + stray: + icon: "stray_spawn_egg" + sounds: + - ambient + - death + - hurt + - step + strider: + icon: "strider_spawn_egg" + sounds: + - ambient + - death + - eat + - happy + - hurt + - retreat + - saddle + - step + - step_lava + tnt: + icon: "tnt" + sounds: + - primed + tropical_fish: + icon: "tropical_fish" + sounds: + - ambient + - death + - flop + - hurt + turtle: + icon: "turtle_spawn_egg" + sounds: + - ambient_land + - death + - death_baby + - egg_break + - egg_crack + - egg_hatch + - hurt + - hurt_baby + - lay_egg + - shamble + - shamble_baby + - swim + vex: + icon: "vex_spawn_egg" + sounds: + - ambient + - charge + - death + - hurt + villager: + icon: "villager_spawn_egg" + sounds: + - ambient + - celebrate + - death + - hurt + - no + - trade + - work_armorer + - work_butcher + - work_cartographer + - work_cleric + - work_farmer + - work_fisherman + - work_fletcher + - work_leatherworker + - work_librarian + - work_mason + - work_shepherd + - work_toolsmith + - work_weaponsmith + - yes + vindicator: + icon: "iron_axe" + sounds: + - ambient + - celebrate + - death + - hurt + wandering_trader: + icon: "wandering_trader_spawn_egg" + sounds: + - ambient + - death + - disappeared + - drink_milk + - drink_potion + - hurt + - no + - reappeared + - trade + - yes + witch: + icon: "witch_spawn_egg" + sounds: + - ambient + - celebrate + - death + - drink + - hurt + - throw + wither: + icon: "nether_star" + sounds: + - ambient + - break_block + - death + - hurt + - shoot + - spawn + wither_skeleton: + icon: "wither_skeleton_skull" + sounds: + - ambient + - death + - hurt + - step + wolf: + icon: "wolf_spawn_egg" + sounds: + - ambient + - death + - growl + - howl + - hurt + - pant + - shake + - step + - whine + zoglin: + icon: "zoglin_spawn_egg" + sounds: + - ambient + - angry + - attack + - death + - hurt + - step + zombie: + icon: "zombie_spawn_egg" + sounds: + - ambient + - attack_iron_door + - attack_wooden_door + - break_wooden_door + - converted_to_drowned + - death + - destroy_egg + - hurt + - infect + - step + zombie_horse: + icon: "zombie_horse_spawn_egg" + sounds: + - ambient + - death + - hurt + zombie_villager: + icon: "zombie_villager_spawn_egg" + sounds: + - ambient + - converted + - cure + - death + - hurt + - step + zombified_piglin: + icon: "zombified_piglin_spawn_egg" + sounds: + - ambient + - angry + - death + - hurt +event: + icon: "bell" + raid: + icon: "bell" + sounds: + - horn +item: + icon: "diamond_axe" + armor: + icon: "iron_chestplate" + sounds: + - equip_chain + - equip_diamond + - equip_elytra + - equip_generic + - equip_gold + - equip_iron + - equip_leather + - equip_netherite + - equip_turtle + axe: + icon: "iron_axe" + sounds: + - strip + book: + icon: "book" + sounds: + - page_turn + - put + bottle: + icon: "glass_bottle" + sounds: + - empty + - fill + - fill_dragonbreath + bucket: + icon: "bucket" + sounds: + - empty + - empty_fish + - empty_lava + - fill + - fill_fish + - fill_lava + chorus_fruit: + icon: "chorus_fruit" + sounds: + - teleport + crop: + icon: "wheat_seeds" + sounds: + - plant + crossbow: + icon: "crossbow" + sounds: + - hit + - loading_end + - loading_middle + - loading_start + - quick_charge_1 + - quick_charge_2 + - quick_charge_3 + - shoot + elytra: + icon: "elytra" + sounds: + - flying + firecharge: + icon: "fire_charge" + sounds: + - use + flintandsteel: + icon: "flint_and_steel" + sounds: + - use + hoe: + icon: "wooden_hoe" + sounds: + - till + honey_bottle: + icon: "honey_bottle" + sounds: + - drink + lodestone_compass: + icon: "compass" + sounds: + - lock + nether_wart: + icon: "nether_wart" + sounds: + - plant + shield: + icon: "shield" + sounds: + - block + - break + shovel: + icon: "wooden_shovel" + sounds: + - flatten + sweet_berries: + icon: "sweet_berries" + sounds: + - pick_from_bush + totem: + icon: "totem_of_undying" + sounds: + - use + trident: + icon: "trident" + sounds: + - hit + - hit_ground + - return + - riptide_1 + - riptide_2 + - riptide_3 + - throw + - thunder +music: + icon: "jukebox" + sounds: + - creative + - credits + - dragon + - end + - game + - menu + - under_water + nether: + icon: "music_disc_pigstep" + sounds: + - basalt_deltas + - crimson_forest + - nether_wastes + - soul_sand_valley + - warped_forest +music_disc: + icon: "music_disc_pigstep" + sounds: + - "11" + - "13" + - blocks + - cat + - chirp + - far + - mall + - mellohi + - pigstep + - stal + - strad + - wait + - ward +particle: + icon: "blaze_powder" + sounds: + - soul_escape +ui: + icon: "name_tag" + button: + icon: "stone_button" + sounds: + - click + cartography_table: + icon: "cartography_table" + sounds: + - take_result + loom: + icon: "loom" + sounds: + - select_pattern + - take_result + stonecutter: + icon: "stonecutter" + sounds: + - select_recipe + - take_result + toast: + icon: "name_tag" + sounds: + - challenge_complete + - in + - out +weather: + icon: "snowball" + sounds: + - rain + rain: + icon: "water_bucket" + sounds: + - above diff --git a/soundboards/1.16.5.yml b/soundboards/1.16.5.yml new file mode 100644 index 0000000..d4bcd09 --- /dev/null +++ b/soundboards/1.16.5.yml @@ -0,0 +1,23969 @@ +variables: + Sound: + type: playerstring + Menu: + type: playerstring + Pitch: + type: player + Volume: + type: player + PitchIsPreset: + type: playerstring + PitchPreset: + type: player + SoundCache: + type: playerstring +sb-anchor-menu: + <<: + &a1 + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + enabled: false +sb-anchor-dummy: + <<: + &a2 + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + enabled: false +Dummy: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable +sb-main: + spell-class: .MultiSpell + permission-name: soundboard + tags: + - NotSilenceable + incantations: + - /soundboard + - /sounds + - /sb + always-granted: true + variable-mods-cast: + - Pitch =1 + - Volume =1 + - Sound =Empty + - Menu =Main + - PitchIsPreset =false + - SoundCache =Empty + spells: + - DELAY 1 + - sb +sb-selectsound: + spell-class: .MultiSpell + helper-spell: true + tags: + - NotSilenceable + spells: + - sb-configure + - DELAY 1 + - sb-fixsound + - DELAY 1 + - sb-showsound +sb-fixsound: + spell-class: .targeted.ParseSpell + helper-spell: true + target-self: true + operation: regex + expected-value: \. + parse-to: "-" + variable-to-parse: Sound + parse-to-variable: SoundCache +sb-showsound: + <<: + &a3 + spell-class: .ExternalCommandSpell + helper-spell: true + tags: + - NotSilenceable + execute-on-console-instead: true + do-variable-replacement: true + command-to-execute: + - minecraft:tellraw %a [{"text":"Open for (%var:Sound%) + ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click + Here","color":"aqua","clickEvent":{"action":"run_command","value":"/c + sound-%var:SoundCache%"}},{"text":"]","color":"dark_aqua"}] +sb-configure: + <<: *a1 + title: "&9Modify Pitch or Volume & Play" + options: + Pitch1: + slot: 0 + item: + type: lime_wool + name: "&6Modify Pitch by .5" + lore: + - "&eCurrent Pitch&f: &6%var:Pitch:2%" + spell: sb-pitch-add1 + spell-right: sb-pitch-dec1 + stay-open: true + modifiers: + - variable Pitch>1.5 deny + - variable Pitch<.5 deny + Pitch1Fail1: + slot: 0 + item: + type: gray_wool + name: "&6Pitch is over 1.5" + lore: + - "&eCurrent Pitch&f: &6%var:Pitch:2%" + spell: Dummy + spell-right: sb-pitch-dec1 + stay-open: true + modifiers: + - variable Pitch>1.5 require + Pitch1Fail2: + slot: 0 + item: + type: gray_wool + name: "&6Pitch is under 0.5" + lore: + - "&eCurrent Pitch&f: &6%var:Pitch:2%" + spell: sb-pitch-add1 + spell-right: Dummy + stay-open: true + modifiers: + - variable Pitch<0.5 require + Pitch2: + slot: 9 + item: + type: lime_wool + name: "&6Modify Pitch by 0.1" + lore: + - "&eCurrent Pitch&f: &6%var:Pitch:2%" + spell: sb-pitch-add2 + spell-right: sb-pitch-dec2 + stay-open: true + modifiers: + - variable Pitch>1.9 deny + - variable Pitch<.1 deny + Pitch2Fail1: + slot: 9 + item: + type: gray_wool + name: "&6Pitch is over 1.9" + lore: + - "&eCurrent Pitch&f: &6%var:Pitch:2%" + spell: Dummy + spell-right: sb-pitch-dec2 + stay-open: true + modifiers: + - variable Pitch>1.9 require + Pitch2Fail2: + slot: 9 + item: + type: gray_wool + name: "&6Pitch is under 0.1" + lore: + - "&eCurrent Pitch&f: &6%var:Pitch:2%" + spell: sb-pitch-add2 + spell-right: Dummy + stay-open: true + modifiers: + - variable Pitch<0.1 require + Pitch3: + slot: 18 + item: + type: lime_wool + name: "&6Modify Pitch by 0.05" + lore: + - "&eCurrent Pitch&f: &6%var:Pitch:2%" + spell: sb-pitch-add3 + spell-right: sb-pitch-dec3 + stay-open: true + modifiers: + - variable Pitch>1.95 deny + - variable Pitch<.05 deny + Pitch3Fail1: + slot: 18 + item: + type: gray_wool + name: "&6Pitch is over 1.95" + lore: + - "&eCurrent Pitch&f: &6%var:Pitch:2%" + spell: Dummy + spell-right: sb-pitch-dec3 + stay-open: true + modifiers: + - variable Pitch>1.9 require + Pitch3Fail2: + slot: 18 + item: + type: gray_wool + name: "&6Pitch is under 0.05" + lore: + - "&eCurrent Pitch&f: &6%var:Pitch:2%" + spell: sb-pitch-add3 + spell-right: Dummy + stay-open: true + modifiers: + - variable Pitch<0.05 require + Volume1: + slot: 8 + item: + type: lime_wool + name: "&6Modify Volume by 100" + lore: + - "&eCurrent Volume&f: &6%var:Volume:2%" + spell: sb-volume-add1 + spell-right: sb-volume-dec1 + stay-open: true + modifiers: + - variable Volume>99.99 require + Volume1Fail: + slot: 8 + item: + type: gray_wool + name: "&6Volume is under 100" + lore: + - "&eCurrent Volume&f: &6%var:Volume:2%" + spell: sb-volume-add1 + spell-right: Dummy + stay-open: true + modifiers: + - variable Volume>99.99 deny + Volume2: + slot: 17 + item: + type: lime_wool + name: "&6Modify Volume by 1" + lore: + - "&eCurrent Volume&f: &6%var:Volume:2%" + spell: sb-volume-add2 + spell-right: sb-volume-dec2 + stay-open: true + modifiers: + - variable Volume>0.99 require + Volume2Fail: + slot: 17 + item: + type: gray_wool + name: "&6Volume is under 1" + lore: + - "&eCurrent Volume&f: &6%var:Volume:2%" + spell: sb-volume-add2 + spell-right: Dummy + stay-open: true + modifiers: + - variable Volume>0.99 deny + Volume3: + slot: 26 + item: + type: lime_wool + name: "&6Modify Volume by 0.5" + lore: + - "&eCurrent Volume&f: &6%var:Volume:2%" + spell: sb-volume-add3 + spell-right: sb-volume-dec3 + stay-open: true + modifiers: + - variable Volume>0 require + Volume3Fail: + slot: 26 + item: + type: gray_wool + name: "&6Volume is under 0.5" + lore: + - "&eCurrent Volume&f: &6%var:Volume:2%" + spell: sb-volume-add3 + spell-right: Dummy + stay-open: true + modifiers: + - variable Volume>0 deny + PitchPresetRemove: + slot: 3 + item: + type: diamond + name: "&6Pitch Preset Remove" + lore: + - "&eNote pitch (music semitones)" + - "&eNoteblock Clicks&f: %var:PitchPreset:0%" + spell: sb-pitch-preset-remove + stay-open: true + PitchPreset: + slot: 4 + item: + type: note_block + name: "&6Pitch Presets" + lore: + - "&eNote pitch (music semitones)" + - "&eNoteblock Clicks&f: %var:PitchPreset:0%" + spell: sb-pitch-presets + PitchPresetAdd: + slot: 5 + item: + type: diamond + name: "&6Pitch Preset Add" + lore: + - "&eNote pitch (music semitones)" + - "&eNoteblock Clicks&f: %var:PitchPreset:0%" + spell: sb-pitch-preset-add + stay-open: true + PlaySound: + slot: 12 + item: + type: enchanted_book + name: "&6Play" + lore: + - "&eSound&f: &6%var:Sound%" + - "&ePitch&f: &6%var:Pitch:2%" + - "&eVolume&f: &6%var:Volume:1%" + spell: sb-play + stay-open: true + modifiers: + - variablestringequals PitchIsPreset:false require + PlaySoundPitchPreset: + slot: 12 + item: + type: enchanted_book + name: "&6Play" + lore: + - "&eSound&f: &6%var:Sound%" + - "&ePitch&f: &6%var:Pitch:5%" + - "&eVolume&f: &6%var:Volume:1%" + spell: sb-play + stay-open: true + modifiers: + - variablestringequals PitchIsPreset:true require + StopSound: + slot: 13 + item: 'barrier{name: "&6Stop Sound"}' + spell: sb-stop + stay-open: true + Show: + slot: 14 + item: 'paper{name: "&6Show Configuration In Chat"}' + spell: sb-show-check + Back: + slot: 22 + item: 'book{name: "&6Back"}' + spell: sb-back-edit +sb-back-edit: + <<: *a2 + modifiers: + - variablestringequals Menu:ambient cast sb-ambient + - variablestringequals Menu:music cast sb-music + - variablestringequals Menu:music_disc cast sb-music_disc + - variablestringequals Menu:particle cast sb-particle + - variablestringequals Menu:weather cast sb-weather + - variablestringequals Menu:ambient_basalt_deltas cast + sb-ambient-basalt_deltas + - variablestringequals Menu:ambient_crimson_forest cast + sb-ambient-crimson_forest + - variablestringequals Menu:ambient_nether_wastes cast + sb-ambient-nether_wastes + - variablestringequals Menu:ambient_soul_sand_valley cast + sb-ambient-soul_sand_valley + - variablestringequals Menu:ambient_underwater cast sb-ambient-underwater + - variablestringequals Menu:ambient_warped_forest cast + sb-ambient-warped_forest + - variablestringequals Menu:ambient_underwater_loop cast + sb-ambient-underwater-loop + - variablestringequals Menu:ambient_underwater_loop_additions cast + sb-ambient-underwater-loop-additions + - variablestringequals Menu:block_ancient_debris cast sb-block-ancient_debris + - variablestringequals Menu:block_anvil cast sb-block-anvil + - variablestringequals Menu:block_bamboo cast sb-block-bamboo + - variablestringequals Menu:block_bamboo_sapling cast sb-block-bamboo_sapling + - variablestringequals Menu:block_barrel cast sb-block-barrel + - variablestringequals Menu:block_basalt cast sb-block-basalt + - variablestringequals Menu:block_beacon cast sb-block-beacon + - variablestringequals Menu:block_beehive cast sb-block-beehive + - variablestringequals Menu:block_bell cast sb-block-bell + - variablestringequals Menu:block_blastfurnace cast sb-block-blastfurnace + - variablestringequals Menu:block_bone_block cast sb-block-bone_block + - variablestringequals Menu:block_brewing_stand cast sb-block-brewing_stand + - variablestringequals Menu:block_bubble_column cast sb-block-bubble_column + - variablestringequals Menu:block_campfire cast sb-block-campfire + - variablestringequals Menu:block_chain cast sb-block-chain + - variablestringequals Menu:block_chest cast sb-block-chest + - variablestringequals Menu:block_chorus_flower cast sb-block-chorus_flower + - variablestringequals Menu:block_comparator cast sb-block-comparator + - variablestringequals Menu:block_composter cast sb-block-composter + - variablestringequals Menu:block_conduit cast sb-block-conduit + - variablestringequals Menu:block_coral_block cast sb-block-coral_block + - variablestringequals Menu:block_crop cast sb-block-crop + - variablestringequals Menu:block_dispenser cast sb-block-dispenser + - variablestringequals Menu:block_enchantment_table cast + sb-block-enchantment_table + - variablestringequals Menu:block_end_gateway cast sb-block-end_gateway + - variablestringequals Menu:block_end_portal cast sb-block-end_portal + - variablestringequals Menu:block_end_portal_frame cast + sb-block-end_portal_frame + - variablestringequals Menu:block_ender_chest cast sb-block-ender_chest + - variablestringequals Menu:block_fence_gate cast sb-block-fence_gate + - variablestringequals Menu:block_fire cast sb-block-fire + - variablestringequals Menu:block_fungus cast sb-block-fungus + - variablestringequals Menu:block_furnace cast sb-block-furnace + - variablestringequals Menu:block_gilded_blackstone cast + sb-block-gilded_blackstone + - variablestringequals Menu:block_glass cast sb-block-glass + - variablestringequals Menu:block_grass cast sb-block-grass + - variablestringequals Menu:block_gravel cast sb-block-gravel + - variablestringequals Menu:block_grindstone cast sb-block-grindstone + - variablestringequals Menu:block_honey_block cast sb-block-honey_block + - variablestringequals Menu:block_iron_door cast sb-block-iron_door + - variablestringequals Menu:block_iron_trapdoor cast sb-block-iron_trapdoor + - variablestringequals Menu:block_ladder cast sb-block-ladder + - variablestringequals Menu:block_lantern cast sb-block-lantern + - variablestringequals Menu:block_lava cast sb-block-lava + - variablestringequals Menu:block_lever cast sb-block-lever + - variablestringequals Menu:block_lily_pad cast sb-block-lily_pad + - variablestringequals Menu:block_lodestone cast sb-block-lodestone + - variablestringequals Menu:block_metal cast sb-block-metal + - variablestringequals Menu:block_metal_pressure_plate cast + sb-block-metal_pressure_plate + - variablestringequals Menu:block_nether_bricks cast sb-block-nether_bricks + - variablestringequals Menu:block_nether_gold_ore cast + sb-block-nether_gold_ore + - variablestringequals Menu:block_nether_ore cast sb-block-nether_ore + - variablestringequals Menu:block_nether_sprouts cast sb-block-nether_sprouts + - variablestringequals Menu:block_nether_wart cast sb-block-nether_wart + - variablestringequals Menu:block_netherite_block cast + sb-block-netherite_block + - variablestringequals Menu:block_netherrack cast sb-block-netherrack + - variablestringequals Menu:block_note_block cast sb-block-note_block + - variablestringequals Menu:block_nylium cast sb-block-nylium + - variablestringequals Menu:block_piston cast sb-block-piston + - variablestringequals Menu:block_portal cast sb-block-portal + - variablestringequals Menu:block_pumpkin cast sb-block-pumpkin + - variablestringequals Menu:block_redstone_torch cast sb-block-redstone_torch + - variablestringequals Menu:block_respawn_anchor cast sb-block-respawn_anchor + - variablestringequals Menu:block_roots cast sb-block-roots + - variablestringequals Menu:block_sand cast sb-block-sand + - variablestringequals Menu:block_scaffolding cast sb-block-scaffolding + - variablestringequals Menu:block_shroomlight cast sb-block-shroomlight + - variablestringequals Menu:block_shulker_box cast sb-block-shulker_box + - variablestringequals Menu:block_slime_block cast sb-block-slime_block + - variablestringequals Menu:block_smithing_table cast sb-block-smithing_table + - variablestringequals Menu:block_smoker cast sb-block-smoker + - variablestringequals Menu:block_snow cast sb-block-snow + - variablestringequals Menu:block_soul_sand cast sb-block-soul_sand + - variablestringequals Menu:block_soul_soil cast sb-block-soul_soil + - variablestringequals Menu:block_stem cast sb-block-stem + - variablestringequals Menu:block_stone cast sb-block-stone + - variablestringequals Menu:block_stone_button cast sb-block-stone_button + - variablestringequals Menu:block_stone_pressure_plate cast + sb-block-stone_pressure_plate + - variablestringequals Menu:block_sweet_berry_bush cast + sb-block-sweet_berry_bush + - variablestringequals Menu:block_tripwire cast sb-block-tripwire + - variablestringequals Menu:block_vine cast sb-block-vine + - variablestringequals Menu:block_wart_block cast sb-block-wart_block + - variablestringequals Menu:block_water cast sb-block-water + - variablestringequals Menu:block_weeping_vines cast sb-block-weeping_vines + - variablestringequals Menu:block_wet_grass cast sb-block-wet_grass + - variablestringequals Menu:block_wood cast sb-block-wood + - variablestringequals Menu:block_wooden_button cast sb-block-wooden_button + - variablestringequals Menu:block_wooden_door cast sb-block-wooden_door + - variablestringequals Menu:block_wooden_pressure_plate cast + sb-block-wooden_pressure_plate + - variablestringequals Menu:block_wooden_trapdoor cast + sb-block-wooden_trapdoor + - variablestringequals Menu:block_wool cast sb-block-wool + - variablestringequals Menu:block_conduit_ambient cast + sb-block-conduit-ambient + - variablestringequals Menu:block_conduit_attack cast sb-block-conduit-attack + - variablestringequals Menu:enchant_thorns cast sb-enchant-thorns + - variablestringequals Menu:entity_armor_stand cast sb-entity-armor_stand + - variablestringequals Menu:entity_arrow cast sb-entity-arrow + - variablestringequals Menu:entity_bat cast sb-entity-bat + - variablestringequals Menu:entity_bee cast sb-entity-bee + - variablestringequals Menu:entity_blaze cast sb-entity-blaze + - variablestringequals Menu:entity_boat cast sb-entity-boat + - variablestringequals Menu:entity_cat cast sb-entity-cat + - variablestringequals Menu:entity_chicken cast sb-entity-chicken + - variablestringequals Menu:entity_cod cast sb-entity-cod + - variablestringequals Menu:entity_cow cast sb-entity-cow + - variablestringequals Menu:entity_creeper cast sb-entity-creeper + - variablestringequals Menu:entity_dolphin cast sb-entity-dolphin + - variablestringequals Menu:entity_donkey cast sb-entity-donkey + - variablestringequals Menu:entity_dragon_fireball cast + sb-entity-dragon_fireball + - variablestringequals Menu:entity_drowned cast sb-entity-drowned + - variablestringequals Menu:entity_egg cast sb-entity-egg + - variablestringequals Menu:entity_elder_guardian cast + sb-entity-elder_guardian + - variablestringequals Menu:entity_ender_dragon cast sb-entity-ender_dragon + - variablestringequals Menu:entity_ender_eye cast sb-entity-ender_eye + - variablestringequals Menu:entity_ender_pearl cast sb-entity-ender_pearl + - variablestringequals Menu:entity_enderman cast sb-entity-enderman + - variablestringequals Menu:entity_endermite cast sb-entity-endermite + - variablestringequals Menu:entity_evoker cast sb-entity-evoker + - variablestringequals Menu:entity_evoker_fangs cast sb-entity-evoker_fangs + - variablestringequals Menu:entity_experience_bottle cast + sb-entity-experience_bottle + - variablestringequals Menu:entity_experience_orb cast + sb-entity-experience_orb + - variablestringequals Menu:entity_firework_rocket cast + sb-entity-firework_rocket + - variablestringequals Menu:entity_fish cast sb-entity-fish + - variablestringequals Menu:entity_fishing_bobber cast + sb-entity-fishing_bobber + - variablestringequals Menu:entity_fox cast sb-entity-fox + - variablestringequals Menu:entity_generic cast sb-entity-generic + - variablestringequals Menu:entity_ghast cast sb-entity-ghast + - variablestringequals Menu:entity_guardian cast sb-entity-guardian + - variablestringequals Menu:entity_hoglin cast sb-entity-hoglin + - variablestringequals Menu:entity_horse cast sb-entity-horse + - variablestringequals Menu:entity_hostile cast sb-entity-hostile + - variablestringequals Menu:entity_husk cast sb-entity-husk + - variablestringequals Menu:entity_illusioner cast sb-entity-illusioner + - variablestringequals Menu:entity_iron_golem cast sb-entity-iron_golem + - variablestringequals Menu:entity_item cast sb-entity-item + - variablestringequals Menu:entity_item_frame cast sb-entity-item_frame + - variablestringequals Menu:entity_leash_knot cast sb-entity-leash_knot + - variablestringequals Menu:entity_lightning_bolt cast + sb-entity-lightning_bolt + - variablestringequals Menu:entity_lingering_potion cast + sb-entity-lingering_potion + - variablestringequals Menu:entity_llama cast sb-entity-llama + - variablestringequals Menu:entity_magma_cube cast sb-entity-magma_cube + - variablestringequals Menu:entity_minecart cast sb-entity-minecart + - variablestringequals Menu:entity_mooshroom cast sb-entity-mooshroom + - variablestringequals Menu:entity_mule cast sb-entity-mule + - variablestringequals Menu:entity_ocelot cast sb-entity-ocelot + - variablestringequals Menu:entity_painting cast sb-entity-painting + - variablestringequals Menu:entity_panda cast sb-entity-panda + - variablestringequals Menu:entity_parrot cast sb-entity-parrot + - variablestringequals Menu:entity_phantom cast sb-entity-phantom + - variablestringequals Menu:entity_pig cast sb-entity-pig + - variablestringequals Menu:entity_piglin cast sb-entity-piglin + - variablestringequals Menu:entity_pillager cast sb-entity-pillager + - variablestringequals Menu:entity_player cast sb-entity-player + - variablestringequals Menu:entity_polar_bear cast sb-entity-polar_bear + - variablestringequals Menu:entity_puffer_fish cast sb-entity-puffer_fish + - variablestringequals Menu:entity_rabbit cast sb-entity-rabbit + - variablestringequals Menu:entity_ravager cast sb-entity-ravager + - variablestringequals Menu:entity_salmon cast sb-entity-salmon + - variablestringequals Menu:entity_sheep cast sb-entity-sheep + - variablestringequals Menu:entity_shulker cast sb-entity-shulker + - variablestringequals Menu:entity_shulker_bullet cast + sb-entity-shulker_bullet + - variablestringequals Menu:entity_silverfish cast sb-entity-silverfish + - variablestringequals Menu:entity_skeleton cast sb-entity-skeleton + - variablestringequals Menu:entity_skeleton_horse cast + sb-entity-skeleton_horse + - variablestringequals Menu:entity_slime cast sb-entity-slime + - variablestringequals Menu:entity_snow_golem cast sb-entity-snow_golem + - variablestringequals Menu:entity_snowball cast sb-entity-snowball + - variablestringequals Menu:entity_spider cast sb-entity-spider + - variablestringequals Menu:entity_splash_potion cast sb-entity-splash_potion + - variablestringequals Menu:entity_squid cast sb-entity-squid + - variablestringequals Menu:entity_stray cast sb-entity-stray + - variablestringequals Menu:entity_strider cast sb-entity-strider + - variablestringequals Menu:entity_tnt cast sb-entity-tnt + - variablestringequals Menu:entity_tropical_fish cast sb-entity-tropical_fish + - variablestringequals Menu:entity_turtle cast sb-entity-turtle + - variablestringequals Menu:entity_vex cast sb-entity-vex + - variablestringequals Menu:entity_villager cast sb-entity-villager + - variablestringequals Menu:entity_vindicator cast sb-entity-vindicator + - variablestringequals Menu:entity_wandering_trader cast + sb-entity-wandering_trader + - variablestringequals Menu:entity_witch cast sb-entity-witch + - variablestringequals Menu:entity_wither cast sb-entity-wither + - variablestringequals Menu:entity_wither_skeleton cast + sb-entity-wither_skeleton + - variablestringequals Menu:entity_wolf cast sb-entity-wolf + - variablestringequals Menu:entity_zoglin cast sb-entity-zoglin + - variablestringequals Menu:entity_zombie cast sb-entity-zombie + - variablestringequals Menu:entity_zombie_horse cast sb-entity-zombie_horse + - variablestringequals Menu:entity_zombie_villager cast + sb-entity-zombie_villager + - variablestringequals Menu:entity_zombified_piglin cast + sb-entity-zombified_piglin + - variablestringequals Menu:entity_parrot_imitate cast + sb-entity-parrot-imitate + - variablestringequals Menu:entity_player_attack cast sb-entity-player-attack + - variablestringequals Menu:entity_player_splash cast sb-entity-player-splash + - variablestringequals Menu:event_raid cast sb-event-raid + - variablestringequals Menu:item_armor cast sb-item-armor + - variablestringequals Menu:item_axe cast sb-item-axe + - variablestringequals Menu:item_book cast sb-item-book + - variablestringequals Menu:item_bottle cast sb-item-bottle + - variablestringequals Menu:item_bucket cast sb-item-bucket + - variablestringequals Menu:item_chorus_fruit cast sb-item-chorus_fruit + - variablestringequals Menu:item_crop cast sb-item-crop + - variablestringequals Menu:item_crossbow cast sb-item-crossbow + - variablestringequals Menu:item_elytra cast sb-item-elytra + - variablestringequals Menu:item_firecharge cast sb-item-firecharge + - variablestringequals Menu:item_flintandsteel cast sb-item-flintandsteel + - variablestringequals Menu:item_hoe cast sb-item-hoe + - variablestringequals Menu:item_honey_bottle cast sb-item-honey_bottle + - variablestringequals Menu:item_lodestone_compass cast + sb-item-lodestone_compass + - variablestringequals Menu:item_nether_wart cast sb-item-nether_wart + - variablestringequals Menu:item_shield cast sb-item-shield + - variablestringequals Menu:item_shovel cast sb-item-shovel + - variablestringequals Menu:item_sweet_berries cast sb-item-sweet_berries + - variablestringequals Menu:item_totem cast sb-item-totem + - variablestringequals Menu:item_trident cast sb-item-trident + - variablestringequals Menu:music_nether cast sb-music-nether + - variablestringequals Menu:ui_button cast sb-ui-button + - variablestringequals Menu:ui_cartography_table cast sb-ui-cartography_table + - variablestringequals Menu:ui_loom cast sb-ui-loom + - variablestringequals Menu:ui_stonecutter cast sb-ui-stonecutter + - variablestringequals Menu:ui_toast cast sb-ui-toast + - variablestringequals Menu:weather_rain cast sb-weather-rain +sb-pitch-add1: + <<: *a2 + variable-mods-cast: + - Pitch +0.5 + - PitchIsPreset =false +sb-pitch-add2: + <<: *a2 + variable-mods-cast: + - Pitch +0.1 + - PitchIsPreset =false +sb-pitch-add3: + <<: *a2 + variable-mods-cast: + - Pitch +0.05 + - PitchIsPreset =false +sb-pitch-dec1: + <<: *a2 + variable-mods-cast: + - Pitch -0.5 + - PitchIsPreset =false +sb-pitch-dec2: + <<: *a2 + variable-mods-cast: + - Pitch -0.1 + - PitchIsPreset =false +sb-pitch-dec3: + <<: *a2 + variable-mods-cast: + - Pitch -0.05 + - PitchIsPreset =false +sb-volume-add1: + <<: *a2 + variable-mods-cast: + - Volume +100 +sb-volume-add2: + <<: *a2 + variable-mods-cast: + - Volume +1 +sb-volume-add3: + <<: *a2 + variable-mods-cast: + - Volume +0.5 +sb-volume-dec1: + <<: *a2 + variable-mods-cast: + - Volume -100 +sb-volume-dec2: + <<: *a2 + variable-mods-cast: + - Volume -1 +sb-volume-dec3: + <<: *a2 + variable-mods-cast: + - Volume -0.5 +sb-show-check: + <<: *a3 + modifiers: + - variable Pitch=1.0 castinstead sb-show-clean-pitch + - variable Pitch=1.0 stop + - variable Volume=1.0 castinstead sb-show-clean-volume + - variable Volume=1.0 stop + - variablestringequals PitchIsPreset:true castinstead sb-show-preset-pitch + - variablestringequals PitchIsPreset:true stop + - variable Pitch=0.0 castinstead sb-show-whole-pitch + - variable Pitch=2.0 castinstead sb-show-whole-pitch + command-to-execute: + - 'minecraft:tellraw %a [{"text":"To show the sound configuration + ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click + Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: + %var:Sound% pitch: %var:Pitch:2% volume: + %var:Volume:2%"},"hoverEvent":{"action":"show_text","value":{"text":"Click + to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]' +sb-show-clean-pitch: + <<: *a3 + modifiers: + - variable Volume=1.0 castinstead sb-show-clean-all + command-to-execute: + - 'minecraft:tellraw %a [{"text":"To show the sound configuration + ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click + Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: + %var:Sound% volume: + %var:Volume:2%"},"hoverEvent":{"action":"show_text","value":{"text":"Click + to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]' +sb-show-clean-volume: + <<: *a3 + modifiers: + - variablestringequals PitchIsPreset:true castinstead + sb-show-clean-volume-preset-pitch + - variablestringequals PitchIsPreset:true stop + - variable Pitch=0.0 castinstead sb-show-clean-volume-whole-pitch + - variable Pitch=2.0 castinstead sb-show-clean-volume-whole-pitch + command-to-execute: + - 'minecraft:tellraw %a [{"text":"To show the sound configuration + ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click + Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: + %var:Sound% pitch: + %var:Pitch:2%"},"hoverEvent":{"action":"show_text","value":{"text":"Click + to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]' +sb-show-clean-all: + <<: *a3 + command-to-execute: + - 'minecraft:tellraw %a [{"text":"To show the sound configuration + ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click + Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: + %var:Sound%"},"hoverEvent":{"action":"show_text","value":{"text":"Click to + show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]' +sb-show-clean-volume-preset-pitch: + <<: *a3 + command-to-execute: + - 'minecraft:tellraw %a [{"text":"To show the sound configuration + ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click + Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: + %var:Sound% pitch: + %var:Pitch:5%"},"hoverEvent":{"action":"show_text","value":{"text":"Click + to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]' +sb-show-clean-volume-whole-pitch: + <<: *a3 + command-to-execute: + - 'minecraft:tellraw %a [{"text":"To show the sound configuration + ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click + Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: + %var:Sound% pitch: + %var:Pitch:0%"},"hoverEvent":{"action":"show_text","value":{"text":"Click + to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]' +sb-show-preset-pitch: + <<: *a3 + command-to-execute: + - 'minecraft:tellraw %a [{"text":"To show the sound configuration + ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click + Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: + %var:Sound% pitch: %var:Pitch:5% volume: + %var:Volume:2%"},"hoverEvent":{"action":"show_text","value":{"text":"Click + to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]' +sb-show-whole-pitch: + <<: *a3 + command-to-execute: + - 'minecraft:tellraw %a [{"text":"To show the sound configuration + ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click + Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: + %var:Sound% pitch: %var:Pitch:0% volume: + %var:Volume:2%"},"hoverEvent":{"action":"show_text","value":{"text":"Click + to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]' +sb-play: + <<: *a3 + command-to-execute: + - minecraft:execute at %a run playsound minecraft:%var:Sound% master %a ~ ~ + ~ %var:Volume:2% %var:Pitch:2% +sb-stop: + <<: *a3 + command-to-execute: + - minecraft:stopsound %a master %var:Sound% +sb-pitch-presets: + <<: *a1 + title: "&9Pitch Presets (Semitones)" + options: + "0": + slot: 0 + item: + type: note_block + name: "&6F♯/G♭" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &60" + - "&ePitch&f: &60.5" + spell: sb-pitch-preset0 + "1": + slot: 1 + item: + type: note_block + name: "&6G" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &61" + - "&ePitch&f: &62^(-11/12) ≈ 0.529732" + spell: sb-pitch-preset1 + "2": + slot: 2 + item: + type: note_block + name: "&6G♯/A♭" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &62" + - "&ePitch&f: &62^(-10/12) ≈ 0.561231" + spell: sb-pitch-preset2 + "3": + slot: 3 + item: + type: note_block + name: "&6A" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &63" + - "&ePitch&f: &62^(-9/12) ≈ 0.594604" + spell: sb-pitch-preset3 + "4": + slot: 4 + item: + type: note_block + name: "&6A♯/B♭" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &64" + - "&ePitch&f: &62^(-8/12) ≈ 0.629961" + spell: sb-pitch-preset4 + "5": + slot: 5 + item: + type: note_block + name: "&6B" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &65" + - "&ePitch&f: &62^(-7/12) ≈ 0.667420" + spell: sb-pitch-preset5 + "6": + slot: 6 + item: + type: note_block + name: "&6C" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &66" + - "&ePitch&f: &62^(-6/12) ≈ 0.707107" + spell: sb-pitch-preset6 + "7": + slot: 7 + item: + type: note_block + name: "&6C♯/D♭" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &67" + - "&ePitch&f: &62^(-5/12) ≈ 0.749154" + spell: sb-pitch-preset7 + "8": + slot: 8 + item: + type: note_block + name: "&6D" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &68" + - "&ePitch&f: &62^(-4/12) ≈ 0.793701" + spell: sb-pitch-preset8 + "9": + slot: 9 + item: + type: note_block + name: "&6D♯/E♭" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &69" + - "&ePitch&f: &62^(-3/12) ≈ 0.840896" + spell: sb-pitch-preset9 + "10": + slot: 10 + item: + type: note_block + name: "&6E" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &610" + - "&ePitch&f: &62^(-2/12) ≈ 0.890899" + spell: sb-pitch-preset10 + "11": + slot: 11 + item: + type: note_block + name: "&6F" + lore: + - "&eOctave&f: &61" + - "&eNoteblock clicks&f: &611" + - "&ePitch&f: &62^(-1/12) ≈ 0.943874" + spell: sb-pitch-preset11 + "12": + slot: 12 + item: + type: note_block + name: "&6F♯/G♭" + lore: + - "&eOctave&f: &61 &eand &62" + - "&eNoteblock clicks&f: &6&612" + - "&ePitch&e: 1" + spell: sb-pitch-preset12 + "13": + slot: 13 + item: + type: note_block + name: "&6G" + lore: + - "&eOctave&f: &62" + - "&eNoteblock clicks&f: &613" + - "&ePitch&f: &62^(1/12) ≈ 1.059463" + spell: sb-pitch-preset13 + "14": + slot: 14 + item: + type: note_block + name: "&6G♯/A♭" + lore: + - "&eOctave&f: &62" + - "&eNoteblock clicks&f: &614" + - "&ePitch&f: &62^(2/12) ≈ 1.122462" + spell: sb-pitch-preset14 + "15": + slot: 15 + item: + type: note_block + name: "&6A" + lore: + - "&eOctave&f: &62" + - "&eNoteblock clicks&f: &615" + - "&ePitch&f: &62^(3/12) ≈ 1.189207" + spell: sb-pitch-preset15 + "16": + slot: 16 + item: + type: note_block + name: "&6A♯/B♭" + lore: + - "&eOctave&f: &62" + - "&eNoteblock clicks&f: &616" + - "&ePitch&f: &62^(4/12) ≈ 1.259921" + spell: sb-pitch-preset16 + "17": + slot: 17 + item: + type: note_block + name: "&6B" + lore: + - "&eOctave&f: &62" + - "&eNoteblock clicks&f: &617" + - "&ePitch&f: &62^(5/12) ≈ 1.334840" + spell: sb-pitch-preset17 + "18": + slot: 18 + item: + type: note_block + name: "&6C" + lore: + - "&eOctave&f: &62" + - "&eNoteblock clicks&f: &618" + - "&ePitch&f: &62^(6/12) ≈ 1.414214" + spell: sb-pitch-preset18 + "19": + slot: 19 + item: + type: note_block + name: "&6C♯/D♭" + lore: + - "&eOctave&f: &62" + - "eNoteblock clicks&f: &619" + - "&ePitch&f: &62^(7/12) ≈ 1.498307" + spell: sb-pitch-preset19 + "20": + slot: 20 + item: + type: note_block + name: "&6D" + lore: + - "&eOctave&f: &62" + - "eNoteblock clicks&f: &620" + - "&ePitch&f: &62^(8/12) ≈ 1.587401" + spell: sb-pitch-preset20 + "21": + slot: 21 + item: + type: note_block + name: "&6D♯/E♭" + lore: + - "&eOctave&f: &62" + - "&eNoteblock clicks&f: &621" + - "ePitch&f: &62^(9/12) ≈ 1.68179" + spell: sb-pitch-preset21 + "22": + slot: 22 + item: + type: note_block + name: "&6E" + lore: + - "&eOctave&f: &62" + - "&eNoteblock clicks&f: &622" + - "&ePitch&f: &62^(10/12) ≈ 1.781797" + spell: sb-pitch-preset22 + "23": + slot: 23 + item: + type: note_block + name: "&6F" + lore: + - "&eOctave&f: &62" + - "&eNoteblock clicks&f: &623" + - "&ePitch&f: &62^(11/12) ≈ 1.887749" + spell: sb-pitch-preset23 + "24": + slot: 24 + item: + type: note_block + name: "&6F♯/G♭" + lore: + - "&eOctave&f: &62" + - "&eNoteblock clicks&f: &624" + - "&ePitch&f: &62" + spell: sb-pitch-preset24 + Back: + slot: 26 + item: 'book{name: "&6Back"}' + spell: sb-configure +sb-pitch-preset-add: + <<: *a3 + modifiers: + - chance 100 variable PitchPreset;+1 + - variable PitchPreset=25 variable PitchPreset;=0 + command-to-execute: + - c forcecast %a sb-pitch-preset%var:PitchPreset:0% +sb-pitch-preset-remove: + <<: *a3 + modifiers: + - variable PitchPreset=0 variable PitchPreset;=25 + - chance 100 variable PitchPreset;-1 + command-to-execute: + - c forcecast %a sb-pitch-preset%var:PitchPreset:0% +sb-pitch-preset0: + &a4 + spell-class: .MultiSpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Pitch =0.5 + - PitchPreset =0 + - PitchIsPreset =true + spells: + - sb-configure +sb-pitch-preset1: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.529732 + - PitchPreset =1 +sb-pitch-preset2: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.561231 + - PitchPreset =2 +sb-pitch-preset3: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.594604 + - PitchPreset =3 +sb-pitch-preset4: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.629961 + - PitchPreset =4 +sb-pitch-preset5: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.667420 + - PitchPreset =5 +sb-pitch-preset6: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.707107 + - PitchPreset =6 +sb-pitch-preset7: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.749154 + - PitchPreset =7 +sb-pitch-preset8: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.793701 + - PitchPreset =8 +sb-pitch-preset9: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.840896 + - PitchPreset =9 +sb-pitch-preset10: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.890899 + - PitchPreset =10 +sb-pitch-preset11: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =0.943874 + - PitchPreset =11 +sb-pitch-preset12: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1 + - PitchPreset =12 +sb-pitch-preset13: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.059463 + - PitchPreset =13 +sb-pitch-preset14: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.122462 + - PitchPreset =14 +sb-pitch-preset15: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.189207 + - PitchPreset =15 +sb-pitch-preset16: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.259921 + - PitchPreset =16 +sb-pitch-preset17: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.334840 + - PitchPreset =17 +sb-pitch-preset18: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.414214 + - PitchPreset =18 +sb-pitch-preset19: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.498307 + - PitchPreset =19 +sb-pitch-preset20: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.587401 + - PitchPreset =20 +sb-pitch-preset21: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.681793 + - PitchPreset =21 +sb-pitch-preset22: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.781797 + - PitchPreset =22 +sb-pitch-preset23: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =1.887749 + - PitchPreset =23 +sb-pitch-preset24: + <<: *a4 + variable-mods-cast: + - PitchIsPreset =true + - Pitch =2 + - PitchPreset =24 +sb: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Soundboard" + options: + Ambient: + spell: sb-ambient + item: + type: coal_ore + name: "&6Ambient Sounds" + slot: 0 + Block: + spell: sb-block1 + item: + type: stone + name: "&6Block Sounds" + slot: 1 + Enchant: + spell: sb-enchant + item: + type: enchanted_book + name: "&6Enchant Sounds" + slot: 2 + Entity: + spell: sb-entity1 + item: + type: ghast_spawn_egg + name: "&6Entity Sounds" + slot: 3 + Event: + spell: sb-event + item: + type: bell + name: "&6Event Sounds" + slot: 4 + Item: + spell: sb-item + item: + type: diamond_axe + name: "&6Item Sounds" + slot: 5 + Music: + spell: sb-music + item: + type: jukebox + name: "&6Music Sounds" + slot: 6 + MusicDisc: + spell: sb-music_disc + item: + type: music_disc_pigstep + name: "&6Music Disc Sounds" + slot: 7 + Particle: + spell: sb-particle + item: + type: blaze_powder + name: "&6Particle Sounds" + slot: 8 + UI: + spell: sb-ui + item: + type: name_tag + name: "&6UI Sounds" + slot: 9 + Weather: + spell: sb-weather + item: + type: snowball + name: "&6Weather Sounds" + slot: 10 +sb-ambient: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ambient Sounds" + options: + Sound_Cave: + spell: sound-ambient-cave + item: + type: coal_ore + name: "&eCave Sound" + lore: + - "&7&oambient.cave" + slot: 0 + BasaltDeltas: + spell: sb-ambient-basalt_deltas + item: + type: basalt + name: "&6Basalt Deltas Sounds" + slot: 1 + CrimsonForest: + spell: sb-ambient-crimson_forest + item: + type: crimson_nylium + name: "&6Crimson Forest Sounds" + slot: 2 + NetherWastes: + spell: sb-ambient-nether_wastes + item: + type: netherrack + name: "&6Nether Wastes Sounds" + slot: 3 + SoulSandValley: + spell: sb-ambient-soul_sand_valley + item: + type: soul_sand + name: "&6Soul Sand Valley Sounds" + slot: 4 + Underwater: + spell: sb-ambient-underwater + item: + type: water_bucket + name: "&6Underwater Sounds" + slot: 5 + WarpedForest: + spell: sb-ambient-warped_forest + item: + type: warped_nylium + name: "&6Warped Forest Sounds" + slot: 6 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 13 +sb-ambient-basalt_deltas: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Basalt_deltas Sounds" + options: + Sound_Additions: + spell: sound-ambient-basalt_deltas-additions + item: + type: basalt + name: "&eAdditions Sound" + lore: + - "&7&oambient.basalt_deltas.additions" + slot: 0 + Sound_Loop: + spell: sound-ambient-basalt_deltas-loop + item: + type: basalt + name: "&eLoop Sound" + lore: + - "&7&oambient.basalt_deltas.loop" + slot: 1 + Sound_Mood: + spell: sound-ambient-basalt_deltas-mood + item: + type: basalt + name: "&eMood Sound" + lore: + - "&7&oambient.basalt_deltas.mood" + slot: 2 + Button_Back: + spell: sb-ambient + item: + type: book + name: "&6Back" + slot: 13 +sb-ambient-crimson_forest: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Crimson_forest Sounds" + options: + Sound_Additions: + spell: sound-ambient-crimson_forest-additions + item: + type: crimson_nylium + name: "&eAdditions Sound" + lore: + - "&7&oambient.crimson_forest.additions" + slot: 0 + Sound_Loop: + spell: sound-ambient-crimson_forest-loop + item: + type: crimson_nylium + name: "&eLoop Sound" + lore: + - "&7&oambient.crimson_forest.loop" + slot: 1 + Sound_Mood: + spell: sound-ambient-crimson_forest-mood + item: + type: crimson_nylium + name: "&eMood Sound" + lore: + - "&7&oambient.crimson_forest.mood" + slot: 2 + Button_Back: + spell: sb-ambient + item: + type: book + name: "&6Back" + slot: 13 +sb-ambient-nether_wastes: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Nether_wastes Sounds" + options: + Sound_Additions: + spell: sound-ambient-nether_wastes-additions + item: + type: netherrack + name: "&eAdditions Sound" + lore: + - "&7&oambient.nether_wastes.additions" + slot: 0 + Sound_Loop: + spell: sound-ambient-nether_wastes-loop + item: + type: netherrack + name: "&eLoop Sound" + lore: + - "&7&oambient.nether_wastes.loop" + slot: 1 + Sound_Mood: + spell: sound-ambient-nether_wastes-mood + item: + type: netherrack + name: "&eMood Sound" + lore: + - "&7&oambient.nether_wastes.mood" + slot: 2 + Button_Back: + spell: sb-ambient + item: + type: book + name: "&6Back" + slot: 13 +sb-ambient-soul_sand_valley: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Soul_sand_valley Sounds" + options: + Sound_Additions: + spell: sound-ambient-soul_sand_valley-additions + item: + type: soul_sand + name: "&eAdditions Sound" + lore: + - "&7&oambient.soul_sand_valley.additions" + slot: 0 + Sound_Loop: + spell: sound-ambient-soul_sand_valley-loop + item: + type: soul_sand + name: "&eLoop Sound" + lore: + - "&7&oambient.soul_sand_valley.loop" + slot: 1 + Sound_Mood: + spell: sound-ambient-soul_sand_valley-mood + item: + type: soul_sand + name: "&eMood Sound" + lore: + - "&7&oambient.soul_sand_valley.mood" + slot: 2 + Button_Back: + spell: sb-ambient + item: + type: book + name: "&6Back" + slot: 13 +sb-ambient-underwater: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Underwater Sounds" + options: + Sound_Enter: + spell: sound-ambient-underwater-enter + item: + type: water_bucket + name: "&eEnter Sound" + lore: + - "&7&oambient.underwater.enter" + slot: 0 + Sound_Exit: + spell: sound-ambient-underwater-exit + item: + type: water_bucket + name: "&eExit Sound" + lore: + - "&7&oambient.underwater.exit" + slot: 1 + Sound_Loop: + spell: sound-ambient-underwater-loop + item: + type: water_bucket + name: "&eLoop Sound" + lore: + - "&7&oambient.underwater.loop" + slot: 2 + Loop: + spell: sb-ambient-underwater-loop + item: + type: water_bucket + name: "&6Loop Sounds" + slot: 3 + Button_Back: + spell: sb-ambient + item: + type: book + name: "&6Back" + slot: 13 +sb-ambient-underwater-loop: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Loop Sounds" + options: + Sound_Additions: + spell: sound-ambient-underwater-loop-additions + item: + type: water_bucket + name: "&eAdditions Sound" + lore: + - "&7&oambient.underwater.loop.additions" + slot: 0 + Additions: + spell: sb-ambient-underwater-loop-additions + item: + type: water_bucket + name: "&6Additions Sounds" + slot: 1 + Button_Back: + spell: sb-ambient-underwater + item: + type: book + name: "&6Back" + slot: 13 +sb-ambient-underwater-loop-additions: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Additions Sounds" + options: + Sound_Rare: + spell: sound-ambient-underwater-loop-additions-rare + item: + type: water_bucket + name: "&eRare Sound" + lore: + - "&7&oambient.underwater.loop.additions.rare" + slot: 0 + Sound_UltraRare: + spell: sound-ambient-underwater-loop-additions-ultra_rare + item: + type: water_bucket + name: "&eUltra Rare Sound" + lore: + - "&7&oambient.underwater.loop.additions.ultra_rare" + slot: 1 + Button_Back: + spell: sb-ambient-underwater-loop + item: + type: book + name: "&6Back" + slot: 13 +sb-ambient-warped_forest: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Warped_forest Sounds" + options: + Sound_Additions: + spell: sound-ambient-warped_forest-additions + item: + type: warped_nylium + name: "&eAdditions Sound" + lore: + - "&7&oambient.warped_forest.additions" + slot: 0 + Sound_Loop: + spell: sound-ambient-warped_forest-loop + item: + type: warped_nylium + name: "&eLoop Sound" + lore: + - "&7&oambient.warped_forest.loop" + slot: 1 + Sound_Mood: + spell: sound-ambient-warped_forest-mood + item: + type: warped_nylium + name: "&eMood Sound" + lore: + - "&7&oambient.warped_forest.mood" + slot: 2 + Button_Back: + spell: sb-ambient + item: + type: book + name: "&6Back" + slot: 13 +sb-block1: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Block Sounds" + options: + AncientDebris: + spell: sb-block-ancient_debris + item: + type: ancient_debris + name: "&6Ancient Debris Sounds" + slot: 0 + Anvil: + spell: sb-block-anvil + item: + type: anvil + name: "&6Anvil Sounds" + slot: 1 + Bamboo: + spell: sb-block-bamboo + item: + type: bamboo + name: "&6Bamboo Sounds" + slot: 2 + BambooSapling: + spell: sb-block-bamboo_sapling + item: + type: bamboo + name: "&6Bamboo Sapling Sounds" + slot: 3 + Barrel: + spell: sb-block-barrel + item: + type: barrel + name: "&6Barrel Sounds" + slot: 4 + Basalt: + spell: sb-block-basalt + item: + type: basalt + name: "&6Basalt Sounds" + slot: 5 + Beacon: + spell: sb-block-beacon + item: + type: beacon + name: "&6Beacon Sounds" + slot: 6 + Beehive: + spell: sb-block-beehive + item: + type: beehive + name: "&6Beehive Sounds" + slot: 7 + Bell: + spell: sb-block-bell + item: + type: bell + name: "&6Bell Sounds" + slot: 8 + Blastfurnace: + spell: sb-block-blastfurnace + item: + type: blast_furnace + name: "&6Blastfurnace Sounds" + slot: 9 + BoneBlock: + spell: sb-block-bone_block + item: + type: bone_block + name: "&6Bone Block Sounds" + slot: 10 + BrewingStand: + spell: sb-block-brewing_stand + item: + type: brewing_stand + name: "&6Brewing Stand Sounds" + slot: 11 + BubbleColumn: + spell: sb-block-bubble_column + item: + type: light_blue_stained_glass + name: "&6Bubble Column Sounds" + slot: 12 + Campfire: + spell: sb-block-campfire + item: + type: campfire + name: "&6Campfire Sounds" + slot: 13 + Chain: + spell: sb-block-chain + item: + type: chain + name: "&6Chain Sounds" + slot: 14 + Chest: + spell: sb-block-chest + item: + type: chest + name: "&6Chest Sounds" + slot: 15 + ChorusFlower: + spell: sb-block-chorus_flower + item: + type: chorus_flower + name: "&6Chorus Flower Sounds" + slot: 16 + Comparator: + spell: sb-block-comparator + item: + type: comparator + name: "&6Comparator Sounds" + slot: 17 + Composter: + spell: sb-block-composter + item: + type: composter + name: "&6Composter Sounds" + slot: 18 + Conduit: + spell: sb-block-conduit + item: + type: conduit + name: "&6Conduit Sounds" + slot: 19 + CoralBlock: + spell: sb-block-coral_block + item: + type: horn_coral + name: "&6Coral Block Sounds" + slot: 20 + Crop: + spell: sb-block-crop + item: + type: wheat_seeds + name: "&6Crop Sounds" + slot: 21 + Dispenser: + spell: sb-block-dispenser + item: + type: dispenser + name: "&6Dispenser Sounds" + slot: 22 + EnchantmentTable: + spell: sb-block-enchantment_table + item: + type: enchanting_table + name: "&6Enchantment Table Sounds" + slot: 23 + EndGateway: + spell: sb-block-end_gateway + item: + type: end_crystal + name: "&6End Gateway Sounds" + slot: 24 + EndPortal: + spell: sb-block-end_portal + item: + type: ender_eye + name: "&6End Portal Sounds" + slot: 25 + EndPortalFrame: + spell: sb-block-end_portal_frame + item: + type: end_portal_frame + name: "&6End Portal Frame Sounds" + slot: 26 + EnderChest: + spell: sb-block-ender_chest + item: + type: ender_chest + name: "&6Ender Chest Sounds" + slot: 27 + FenceGate: + spell: sb-block-fence_gate + item: + type: oak_fence_gate + name: "&6Fence Gate Sounds" + slot: 28 + Fire: + spell: sb-block-fire + item: + type: blaze_powder + name: "&6Fire Sounds" + slot: 29 + Fungus: + spell: sb-block-fungus + item: + type: crimson_fungus + name: "&6Fungus Sounds" + slot: 30 + Furnace: + spell: sb-block-furnace + item: + type: furnace + name: "&6Furnace Sounds" + slot: 31 + GildedBlackstone: + spell: sb-block-gilded_blackstone + item: + type: gilded_blackstone + name: "&6Gilded Blackstone Sounds" + slot: 32 + Glass: + spell: sb-block-glass + item: + type: glass + name: "&6Glass Sounds" + slot: 33 + Grass: + spell: sb-block-grass + item: + type: grass + name: "&6Grass Sounds" + slot: 34 + Gravel: + spell: sb-block-gravel + item: + type: gravel + name: "&6Gravel Sounds" + slot: 35 + Grindstone: + spell: sb-block-grindstone + item: + type: grindstone + name: "&6Grindstone Sounds" + slot: 36 + HoneyBlock: + spell: sb-block-honey_block + item: + type: honey_block + name: "&6Honey Block Sounds" + slot: 37 + IronDoor: + spell: sb-block-iron_door + item: + type: iron_door + name: "&6Iron Door Sounds" + slot: 38 + IronTrapdoor: + spell: sb-block-iron_trapdoor + item: + type: iron_trapdoor + name: "&6Iron Trapdoor Sounds" + slot: 39 + Ladder: + spell: sb-block-ladder + item: + type: ladder + name: "&6Ladder Sounds" + slot: 40 + Lantern: + spell: sb-block-lantern + item: + type: lantern + name: "&6Lantern Sounds" + slot: 41 + Lava: + spell: sb-block-lava + item: + type: lava_bucket + name: "&6Lava Sounds" + slot: 42 + Lever: + spell: sb-block-lever + item: + type: lever + name: "&6Lever Sounds" + slot: 43 + LilyPad: + spell: sb-block-lily_pad + item: + type: lily_pad + name: "&6Lily Pad Sounds" + slot: 44 + Button_Home: + spell: sb + item: + type: book + name: "&6Home" + slot: 49 + Button_Next_Page: + spell: sb-block2 + item: + type: arrow + name: "&6Next Page" + slot: 51 +sb-block2: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Block Sounds" + options: + Lodestone: + spell: sb-block-lodestone + item: + type: lodestone + name: "&6Lodestone Sounds" + slot: 0 + Metal: + spell: sb-block-metal + item: + type: iron_block + name: "&6Metal Sounds" + slot: 1 + MetalPressurePlate: + spell: sb-block-metal_pressure_plate + item: + type: heavy_weighted_pressure_plate + name: "&6Metal Pressure Plate Sounds" + slot: 2 + NetherBricks: + spell: sb-block-nether_bricks + item: + type: nether_bricks + name: "&6Nether Bricks Sounds" + slot: 3 + NetherGoldOre: + spell: sb-block-nether_gold_ore + item: + type: nether_gold_ore + name: "&6Nether Gold Ore Sounds" + slot: 4 + NetherOre: + spell: sb-block-nether_ore + item: + type: nether_gold_ore + name: "&6Nether Ore Sounds" + slot: 5 + NetherSprouts: + spell: sb-block-nether_sprouts + item: + type: nether_sprouts + name: "&6Nether Sprouts Sounds" + slot: 6 + NetherWart: + spell: sb-block-nether_wart + item: + type: nether_wart + name: "&6Nether Wart Sounds" + slot: 7 + NetheriteBlock: + spell: sb-block-netherite_block + item: + type: netherite_block + name: "&6Netherite Block Sounds" + slot: 8 + Netherrack: + spell: sb-block-netherrack + item: + type: netherrack + name: "&6Netherrack Sounds" + slot: 9 + NoteBlock: + spell: sb-block-note_block + item: + type: note_block + name: "&6Note Block Sounds" + slot: 10 + Nylium: + spell: sb-block-nylium + item: + type: crimson_nylium + name: "&6Nylium Sounds" + slot: 11 + Piston: + spell: sb-block-piston + item: + type: piston + name: "&6Piston Sounds" + slot: 12 + Portal: + spell: sb-block-portal + item: + type: obsidian + name: "&6Portal Sounds" + slot: 13 + Pumpkin: + spell: sb-block-pumpkin + item: + type: pumpkin + name: "&6Pumpkin Sounds" + slot: 14 + RedstoneTorch: + spell: sb-block-redstone_torch + item: + type: redstone_torch + name: "&6Redstone Torch Sounds" + slot: 15 + RespawnAnchor: + spell: sb-block-respawn_anchor + item: + type: respawn_anchor + name: "&6Respawn Anchor Sounds" + slot: 16 + Roots: + spell: sb-block-roots + item: + type: crimson_roots + name: "&6Roots Sounds" + slot: 17 + Sand: + spell: sb-block-sand + item: + type: sand + name: "&6Sand Sounds" + slot: 18 + Scaffolding: + spell: sb-block-scaffolding + item: + type: scaffolding + name: "&6Scaffolding Sounds" + slot: 19 + Shroomlight: + spell: sb-block-shroomlight + item: + type: shroomlight + name: "&6Shroomlight Sounds" + slot: 20 + ShulkerBox: + spell: sb-block-shulker_box + item: + type: shroomlight + name: "&6Shulker Box Sounds" + slot: 21 + SlimeBlock: + spell: sb-block-slime_block + item: + type: slime_block + name: "&6Slime Block Sounds" + slot: 22 + SmithingTable: + spell: sb-block-smithing_table + item: + type: smithing_table + name: "&6Smithing Table Sounds" + slot: 23 + Smoker: + spell: sb-block-smoker + item: + type: smoker + name: "&6Smoker Sounds" + slot: 24 + Snow: + spell: sb-block-snow + item: + type: snow_block + name: "&6Snow Sounds" + slot: 25 + SoulSand: + spell: sb-block-soul_sand + item: + type: soul_sand + name: "&6Soul Sand Sounds" + slot: 26 + SoulSoil: + spell: sb-block-soul_soil + item: + type: soul_soil + name: "&6Soul Soil Sounds" + slot: 27 + Stem: + spell: sb-block-stem + item: + type: crimson_stem + name: "&6Stem Sounds" + slot: 28 + Stone: + spell: sb-block-stone + item: + type: stone + name: "&6Stone Sounds" + slot: 29 + StoneButton: + spell: sb-block-stone_button + item: + type: stone_button + name: "&6Stone Button Sounds" + slot: 30 + StonePressurePlate: + spell: sb-block-stone_pressure_plate + item: + type: stone_pressure_plate + name: "&6Stone Pressure Plate Sounds" + slot: 31 + SweetBerryBush: + spell: sb-block-sweet_berry_bush + item: + type: sweet_berries + name: "&6Sweet Berry Bush Sounds" + slot: 32 + Tripwire: + spell: sb-block-tripwire + item: + type: tripwire_hook + name: "&6Tripwire Sounds" + slot: 33 + Vine: + spell: sb-block-vine + item: + type: vine + name: "&6Vine Sounds" + slot: 34 + WartBlock: + spell: sb-block-wart_block + item: + type: warped_wart_block + name: "&6Wart Block Sounds" + slot: 35 + Water: + spell: sb-block-water + item: + type: water_bucket + name: "&6Water Sounds" + slot: 36 + WeepingVines: + spell: sb-block-weeping_vines + item: + type: weeping_vines + name: "&6Weeping Vines Sounds" + slot: 37 + WetGrass: + spell: sb-block-wet_grass + item: + type: kelp + name: "&6Wet Grass Sounds" + slot: 38 + Wood: + spell: sb-block-wood + item: + type: oak_log + name: "&6Wood Sounds" + slot: 39 + WoodenButton: + spell: sb-block-wooden_button + item: + type: oak_button + name: "&6Wooden Button Sounds" + slot: 40 + WoodenDoor: + spell: sb-block-wooden_door + item: + type: oak_door + name: "&6Wooden Door Sounds" + slot: 41 + WoodenPressurePlate: + spell: sb-block-wooden_pressure_plate + item: + type: oak_pressure_plate + name: "&6Wooden Pressure Plate Sounds" + slot: 42 + WoodenTrapdoor: + spell: sb-block-wooden_trapdoor + item: + type: oak_trapdoor + name: "&6Wooden Trapdoor Sounds" + slot: 43 + Wool: + spell: sb-block-wool + item: + type: white_wool + name: "&6Wool Sounds" + slot: 44 + Button_Previous_Page: + spell: sb-block1 + item: + type: arrow + name: "&6Previous Page" + slot: 47 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 49 +sb-block-ancient_debris: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ancient_debris Sounds" + options: + Sound_Break: + spell: sound-block-ancient_debris-break + item: + type: ancient_debris + name: "&eBreak Sound" + lore: + - "&7&oblock.ancient_debris.break" + slot: 0 + Sound_Fall: + spell: sound-block-ancient_debris-fall + item: + type: ancient_debris + name: "&eFall Sound" + lore: + - "&7&oblock.ancient_debris.fall" + slot: 1 + Sound_Hit: + spell: sound-block-ancient_debris-hit + item: + type: ancient_debris + name: "&eHit Sound" + lore: + - "&7&oblock.ancient_debris.hit" + slot: 2 + Sound_Place: + spell: sound-block-ancient_debris-place + item: + type: ancient_debris + name: "&ePlace Sound" + lore: + - "&7&oblock.ancient_debris.place" + slot: 3 + Sound_Step: + spell: sound-block-ancient_debris-step + item: + type: ancient_debris + name: "&eStep Sound" + lore: + - "&7&oblock.ancient_debris.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-anvil: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Anvil Sounds" + options: + Sound_Break: + spell: sound-block-anvil-break + item: + type: anvil + name: "&eBreak Sound" + lore: + - "&7&oblock.anvil.break" + slot: 0 + Sound_Destroy: + spell: sound-block-anvil-destroy + item: + type: anvil + name: "&eDestroy Sound" + lore: + - "&7&oblock.anvil.destroy" + slot: 1 + Sound_Fall: + spell: sound-block-anvil-fall + item: + type: anvil + name: "&eFall Sound" + lore: + - "&7&oblock.anvil.fall" + slot: 2 + Sound_Hit: + spell: sound-block-anvil-hit + item: + type: anvil + name: "&eHit Sound" + lore: + - "&7&oblock.anvil.hit" + slot: 3 + Sound_Land: + spell: sound-block-anvil-land + item: + type: anvil + name: "&eLand Sound" + lore: + - "&7&oblock.anvil.land" + slot: 4 + Sound_Place: + spell: sound-block-anvil-place + item: + type: anvil + name: "&ePlace Sound" + lore: + - "&7&oblock.anvil.place" + slot: 5 + Sound_Step: + spell: sound-block-anvil-step + item: + type: anvil + name: "&eStep Sound" + lore: + - "&7&oblock.anvil.step" + slot: 6 + Sound_Use: + spell: sound-block-anvil-use + item: + type: anvil + name: "&eUse Sound" + lore: + - "&7&oblock.anvil.use" + slot: 7 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-bamboo: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Bamboo Sounds" + options: + Sound_Break: + spell: sound-block-bamboo-break + item: + type: bamboo + name: "&eBreak Sound" + lore: + - "&7&oblock.bamboo.break" + slot: 0 + Sound_Fall: + spell: sound-block-bamboo-fall + item: + type: bamboo + name: "&eFall Sound" + lore: + - "&7&oblock.bamboo.fall" + slot: 1 + Sound_Hit: + spell: sound-block-bamboo-hit + item: + type: bamboo + name: "&eHit Sound" + lore: + - "&7&oblock.bamboo.hit" + slot: 2 + Sound_Place: + spell: sound-block-bamboo-place + item: + type: bamboo + name: "&ePlace Sound" + lore: + - "&7&oblock.bamboo.place" + slot: 3 + Sound_Step: + spell: sound-block-bamboo-step + item: + type: bamboo + name: "&eStep Sound" + lore: + - "&7&oblock.bamboo.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-bamboo_sapling: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Bamboo_sapling Sounds" + options: + Sound_Break: + spell: sound-block-bamboo_sapling-break + item: + type: bamboo + name: "&eBreak Sound" + lore: + - "&7&oblock.bamboo_sapling.break" + slot: 0 + Sound_Hit: + spell: sound-block-bamboo_sapling-hit + item: + type: bamboo + name: "&eHit Sound" + lore: + - "&7&oblock.bamboo_sapling.hit" + slot: 1 + Sound_Place: + spell: sound-block-bamboo_sapling-place + item: + type: bamboo + name: "&ePlace Sound" + lore: + - "&7&oblock.bamboo_sapling.place" + slot: 2 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-barrel: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Barrel Sounds" + options: + Sound_Close: + spell: sound-block-barrel-close + item: + type: barrel + name: "&eClose Sound" + lore: + - "&7&oblock.barrel.close" + slot: 0 + Sound_Open: + spell: sound-block-barrel-open + item: + type: barrel + name: "&eOpen Sound" + lore: + - "&7&oblock.barrel.open" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-basalt: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Basalt Sounds" + options: + Sound_Break: + spell: sound-block-basalt-break + item: + type: basalt + name: "&eBreak Sound" + lore: + - "&7&oblock.basalt.break" + slot: 0 + Sound_Fall: + spell: sound-block-basalt-fall + item: + type: basalt + name: "&eFall Sound" + lore: + - "&7&oblock.basalt.fall" + slot: 1 + Sound_Hit: + spell: sound-block-basalt-hit + item: + type: basalt + name: "&eHit Sound" + lore: + - "&7&oblock.basalt.hit" + slot: 2 + Sound_Place: + spell: sound-block-basalt-place + item: + type: basalt + name: "&ePlace Sound" + lore: + - "&7&oblock.basalt.place" + slot: 3 + Sound_Step: + spell: sound-block-basalt-step + item: + type: basalt + name: "&eStep Sound" + lore: + - "&7&oblock.basalt.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-beacon: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Beacon Sounds" + options: + Sound_Activate: + spell: sound-block-beacon-activate + item: + type: beacon + name: "&eActivate Sound" + lore: + - "&7&oblock.beacon.activate" + slot: 0 + Sound_Ambient: + spell: sound-block-beacon-ambient + item: + type: beacon + name: "&eAmbient Sound" + lore: + - "&7&oblock.beacon.ambient" + slot: 1 + Sound_Deactivate: + spell: sound-block-beacon-deactivate + item: + type: beacon + name: "&eDeactivate Sound" + lore: + - "&7&oblock.beacon.deactivate" + slot: 2 + Sound_PowerSelect: + spell: sound-block-beacon-power_select + item: + type: beacon + name: "&ePower Select Sound" + lore: + - "&7&oblock.beacon.power_select" + slot: 3 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-beehive: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Beehive Sounds" + options: + Sound_Drip: + spell: sound-block-beehive-drip + item: + type: beehive + name: "&eDrip Sound" + lore: + - "&7&oblock.beehive.drip" + slot: 0 + Sound_Enter: + spell: sound-block-beehive-enter + item: + type: beehive + name: "&eEnter Sound" + lore: + - "&7&oblock.beehive.enter" + slot: 1 + Sound_Exit: + spell: sound-block-beehive-exit + item: + type: beehive + name: "&eExit Sound" + lore: + - "&7&oblock.beehive.exit" + slot: 2 + Sound_Shear: + spell: sound-block-beehive-shear + item: + type: beehive + name: "&eShear Sound" + lore: + - "&7&oblock.beehive.shear" + slot: 3 + Sound_Work: + spell: sound-block-beehive-work + item: + type: beehive + name: "&eWork Sound" + lore: + - "&7&oblock.beehive.work" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-bell: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Bell Sounds" + options: + Sound_Resonate: + spell: sound-block-bell-resonate + item: + type: bell + name: "&eResonate Sound" + lore: + - "&7&oblock.bell.resonate" + slot: 0 + Sound_Use: + spell: sound-block-bell-use + item: + type: bell + name: "&eUse Sound" + lore: + - "&7&oblock.bell.use" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-blastfurnace: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Blastfurnace Sounds" + options: + Sound_FireCrackle: + spell: sound-block-blastfurnace-fire_crackle + item: + type: blast_furnace + name: "&eFire Crackle Sound" + lore: + - "&7&oblock.blastfurnace.fire_crackle" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-bone_block: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Bone_block Sounds" + options: + Sound_Break: + spell: sound-block-bone_block-break + item: + type: bone_block + name: "&eBreak Sound" + lore: + - "&7&oblock.bone_block.break" + slot: 0 + Sound_Fall: + spell: sound-block-bone_block-fall + item: + type: bone_block + name: "&eFall Sound" + lore: + - "&7&oblock.bone_block.fall" + slot: 1 + Sound_Hit: + spell: sound-block-bone_block-hit + item: + type: bone_block + name: "&eHit Sound" + lore: + - "&7&oblock.bone_block.hit" + slot: 2 + Sound_Place: + spell: sound-block-bone_block-place + item: + type: bone_block + name: "&ePlace Sound" + lore: + - "&7&oblock.bone_block.place" + slot: 3 + Sound_Step: + spell: sound-block-bone_block-step + item: + type: bone_block + name: "&eStep Sound" + lore: + - "&7&oblock.bone_block.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-brewing_stand: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Brewing_stand Sounds" + options: + Sound_Brew: + spell: sound-block-brewing_stand-brew + item: + type: brewing_stand + name: "&eBrew Sound" + lore: + - "&7&oblock.brewing_stand.brew" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-bubble_column: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Bubble_column Sounds" + options: + Sound_BubblePop: + spell: sound-block-bubble_column-bubble_pop + item: + type: light_blue_stained_glass + name: "&eBubble Pop Sound" + lore: + - "&7&oblock.bubble_column.bubble_pop" + slot: 0 + Sound_UpwardsAmbient: + spell: sound-block-bubble_column-upwards_ambient + item: + type: light_blue_stained_glass + name: "&eUpwards Ambient Sound" + lore: + - "&7&oblock.bubble_column.upwards_ambient" + slot: 1 + Sound_UpwardsInside: + spell: sound-block-bubble_column-upwards_inside + item: + type: light_blue_stained_glass + name: "&eUpwards Inside Sound" + lore: + - "&7&oblock.bubble_column.upwards_inside" + slot: 2 + Sound_WhirlpoolAmbient: + spell: sound-block-bubble_column-whirlpool_ambient + item: + type: light_blue_stained_glass + name: "&eWhirlpool Ambient Sound" + lore: + - "&7&oblock.bubble_column.whirlpool_ambient" + slot: 3 + Sound_WhirlpoolInside: + spell: sound-block-bubble_column-whirlpool_inside + item: + type: light_blue_stained_glass + name: "&eWhirlpool Inside Sound" + lore: + - "&7&oblock.bubble_column.whirlpool_inside" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-campfire: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Campfire Sounds" + options: + Sound_Crackle: + spell: sound-block-campfire-crackle + item: + type: campfire + name: "&eCrackle Sound" + lore: + - "&7&oblock.campfire.crackle" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-chain: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Chain Sounds" + options: + Sound_Break: + spell: sound-block-chain-break + item: + type: chain + name: "&eBreak Sound" + lore: + - "&7&oblock.chain.break" + slot: 0 + Sound_Fall: + spell: sound-block-chain-fall + item: + type: chain + name: "&eFall Sound" + lore: + - "&7&oblock.chain.fall" + slot: 1 + Sound_Hit: + spell: sound-block-chain-hit + item: + type: chain + name: "&eHit Sound" + lore: + - "&7&oblock.chain.hit" + slot: 2 + Sound_Place: + spell: sound-block-chain-place + item: + type: chain + name: "&ePlace Sound" + lore: + - "&7&oblock.chain.place" + slot: 3 + Sound_Step: + spell: sound-block-chain-step + item: + type: chain + name: "&eStep Sound" + lore: + - "&7&oblock.chain.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-chest: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Chest Sounds" + options: + Sound_Close: + spell: sound-block-chest-close + item: + type: chest + name: "&eClose Sound" + lore: + - "&7&oblock.chest.close" + slot: 0 + Sound_Locked: + spell: sound-block-chest-locked + item: + type: chest + name: "&eLocked Sound" + lore: + - "&7&oblock.chest.locked" + slot: 1 + Sound_Open: + spell: sound-block-chest-open + item: + type: chest + name: "&eOpen Sound" + lore: + - "&7&oblock.chest.open" + slot: 2 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-chorus_flower: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Chorus_flower Sounds" + options: + Sound_Death: + spell: sound-block-chorus_flower-death + item: + type: chorus_flower + name: "&eDeath Sound" + lore: + - "&7&oblock.chorus_flower.death" + slot: 0 + Sound_Grow: + spell: sound-block-chorus_flower-grow + item: + type: chorus_flower + name: "&eGrow Sound" + lore: + - "&7&oblock.chorus_flower.grow" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-comparator: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Comparator Sounds" + options: + Sound_Click: + spell: sound-block-comparator-click + item: + type: comparator + name: "&eClick Sound" + lore: + - "&7&oblock.comparator.click" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-composter: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Composter Sounds" + options: + Sound_Empty: + spell: sound-block-composter-empty + item: + type: composter + name: "&eEmpty Sound" + lore: + - "&7&oblock.composter.empty" + slot: 0 + Sound_Fill: + spell: sound-block-composter-fill + item: + type: composter + name: "&eFill Sound" + lore: + - "&7&oblock.composter.fill" + slot: 1 + Sound_FillSuccess: + spell: sound-block-composter-fill_success + item: + type: composter + name: "&eFill Success Sound" + lore: + - "&7&oblock.composter.fill_success" + slot: 2 + Sound_Ready: + spell: sound-block-composter-ready + item: + type: composter + name: "&eReady Sound" + lore: + - "&7&oblock.composter.ready" + slot: 3 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-conduit: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Conduit Sounds" + options: + Sound_Activate: + spell: sound-block-conduit-activate + item: + type: conduit + name: "&eActivate Sound" + lore: + - "&7&oblock.conduit.activate" + slot: 0 + Sound_Ambient: + spell: sound-block-conduit-ambient + item: + type: conduit + name: "&eAmbient Sound" + lore: + - "&7&oblock.conduit.ambient" + slot: 1 + Sound_Deactivate: + spell: sound-block-conduit-deactivate + item: + type: conduit + name: "&eDeactivate Sound" + lore: + - "&7&oblock.conduit.deactivate" + slot: 2 + Ambient: + spell: sb-block-conduit-ambient + item: + type: conduit + name: "&6Ambient Sounds" + slot: 3 + Attack: + spell: sb-block-conduit-attack + item: + type: conduit + name: "&6Attack Sounds" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-conduit-ambient: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ambient Sounds" + options: + Sound_Short: + spell: sound-block-conduit-ambient-short + item: + type: conduit + name: "&eShort Sound" + lore: + - "&7&oblock.conduit.ambient.short" + slot: 0 + Button_Back: + spell: sb-block-conduit + item: + type: book + name: "&6Back" + slot: 13 +sb-block-conduit-attack: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Attack Sounds" + options: + Sound_Target: + spell: sound-block-conduit-attack-target + item: + type: conduit + name: "&eTarget Sound" + lore: + - "&7&oblock.conduit.attack.target" + slot: 0 + Button_Back: + spell: sb-block-conduit + item: + type: book + name: "&6Back" + slot: 13 +sb-block-coral_block: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Coral_block Sounds" + options: + Sound_Break: + spell: sound-block-coral_block-break + item: + type: horn_coral + name: "&eBreak Sound" + lore: + - "&7&oblock.coral_block.break" + slot: 0 + Sound_Fall: + spell: sound-block-coral_block-fall + item: + type: horn_coral + name: "&eFall Sound" + lore: + - "&7&oblock.coral_block.fall" + slot: 1 + Sound_Hit: + spell: sound-block-coral_block-hit + item: + type: horn_coral + name: "&eHit Sound" + lore: + - "&7&oblock.coral_block.hit" + slot: 2 + Sound_Place: + spell: sound-block-coral_block-place + item: + type: horn_coral + name: "&ePlace Sound" + lore: + - "&7&oblock.coral_block.place" + slot: 3 + Sound_Step: + spell: sound-block-coral_block-step + item: + type: horn_coral + name: "&eStep Sound" + lore: + - "&7&oblock.coral_block.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-crop: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Crop Sounds" + options: + Sound_Break: + spell: sound-block-crop-break + item: + type: wheat_seeds + name: "&eBreak Sound" + lore: + - "&7&oblock.crop.break" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-dispenser: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Dispenser Sounds" + options: + Sound_Dispense: + spell: sound-block-dispenser-dispense + item: + type: dispenser + name: "&eDispense Sound" + lore: + - "&7&oblock.dispenser.dispense" + slot: 0 + Sound_Fail: + spell: sound-block-dispenser-fail + item: + type: dispenser + name: "&eFail Sound" + lore: + - "&7&oblock.dispenser.fail" + slot: 1 + Sound_Launch: + spell: sound-block-dispenser-launch + item: + type: dispenser + name: "&eLaunch Sound" + lore: + - "&7&oblock.dispenser.launch" + slot: 2 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-enchantment_table: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Enchantment_table Sounds" + options: + Sound_Use: + spell: sound-block-enchantment_table-use + item: + type: enchanting_table + name: "&eUse Sound" + lore: + - "&7&oblock.enchantment_table.use" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-end_gateway: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9End_gateway Sounds" + options: + Sound_Spawn: + spell: sound-block-end_gateway-spawn + item: + type: end_crystal + name: "&eSpawn Sound" + lore: + - "&7&oblock.end_gateway.spawn" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-end_portal: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9End_portal Sounds" + options: + Sound_Spawn: + spell: sound-block-end_portal-spawn + item: + type: ender_eye + name: "&eSpawn Sound" + lore: + - "&7&oblock.end_portal.spawn" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-end_portal_frame: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9End_portal_frame Sounds" + options: + Sound_Fill: + spell: sound-block-end_portal_frame-fill + item: + type: end_portal_frame + name: "&eFill Sound" + lore: + - "&7&oblock.end_portal_frame.fill" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-ender_chest: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ender_chest Sounds" + options: + Sound_Close: + spell: sound-block-ender_chest-close + item: + type: ender_chest + name: "&eClose Sound" + lore: + - "&7&oblock.ender_chest.close" + slot: 0 + Sound_Open: + spell: sound-block-ender_chest-open + item: + type: ender_chest + name: "&eOpen Sound" + lore: + - "&7&oblock.ender_chest.open" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-fence_gate: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Fence_gate Sounds" + options: + Sound_Close: + spell: sound-block-fence_gate-close + item: + type: oak_fence_gate + name: "&eClose Sound" + lore: + - "&7&oblock.fence_gate.close" + slot: 0 + Sound_Open: + spell: sound-block-fence_gate-open + item: + type: oak_fence_gate + name: "&eOpen Sound" + lore: + - "&7&oblock.fence_gate.open" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-fire: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Fire Sounds" + options: + Sound_Ambient: + spell: sound-block-fire-ambient + item: + type: blaze_powder + name: "&eAmbient Sound" + lore: + - "&7&oblock.fire.ambient" + slot: 0 + Sound_Extinguish: + spell: sound-block-fire-extinguish + item: + type: blaze_powder + name: "&eExtinguish Sound" + lore: + - "&7&oblock.fire.extinguish" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-fungus: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Fungus Sounds" + options: + Sound_Break: + spell: sound-block-fungus-break + item: + type: crimson_fungus + name: "&eBreak Sound" + lore: + - "&7&oblock.fungus.break" + slot: 0 + Sound_Fall: + spell: sound-block-fungus-fall + item: + type: crimson_fungus + name: "&eFall Sound" + lore: + - "&7&oblock.fungus.fall" + slot: 1 + Sound_Hit: + spell: sound-block-fungus-hit + item: + type: crimson_fungus + name: "&eHit Sound" + lore: + - "&7&oblock.fungus.hit" + slot: 2 + Sound_Place: + spell: sound-block-fungus-place + item: + type: crimson_fungus + name: "&ePlace Sound" + lore: + - "&7&oblock.fungus.place" + slot: 3 + Sound_Step: + spell: sound-block-fungus-step + item: + type: crimson_fungus + name: "&eStep Sound" + lore: + - "&7&oblock.fungus.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-furnace: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Furnace Sounds" + options: + Sound_FireCrackle: + spell: sound-block-furnace-fire_crackle + item: + type: furnace + name: "&eFire Crackle Sound" + lore: + - "&7&oblock.furnace.fire_crackle" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-gilded_blackstone: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Gilded_blackstone Sounds" + options: + Sound_Break: + spell: sound-block-gilded_blackstone-break + item: + type: gilded_blackstone + name: "&eBreak Sound" + lore: + - "&7&oblock.gilded_blackstone.break" + slot: 0 + Sound_Fall: + spell: sound-block-gilded_blackstone-fall + item: + type: gilded_blackstone + name: "&eFall Sound" + lore: + - "&7&oblock.gilded_blackstone.fall" + slot: 1 + Sound_Hit: + spell: sound-block-gilded_blackstone-hit + item: + type: gilded_blackstone + name: "&eHit Sound" + lore: + - "&7&oblock.gilded_blackstone.hit" + slot: 2 + Sound_Place: + spell: sound-block-gilded_blackstone-place + item: + type: gilded_blackstone + name: "&ePlace Sound" + lore: + - "&7&oblock.gilded_blackstone.place" + slot: 3 + Sound_Step: + spell: sound-block-gilded_blackstone-step + item: + type: gilded_blackstone + name: "&eStep Sound" + lore: + - "&7&oblock.gilded_blackstone.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-glass: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Glass Sounds" + options: + Sound_Break: + spell: sound-block-glass-break + item: + type: glass + name: "&eBreak Sound" + lore: + - "&7&oblock.glass.break" + slot: 0 + Sound_Fall: + spell: sound-block-glass-fall + item: + type: glass + name: "&eFall Sound" + lore: + - "&7&oblock.glass.fall" + slot: 1 + Sound_Hit: + spell: sound-block-glass-hit + item: + type: glass + name: "&eHit Sound" + lore: + - "&7&oblock.glass.hit" + slot: 2 + Sound_Place: + spell: sound-block-glass-place + item: + type: glass + name: "&ePlace Sound" + lore: + - "&7&oblock.glass.place" + slot: 3 + Sound_Step: + spell: sound-block-glass-step + item: + type: glass + name: "&eStep Sound" + lore: + - "&7&oblock.glass.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-grass: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Grass Sounds" + options: + Sound_Break: + spell: sound-block-grass-break + item: + type: grass + name: "&eBreak Sound" + lore: + - "&7&oblock.grass.break" + slot: 0 + Sound_Fall: + spell: sound-block-grass-fall + item: + type: grass + name: "&eFall Sound" + lore: + - "&7&oblock.grass.fall" + slot: 1 + Sound_Hit: + spell: sound-block-grass-hit + item: + type: grass + name: "&eHit Sound" + lore: + - "&7&oblock.grass.hit" + slot: 2 + Sound_Place: + spell: sound-block-grass-place + item: + type: grass + name: "&ePlace Sound" + lore: + - "&7&oblock.grass.place" + slot: 3 + Sound_Step: + spell: sound-block-grass-step + item: + type: grass + name: "&eStep Sound" + lore: + - "&7&oblock.grass.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-gravel: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Gravel Sounds" + options: + Sound_Break: + spell: sound-block-gravel-break + item: + type: gravel + name: "&eBreak Sound" + lore: + - "&7&oblock.gravel.break" + slot: 0 + Sound_Fall: + spell: sound-block-gravel-fall + item: + type: gravel + name: "&eFall Sound" + lore: + - "&7&oblock.gravel.fall" + slot: 1 + Sound_Hit: + spell: sound-block-gravel-hit + item: + type: gravel + name: "&eHit Sound" + lore: + - "&7&oblock.gravel.hit" + slot: 2 + Sound_Place: + spell: sound-block-gravel-place + item: + type: gravel + name: "&ePlace Sound" + lore: + - "&7&oblock.gravel.place" + slot: 3 + Sound_Step: + spell: sound-block-gravel-step + item: + type: gravel + name: "&eStep Sound" + lore: + - "&7&oblock.gravel.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-grindstone: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Grindstone Sounds" + options: + Sound_Use: + spell: sound-block-grindstone-use + item: + type: grindstone + name: "&eUse Sound" + lore: + - "&7&oblock.grindstone.use" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-honey_block: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Honey_block Sounds" + options: + Sound_Break: + spell: sound-block-honey_block-break + item: + type: honey_block + name: "&eBreak Sound" + lore: + - "&7&oblock.honey_block.break" + slot: 0 + Sound_Fall: + spell: sound-block-honey_block-fall + item: + type: honey_block + name: "&eFall Sound" + lore: + - "&7&oblock.honey_block.fall" + slot: 1 + Sound_Hit: + spell: sound-block-honey_block-hit + item: + type: honey_block + name: "&eHit Sound" + lore: + - "&7&oblock.honey_block.hit" + slot: 2 + Sound_Place: + spell: sound-block-honey_block-place + item: + type: honey_block + name: "&ePlace Sound" + lore: + - "&7&oblock.honey_block.place" + slot: 3 + Sound_Slide: + spell: sound-block-honey_block-slide + item: + type: honey_block + name: "&eSlide Sound" + lore: + - "&7&oblock.honey_block.slide" + slot: 4 + Sound_Step: + spell: sound-block-honey_block-step + item: + type: honey_block + name: "&eStep Sound" + lore: + - "&7&oblock.honey_block.step" + slot: 5 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-iron_door: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Iron_door Sounds" + options: + Sound_Close: + spell: sound-block-iron_door-close + item: + type: iron_door + name: "&eClose Sound" + lore: + - "&7&oblock.iron_door.close" + slot: 0 + Sound_Open: + spell: sound-block-iron_door-open + item: + type: iron_door + name: "&eOpen Sound" + lore: + - "&7&oblock.iron_door.open" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-iron_trapdoor: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Iron_trapdoor Sounds" + options: + Sound_Close: + spell: sound-block-iron_trapdoor-close + item: + type: iron_trapdoor + name: "&eClose Sound" + lore: + - "&7&oblock.iron_trapdoor.close" + slot: 0 + Sound_Open: + spell: sound-block-iron_trapdoor-open + item: + type: iron_trapdoor + name: "&eOpen Sound" + lore: + - "&7&oblock.iron_trapdoor.open" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-ladder: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ladder Sounds" + options: + Sound_Break: + spell: sound-block-ladder-break + item: + type: ladder + name: "&eBreak Sound" + lore: + - "&7&oblock.ladder.break" + slot: 0 + Sound_Fall: + spell: sound-block-ladder-fall + item: + type: ladder + name: "&eFall Sound" + lore: + - "&7&oblock.ladder.fall" + slot: 1 + Sound_Hit: + spell: sound-block-ladder-hit + item: + type: ladder + name: "&eHit Sound" + lore: + - "&7&oblock.ladder.hit" + slot: 2 + Sound_Place: + spell: sound-block-ladder-place + item: + type: ladder + name: "&ePlace Sound" + lore: + - "&7&oblock.ladder.place" + slot: 3 + Sound_Step: + spell: sound-block-ladder-step + item: + type: ladder + name: "&eStep Sound" + lore: + - "&7&oblock.ladder.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-lantern: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Lantern Sounds" + options: + Sound_Break: + spell: sound-block-lantern-break + item: + type: lantern + name: "&eBreak Sound" + lore: + - "&7&oblock.lantern.break" + slot: 0 + Sound_Fall: + spell: sound-block-lantern-fall + item: + type: lantern + name: "&eFall Sound" + lore: + - "&7&oblock.lantern.fall" + slot: 1 + Sound_Hit: + spell: sound-block-lantern-hit + item: + type: lantern + name: "&eHit Sound" + lore: + - "&7&oblock.lantern.hit" + slot: 2 + Sound_Place: + spell: sound-block-lantern-place + item: + type: lantern + name: "&ePlace Sound" + lore: + - "&7&oblock.lantern.place" + slot: 3 + Sound_Step: + spell: sound-block-lantern-step + item: + type: lantern + name: "&eStep Sound" + lore: + - "&7&oblock.lantern.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-lava: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Lava Sounds" + options: + Sound_Ambient: + spell: sound-block-lava-ambient + item: + type: lava_bucket + name: "&eAmbient Sound" + lore: + - "&7&oblock.lava.ambient" + slot: 0 + Sound_Extinguish: + spell: sound-block-lava-extinguish + item: + type: lava_bucket + name: "&eExtinguish Sound" + lore: + - "&7&oblock.lava.extinguish" + slot: 1 + Sound_Pop: + spell: sound-block-lava-pop + item: + type: lava_bucket + name: "&ePop Sound" + lore: + - "&7&oblock.lava.pop" + slot: 2 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-lever: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Lever Sounds" + options: + Sound_Click: + spell: sound-block-lever-click + item: + type: lever + name: "&eClick Sound" + lore: + - "&7&oblock.lever.click" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-lily_pad: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Lily_pad Sounds" + options: + Sound_Place: + spell: sound-block-lily_pad-place + item: + type: lily_pad + name: "&ePlace Sound" + lore: + - "&7&oblock.lily_pad.place" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-lodestone: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Lodestone Sounds" + options: + Sound_Break: + spell: sound-block-lodestone-break + item: + type: lodestone + name: "&eBreak Sound" + lore: + - "&7&oblock.lodestone.break" + slot: 0 + Sound_Fall: + spell: sound-block-lodestone-fall + item: + type: lodestone + name: "&eFall Sound" + lore: + - "&7&oblock.lodestone.fall" + slot: 1 + Sound_Hit: + spell: sound-block-lodestone-hit + item: + type: lodestone + name: "&eHit Sound" + lore: + - "&7&oblock.lodestone.hit" + slot: 2 + Sound_Place: + spell: sound-block-lodestone-place + item: + type: lodestone + name: "&ePlace Sound" + lore: + - "&7&oblock.lodestone.place" + slot: 3 + Sound_Step: + spell: sound-block-lodestone-step + item: + type: lodestone + name: "&eStep Sound" + lore: + - "&7&oblock.lodestone.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-metal: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Metal Sounds" + options: + Sound_Break: + spell: sound-block-metal-break + item: + type: iron_block + name: "&eBreak Sound" + lore: + - "&7&oblock.metal.break" + slot: 0 + Sound_Fall: + spell: sound-block-metal-fall + item: + type: iron_block + name: "&eFall Sound" + lore: + - "&7&oblock.metal.fall" + slot: 1 + Sound_Hit: + spell: sound-block-metal-hit + item: + type: iron_block + name: "&eHit Sound" + lore: + - "&7&oblock.metal.hit" + slot: 2 + Sound_Place: + spell: sound-block-metal-place + item: + type: iron_block + name: "&ePlace Sound" + lore: + - "&7&oblock.metal.place" + slot: 3 + Sound_Step: + spell: sound-block-metal-step + item: + type: iron_block + name: "&eStep Sound" + lore: + - "&7&oblock.metal.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-metal_pressure_plate: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Metal_pressure_plate Sounds" + options: + Sound_ClickOff: + spell: sound-block-metal_pressure_plate-click_off + item: + type: heavy_weighted_pressure_plate + name: "&eClick Off Sound" + lore: + - "&7&oblock.metal_pressure_plate.click_off" + slot: 0 + Sound_ClickON: + spell: sound-block-metal_pressure_plate-click_on + item: + type: heavy_weighted_pressure_plate + name: "&eClick ON Sound" + lore: + - "&7&oblock.metal_pressure_plate.click_on" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-nether_bricks: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Nether_bricks Sounds" + options: + Sound_Break: + spell: sound-block-nether_bricks-break + item: + type: nether_bricks + name: "&eBreak Sound" + lore: + - "&7&oblock.nether_bricks.break" + slot: 0 + Sound_Fall: + spell: sound-block-nether_bricks-fall + item: + type: nether_bricks + name: "&eFall Sound" + lore: + - "&7&oblock.nether_bricks.fall" + slot: 1 + Sound_Hit: + spell: sound-block-nether_bricks-hit + item: + type: nether_bricks + name: "&eHit Sound" + lore: + - "&7&oblock.nether_bricks.hit" + slot: 2 + Sound_Place: + spell: sound-block-nether_bricks-place + item: + type: nether_bricks + name: "&ePlace Sound" + lore: + - "&7&oblock.nether_bricks.place" + slot: 3 + Sound_Step: + spell: sound-block-nether_bricks-step + item: + type: nether_bricks + name: "&eStep Sound" + lore: + - "&7&oblock.nether_bricks.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-nether_gold_ore: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Nether_gold_ore Sounds" + options: + Sound_Break: + spell: sound-block-nether_gold_ore-break + item: + type: nether_gold_ore + name: "&eBreak Sound" + lore: + - "&7&oblock.nether_gold_ore.break" + slot: 0 + Sound_Fall: + spell: sound-block-nether_gold_ore-fall + item: + type: nether_gold_ore + name: "&eFall Sound" + lore: + - "&7&oblock.nether_gold_ore.fall" + slot: 1 + Sound_Hit: + spell: sound-block-nether_gold_ore-hit + item: + type: nether_gold_ore + name: "&eHit Sound" + lore: + - "&7&oblock.nether_gold_ore.hit" + slot: 2 + Sound_Place: + spell: sound-block-nether_gold_ore-place + item: + type: nether_gold_ore + name: "&ePlace Sound" + lore: + - "&7&oblock.nether_gold_ore.place" + slot: 3 + Sound_Step: + spell: sound-block-nether_gold_ore-step + item: + type: nether_gold_ore + name: "&eStep Sound" + lore: + - "&7&oblock.nether_gold_ore.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-nether_ore: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Nether_ore Sounds" + options: + Sound_Break: + spell: sound-block-nether_ore-break + item: + type: nether_gold_ore + name: "&eBreak Sound" + lore: + - "&7&oblock.nether_ore.break" + slot: 0 + Sound_Fall: + spell: sound-block-nether_ore-fall + item: + type: nether_gold_ore + name: "&eFall Sound" + lore: + - "&7&oblock.nether_ore.fall" + slot: 1 + Sound_Hit: + spell: sound-block-nether_ore-hit + item: + type: nether_gold_ore + name: "&eHit Sound" + lore: + - "&7&oblock.nether_ore.hit" + slot: 2 + Sound_Place: + spell: sound-block-nether_ore-place + item: + type: nether_gold_ore + name: "&ePlace Sound" + lore: + - "&7&oblock.nether_ore.place" + slot: 3 + Sound_Step: + spell: sound-block-nether_ore-step + item: + type: nether_gold_ore + name: "&eStep Sound" + lore: + - "&7&oblock.nether_ore.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-nether_sprouts: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Nether_sprouts Sounds" + options: + Sound_Break: + spell: sound-block-nether_sprouts-break + item: + type: nether_sprouts + name: "&eBreak Sound" + lore: + - "&7&oblock.nether_sprouts.break" + slot: 0 + Sound_Fall: + spell: sound-block-nether_sprouts-fall + item: + type: nether_sprouts + name: "&eFall Sound" + lore: + - "&7&oblock.nether_sprouts.fall" + slot: 1 + Sound_Hit: + spell: sound-block-nether_sprouts-hit + item: + type: nether_sprouts + name: "&eHit Sound" + lore: + - "&7&oblock.nether_sprouts.hit" + slot: 2 + Sound_Place: + spell: sound-block-nether_sprouts-place + item: + type: nether_sprouts + name: "&ePlace Sound" + lore: + - "&7&oblock.nether_sprouts.place" + slot: 3 + Sound_Step: + spell: sound-block-nether_sprouts-step + item: + type: nether_sprouts + name: "&eStep Sound" + lore: + - "&7&oblock.nether_sprouts.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-nether_wart: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Nether_wart Sounds" + options: + Sound_Break: + spell: sound-block-nether_wart-break + item: + type: nether_wart + name: "&eBreak Sound" + lore: + - "&7&oblock.nether_wart.break" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-netherite_block: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Netherite_block Sounds" + options: + Sound_Break: + spell: sound-block-netherite_block-break + item: + type: netherite_block + name: "&eBreak Sound" + lore: + - "&7&oblock.netherite_block.break" + slot: 0 + Sound_Fall: + spell: sound-block-netherite_block-fall + item: + type: netherite_block + name: "&eFall Sound" + lore: + - "&7&oblock.netherite_block.fall" + slot: 1 + Sound_Hit: + spell: sound-block-netherite_block-hit + item: + type: netherite_block + name: "&eHit Sound" + lore: + - "&7&oblock.netherite_block.hit" + slot: 2 + Sound_Place: + spell: sound-block-netherite_block-place + item: + type: netherite_block + name: "&ePlace Sound" + lore: + - "&7&oblock.netherite_block.place" + slot: 3 + Sound_Step: + spell: sound-block-netherite_block-step + item: + type: netherite_block + name: "&eStep Sound" + lore: + - "&7&oblock.netherite_block.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-netherrack: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Netherrack Sounds" + options: + Sound_Break: + spell: sound-block-netherrack-break + item: + type: netherrack + name: "&eBreak Sound" + lore: + - "&7&oblock.netherrack.break" + slot: 0 + Sound_Fall: + spell: sound-block-netherrack-fall + item: + type: netherrack + name: "&eFall Sound" + lore: + - "&7&oblock.netherrack.fall" + slot: 1 + Sound_Hit: + spell: sound-block-netherrack-hit + item: + type: netherrack + name: "&eHit Sound" + lore: + - "&7&oblock.netherrack.hit" + slot: 2 + Sound_Place: + spell: sound-block-netherrack-place + item: + type: netherrack + name: "&ePlace Sound" + lore: + - "&7&oblock.netherrack.place" + slot: 3 + Sound_Step: + spell: sound-block-netherrack-step + item: + type: netherrack + name: "&eStep Sound" + lore: + - "&7&oblock.netherrack.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-note_block: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Note_block Sounds" + options: + Sound_Banjo: + spell: sound-block-note_block-banjo + item: + type: note_block + name: "&eBanjo Sound" + lore: + - "&7&oblock.note_block.banjo" + slot: 0 + Sound_Basedrum: + spell: sound-block-note_block-basedrum + item: + type: note_block + name: "&eBasedrum Sound" + lore: + - "&7&oblock.note_block.basedrum" + slot: 1 + Sound_Bass: + spell: sound-block-note_block-bass + item: + type: note_block + name: "&eBass Sound" + lore: + - "&7&oblock.note_block.bass" + slot: 2 + Sound_Bell: + spell: sound-block-note_block-bell + item: + type: note_block + name: "&eBell Sound" + lore: + - "&7&oblock.note_block.bell" + slot: 3 + Sound_Bit: + spell: sound-block-note_block-bit + item: + type: note_block + name: "&eBit Sound" + lore: + - "&7&oblock.note_block.bit" + slot: 4 + Sound_Chime: + spell: sound-block-note_block-chime + item: + type: note_block + name: "&eChime Sound" + lore: + - "&7&oblock.note_block.chime" + slot: 5 + Sound_CowBell: + spell: sound-block-note_block-cow_bell + item: + type: note_block + name: "&eCow Bell Sound" + lore: + - "&7&oblock.note_block.cow_bell" + slot: 6 + Sound_Didgeridoo: + spell: sound-block-note_block-didgeridoo + item: + type: note_block + name: "&eDidgeridoo Sound" + lore: + - "&7&oblock.note_block.didgeridoo" + slot: 7 + Sound_Flute: + spell: sound-block-note_block-flute + item: + type: note_block + name: "&eFlute Sound" + lore: + - "&7&oblock.note_block.flute" + slot: 8 + Sound_Guitar: + spell: sound-block-note_block-guitar + item: + type: note_block + name: "&eGuitar Sound" + lore: + - "&7&oblock.note_block.guitar" + slot: 9 + Sound_Harp: + spell: sound-block-note_block-harp + item: + type: note_block + name: "&eHarp Sound" + lore: + - "&7&oblock.note_block.harp" + slot: 10 + Sound_Hat: + spell: sound-block-note_block-hat + item: + type: note_block + name: "&eHat Sound" + lore: + - "&7&oblock.note_block.hat" + slot: 11 + Sound_IronXylophone: + spell: sound-block-note_block-iron_xylophone + item: + type: note_block + name: "&eIron Xylophone Sound" + lore: + - "&7&oblock.note_block.iron_xylophone" + slot: 12 + Sound_Pling: + spell: sound-block-note_block-pling + item: + type: note_block + name: "&ePling Sound" + lore: + - "&7&oblock.note_block.pling" + slot: 13 + Sound_Snare: + spell: sound-block-note_block-snare + item: + type: note_block + name: "&eSnare Sound" + lore: + - "&7&oblock.note_block.snare" + slot: 14 + Sound_Xylophone: + spell: sound-block-note_block-xylophone + item: + type: note_block + name: "&eXylophone Sound" + lore: + - "&7&oblock.note_block.xylophone" + slot: 15 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 22 +sb-block-nylium: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Nylium Sounds" + options: + Sound_Break: + spell: sound-block-nylium-break + item: + type: crimson_nylium + name: "&eBreak Sound" + lore: + - "&7&oblock.nylium.break" + slot: 0 + Sound_Fall: + spell: sound-block-nylium-fall + item: + type: crimson_nylium + name: "&eFall Sound" + lore: + - "&7&oblock.nylium.fall" + slot: 1 + Sound_Hit: + spell: sound-block-nylium-hit + item: + type: crimson_nylium + name: "&eHit Sound" + lore: + - "&7&oblock.nylium.hit" + slot: 2 + Sound_Place: + spell: sound-block-nylium-place + item: + type: crimson_nylium + name: "&ePlace Sound" + lore: + - "&7&oblock.nylium.place" + slot: 3 + Sound_Step: + spell: sound-block-nylium-step + item: + type: crimson_nylium + name: "&eStep Sound" + lore: + - "&7&oblock.nylium.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-piston: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Piston Sounds" + options: + Sound_Contract: + spell: sound-block-piston-contract + item: + type: piston + name: "&eContract Sound" + lore: + - "&7&oblock.piston.contract" + slot: 0 + Sound_Extend: + spell: sound-block-piston-extend + item: + type: piston + name: "&eExtend Sound" + lore: + - "&7&oblock.piston.extend" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-portal: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Portal Sounds" + options: + Sound_Ambient: + spell: sound-block-portal-ambient + item: + type: obsidian + name: "&eAmbient Sound" + lore: + - "&7&oblock.portal.ambient" + slot: 0 + Sound_Travel: + spell: sound-block-portal-travel + item: + type: obsidian + name: "&eTravel Sound" + lore: + - "&7&oblock.portal.travel" + slot: 1 + Sound_Trigger: + spell: sound-block-portal-trigger + item: + type: obsidian + name: "&eTrigger Sound" + lore: + - "&7&oblock.portal.trigger" + slot: 2 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-pumpkin: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Pumpkin Sounds" + options: + Sound_Carve: + spell: sound-block-pumpkin-carve + item: + type: pumpkin + name: "&eCarve Sound" + lore: + - "&7&oblock.pumpkin.carve" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-redstone_torch: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Redstone_torch Sounds" + options: + Sound_Burnout: + spell: sound-block-redstone_torch-burnout + item: + type: redstone_torch + name: "&eBurnout Sound" + lore: + - "&7&oblock.redstone_torch.burnout" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-respawn_anchor: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Respawn_anchor Sounds" + options: + Sound_Ambient: + spell: sound-block-respawn_anchor-ambient + item: + type: respawn_anchor + name: "&eAmbient Sound" + lore: + - "&7&oblock.respawn_anchor.ambient" + slot: 0 + Sound_Charge: + spell: sound-block-respawn_anchor-charge + item: + type: respawn_anchor + name: "&eCharge Sound" + lore: + - "&7&oblock.respawn_anchor.charge" + slot: 1 + Sound_Deplete: + spell: sound-block-respawn_anchor-deplete + item: + type: respawn_anchor + name: "&eDeplete Sound" + lore: + - "&7&oblock.respawn_anchor.deplete" + slot: 2 + Sound_SetSpawn: + spell: sound-block-respawn_anchor-set_spawn + item: + type: respawn_anchor + name: "&eSet Spawn Sound" + lore: + - "&7&oblock.respawn_anchor.set_spawn" + slot: 3 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-roots: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Roots Sounds" + options: + Sound_Break: + spell: sound-block-roots-break + item: + type: crimson_roots + name: "&eBreak Sound" + lore: + - "&7&oblock.roots.break" + slot: 0 + Sound_Fall: + spell: sound-block-roots-fall + item: + type: crimson_roots + name: "&eFall Sound" + lore: + - "&7&oblock.roots.fall" + slot: 1 + Sound_Hit: + spell: sound-block-roots-hit + item: + type: crimson_roots + name: "&eHit Sound" + lore: + - "&7&oblock.roots.hit" + slot: 2 + Sound_Place: + spell: sound-block-roots-place + item: + type: crimson_roots + name: "&ePlace Sound" + lore: + - "&7&oblock.roots.place" + slot: 3 + Sound_Step: + spell: sound-block-roots-step + item: + type: crimson_roots + name: "&eStep Sound" + lore: + - "&7&oblock.roots.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-sand: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Sand Sounds" + options: + Sound_Break: + spell: sound-block-sand-break + item: + type: sand + name: "&eBreak Sound" + lore: + - "&7&oblock.sand.break" + slot: 0 + Sound_Fall: + spell: sound-block-sand-fall + item: + type: sand + name: "&eFall Sound" + lore: + - "&7&oblock.sand.fall" + slot: 1 + Sound_Hit: + spell: sound-block-sand-hit + item: + type: sand + name: "&eHit Sound" + lore: + - "&7&oblock.sand.hit" + slot: 2 + Sound_Place: + spell: sound-block-sand-place + item: + type: sand + name: "&ePlace Sound" + lore: + - "&7&oblock.sand.place" + slot: 3 + Sound_Step: + spell: sound-block-sand-step + item: + type: sand + name: "&eStep Sound" + lore: + - "&7&oblock.sand.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-scaffolding: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Scaffolding Sounds" + options: + Sound_Break: + spell: sound-block-scaffolding-break + item: + type: scaffolding + name: "&eBreak Sound" + lore: + - "&7&oblock.scaffolding.break" + slot: 0 + Sound_Fall: + spell: sound-block-scaffolding-fall + item: + type: scaffolding + name: "&eFall Sound" + lore: + - "&7&oblock.scaffolding.fall" + slot: 1 + Sound_Hit: + spell: sound-block-scaffolding-hit + item: + type: scaffolding + name: "&eHit Sound" + lore: + - "&7&oblock.scaffolding.hit" + slot: 2 + Sound_Place: + spell: sound-block-scaffolding-place + item: + type: scaffolding + name: "&ePlace Sound" + lore: + - "&7&oblock.scaffolding.place" + slot: 3 + Sound_Step: + spell: sound-block-scaffolding-step + item: + type: scaffolding + name: "&eStep Sound" + lore: + - "&7&oblock.scaffolding.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-shroomlight: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Shroomlight Sounds" + options: + Sound_Break: + spell: sound-block-shroomlight-break + item: + type: shroomlight + name: "&eBreak Sound" + lore: + - "&7&oblock.shroomlight.break" + slot: 0 + Sound_Fall: + spell: sound-block-shroomlight-fall + item: + type: shroomlight + name: "&eFall Sound" + lore: + - "&7&oblock.shroomlight.fall" + slot: 1 + Sound_Hit: + spell: sound-block-shroomlight-hit + item: + type: shroomlight + name: "&eHit Sound" + lore: + - "&7&oblock.shroomlight.hit" + slot: 2 + Sound_Place: + spell: sound-block-shroomlight-place + item: + type: shroomlight + name: "&ePlace Sound" + lore: + - "&7&oblock.shroomlight.place" + slot: 3 + Sound_Step: + spell: sound-block-shroomlight-step + item: + type: shroomlight + name: "&eStep Sound" + lore: + - "&7&oblock.shroomlight.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-shulker_box: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Shulker_box Sounds" + options: + Sound_Close: + spell: sound-block-shulker_box-close + item: + type: shroomlight + name: "&eClose Sound" + lore: + - "&7&oblock.shulker_box.close" + slot: 0 + Sound_Open: + spell: sound-block-shulker_box-open + item: + type: shroomlight + name: "&eOpen Sound" + lore: + - "&7&oblock.shulker_box.open" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-slime_block: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Slime_block Sounds" + options: + Sound_Break: + spell: sound-block-slime_block-break + item: + type: slime_block + name: "&eBreak Sound" + lore: + - "&7&oblock.slime_block.break" + slot: 0 + Sound_Fall: + spell: sound-block-slime_block-fall + item: + type: slime_block + name: "&eFall Sound" + lore: + - "&7&oblock.slime_block.fall" + slot: 1 + Sound_Hit: + spell: sound-block-slime_block-hit + item: + type: slime_block + name: "&eHit Sound" + lore: + - "&7&oblock.slime_block.hit" + slot: 2 + Sound_Place: + spell: sound-block-slime_block-place + item: + type: slime_block + name: "&ePlace Sound" + lore: + - "&7&oblock.slime_block.place" + slot: 3 + Sound_Step: + spell: sound-block-slime_block-step + item: + type: slime_block + name: "&eStep Sound" + lore: + - "&7&oblock.slime_block.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-smithing_table: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Smithing_table Sounds" + options: + Sound_Use: + spell: sound-block-smithing_table-use + item: + type: smithing_table + name: "&eUse Sound" + lore: + - "&7&oblock.smithing_table.use" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-smoker: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Smoker Sounds" + options: + Sound_Smoke: + spell: sound-block-smoker-smoke + item: + type: smoker + name: "&eSmoke Sound" + lore: + - "&7&oblock.smoker.smoke" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-snow: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Snow Sounds" + options: + Sound_Break: + spell: sound-block-snow-break + item: + type: snow_block + name: "&eBreak Sound" + lore: + - "&7&oblock.snow.break" + slot: 0 + Sound_Fall: + spell: sound-block-snow-fall + item: + type: snow_block + name: "&eFall Sound" + lore: + - "&7&oblock.snow.fall" + slot: 1 + Sound_Hit: + spell: sound-block-snow-hit + item: + type: snow_block + name: "&eHit Sound" + lore: + - "&7&oblock.snow.hit" + slot: 2 + Sound_Place: + spell: sound-block-snow-place + item: + type: snow_block + name: "&ePlace Sound" + lore: + - "&7&oblock.snow.place" + slot: 3 + Sound_Step: + spell: sound-block-snow-step + item: + type: snow_block + name: "&eStep Sound" + lore: + - "&7&oblock.snow.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-soul_sand: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Soul_sand Sounds" + options: + Sound_Break: + spell: sound-block-soul_sand-break + item: + type: soul_sand + name: "&eBreak Sound" + lore: + - "&7&oblock.soul_sand.break" + slot: 0 + Sound_Fall: + spell: sound-block-soul_sand-fall + item: + type: soul_sand + name: "&eFall Sound" + lore: + - "&7&oblock.soul_sand.fall" + slot: 1 + Sound_Hit: + spell: sound-block-soul_sand-hit + item: + type: soul_sand + name: "&eHit Sound" + lore: + - "&7&oblock.soul_sand.hit" + slot: 2 + Sound_Place: + spell: sound-block-soul_sand-place + item: + type: soul_sand + name: "&ePlace Sound" + lore: + - "&7&oblock.soul_sand.place" + slot: 3 + Sound_Step: + spell: sound-block-soul_sand-step + item: + type: soul_sand + name: "&eStep Sound" + lore: + - "&7&oblock.soul_sand.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-soul_soil: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Soul_soil Sounds" + options: + Sound_Break: + spell: sound-block-soul_soil-break + item: + type: soul_soil + name: "&eBreak Sound" + lore: + - "&7&oblock.soul_soil.break" + slot: 0 + Sound_Fall: + spell: sound-block-soul_soil-fall + item: + type: soul_soil + name: "&eFall Sound" + lore: + - "&7&oblock.soul_soil.fall" + slot: 1 + Sound_Hit: + spell: sound-block-soul_soil-hit + item: + type: soul_soil + name: "&eHit Sound" + lore: + - "&7&oblock.soul_soil.hit" + slot: 2 + Sound_Place: + spell: sound-block-soul_soil-place + item: + type: soul_soil + name: "&ePlace Sound" + lore: + - "&7&oblock.soul_soil.place" + slot: 3 + Sound_Step: + spell: sound-block-soul_soil-step + item: + type: soul_soil + name: "&eStep Sound" + lore: + - "&7&oblock.soul_soil.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-stem: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Stem Sounds" + options: + Sound_Break: + spell: sound-block-stem-break + item: + type: crimson_stem + name: "&eBreak Sound" + lore: + - "&7&oblock.stem.break" + slot: 0 + Sound_Fall: + spell: sound-block-stem-fall + item: + type: crimson_stem + name: "&eFall Sound" + lore: + - "&7&oblock.stem.fall" + slot: 1 + Sound_Hit: + spell: sound-block-stem-hit + item: + type: crimson_stem + name: "&eHit Sound" + lore: + - "&7&oblock.stem.hit" + slot: 2 + Sound_Place: + spell: sound-block-stem-place + item: + type: crimson_stem + name: "&ePlace Sound" + lore: + - "&7&oblock.stem.place" + slot: 3 + Sound_Step: + spell: sound-block-stem-step + item: + type: crimson_stem + name: "&eStep Sound" + lore: + - "&7&oblock.stem.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-stone: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Stone Sounds" + options: + Sound_Break: + spell: sound-block-stone-break + item: + type: stone + name: "&eBreak Sound" + lore: + - "&7&oblock.stone.break" + slot: 0 + Sound_Fall: + spell: sound-block-stone-fall + item: + type: stone + name: "&eFall Sound" + lore: + - "&7&oblock.stone.fall" + slot: 1 + Sound_Hit: + spell: sound-block-stone-hit + item: + type: stone + name: "&eHit Sound" + lore: + - "&7&oblock.stone.hit" + slot: 2 + Sound_Place: + spell: sound-block-stone-place + item: + type: stone + name: "&ePlace Sound" + lore: + - "&7&oblock.stone.place" + slot: 3 + Sound_Step: + spell: sound-block-stone-step + item: + type: stone + name: "&eStep Sound" + lore: + - "&7&oblock.stone.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-stone_button: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Stone_button Sounds" + options: + Sound_ClickOff: + spell: sound-block-stone_button-click_off + item: + type: stone_button + name: "&eClick Off Sound" + lore: + - "&7&oblock.stone_button.click_off" + slot: 0 + Sound_ClickON: + spell: sound-block-stone_button-click_on + item: + type: stone_button + name: "&eClick ON Sound" + lore: + - "&7&oblock.stone_button.click_on" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-stone_pressure_plate: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Stone_pressure_plate Sounds" + options: + Sound_ClickOff: + spell: sound-block-stone_pressure_plate-click_off + item: + type: stone_pressure_plate + name: "&eClick Off Sound" + lore: + - "&7&oblock.stone_pressure_plate.click_off" + slot: 0 + Sound_ClickON: + spell: sound-block-stone_pressure_plate-click_on + item: + type: stone_pressure_plate + name: "&eClick ON Sound" + lore: + - "&7&oblock.stone_pressure_plate.click_on" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-sweet_berry_bush: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Sweet_berry_bush Sounds" + options: + Sound_Break: + spell: sound-block-sweet_berry_bush-break + item: + type: sweet_berries + name: "&eBreak Sound" + lore: + - "&7&oblock.sweet_berry_bush.break" + slot: 0 + Sound_Place: + spell: sound-block-sweet_berry_bush-place + item: + type: sweet_berries + name: "&ePlace Sound" + lore: + - "&7&oblock.sweet_berry_bush.place" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-tripwire: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Tripwire Sounds" + options: + Sound_Attach: + spell: sound-block-tripwire-attach + item: + type: tripwire_hook + name: "&eAttach Sound" + lore: + - "&7&oblock.tripwire.attach" + slot: 0 + Sound_ClickOff: + spell: sound-block-tripwire-click_off + item: + type: tripwire_hook + name: "&eClick Off Sound" + lore: + - "&7&oblock.tripwire.click_off" + slot: 1 + Sound_ClickON: + spell: sound-block-tripwire-click_on + item: + type: tripwire_hook + name: "&eClick ON Sound" + lore: + - "&7&oblock.tripwire.click_on" + slot: 2 + Sound_Detach: + spell: sound-block-tripwire-detach + item: + type: tripwire_hook + name: "&eDetach Sound" + lore: + - "&7&oblock.tripwire.detach" + slot: 3 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-vine: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Vine Sounds" + options: + Sound_Step: + spell: sound-block-vine-step + item: + type: vine + name: "&eStep Sound" + lore: + - "&7&oblock.vine.step" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-wart_block: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wart_block Sounds" + options: + Sound_Break: + spell: sound-block-wart_block-break + item: + type: warped_wart_block + name: "&eBreak Sound" + lore: + - "&7&oblock.wart_block.break" + slot: 0 + Sound_Fall: + spell: sound-block-wart_block-fall + item: + type: warped_wart_block + name: "&eFall Sound" + lore: + - "&7&oblock.wart_block.fall" + slot: 1 + Sound_Hit: + spell: sound-block-wart_block-hit + item: + type: warped_wart_block + name: "&eHit Sound" + lore: + - "&7&oblock.wart_block.hit" + slot: 2 + Sound_Place: + spell: sound-block-wart_block-place + item: + type: warped_wart_block + name: "&ePlace Sound" + lore: + - "&7&oblock.wart_block.place" + slot: 3 + Sound_Step: + spell: sound-block-wart_block-step + item: + type: warped_wart_block + name: "&eStep Sound" + lore: + - "&7&oblock.wart_block.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-water: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Water Sounds" + options: + Sound_Ambient: + spell: sound-block-water-ambient + item: + type: water_bucket + name: "&eAmbient Sound" + lore: + - "&7&oblock.water.ambient" + slot: 0 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-weeping_vines: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Weeping_vines Sounds" + options: + Sound_Break: + spell: sound-block-weeping_vines-break + item: + type: weeping_vines + name: "&eBreak Sound" + lore: + - "&7&oblock.weeping_vines.break" + slot: 0 + Sound_Fall: + spell: sound-block-weeping_vines-fall + item: + type: weeping_vines + name: "&eFall Sound" + lore: + - "&7&oblock.weeping_vines.fall" + slot: 1 + Sound_Hit: + spell: sound-block-weeping_vines-hit + item: + type: weeping_vines + name: "&eHit Sound" + lore: + - "&7&oblock.weeping_vines.hit" + slot: 2 + Sound_Place: + spell: sound-block-weeping_vines-place + item: + type: weeping_vines + name: "&ePlace Sound" + lore: + - "&7&oblock.weeping_vines.place" + slot: 3 + Sound_Step: + spell: sound-block-weeping_vines-step + item: + type: weeping_vines + name: "&eStep Sound" + lore: + - "&7&oblock.weeping_vines.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-wet_grass: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wet_grass Sounds" + options: + Sound_Break: + spell: sound-block-wet_grass-break + item: + type: kelp + name: "&eBreak Sound" + lore: + - "&7&oblock.wet_grass.break" + slot: 0 + Sound_Fall: + spell: sound-block-wet_grass-fall + item: + type: kelp + name: "&eFall Sound" + lore: + - "&7&oblock.wet_grass.fall" + slot: 1 + Sound_Hit: + spell: sound-block-wet_grass-hit + item: + type: kelp + name: "&eHit Sound" + lore: + - "&7&oblock.wet_grass.hit" + slot: 2 + Sound_Place: + spell: sound-block-wet_grass-place + item: + type: kelp + name: "&ePlace Sound" + lore: + - "&7&oblock.wet_grass.place" + slot: 3 + Sound_Step: + spell: sound-block-wet_grass-step + item: + type: kelp + name: "&eStep Sound" + lore: + - "&7&oblock.wet_grass.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-wood: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wood Sounds" + options: + Sound_Break: + spell: sound-block-wood-break + item: + type: oak_log + name: "&eBreak Sound" + lore: + - "&7&oblock.wood.break" + slot: 0 + Sound_Fall: + spell: sound-block-wood-fall + item: + type: oak_log + name: "&eFall Sound" + lore: + - "&7&oblock.wood.fall" + slot: 1 + Sound_Hit: + spell: sound-block-wood-hit + item: + type: oak_log + name: "&eHit Sound" + lore: + - "&7&oblock.wood.hit" + slot: 2 + Sound_Place: + spell: sound-block-wood-place + item: + type: oak_log + name: "&ePlace Sound" + lore: + - "&7&oblock.wood.place" + slot: 3 + Sound_Step: + spell: sound-block-wood-step + item: + type: oak_log + name: "&eStep Sound" + lore: + - "&7&oblock.wood.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-wooden_button: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wooden_button Sounds" + options: + Sound_ClickOff: + spell: sound-block-wooden_button-click_off + item: + type: oak_button + name: "&eClick Off Sound" + lore: + - "&7&oblock.wooden_button.click_off" + slot: 0 + Sound_ClickON: + spell: sound-block-wooden_button-click_on + item: + type: oak_button + name: "&eClick ON Sound" + lore: + - "&7&oblock.wooden_button.click_on" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-wooden_door: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wooden_door Sounds" + options: + Sound_Close: + spell: sound-block-wooden_door-close + item: + type: oak_door + name: "&eClose Sound" + lore: + - "&7&oblock.wooden_door.close" + slot: 0 + Sound_Open: + spell: sound-block-wooden_door-open + item: + type: oak_door + name: "&eOpen Sound" + lore: + - "&7&oblock.wooden_door.open" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-wooden_pressure_plate: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wooden_pressure_plate Sounds" + options: + Sound_ClickOff: + spell: sound-block-wooden_pressure_plate-click_off + item: + type: oak_pressure_plate + name: "&eClick Off Sound" + lore: + - "&7&oblock.wooden_pressure_plate.click_off" + slot: 0 + Sound_ClickON: + spell: sound-block-wooden_pressure_plate-click_on + item: + type: oak_pressure_plate + name: "&eClick ON Sound" + lore: + - "&7&oblock.wooden_pressure_plate.click_on" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-wooden_trapdoor: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wooden_trapdoor Sounds" + options: + Sound_Close: + spell: sound-block-wooden_trapdoor-close + item: + type: oak_trapdoor + name: "&eClose Sound" + lore: + - "&7&oblock.wooden_trapdoor.close" + slot: 0 + Sound_Open: + spell: sound-block-wooden_trapdoor-open + item: + type: oak_trapdoor + name: "&eOpen Sound" + lore: + - "&7&oblock.wooden_trapdoor.open" + slot: 1 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-block-wool: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wool Sounds" + options: + Sound_Break: + spell: sound-block-wool-break + item: + type: white_wool + name: "&eBreak Sound" + lore: + - "&7&oblock.wool.break" + slot: 0 + Sound_Fall: + spell: sound-block-wool-fall + item: + type: white_wool + name: "&eFall Sound" + lore: + - "&7&oblock.wool.fall" + slot: 1 + Sound_Hit: + spell: sound-block-wool-hit + item: + type: white_wool + name: "&eHit Sound" + lore: + - "&7&oblock.wool.hit" + slot: 2 + Sound_Place: + spell: sound-block-wool-place + item: + type: white_wool + name: "&ePlace Sound" + lore: + - "&7&oblock.wool.place" + slot: 3 + Sound_Step: + spell: sound-block-wool-step + item: + type: white_wool + name: "&eStep Sound" + lore: + - "&7&oblock.wool.step" + slot: 4 + Button_Back: + spell: sb-block1 + item: + type: book + name: "&6Back" + slot: 13 +sb-enchant: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Enchant Sounds" + options: + Thorns: + spell: sb-enchant-thorns + item: + type: enchanted_book + name: "&6Thorns Sounds" + slot: 0 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 13 +sb-enchant-thorns: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Thorns Sounds" + options: + Sound_Hit: + spell: sound-enchant-thorns-hit + item: + type: enchanted_book + name: "&eHit Sound" + lore: + - "&7&oenchant.thorns.hit" + slot: 0 + Button_Back: + spell: sb-enchant + item: + type: book + name: "&6Back" + slot: 13 +sb-entity1: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Entity Sounds" + options: + ArmorStand: + spell: sb-entity-armor_stand + item: + type: armor_stand + name: "&6Armor Stand Sounds" + slot: 0 + Arrow: + spell: sb-entity-arrow + item: + type: arrow + name: "&6Arrow Sounds" + slot: 1 + Bat: + spell: sb-entity-bat + item: + type: bat_spawn_egg + name: "&6Bat Sounds" + slot: 2 + Bee: + spell: sb-entity-bee + item: + type: bee_spawn_egg + name: "&6Bee Sounds" + slot: 3 + Blaze: + spell: sb-entity-blaze + item: + type: blaze_spawn_egg + name: "&6Blaze Sounds" + slot: 4 + Boat: + spell: sb-entity-boat + item: + type: oak_boat + name: "&6Boat Sounds" + slot: 5 + Cat: + spell: sb-entity-cat + item: + type: cat_spawn_egg + name: "&6Cat Sounds" + slot: 6 + Chicken: + spell: sb-entity-chicken + item: + type: chicken_spawn_egg + name: "&6Chicken Sounds" + slot: 7 + Cod: + spell: sb-entity-cod + item: + type: cod + name: "&6Cod Sounds" + slot: 8 + Cow: + spell: sb-entity-cow + item: + type: cow_spawn_egg + name: "&6Cow Sounds" + slot: 9 + Creeper: + spell: sb-entity-creeper + item: + type: creeper_spawn_egg + name: "&6Creeper Sounds" + slot: 10 + Dolphin: + spell: sb-entity-dolphin + item: + type: dolphin_spawn_egg + name: "&6Dolphin Sounds" + slot: 11 + Donkey: + spell: sb-entity-donkey + item: + type: donkey_spawn_egg + name: "&6Donkey Sounds" + slot: 12 + DragonFireball: + spell: sb-entity-dragon_fireball + item: + type: fire_charge + name: "&6Dragon Fireball Sounds" + slot: 13 + Drowned: + spell: sb-entity-drowned + item: + type: drowned_spawn_egg + name: "&6Drowned Sounds" + slot: 14 + Egg: + spell: sb-entity-egg + item: + type: egg + name: "&6Egg Sounds" + slot: 15 + ElderGuardian: + spell: sb-entity-elder_guardian + item: + type: elder_guardian_spawn_egg + name: "&6Elder Guardian Sounds" + slot: 16 + EnderDragon: + spell: sb-entity-ender_dragon + item: + type: dragon_head + name: "&6Ender Dragon Sounds" + slot: 17 + EnderEye: + spell: sb-entity-ender_eye + item: + type: ender_eye + name: "&6Ender Eye Sounds" + slot: 18 + EnderPearl: + spell: sb-entity-ender_pearl + item: + type: ender_pearl + name: "&6Ender Pearl Sounds" + slot: 19 + Enderman: + spell: sb-entity-enderman + item: + type: enderman_spawn_egg + name: "&6Enderman Sounds" + slot: 20 + Endermite: + spell: sb-entity-endermite + item: + type: endermite_spawn_egg + name: "&6Endermite Sounds" + slot: 21 + Evoker: + spell: sb-entity-evoker + item: + type: evoker_spawn_egg + name: "&6Evoker Sounds" + slot: 22 + EvokerFangs: + spell: sb-entity-evoker_fangs + item: + type: totem_of_undying + name: "&6Evoker Fangs Sounds" + slot: 23 + ExperienceBottle: + spell: sb-entity-experience_bottle + item: + type: experience_bottle + name: "&6Experience Bottle Sounds" + slot: 24 + ExperienceOrb: + spell: sb-entity-experience_orb + item: + type: experience_bottle + name: "&6Experience Orb Sounds" + slot: 25 + FireworkRocket: + spell: sb-entity-firework_rocket + item: + type: firework_rocket + name: "&6Firework Rocket Sounds" + slot: 26 + Fish: + spell: sb-entity-fish + item: + type: water_bucket + name: "&6Fish Sounds" + slot: 27 + FishingBobber: + spell: sb-entity-fishing_bobber + item: + type: fishing_rod + name: "&6Fishing Bobber Sounds" + slot: 28 + Fox: + spell: sb-entity-fox + item: + type: fox_spawn_egg + name: "&6Fox Sounds" + slot: 29 + Generic: + spell: sb-entity-generic + item: + type: bookshelf + name: "&6Generic Sounds" + slot: 30 + Ghast: + spell: sb-entity-ghast + item: + type: ghast_spawn_egg + name: "&6Ghast Sounds" + slot: 31 + Guardian: + spell: sb-entity-guardian + item: + type: guardian_spawn_egg + name: "&6Guardian Sounds" + slot: 32 + Hoglin: + spell: sb-entity-hoglin + item: + type: hoglin_spawn_egg + name: "&6Hoglin Sounds" + slot: 33 + Horse: + spell: sb-entity-horse + item: + type: horse_spawn_egg + name: "&6Horse Sounds" + slot: 34 + Hostile: + spell: sb-entity-hostile + item: + type: wooden_sword + name: "&6Hostile Sounds" + slot: 35 + Husk: + spell: sb-entity-husk + item: + type: husk_spawn_egg + name: "&6Husk Sounds" + slot: 36 + Illusioner: + spell: sb-entity-illusioner + item: + type: lapis_lazuli + name: "&6Illusioner Sounds" + slot: 37 + IronGolem: + spell: sb-entity-iron_golem + item: + type: ghast_spawn_egg + name: "&6Iron Golem Sounds" + slot: 38 + Item: + spell: sb-entity-item + item: + type: paper + name: "&6Item Sounds" + slot: 39 + ItemFrame: + spell: sb-entity-item_frame + item: + type: item_frame + name: "&6Item Frame Sounds" + slot: 40 + LeashKnot: + spell: sb-entity-leash_knot + item: + type: lead + name: "&6Leash Knot Sounds" + slot: 41 + LightningBolt: + spell: sb-entity-lightning_bolt + item: + type: end_rod + name: "&6Lightning Bolt Sounds" + slot: 42 + LingeringPotion: + spell: sb-entity-lingering_potion + item: + type: lingering_potion + name: "&6Lingering Potion Sounds" + slot: 43 + Llama: + spell: sb-entity-llama + item: + type: llama_spawn_egg + name: "&6Llama Sounds" + slot: 44 + Button_Home: + spell: sb + item: + type: book + name: "&6Home" + slot: 49 + Button_Next_Page: + spell: sb-entity2 + item: + type: arrow + name: "&6Next Page" + slot: 51 +sb-entity2: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Entity Sounds" + options: + MagmaCube: + spell: sb-entity-magma_cube + item: + type: magma_cube_spawn_egg + name: "&6Magma Cube Sounds" + slot: 0 + Minecart: + spell: sb-entity-minecart + item: + type: minecart + name: "&6Minecart Sounds" + slot: 1 + Mooshroom: + spell: sb-entity-mooshroom + item: + type: mooshroom_spawn_egg + name: "&6Mooshroom Sounds" + slot: 2 + Mule: + spell: sb-entity-mule + item: + type: mule_spawn_egg + name: "&6Mule Sounds" + slot: 3 + Ocelot: + spell: sb-entity-ocelot + item: + type: ocelot_spawn_egg + name: "&6Ocelot Sounds" + slot: 4 + Painting: + spell: sb-entity-painting + item: + type: painting + name: "&6Painting Sounds" + slot: 5 + Panda: + spell: sb-entity-panda + item: + type: panda_spawn_egg + name: "&6Panda Sounds" + slot: 6 + Parrot: + spell: sb-entity-parrot + item: + type: parrot_spawn_egg + name: "&6Parrot Sounds" + slot: 7 + Phantom: + spell: sb-entity-phantom + item: + type: phantom_spawn_egg + name: "&6Phantom Sounds" + slot: 8 + Pig: + spell: sb-entity-pig + item: + type: pig_spawn_egg + name: "&6Pig Sounds" + slot: 9 + Piglin: + spell: sb-entity-piglin + item: + type: piglin_spawn_egg + name: "&6Piglin Sounds" + slot: 10 + Pillager: + spell: sb-entity-pillager + item: + type: pillager_spawn_egg + name: "&6Pillager Sounds" + slot: 11 + Player: + spell: sb-entity-player + item: + type: player_head + name: "&6Player Sounds" + slot: 12 + PolarBear: + spell: sb-entity-polar_bear + item: + type: ghast_spawn_egg + name: "&6Polar Bear Sounds" + slot: 13 + PufferFish: + spell: sb-entity-puffer_fish + item: + type: pufferfish + name: "&6Puffer Fish Sounds" + slot: 14 + Rabbit: + spell: sb-entity-rabbit + item: + type: rabbit_spawn_egg + name: "&6Rabbit Sounds" + slot: 15 + Ravager: + spell: sb-entity-ravager + item: + type: ravager_spawn_egg + name: "&6Ravager Sounds" + slot: 16 + Salmon: + spell: sb-entity-salmon + item: + type: salmon + name: "&6Salmon Sounds" + slot: 17 + Sheep: + spell: sb-entity-sheep + item: + type: sheep_spawn_egg + name: "&6Sheep Sounds" + slot: 18 + Shulker: + spell: sb-entity-shulker + item: + type: shulker_spawn_egg + name: "&6Shulker Sounds" + slot: 19 + ShulkerBullet: + spell: sb-entity-shulker_bullet + item: + type: shulker_shell + name: "&6Shulker Bullet Sounds" + slot: 20 + Silverfish: + spell: sb-entity-silverfish + item: + type: silverfish_spawn_egg + name: "&6Silverfish Sounds" + slot: 21 + Skeleton: + spell: sb-entity-skeleton + item: + type: skeleton_spawn_egg + name: "&6Skeleton Sounds" + slot: 22 + SkeletonHorse: + spell: sb-entity-skeleton_horse + item: + type: skeleton_horse_spawn_egg + name: "&6Skeleton Horse Sounds" + slot: 23 + Slime: + spell: sb-entity-slime + item: + type: slime_spawn_egg + name: "&6Slime Sounds" + slot: 24 + SnowGolem: + spell: sb-entity-snow_golem + item: + type: carved_pumpkin + name: "&6Snow Golem Sounds" + slot: 25 + Snowball: + spell: sb-entity-snowball + item: + type: snowball + name: "&6Snowball Sounds" + slot: 26 + Spider: + spell: sb-entity-spider + item: + type: spider_spawn_egg + name: "&6Spider Sounds" + slot: 27 + SplashPotion: + spell: sb-entity-splash_potion + item: + type: splash_potion + name: "&6Splash Potion Sounds" + slot: 28 + Squid: + spell: sb-entity-squid + item: + type: squid_spawn_egg + name: "&6Squid Sounds" + slot: 29 + Stray: + spell: sb-entity-stray + item: + type: stray_spawn_egg + name: "&6Stray Sounds" + slot: 30 + Strider: + spell: sb-entity-strider + item: + type: strider_spawn_egg + name: "&6Strider Sounds" + slot: 31 + Tnt: + spell: sb-entity-tnt + item: + type: tnt + name: "&6Tnt Sounds" + slot: 32 + TropicalFish: + spell: sb-entity-tropical_fish + item: + type: tropical_fish + name: "&6Tropical Fish Sounds" + slot: 33 + Turtle: + spell: sb-entity-turtle + item: + type: turtle_spawn_egg + name: "&6Turtle Sounds" + slot: 34 + Vex: + spell: sb-entity-vex + item: + type: vex_spawn_egg + name: "&6Vex Sounds" + slot: 35 + Villager: + spell: sb-entity-villager + item: + type: villager_spawn_egg + name: "&6Villager Sounds" + slot: 36 + Vindicator: + spell: sb-entity-vindicator + item: + type: iron_axe + name: "&6Vindicator Sounds" + slot: 37 + WanderingTrader: + spell: sb-entity-wandering_trader + item: + type: wandering_trader_spawn_egg + name: "&6Wandering Trader Sounds" + slot: 38 + Witch: + spell: sb-entity-witch + item: + type: witch_spawn_egg + name: "&6Witch Sounds" + slot: 39 + Wither: + spell: sb-entity-wither + item: + type: nether_star + name: "&6Wither Sounds" + slot: 40 + WitherSkeleton: + spell: sb-entity-wither_skeleton + item: + type: wither_skeleton_skull + name: "&6Wither Skeleton Sounds" + slot: 41 + Wolf: + spell: sb-entity-wolf + item: + type: wolf_spawn_egg + name: "&6Wolf Sounds" + slot: 42 + Zoglin: + spell: sb-entity-zoglin + item: + type: zoglin_spawn_egg + name: "&6Zoglin Sounds" + slot: 43 + Zombie: + spell: sb-entity-zombie + item: + type: zombie_spawn_egg + name: "&6Zombie Sounds" + slot: 44 + Button_Previous_Page: + spell: sb-entity1 + item: + type: arrow + name: "&6Previous Page" + slot: 47 + Button_Home: + spell: sb + item: + type: book + name: "&6Home" + slot: 49 + Button_Next_Page: + spell: sb-entity3 + item: + type: arrow + name: "&6Next Page" + slot: 51 +sb-entity3: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Entity Sounds" + options: + ZombieHorse: + spell: sb-entity-zombie_horse + item: + type: zombie_horse_spawn_egg + name: "&6Zombie Horse Sounds" + slot: 0 + ZombieVillager: + spell: sb-entity-zombie_villager + item: + type: zombie_villager_spawn_egg + name: "&6Zombie Villager Sounds" + slot: 1 + ZombifiedPiglin: + spell: sb-entity-zombified_piglin + item: + type: zombified_piglin_spawn_egg + name: "&6Zombified Piglin Sounds" + slot: 2 + Button_Previous_Page: + spell: sb-entity2 + item: + type: arrow + name: "&6Previous Page" + slot: 11 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-armor_stand: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Armor_stand Sounds" + options: + Sound_Break: + spell: sound-entity-armor_stand-break + item: + type: armor_stand + name: "&eBreak Sound" + lore: + - "&7&oentity.armor_stand.break" + slot: 0 + Sound_Fall: + spell: sound-entity-armor_stand-fall + item: + type: armor_stand + name: "&eFall Sound" + lore: + - "&7&oentity.armor_stand.fall" + slot: 1 + Sound_Hit: + spell: sound-entity-armor_stand-hit + item: + type: armor_stand + name: "&eHit Sound" + lore: + - "&7&oentity.armor_stand.hit" + slot: 2 + Sound_Place: + spell: sound-entity-armor_stand-place + item: + type: armor_stand + name: "&ePlace Sound" + lore: + - "&7&oentity.armor_stand.place" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-arrow: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Arrow Sounds" + options: + Sound_Hit: + spell: sound-entity-arrow-hit + item: + type: arrow + name: "&eHit Sound" + lore: + - "&7&oentity.arrow.hit" + slot: 0 + Sound_HitPlayer: + spell: sound-entity-arrow-hit_player + item: + type: arrow + name: "&eHit Player Sound" + lore: + - "&7&oentity.arrow.hit_player" + slot: 1 + Sound_Shoot: + spell: sound-entity-arrow-shoot + item: + type: arrow + name: "&eShoot Sound" + lore: + - "&7&oentity.arrow.shoot" + slot: 2 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-bat: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Bat Sounds" + options: + Sound_Ambient: + spell: sound-entity-bat-ambient + item: + type: bat_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.bat.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-bat-death + item: + type: bat_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.bat.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-bat-hurt + item: + type: bat_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.bat.hurt" + slot: 2 + Sound_Loop: + spell: sound-entity-bat-loop + item: + type: bat_spawn_egg + name: "&eLoop Sound" + lore: + - "&7&oentity.bat.loop" + slot: 3 + Sound_Takeoff: + spell: sound-entity-bat-takeoff + item: + type: bat_spawn_egg + name: "&eTakeoff Sound" + lore: + - "&7&oentity.bat.takeoff" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-bee: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Bee Sounds" + options: + Sound_Death: + spell: sound-entity-bee-death + item: + type: bee_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.bee.death" + slot: 0 + Sound_Hurt: + spell: sound-entity-bee-hurt + item: + type: bee_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.bee.hurt" + slot: 1 + Sound_Loop: + spell: sound-entity-bee-loop + item: + type: bee_spawn_egg + name: "&eLoop Sound" + lore: + - "&7&oentity.bee.loop" + slot: 2 + Sound_LoopAggressive: + spell: sound-entity-bee-loop_aggressive + item: + type: bee_spawn_egg + name: "&eLoop Aggressive Sound" + lore: + - "&7&oentity.bee.loop_aggressive" + slot: 3 + Sound_Pollinate: + spell: sound-entity-bee-pollinate + item: + type: bee_spawn_egg + name: "&ePollinate Sound" + lore: + - "&7&oentity.bee.pollinate" + slot: 4 + Sound_Sting: + spell: sound-entity-bee-sting + item: + type: bee_spawn_egg + name: "&eSting Sound" + lore: + - "&7&oentity.bee.sting" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-blaze: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Blaze Sounds" + options: + Sound_Ambient: + spell: sound-entity-blaze-ambient + item: + type: blaze_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.blaze.ambient" + slot: 0 + Sound_Burn: + spell: sound-entity-blaze-burn + item: + type: blaze_spawn_egg + name: "&eBurn Sound" + lore: + - "&7&oentity.blaze.burn" + slot: 1 + Sound_Death: + spell: sound-entity-blaze-death + item: + type: blaze_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.blaze.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-blaze-hurt + item: + type: blaze_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.blaze.hurt" + slot: 3 + Sound_Shoot: + spell: sound-entity-blaze-shoot + item: + type: blaze_spawn_egg + name: "&eShoot Sound" + lore: + - "&7&oentity.blaze.shoot" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-boat: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Boat Sounds" + options: + Sound_PaddleLand: + spell: sound-entity-boat-paddle_land + item: + type: oak_boat + name: "&ePaddle Land Sound" + lore: + - "&7&oentity.boat.paddle_land" + slot: 0 + Sound_PaddleWater: + spell: sound-entity-boat-paddle_water + item: + type: oak_boat + name: "&ePaddle Water Sound" + lore: + - "&7&oentity.boat.paddle_water" + slot: 1 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-cat: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Cat Sounds" + options: + Sound_Ambient: + spell: sound-entity-cat-ambient + item: + type: cat_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.cat.ambient" + slot: 0 + Sound_BegForFood: + spell: sound-entity-cat-beg_for_food + item: + type: cat_spawn_egg + name: "&eBeg For Food Sound" + lore: + - "&7&oentity.cat.beg_for_food" + slot: 1 + Sound_Death: + spell: sound-entity-cat-death + item: + type: cat_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.cat.death" + slot: 2 + Sound_Eat: + spell: sound-entity-cat-eat + item: + type: cat_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.cat.eat" + slot: 3 + Sound_Hiss: + spell: sound-entity-cat-hiss + item: + type: cat_spawn_egg + name: "&eHiss Sound" + lore: + - "&7&oentity.cat.hiss" + slot: 4 + Sound_Hurt: + spell: sound-entity-cat-hurt + item: + type: cat_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.cat.hurt" + slot: 5 + Sound_Purr: + spell: sound-entity-cat-purr + item: + type: cat_spawn_egg + name: "&ePurr Sound" + lore: + - "&7&oentity.cat.purr" + slot: 6 + Sound_Purreow: + spell: sound-entity-cat-purreow + item: + type: cat_spawn_egg + name: "&ePurreow Sound" + lore: + - "&7&oentity.cat.purreow" + slot: 7 + Sound_StrayAmbient: + spell: sound-entity-cat-stray_ambient + item: + type: cat_spawn_egg + name: "&eStray Ambient Sound" + lore: + - "&7&oentity.cat.stray_ambient" + slot: 8 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-chicken: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Chicken Sounds" + options: + Sound_Ambient: + spell: sound-entity-chicken-ambient + item: + type: chicken_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.chicken.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-chicken-death + item: + type: chicken_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.chicken.death" + slot: 1 + Sound_Egg: + spell: sound-entity-chicken-egg + item: + type: chicken_spawn_egg + name: "&eEgg Sound" + lore: + - "&7&oentity.chicken.egg" + slot: 2 + Sound_Hurt: + spell: sound-entity-chicken-hurt + item: + type: chicken_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.chicken.hurt" + slot: 3 + Sound_Step: + spell: sound-entity-chicken-step + item: + type: chicken_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.chicken.step" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-cod: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Cod Sounds" + options: + Sound_Ambient: + spell: sound-entity-cod-ambient + item: + type: cod + name: "&eAmbient Sound" + lore: + - "&7&oentity.cod.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-cod-death + item: + type: cod + name: "&eDeath Sound" + lore: + - "&7&oentity.cod.death" + slot: 1 + Sound_Flop: + spell: sound-entity-cod-flop + item: + type: cod + name: "&eFlop Sound" + lore: + - "&7&oentity.cod.flop" + slot: 2 + Sound_Hurt: + spell: sound-entity-cod-hurt + item: + type: cod + name: "&eHurt Sound" + lore: + - "&7&oentity.cod.hurt" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-cow: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Cow Sounds" + options: + Sound_Ambient: + spell: sound-entity-cow-ambient + item: + type: cow_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.cow.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-cow-death + item: + type: cow_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.cow.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-cow-hurt + item: + type: cow_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.cow.hurt" + slot: 2 + Sound_Milk: + spell: sound-entity-cow-milk + item: + type: cow_spawn_egg + name: "&eMilk Sound" + lore: + - "&7&oentity.cow.milk" + slot: 3 + Sound_Step: + spell: sound-entity-cow-step + item: + type: cow_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.cow.step" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-creeper: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Creeper Sounds" + options: + Sound_Death: + spell: sound-entity-creeper-death + item: + type: creeper_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.creeper.death" + slot: 0 + Sound_Hurt: + spell: sound-entity-creeper-hurt + item: + type: creeper_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.creeper.hurt" + slot: 1 + Sound_Primed: + spell: sound-entity-creeper-primed + item: + type: creeper_spawn_egg + name: "&ePrimed Sound" + lore: + - "&7&oentity.creeper.primed" + slot: 2 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-dolphin: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Dolphin Sounds" + options: + Sound_Ambient: + spell: sound-entity-dolphin-ambient + item: + type: dolphin_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.dolphin.ambient" + slot: 0 + Sound_AmbientWater: + spell: sound-entity-dolphin-ambient_water + item: + type: dolphin_spawn_egg + name: "&eAmbient Water Sound" + lore: + - "&7&oentity.dolphin.ambient_water" + slot: 1 + Sound_Attack: + spell: sound-entity-dolphin-attack + item: + type: dolphin_spawn_egg + name: "&eAttack Sound" + lore: + - "&7&oentity.dolphin.attack" + slot: 2 + Sound_Death: + spell: sound-entity-dolphin-death + item: + type: dolphin_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.dolphin.death" + slot: 3 + Sound_Eat: + spell: sound-entity-dolphin-eat + item: + type: dolphin_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.dolphin.eat" + slot: 4 + Sound_Hurt: + spell: sound-entity-dolphin-hurt + item: + type: dolphin_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.dolphin.hurt" + slot: 5 + Sound_Jump: + spell: sound-entity-dolphin-jump + item: + type: dolphin_spawn_egg + name: "&eJump Sound" + lore: + - "&7&oentity.dolphin.jump" + slot: 6 + Sound_Play: + spell: sound-entity-dolphin-play + item: + type: dolphin_spawn_egg + name: "&ePlay Sound" + lore: + - "&7&oentity.dolphin.play" + slot: 7 + Sound_Splash: + spell: sound-entity-dolphin-splash + item: + type: dolphin_spawn_egg + name: "&eSplash Sound" + lore: + - "&7&oentity.dolphin.splash" + slot: 8 + Sound_Swim: + spell: sound-entity-dolphin-swim + item: + type: dolphin_spawn_egg + name: "&eSwim Sound" + lore: + - "&7&oentity.dolphin.swim" + slot: 9 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 22 +sb-entity-donkey: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Donkey Sounds" + options: + Sound_Ambient: + spell: sound-entity-donkey-ambient + item: + type: donkey_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.donkey.ambient" + slot: 0 + Sound_Angry: + spell: sound-entity-donkey-angry + item: + type: donkey_spawn_egg + name: "&eAngry Sound" + lore: + - "&7&oentity.donkey.angry" + slot: 1 + Sound_Chest: + spell: sound-entity-donkey-chest + item: + type: donkey_spawn_egg + name: "&eChest Sound" + lore: + - "&7&oentity.donkey.chest" + slot: 2 + Sound_Death: + spell: sound-entity-donkey-death + item: + type: donkey_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.donkey.death" + slot: 3 + Sound_Eat: + spell: sound-entity-donkey-eat + item: + type: donkey_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.donkey.eat" + slot: 4 + Sound_Hurt: + spell: sound-entity-donkey-hurt + item: + type: donkey_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.donkey.hurt" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-dragon_fireball: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Dragon_fireball Sounds" + options: + Sound_Explode: + spell: sound-entity-dragon_fireball-explode + item: + type: fire_charge + name: "&eExplode Sound" + lore: + - "&7&oentity.dragon_fireball.explode" + slot: 0 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-drowned: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Drowned Sounds" + options: + Sound_Ambient: + spell: sound-entity-drowned-ambient + item: + type: drowned_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.drowned.ambient" + slot: 0 + Sound_AmbientWater: + spell: sound-entity-drowned-ambient_water + item: + type: drowned_spawn_egg + name: "&eAmbient Water Sound" + lore: + - "&7&oentity.drowned.ambient_water" + slot: 1 + Sound_Death: + spell: sound-entity-drowned-death + item: + type: drowned_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.drowned.death" + slot: 2 + Sound_DeathWater: + spell: sound-entity-drowned-death_water + item: + type: drowned_spawn_egg + name: "&eDeath Water Sound" + lore: + - "&7&oentity.drowned.death_water" + slot: 3 + Sound_Hurt: + spell: sound-entity-drowned-hurt + item: + type: drowned_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.drowned.hurt" + slot: 4 + Sound_HurtWater: + spell: sound-entity-drowned-hurt_water + item: + type: drowned_spawn_egg + name: "&eHurt Water Sound" + lore: + - "&7&oentity.drowned.hurt_water" + slot: 5 + Sound_Shoot: + spell: sound-entity-drowned-shoot + item: + type: drowned_spawn_egg + name: "&eShoot Sound" + lore: + - "&7&oentity.drowned.shoot" + slot: 6 + Sound_Step: + spell: sound-entity-drowned-step + item: + type: drowned_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.drowned.step" + slot: 7 + Sound_Swim: + spell: sound-entity-drowned-swim + item: + type: drowned_spawn_egg + name: "&eSwim Sound" + lore: + - "&7&oentity.drowned.swim" + slot: 8 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-egg: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Egg Sounds" + options: + Sound_Throw: + spell: sound-entity-egg-throw + item: + type: egg + name: "&eThrow Sound" + lore: + - "&7&oentity.egg.throw" + slot: 0 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-elder_guardian: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Elder_guardian Sounds" + options: + Sound_Ambient: + spell: sound-entity-elder_guardian-ambient + item: + type: elder_guardian_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.elder_guardian.ambient" + slot: 0 + Sound_AmbientLand: + spell: sound-entity-elder_guardian-ambient_land + item: + type: elder_guardian_spawn_egg + name: "&eAmbient Land Sound" + lore: + - "&7&oentity.elder_guardian.ambient_land" + slot: 1 + Sound_Curse: + spell: sound-entity-elder_guardian-curse + item: + type: elder_guardian_spawn_egg + name: "&eCurse Sound" + lore: + - "&7&oentity.elder_guardian.curse" + slot: 2 + Sound_Death: + spell: sound-entity-elder_guardian-death + item: + type: elder_guardian_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.elder_guardian.death" + slot: 3 + Sound_DeathLand: + spell: sound-entity-elder_guardian-death_land + item: + type: elder_guardian_spawn_egg + name: "&eDeath Land Sound" + lore: + - "&7&oentity.elder_guardian.death_land" + slot: 4 + Sound_Flop: + spell: sound-entity-elder_guardian-flop + item: + type: elder_guardian_spawn_egg + name: "&eFlop Sound" + lore: + - "&7&oentity.elder_guardian.flop" + slot: 5 + Sound_Hurt: + spell: sound-entity-elder_guardian-hurt + item: + type: elder_guardian_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.elder_guardian.hurt" + slot: 6 + Sound_HurtLand: + spell: sound-entity-elder_guardian-hurt_land + item: + type: elder_guardian_spawn_egg + name: "&eHurt Land Sound" + lore: + - "&7&oentity.elder_guardian.hurt_land" + slot: 7 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-ender_dragon: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ender_dragon Sounds" + options: + Sound_Ambient: + spell: sound-entity-ender_dragon-ambient + item: + type: dragon_head + name: "&eAmbient Sound" + lore: + - "&7&oentity.ender_dragon.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-ender_dragon-death + item: + type: dragon_head + name: "&eDeath Sound" + lore: + - "&7&oentity.ender_dragon.death" + slot: 1 + Sound_Flap: + spell: sound-entity-ender_dragon-flap + item: + type: dragon_head + name: "&eFlap Sound" + lore: + - "&7&oentity.ender_dragon.flap" + slot: 2 + Sound_Growl: + spell: sound-entity-ender_dragon-growl + item: + type: dragon_head + name: "&eGrowl Sound" + lore: + - "&7&oentity.ender_dragon.growl" + slot: 3 + Sound_Hurt: + spell: sound-entity-ender_dragon-hurt + item: + type: dragon_head + name: "&eHurt Sound" + lore: + - "&7&oentity.ender_dragon.hurt" + slot: 4 + Sound_Shoot: + spell: sound-entity-ender_dragon-shoot + item: + type: dragon_head + name: "&eShoot Sound" + lore: + - "&7&oentity.ender_dragon.shoot" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-ender_eye: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ender_eye Sounds" + options: + Sound_Death: + spell: sound-entity-ender_eye-death + item: + type: ender_eye + name: "&eDeath Sound" + lore: + - "&7&oentity.ender_eye.death" + slot: 0 + Sound_Launch: + spell: sound-entity-ender_eye-launch + item: + type: ender_eye + name: "&eLaunch Sound" + lore: + - "&7&oentity.ender_eye.launch" + slot: 1 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-ender_pearl: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ender_pearl Sounds" + options: + Sound_Throw: + spell: sound-entity-ender_pearl-throw + item: + type: ender_pearl + name: "&eThrow Sound" + lore: + - "&7&oentity.ender_pearl.throw" + slot: 0 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-enderman: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Enderman Sounds" + options: + Sound_Ambient: + spell: sound-entity-enderman-ambient + item: + type: enderman_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.enderman.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-enderman-death + item: + type: enderman_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.enderman.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-enderman-hurt + item: + type: enderman_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.enderman.hurt" + slot: 2 + Sound_Scream: + spell: sound-entity-enderman-scream + item: + type: enderman_spawn_egg + name: "&eScream Sound" + lore: + - "&7&oentity.enderman.scream" + slot: 3 + Sound_Stare: + spell: sound-entity-enderman-stare + item: + type: enderman_spawn_egg + name: "&eStare Sound" + lore: + - "&7&oentity.enderman.stare" + slot: 4 + Sound_Teleport: + spell: sound-entity-enderman-teleport + item: + type: enderman_spawn_egg + name: "&eTeleport Sound" + lore: + - "&7&oentity.enderman.teleport" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-endermite: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Endermite Sounds" + options: + Sound_Ambient: + spell: sound-entity-endermite-ambient + item: + type: endermite_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.endermite.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-endermite-death + item: + type: endermite_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.endermite.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-endermite-hurt + item: + type: endermite_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.endermite.hurt" + slot: 2 + Sound_Step: + spell: sound-entity-endermite-step + item: + type: endermite_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.endermite.step" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-evoker: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Evoker Sounds" + options: + Sound_Ambient: + spell: sound-entity-evoker-ambient + item: + type: evoker_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.evoker.ambient" + slot: 0 + Sound_CastSpell: + spell: sound-entity-evoker-cast_spell + item: + type: evoker_spawn_egg + name: "&eCast Spell Sound" + lore: + - "&7&oentity.evoker.cast_spell" + slot: 1 + Sound_Celebrate: + spell: sound-entity-evoker-celebrate + item: + type: evoker_spawn_egg + name: "&eCelebrate Sound" + lore: + - "&7&oentity.evoker.celebrate" + slot: 2 + Sound_Death: + spell: sound-entity-evoker-death + item: + type: evoker_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.evoker.death" + slot: 3 + Sound_Hurt: + spell: sound-entity-evoker-hurt + item: + type: evoker_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.evoker.hurt" + slot: 4 + Sound_PrepareAttack: + spell: sound-entity-evoker-prepare_attack + item: + type: evoker_spawn_egg + name: "&ePrepare Attack Sound" + lore: + - "&7&oentity.evoker.prepare_attack" + slot: 5 + Sound_PrepareSummon: + spell: sound-entity-evoker-prepare_summon + item: + type: evoker_spawn_egg + name: "&ePrepare Summon Sound" + lore: + - "&7&oentity.evoker.prepare_summon" + slot: 6 + Sound_PrepareWololo: + spell: sound-entity-evoker-prepare_wololo + item: + type: evoker_spawn_egg + name: "&ePrepare Wololo Sound" + lore: + - "&7&oentity.evoker.prepare_wololo" + slot: 7 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-evoker_fangs: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Evoker_fangs Sounds" + options: + Sound_Attack: + spell: sound-entity-evoker_fangs-attack + item: + type: totem_of_undying + name: "&eAttack Sound" + lore: + - "&7&oentity.evoker_fangs.attack" + slot: 0 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-experience_bottle: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Experience_bottle Sounds" + options: + Sound_Throw: + spell: sound-entity-experience_bottle-throw + item: + type: experience_bottle + name: "&eThrow Sound" + lore: + - "&7&oentity.experience_bottle.throw" + slot: 0 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-experience_orb: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Experience_orb Sounds" + options: + Sound_Pickup: + spell: sound-entity-experience_orb-pickup + item: + type: experience_bottle + name: "&ePickup Sound" + lore: + - "&7&oentity.experience_orb.pickup" + slot: 0 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-firework_rocket: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Firework_rocket Sounds" + options: + Sound_Blast: + spell: sound-entity-firework_rocket-blast + item: + type: firework_rocket + name: "&eBlast Sound" + lore: + - "&7&oentity.firework_rocket.blast" + slot: 0 + Sound_BlastFar: + spell: sound-entity-firework_rocket-blast_far + item: + type: firework_rocket + name: "&eBlast Far Sound" + lore: + - "&7&oentity.firework_rocket.blast_far" + slot: 1 + Sound_LargeBlast: + spell: sound-entity-firework_rocket-large_blast + item: + type: firework_rocket + name: "&eLarge Blast Sound" + lore: + - "&7&oentity.firework_rocket.large_blast" + slot: 2 + Sound_LargeBlastFar: + spell: sound-entity-firework_rocket-large_blast_far + item: + type: firework_rocket + name: "&eLarge Blast Far Sound" + lore: + - "&7&oentity.firework_rocket.large_blast_far" + slot: 3 + Sound_Launch: + spell: sound-entity-firework_rocket-launch + item: + type: firework_rocket + name: "&eLaunch Sound" + lore: + - "&7&oentity.firework_rocket.launch" + slot: 4 + Sound_Shoot: + spell: sound-entity-firework_rocket-shoot + item: + type: firework_rocket + name: "&eShoot Sound" + lore: + - "&7&oentity.firework_rocket.shoot" + slot: 5 + Sound_Twinkle: + spell: sound-entity-firework_rocket-twinkle + item: + type: firework_rocket + name: "&eTwinkle Sound" + lore: + - "&7&oentity.firework_rocket.twinkle" + slot: 6 + Sound_TwinkleFar: + spell: sound-entity-firework_rocket-twinkle_far + item: + type: firework_rocket + name: "&eTwinkle Far Sound" + lore: + - "&7&oentity.firework_rocket.twinkle_far" + slot: 7 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-fish: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Fish Sounds" + options: + Sound_Swim: + spell: sound-entity-fish-swim + item: + type: water_bucket + name: "&eSwim Sound" + lore: + - "&7&oentity.fish.swim" + slot: 0 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-fishing_bobber: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Fishing_bobber Sounds" + options: + Sound_Retrieve: + spell: sound-entity-fishing_bobber-retrieve + item: + type: fishing_rod + name: "&eRetrieve Sound" + lore: + - "&7&oentity.fishing_bobber.retrieve" + slot: 0 + Sound_Splash: + spell: sound-entity-fishing_bobber-splash + item: + type: fishing_rod + name: "&eSplash Sound" + lore: + - "&7&oentity.fishing_bobber.splash" + slot: 1 + Sound_Throw: + spell: sound-entity-fishing_bobber-throw + item: + type: fishing_rod + name: "&eThrow Sound" + lore: + - "&7&oentity.fishing_bobber.throw" + slot: 2 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-fox: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Fox Sounds" + options: + Sound_Aggro: + spell: sound-entity-fox-aggro + item: + type: fox_spawn_egg + name: "&eAggro Sound" + lore: + - "&7&oentity.fox.aggro" + slot: 0 + Sound_Ambient: + spell: sound-entity-fox-ambient + item: + type: fox_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.fox.ambient" + slot: 1 + Sound_Bite: + spell: sound-entity-fox-bite + item: + type: fox_spawn_egg + name: "&eBite Sound" + lore: + - "&7&oentity.fox.bite" + slot: 2 + Sound_Death: + spell: sound-entity-fox-death + item: + type: fox_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.fox.death" + slot: 3 + Sound_Eat: + spell: sound-entity-fox-eat + item: + type: fox_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.fox.eat" + slot: 4 + Sound_Hurt: + spell: sound-entity-fox-hurt + item: + type: fox_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.fox.hurt" + slot: 5 + Sound_Screech: + spell: sound-entity-fox-screech + item: + type: fox_spawn_egg + name: "&eScreech Sound" + lore: + - "&7&oentity.fox.screech" + slot: 6 + Sound_Sleep: + spell: sound-entity-fox-sleep + item: + type: fox_spawn_egg + name: "&eSleep Sound" + lore: + - "&7&oentity.fox.sleep" + slot: 7 + Sound_Sniff: + spell: sound-entity-fox-sniff + item: + type: fox_spawn_egg + name: "&eSniff Sound" + lore: + - "&7&oentity.fox.sniff" + slot: 8 + Sound_Spit: + spell: sound-entity-fox-spit + item: + type: fox_spawn_egg + name: "&eSpit Sound" + lore: + - "&7&oentity.fox.spit" + slot: 9 + Sound_Teleport: + spell: sound-entity-fox-teleport + item: + type: fox_spawn_egg + name: "&eTeleport Sound" + lore: + - "&7&oentity.fox.teleport" + slot: 10 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 22 +sb-entity-generic: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Generic Sounds" + options: + Sound_BigFall: + spell: sound-entity-generic-big_fall + item: + type: bookshelf + name: "&eBig Fall Sound" + lore: + - "&7&oentity.generic.big_fall" + slot: 0 + Sound_Burn: + spell: sound-entity-generic-burn + item: + type: bookshelf + name: "&eBurn Sound" + lore: + - "&7&oentity.generic.burn" + slot: 1 + Sound_Death: + spell: sound-entity-generic-death + item: + type: bookshelf + name: "&eDeath Sound" + lore: + - "&7&oentity.generic.death" + slot: 2 + Sound_Drink: + spell: sound-entity-generic-drink + item: + type: bookshelf + name: "&eDrink Sound" + lore: + - "&7&oentity.generic.drink" + slot: 3 + Sound_Eat: + spell: sound-entity-generic-eat + item: + type: bookshelf + name: "&eEat Sound" + lore: + - "&7&oentity.generic.eat" + slot: 4 + Sound_Explode: + spell: sound-entity-generic-explode + item: + type: bookshelf + name: "&eExplode Sound" + lore: + - "&7&oentity.generic.explode" + slot: 5 + Sound_ExtinguishFire: + spell: sound-entity-generic-extinguish_fire + item: + type: bookshelf + name: "&eExtinguish Fire Sound" + lore: + - "&7&oentity.generic.extinguish_fire" + slot: 6 + Sound_Hurt: + spell: sound-entity-generic-hurt + item: + type: bookshelf + name: "&eHurt Sound" + lore: + - "&7&oentity.generic.hurt" + slot: 7 + Sound_SmallFall: + spell: sound-entity-generic-small_fall + item: + type: bookshelf + name: "&eSmall Fall Sound" + lore: + - "&7&oentity.generic.small_fall" + slot: 8 + Sound_Splash: + spell: sound-entity-generic-splash + item: + type: bookshelf + name: "&eSplash Sound" + lore: + - "&7&oentity.generic.splash" + slot: 9 + Sound_Swim: + spell: sound-entity-generic-swim + item: + type: bookshelf + name: "&eSwim Sound" + lore: + - "&7&oentity.generic.swim" + slot: 10 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 22 +sb-entity-ghast: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ghast Sounds" + options: + Sound_Ambient: + spell: sound-entity-ghast-ambient + item: + type: ghast_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.ghast.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-ghast-death + item: + type: ghast_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.ghast.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-ghast-hurt + item: + type: ghast_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.ghast.hurt" + slot: 2 + Sound_Scream: + spell: sound-entity-ghast-scream + item: + type: ghast_spawn_egg + name: "&eScream Sound" + lore: + - "&7&oentity.ghast.scream" + slot: 3 + Sound_Shoot: + spell: sound-entity-ghast-shoot + item: + type: ghast_spawn_egg + name: "&eShoot Sound" + lore: + - "&7&oentity.ghast.shoot" + slot: 4 + Sound_Warn: + spell: sound-entity-ghast-warn + item: + type: ghast_spawn_egg + name: "&eWarn Sound" + lore: + - "&7&oentity.ghast.warn" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-guardian: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Guardian Sounds" + options: + Sound_Ambient: + spell: sound-entity-guardian-ambient + item: + type: guardian_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.guardian.ambient" + slot: 0 + Sound_AmbientLand: + spell: sound-entity-guardian-ambient_land + item: + type: guardian_spawn_egg + name: "&eAmbient Land Sound" + lore: + - "&7&oentity.guardian.ambient_land" + slot: 1 + Sound_Attack: + spell: sound-entity-guardian-attack + item: + type: guardian_spawn_egg + name: "&eAttack Sound" + lore: + - "&7&oentity.guardian.attack" + slot: 2 + Sound_Death: + spell: sound-entity-guardian-death + item: + type: guardian_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.guardian.death" + slot: 3 + Sound_DeathLand: + spell: sound-entity-guardian-death_land + item: + type: guardian_spawn_egg + name: "&eDeath Land Sound" + lore: + - "&7&oentity.guardian.death_land" + slot: 4 + Sound_Flop: + spell: sound-entity-guardian-flop + item: + type: guardian_spawn_egg + name: "&eFlop Sound" + lore: + - "&7&oentity.guardian.flop" + slot: 5 + Sound_Hurt: + spell: sound-entity-guardian-hurt + item: + type: guardian_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.guardian.hurt" + slot: 6 + Sound_HurtLand: + spell: sound-entity-guardian-hurt_land + item: + type: guardian_spawn_egg + name: "&eHurt Land Sound" + lore: + - "&7&oentity.guardian.hurt_land" + slot: 7 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-hoglin: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Hoglin Sounds" + options: + Sound_Ambient: + spell: sound-entity-hoglin-ambient + item: + type: hoglin_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.hoglin.ambient" + slot: 0 + Sound_Angry: + spell: sound-entity-hoglin-angry + item: + type: hoglin_spawn_egg + name: "&eAngry Sound" + lore: + - "&7&oentity.hoglin.angry" + slot: 1 + Sound_Attack: + spell: sound-entity-hoglin-attack + item: + type: hoglin_spawn_egg + name: "&eAttack Sound" + lore: + - "&7&oentity.hoglin.attack" + slot: 2 + Sound_ConvertedTOZombified: + spell: sound-entity-hoglin-converted_to_zombified + item: + type: hoglin_spawn_egg + name: "&eConverted TO Zombified Sound" + lore: + - "&7&oentity.hoglin.converted_to_zombified" + slot: 3 + Sound_Death: + spell: sound-entity-hoglin-death + item: + type: hoglin_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.hoglin.death" + slot: 4 + Sound_Hurt: + spell: sound-entity-hoglin-hurt + item: + type: hoglin_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.hoglin.hurt" + slot: 5 + Sound_Retreat: + spell: sound-entity-hoglin-retreat + item: + type: hoglin_spawn_egg + name: "&eRetreat Sound" + lore: + - "&7&oentity.hoglin.retreat" + slot: 6 + Sound_Step: + spell: sound-entity-hoglin-step + item: + type: hoglin_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.hoglin.step" + slot: 7 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-horse: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Horse Sounds" + options: + Sound_Ambient: + spell: sound-entity-horse-ambient + item: + type: horse_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.horse.ambient" + slot: 0 + Sound_Angry: + spell: sound-entity-horse-angry + item: + type: horse_spawn_egg + name: "&eAngry Sound" + lore: + - "&7&oentity.horse.angry" + slot: 1 + Sound_Armor: + spell: sound-entity-horse-armor + item: + type: horse_spawn_egg + name: "&eArmor Sound" + lore: + - "&7&oentity.horse.armor" + slot: 2 + Sound_Breathe: + spell: sound-entity-horse-breathe + item: + type: horse_spawn_egg + name: "&eBreathe Sound" + lore: + - "&7&oentity.horse.breathe" + slot: 3 + Sound_Death: + spell: sound-entity-horse-death + item: + type: horse_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.horse.death" + slot: 4 + Sound_Eat: + spell: sound-entity-horse-eat + item: + type: horse_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.horse.eat" + slot: 5 + Sound_Gallop: + spell: sound-entity-horse-gallop + item: + type: horse_spawn_egg + name: "&eGallop Sound" + lore: + - "&7&oentity.horse.gallop" + slot: 6 + Sound_Hurt: + spell: sound-entity-horse-hurt + item: + type: horse_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.horse.hurt" + slot: 7 + Sound_Jump: + spell: sound-entity-horse-jump + item: + type: horse_spawn_egg + name: "&eJump Sound" + lore: + - "&7&oentity.horse.jump" + slot: 8 + Sound_Land: + spell: sound-entity-horse-land + item: + type: horse_spawn_egg + name: "&eLand Sound" + lore: + - "&7&oentity.horse.land" + slot: 9 + Sound_Saddle: + spell: sound-entity-horse-saddle + item: + type: horse_spawn_egg + name: "&eSaddle Sound" + lore: + - "&7&oentity.horse.saddle" + slot: 10 + Sound_Step: + spell: sound-entity-horse-step + item: + type: horse_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.horse.step" + slot: 11 + Sound_StepWood: + spell: sound-entity-horse-step_wood + item: + type: horse_spawn_egg + name: "&eStep Wood Sound" + lore: + - "&7&oentity.horse.step_wood" + slot: 12 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 22 +sb-entity-hostile: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Hostile Sounds" + options: + Sound_BigFall: + spell: sound-entity-hostile-big_fall + item: + type: wooden_sword + name: "&eBig Fall Sound" + lore: + - "&7&oentity.hostile.big_fall" + slot: 0 + Sound_Death: + spell: sound-entity-hostile-death + item: + type: wooden_sword + name: "&eDeath Sound" + lore: + - "&7&oentity.hostile.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-hostile-hurt + item: + type: wooden_sword + name: "&eHurt Sound" + lore: + - "&7&oentity.hostile.hurt" + slot: 2 + Sound_SmallFall: + spell: sound-entity-hostile-small_fall + item: + type: wooden_sword + name: "&eSmall Fall Sound" + lore: + - "&7&oentity.hostile.small_fall" + slot: 3 + Sound_Splash: + spell: sound-entity-hostile-splash + item: + type: wooden_sword + name: "&eSplash Sound" + lore: + - "&7&oentity.hostile.splash" + slot: 4 + Sound_Swim: + spell: sound-entity-hostile-swim + item: + type: wooden_sword + name: "&eSwim Sound" + lore: + - "&7&oentity.hostile.swim" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-husk: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Husk Sounds" + options: + Sound_Ambient: + spell: sound-entity-husk-ambient + item: + type: husk_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.husk.ambient" + slot: 0 + Sound_ConvertedTOZombie: + spell: sound-entity-husk-converted_to_zombie + item: + type: husk_spawn_egg + name: "&eConverted TO Zombie Sound" + lore: + - "&7&oentity.husk.converted_to_zombie" + slot: 1 + Sound_Death: + spell: sound-entity-husk-death + item: + type: husk_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.husk.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-husk-hurt + item: + type: husk_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.husk.hurt" + slot: 3 + Sound_Step: + spell: sound-entity-husk-step + item: + type: husk_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.husk.step" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-illusioner: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Illusioner Sounds" + options: + Sound_Ambient: + spell: sound-entity-illusioner-ambient + item: + type: lapis_lazuli + name: "&eAmbient Sound" + lore: + - "&7&oentity.illusioner.ambient" + slot: 0 + Sound_CastSpell: + spell: sound-entity-illusioner-cast_spell + item: + type: lapis_lazuli + name: "&eCast Spell Sound" + lore: + - "&7&oentity.illusioner.cast_spell" + slot: 1 + Sound_Death: + spell: sound-entity-illusioner-death + item: + type: lapis_lazuli + name: "&eDeath Sound" + lore: + - "&7&oentity.illusioner.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-illusioner-hurt + item: + type: lapis_lazuli + name: "&eHurt Sound" + lore: + - "&7&oentity.illusioner.hurt" + slot: 3 + Sound_MirrorMove: + spell: sound-entity-illusioner-mirror_move + item: + type: lapis_lazuli + name: "&eMirror Move Sound" + lore: + - "&7&oentity.illusioner.mirror_move" + slot: 4 + Sound_PrepareBlindness: + spell: sound-entity-illusioner-prepare_blindness + item: + type: lapis_lazuli + name: "&ePrepare Blindness Sound" + lore: + - "&7&oentity.illusioner.prepare_blindness" + slot: 5 + Sound_PrepareMirror: + spell: sound-entity-illusioner-prepare_mirror + item: + type: lapis_lazuli + name: "&ePrepare Mirror Sound" + lore: + - "&7&oentity.illusioner.prepare_mirror" + slot: 6 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-iron_golem: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Iron_golem Sounds" + options: + Sound_Attack: + spell: sound-entity-iron_golem-attack + item: + type: ghast_spawn_egg + name: "&eAttack Sound" + lore: + - "&7&oentity.iron_golem.attack" + slot: 0 + Sound_Damage: + spell: sound-entity-iron_golem-damage + item: + type: ghast_spawn_egg + name: "&eDamage Sound" + lore: + - "&7&oentity.iron_golem.damage" + slot: 1 + Sound_Death: + spell: sound-entity-iron_golem-death + item: + type: ghast_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.iron_golem.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-iron_golem-hurt + item: + type: ghast_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.iron_golem.hurt" + slot: 3 + Sound_Repair: + spell: sound-entity-iron_golem-repair + item: + type: ghast_spawn_egg + name: "&eRepair Sound" + lore: + - "&7&oentity.iron_golem.repair" + slot: 4 + Sound_Step: + spell: sound-entity-iron_golem-step + item: + type: ghast_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.iron_golem.step" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-item: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Item Sounds" + options: + Sound_Break: + spell: sound-entity-item-break + item: + type: paper + name: "&eBreak Sound" + lore: + - "&7&oentity.item.break" + slot: 0 + Sound_Pickup: + spell: sound-entity-item-pickup + item: + type: paper + name: "&ePickup Sound" + lore: + - "&7&oentity.item.pickup" + slot: 1 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-item_frame: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Item_frame Sounds" + options: + Sound_AddItem: + spell: sound-entity-item_frame-add_item + item: + type: item_frame + name: "&eAdd Item Sound" + lore: + - "&7&oentity.item_frame.add_item" + slot: 0 + Sound_Break: + spell: sound-entity-item_frame-break + item: + type: item_frame + name: "&eBreak Sound" + lore: + - "&7&oentity.item_frame.break" + slot: 1 + Sound_Place: + spell: sound-entity-item_frame-place + item: + type: item_frame + name: "&ePlace Sound" + lore: + - "&7&oentity.item_frame.place" + slot: 2 + Sound_RemoveItem: + spell: sound-entity-item_frame-remove_item + item: + type: item_frame + name: "&eRemove Item Sound" + lore: + - "&7&oentity.item_frame.remove_item" + slot: 3 + Sound_RotateItem: + spell: sound-entity-item_frame-rotate_item + item: + type: item_frame + name: "&eRotate Item Sound" + lore: + - "&7&oentity.item_frame.rotate_item" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-leash_knot: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Leash_knot Sounds" + options: + Sound_Break: + spell: sound-entity-leash_knot-break + item: + type: lead + name: "&eBreak Sound" + lore: + - "&7&oentity.leash_knot.break" + slot: 0 + Sound_Place: + spell: sound-entity-leash_knot-place + item: + type: lead + name: "&ePlace Sound" + lore: + - "&7&oentity.leash_knot.place" + slot: 1 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-lightning_bolt: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Lightning_bolt Sounds" + options: + Sound_Impact: + spell: sound-entity-lightning_bolt-impact + item: + type: end_rod + name: "&eImpact Sound" + lore: + - "&7&oentity.lightning_bolt.impact" + slot: 0 + Sound_Thunder: + spell: sound-entity-lightning_bolt-thunder + item: + type: end_rod + name: "&eThunder Sound" + lore: + - "&7&oentity.lightning_bolt.thunder" + slot: 1 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-lingering_potion: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Lingering_potion Sounds" + options: + Sound_Throw: + spell: sound-entity-lingering_potion-throw + item: + type: lingering_potion + name: "&eThrow Sound" + lore: + - "&7&oentity.lingering_potion.throw" + slot: 0 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-llama: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Llama Sounds" + options: + Sound_Ambient: + spell: sound-entity-llama-ambient + item: + type: llama_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.llama.ambient" + slot: 0 + Sound_Angry: + spell: sound-entity-llama-angry + item: + type: llama_spawn_egg + name: "&eAngry Sound" + lore: + - "&7&oentity.llama.angry" + slot: 1 + Sound_Chest: + spell: sound-entity-llama-chest + item: + type: llama_spawn_egg + name: "&eChest Sound" + lore: + - "&7&oentity.llama.chest" + slot: 2 + Sound_Death: + spell: sound-entity-llama-death + item: + type: llama_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.llama.death" + slot: 3 + Sound_Eat: + spell: sound-entity-llama-eat + item: + type: llama_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.llama.eat" + slot: 4 + Sound_Hurt: + spell: sound-entity-llama-hurt + item: + type: llama_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.llama.hurt" + slot: 5 + Sound_Spit: + spell: sound-entity-llama-spit + item: + type: llama_spawn_egg + name: "&eSpit Sound" + lore: + - "&7&oentity.llama.spit" + slot: 6 + Sound_Step: + spell: sound-entity-llama-step + item: + type: llama_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.llama.step" + slot: 7 + Sound_Swag: + spell: sound-entity-llama-swag + item: + type: llama_spawn_egg + name: "&eSwag Sound" + lore: + - "&7&oentity.llama.swag" + slot: 8 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-magma_cube: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Magma_cube Sounds" + options: + Sound_Death: + spell: sound-entity-magma_cube-death + item: + type: magma_cube_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.magma_cube.death" + slot: 0 + Sound_DeathSmall: + spell: sound-entity-magma_cube-death_small + item: + type: magma_cube_spawn_egg + name: "&eDeath Small Sound" + lore: + - "&7&oentity.magma_cube.death_small" + slot: 1 + Sound_Hurt: + spell: sound-entity-magma_cube-hurt + item: + type: magma_cube_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.magma_cube.hurt" + slot: 2 + Sound_HurtSmall: + spell: sound-entity-magma_cube-hurt_small + item: + type: magma_cube_spawn_egg + name: "&eHurt Small Sound" + lore: + - "&7&oentity.magma_cube.hurt_small" + slot: 3 + Sound_Jump: + spell: sound-entity-magma_cube-jump + item: + type: magma_cube_spawn_egg + name: "&eJump Sound" + lore: + - "&7&oentity.magma_cube.jump" + slot: 4 + Sound_Squish: + spell: sound-entity-magma_cube-squish + item: + type: magma_cube_spawn_egg + name: "&eSquish Sound" + lore: + - "&7&oentity.magma_cube.squish" + slot: 5 + Sound_SquishSmall: + spell: sound-entity-magma_cube-squish_small + item: + type: magma_cube_spawn_egg + name: "&eSquish Small Sound" + lore: + - "&7&oentity.magma_cube.squish_small" + slot: 6 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-minecart: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Minecart Sounds" + options: + Sound_Inside: + spell: sound-entity-minecart-inside + item: + type: minecart + name: "&eInside Sound" + lore: + - "&7&oentity.minecart.inside" + slot: 0 + Sound_Riding: + spell: sound-entity-minecart-riding + item: + type: minecart + name: "&eRiding Sound" + lore: + - "&7&oentity.minecart.riding" + slot: 1 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-mooshroom: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Mooshroom Sounds" + options: + Sound_Convert: + spell: sound-entity-mooshroom-convert + item: + type: mooshroom_spawn_egg + name: "&eConvert Sound" + lore: + - "&7&oentity.mooshroom.convert" + slot: 0 + Sound_Eat: + spell: sound-entity-mooshroom-eat + item: + type: mooshroom_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.mooshroom.eat" + slot: 1 + Sound_Milk: + spell: sound-entity-mooshroom-milk + item: + type: mooshroom_spawn_egg + name: "&eMilk Sound" + lore: + - "&7&oentity.mooshroom.milk" + slot: 2 + Sound_Shear: + spell: sound-entity-mooshroom-shear + item: + type: mooshroom_spawn_egg + name: "&eShear Sound" + lore: + - "&7&oentity.mooshroom.shear" + slot: 3 + Sound_SuspiciousMilk: + spell: sound-entity-mooshroom-suspicious_milk + item: + type: mooshroom_spawn_egg + name: "&eSuspicious Milk Sound" + lore: + - "&7&oentity.mooshroom.suspicious_milk" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-mule: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Mule Sounds" + options: + Sound_Ambient: + spell: sound-entity-mule-ambient + item: + type: mule_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.mule.ambient" + slot: 0 + Sound_Angry: + spell: sound-entity-mule-angry + item: + type: mule_spawn_egg + name: "&eAngry Sound" + lore: + - "&7&oentity.mule.angry" + slot: 1 + Sound_Chest: + spell: sound-entity-mule-chest + item: + type: mule_spawn_egg + name: "&eChest Sound" + lore: + - "&7&oentity.mule.chest" + slot: 2 + Sound_Death: + spell: sound-entity-mule-death + item: + type: mule_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.mule.death" + slot: 3 + Sound_Eat: + spell: sound-entity-mule-eat + item: + type: mule_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.mule.eat" + slot: 4 + Sound_Hurt: + spell: sound-entity-mule-hurt + item: + type: mule_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.mule.hurt" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-ocelot: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ocelot Sounds" + options: + Sound_Ambient: + spell: sound-entity-ocelot-ambient + item: + type: ocelot_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.ocelot.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-ocelot-death + item: + type: ocelot_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.ocelot.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-ocelot-hurt + item: + type: ocelot_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.ocelot.hurt" + slot: 2 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-painting: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Painting Sounds" + options: + Sound_Break: + spell: sound-entity-painting-break + item: + type: painting + name: "&eBreak Sound" + lore: + - "&7&oentity.painting.break" + slot: 0 + Sound_Place: + spell: sound-entity-painting-place + item: + type: painting + name: "&ePlace Sound" + lore: + - "&7&oentity.painting.place" + slot: 1 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-panda: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Panda Sounds" + options: + Sound_AggressiveAmbient: + spell: sound-entity-panda-aggressive_ambient + item: + type: panda_spawn_egg + name: "&eAggressive Ambient Sound" + lore: + - "&7&oentity.panda.aggressive_ambient" + slot: 0 + Sound_Ambient: + spell: sound-entity-panda-ambient + item: + type: panda_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.panda.ambient" + slot: 1 + Sound_Bite: + spell: sound-entity-panda-bite + item: + type: panda_spawn_egg + name: "&eBite Sound" + lore: + - "&7&oentity.panda.bite" + slot: 2 + Sound_CantBreed: + spell: sound-entity-panda-cant_breed + item: + type: panda_spawn_egg + name: "&eCant Breed Sound" + lore: + - "&7&oentity.panda.cant_breed" + slot: 3 + Sound_Death: + spell: sound-entity-panda-death + item: + type: panda_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.panda.death" + slot: 4 + Sound_Eat: + spell: sound-entity-panda-eat + item: + type: panda_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.panda.eat" + slot: 5 + Sound_Hurt: + spell: sound-entity-panda-hurt + item: + type: panda_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.panda.hurt" + slot: 6 + Sound_PreSneeze: + spell: sound-entity-panda-pre_sneeze + item: + type: panda_spawn_egg + name: "&ePre Sneeze Sound" + lore: + - "&7&oentity.panda.pre_sneeze" + slot: 7 + Sound_Sneeze: + spell: sound-entity-panda-sneeze + item: + type: panda_spawn_egg + name: "&eSneeze Sound" + lore: + - "&7&oentity.panda.sneeze" + slot: 8 + Sound_Step: + spell: sound-entity-panda-step + item: + type: panda_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.panda.step" + slot: 9 + Sound_WorriedAmbient: + spell: sound-entity-panda-worried_ambient + item: + type: panda_spawn_egg + name: "&eWorried Ambient Sound" + lore: + - "&7&oentity.panda.worried_ambient" + slot: 10 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 22 +sb-entity-parrot: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Parrot Sounds" + options: + Sound_Ambient: + spell: sound-entity-parrot-ambient + item: + type: parrot_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.parrot.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-parrot-death + item: + type: parrot_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.parrot.death" + slot: 1 + Sound_Eat: + spell: sound-entity-parrot-eat + item: + type: parrot_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.parrot.eat" + slot: 2 + Sound_Fly: + spell: sound-entity-parrot-fly + item: + type: parrot_spawn_egg + name: "&eFly Sound" + lore: + - "&7&oentity.parrot.fly" + slot: 3 + Sound_Hurt: + spell: sound-entity-parrot-hurt + item: + type: parrot_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.parrot.hurt" + slot: 4 + Sound_Step: + spell: sound-entity-parrot-step + item: + type: parrot_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.parrot.step" + slot: 5 + Imitate: + spell: sb-entity-parrot-imitate + item: + type: parrot_spawn_egg + name: "&6Imitate Sounds" + slot: 6 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-parrot-imitate: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Imitate Sounds" + options: + Sound_Blaze: + spell: sound-entity-parrot-imitate-blaze + item: + type: parrot_spawn_egg + name: "&eBlaze Sound" + lore: + - "&7&oentity.parrot.imitate.blaze" + slot: 0 + Sound_Creeper: + spell: sound-entity-parrot-imitate-creeper + item: + type: parrot_spawn_egg + name: "&eCreeper Sound" + lore: + - "&7&oentity.parrot.imitate.creeper" + slot: 1 + Sound_Drowned: + spell: sound-entity-parrot-imitate-drowned + item: + type: parrot_spawn_egg + name: "&eDrowned Sound" + lore: + - "&7&oentity.parrot.imitate.drowned" + slot: 2 + Sound_ElderGuardian: + spell: sound-entity-parrot-imitate-elder_guardian + item: + type: parrot_spawn_egg + name: "&eElder Guardian Sound" + lore: + - "&7&oentity.parrot.imitate.elder_guardian" + slot: 3 + Sound_EnderDragon: + spell: sound-entity-parrot-imitate-ender_dragon + item: + type: parrot_spawn_egg + name: "&eEnder Dragon Sound" + lore: + - "&7&oentity.parrot.imitate.ender_dragon" + slot: 4 + Sound_Endermite: + spell: sound-entity-parrot-imitate-endermite + item: + type: parrot_spawn_egg + name: "&eEndermite Sound" + lore: + - "&7&oentity.parrot.imitate.endermite" + slot: 5 + Sound_Evoker: + spell: sound-entity-parrot-imitate-evoker + item: + type: parrot_spawn_egg + name: "&eEvoker Sound" + lore: + - "&7&oentity.parrot.imitate.evoker" + slot: 6 + Sound_Ghast: + spell: sound-entity-parrot-imitate-ghast + item: + type: parrot_spawn_egg + name: "&eGhast Sound" + lore: + - "&7&oentity.parrot.imitate.ghast" + slot: 7 + Sound_Guardian: + spell: sound-entity-parrot-imitate-guardian + item: + type: parrot_spawn_egg + name: "&eGuardian Sound" + lore: + - "&7&oentity.parrot.imitate.guardian" + slot: 8 + Sound_Hoglin: + spell: sound-entity-parrot-imitate-hoglin + item: + type: parrot_spawn_egg + name: "&eHoglin Sound" + lore: + - "&7&oentity.parrot.imitate.hoglin" + slot: 9 + Sound_Husk: + spell: sound-entity-parrot-imitate-husk + item: + type: parrot_spawn_egg + name: "&eHusk Sound" + lore: + - "&7&oentity.parrot.imitate.husk" + slot: 10 + Sound_Illusioner: + spell: sound-entity-parrot-imitate-illusioner + item: + type: parrot_spawn_egg + name: "&eIllusioner Sound" + lore: + - "&7&oentity.parrot.imitate.illusioner" + slot: 11 + Sound_MagmaCube: + spell: sound-entity-parrot-imitate-magma_cube + item: + type: parrot_spawn_egg + name: "&eMagma Cube Sound" + lore: + - "&7&oentity.parrot.imitate.magma_cube" + slot: 12 + Sound_Phantom: + spell: sound-entity-parrot-imitate-phantom + item: + type: parrot_spawn_egg + name: "&ePhantom Sound" + lore: + - "&7&oentity.parrot.imitate.phantom" + slot: 13 + Sound_Piglin: + spell: sound-entity-parrot-imitate-piglin + item: + type: parrot_spawn_egg + name: "&ePiglin Sound" + lore: + - "&7&oentity.parrot.imitate.piglin" + slot: 14 + Sound_Pillager: + spell: sound-entity-parrot-imitate-pillager + item: + type: parrot_spawn_egg + name: "&ePillager Sound" + lore: + - "&7&oentity.parrot.imitate.pillager" + slot: 15 + Sound_Ravager: + spell: sound-entity-parrot-imitate-ravager + item: + type: parrot_spawn_egg + name: "&eRavager Sound" + lore: + - "&7&oentity.parrot.imitate.ravager" + slot: 16 + Sound_Shulker: + spell: sound-entity-parrot-imitate-shulker + item: + type: parrot_spawn_egg + name: "&eShulker Sound" + lore: + - "&7&oentity.parrot.imitate.shulker" + slot: 17 + Sound_Silverfish: + spell: sound-entity-parrot-imitate-silverfish + item: + type: parrot_spawn_egg + name: "&eSilverfish Sound" + lore: + - "&7&oentity.parrot.imitate.silverfish" + slot: 18 + Sound_Skeleton: + spell: sound-entity-parrot-imitate-skeleton + item: + type: parrot_spawn_egg + name: "&eSkeleton Sound" + lore: + - "&7&oentity.parrot.imitate.skeleton" + slot: 19 + Sound_Slime: + spell: sound-entity-parrot-imitate-slime + item: + type: parrot_spawn_egg + name: "&eSlime Sound" + lore: + - "&7&oentity.parrot.imitate.slime" + slot: 20 + Sound_Spider: + spell: sound-entity-parrot-imitate-spider + item: + type: parrot_spawn_egg + name: "&eSpider Sound" + lore: + - "&7&oentity.parrot.imitate.spider" + slot: 21 + Sound_Stray: + spell: sound-entity-parrot-imitate-stray + item: + type: parrot_spawn_egg + name: "&eStray Sound" + lore: + - "&7&oentity.parrot.imitate.stray" + slot: 22 + Sound_Vex: + spell: sound-entity-parrot-imitate-vex + item: + type: parrot_spawn_egg + name: "&eVex Sound" + lore: + - "&7&oentity.parrot.imitate.vex" + slot: 23 + Sound_Vindicator: + spell: sound-entity-parrot-imitate-vindicator + item: + type: parrot_spawn_egg + name: "&eVindicator Sound" + lore: + - "&7&oentity.parrot.imitate.vindicator" + slot: 24 + Sound_Witch: + spell: sound-entity-parrot-imitate-witch + item: + type: parrot_spawn_egg + name: "&eWitch Sound" + lore: + - "&7&oentity.parrot.imitate.witch" + slot: 25 + Sound_Wither: + spell: sound-entity-parrot-imitate-wither + item: + type: parrot_spawn_egg + name: "&eWither Sound" + lore: + - "&7&oentity.parrot.imitate.wither" + slot: 26 + Sound_WitherSkeleton: + spell: sound-entity-parrot-imitate-wither_skeleton + item: + type: parrot_spawn_egg + name: "&eWither Skeleton Sound" + lore: + - "&7&oentity.parrot.imitate.wither_skeleton" + slot: 27 + Sound_Zoglin: + spell: sound-entity-parrot-imitate-zoglin + item: + type: parrot_spawn_egg + name: "&eZoglin Sound" + lore: + - "&7&oentity.parrot.imitate.zoglin" + slot: 28 + Sound_Zombie: + spell: sound-entity-parrot-imitate-zombie + item: + type: parrot_spawn_egg + name: "&eZombie Sound" + lore: + - "&7&oentity.parrot.imitate.zombie" + slot: 29 + Sound_ZombieVillager: + spell: sound-entity-parrot-imitate-zombie_villager + item: + type: parrot_spawn_egg + name: "&eZombie Villager Sound" + lore: + - "&7&oentity.parrot.imitate.zombie_villager" + slot: 30 + Button_Back: + spell: sb-entity-parrot + item: + type: book + name: "&6Back" + slot: 40 +sb-entity-phantom: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Phantom Sounds" + options: + Sound_Ambient: + spell: sound-entity-phantom-ambient + item: + type: phantom_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.phantom.ambient" + slot: 0 + Sound_Bite: + spell: sound-entity-phantom-bite + item: + type: phantom_spawn_egg + name: "&eBite Sound" + lore: + - "&7&oentity.phantom.bite" + slot: 1 + Sound_Death: + spell: sound-entity-phantom-death + item: + type: phantom_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.phantom.death" + slot: 2 + Sound_Flap: + spell: sound-entity-phantom-flap + item: + type: phantom_spawn_egg + name: "&eFlap Sound" + lore: + - "&7&oentity.phantom.flap" + slot: 3 + Sound_Hurt: + spell: sound-entity-phantom-hurt + item: + type: phantom_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.phantom.hurt" + slot: 4 + Sound_Swoop: + spell: sound-entity-phantom-swoop + item: + type: phantom_spawn_egg + name: "&eSwoop Sound" + lore: + - "&7&oentity.phantom.swoop" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-pig: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Pig Sounds" + options: + Sound_Ambient: + spell: sound-entity-pig-ambient + item: + type: pig_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.pig.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-pig-death + item: + type: pig_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.pig.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-pig-hurt + item: + type: pig_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.pig.hurt" + slot: 2 + Sound_Saddle: + spell: sound-entity-pig-saddle + item: + type: pig_spawn_egg + name: "&eSaddle Sound" + lore: + - "&7&oentity.pig.saddle" + slot: 3 + Sound_Step: + spell: sound-entity-pig-step + item: + type: pig_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.pig.step" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-piglin: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Piglin Sounds" + options: + Sound_AdmiringItem: + spell: sound-entity-piglin-admiring_item + item: + type: piglin_spawn_egg + name: "&eAdmiring Item Sound" + lore: + - "&7&oentity.piglin.admiring_item" + slot: 0 + Sound_Ambient: + spell: sound-entity-piglin-ambient + item: + type: piglin_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.piglin.ambient" + slot: 1 + Sound_Angry: + spell: sound-entity-piglin-angry + item: + type: piglin_spawn_egg + name: "&eAngry Sound" + lore: + - "&7&oentity.piglin.angry" + slot: 2 + Sound_Celebrate: + spell: sound-entity-piglin-celebrate + item: + type: piglin_spawn_egg + name: "&eCelebrate Sound" + lore: + - "&7&oentity.piglin.celebrate" + slot: 3 + Sound_ConvertedTOZombified: + spell: sound-entity-piglin-converted_to_zombified + item: + type: piglin_spawn_egg + name: "&eConverted TO Zombified Sound" + lore: + - "&7&oentity.piglin.converted_to_zombified" + slot: 4 + Sound_Death: + spell: sound-entity-piglin-death + item: + type: piglin_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.piglin.death" + slot: 5 + Sound_Hurt: + spell: sound-entity-piglin-hurt + item: + type: piglin_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.piglin.hurt" + slot: 6 + Sound_Jealous: + spell: sound-entity-piglin-jealous + item: + type: piglin_spawn_egg + name: "&eJealous Sound" + lore: + - "&7&oentity.piglin.jealous" + slot: 7 + Sound_Retreat: + spell: sound-entity-piglin-retreat + item: + type: piglin_spawn_egg + name: "&eRetreat Sound" + lore: + - "&7&oentity.piglin.retreat" + slot: 8 + Sound_Step: + spell: sound-entity-piglin-step + item: + type: piglin_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.piglin.step" + slot: 9 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 22 +sb-entity-pillager: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Pillager Sounds" + options: + Sound_Ambient: + spell: sound-entity-pillager-ambient + item: + type: pillager_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.pillager.ambient" + slot: 0 + Sound_Celebrate: + spell: sound-entity-pillager-celebrate + item: + type: pillager_spawn_egg + name: "&eCelebrate Sound" + lore: + - "&7&oentity.pillager.celebrate" + slot: 1 + Sound_Death: + spell: sound-entity-pillager-death + item: + type: pillager_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.pillager.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-pillager-hurt + item: + type: pillager_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.pillager.hurt" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-player: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Player Sounds" + options: + Sound_BigFall: + spell: sound-entity-player-big_fall + item: + type: player_head + name: "&eBig Fall Sound" + lore: + - "&7&oentity.player.big_fall" + slot: 0 + Sound_Breath: + spell: sound-entity-player-breath + item: + type: player_head + name: "&eBreath Sound" + lore: + - "&7&oentity.player.breath" + slot: 1 + Sound_Burp: + spell: sound-entity-player-burp + item: + type: player_head + name: "&eBurp Sound" + lore: + - "&7&oentity.player.burp" + slot: 2 + Sound_Death: + spell: sound-entity-player-death + item: + type: player_head + name: "&eDeath Sound" + lore: + - "&7&oentity.player.death" + slot: 3 + Sound_Hurt: + spell: sound-entity-player-hurt + item: + type: player_head + name: "&eHurt Sound" + lore: + - "&7&oentity.player.hurt" + slot: 4 + Sound_HurtDrown: + spell: sound-entity-player-hurt_drown + item: + type: player_head + name: "&eHurt Drown Sound" + lore: + - "&7&oentity.player.hurt_drown" + slot: 5 + Sound_HurtONFire: + spell: sound-entity-player-hurt_on_fire + item: + type: player_head + name: "&eHurt ON Fire Sound" + lore: + - "&7&oentity.player.hurt_on_fire" + slot: 6 + Sound_HurtSweetBerryBush: + spell: sound-entity-player-hurt_sweet_berry_bush + item: + type: player_head + name: "&eHurt Sweet Berry Bush Sound" + lore: + - "&7&oentity.player.hurt_sweet_berry_bush" + slot: 7 + Sound_Levelup: + spell: sound-entity-player-levelup + item: + type: player_head + name: "&eLevelup Sound" + lore: + - "&7&oentity.player.levelup" + slot: 8 + Sound_SmallFall: + spell: sound-entity-player-small_fall + item: + type: player_head + name: "&eSmall Fall Sound" + lore: + - "&7&oentity.player.small_fall" + slot: 9 + Sound_Splash: + spell: sound-entity-player-splash + item: + type: player_head + name: "&eSplash Sound" + lore: + - "&7&oentity.player.splash" + slot: 10 + Sound_Swim: + spell: sound-entity-player-swim + item: + type: player_head + name: "&eSwim Sound" + lore: + - "&7&oentity.player.swim" + slot: 11 + Attack: + spell: sb-entity-player-attack + item: + type: iron_sword + name: "&6Attack Sounds" + slot: 12 + Splash: + spell: sb-entity-player-splash + item: + type: water_bucket + name: "&6Splash Sounds" + slot: 13 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 22 +sb-entity-player-attack: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Attack Sounds" + options: + Sound_Crit: + spell: sound-entity-player-attack-crit + item: + type: iron_sword + name: "&eCrit Sound" + lore: + - "&7&oentity.player.attack.crit" + slot: 0 + Sound_Knockback: + spell: sound-entity-player-attack-knockback + item: + type: iron_sword + name: "&eKnockback Sound" + lore: + - "&7&oentity.player.attack.knockback" + slot: 1 + Sound_Nodamage: + spell: sound-entity-player-attack-nodamage + item: + type: iron_sword + name: "&eNodamage Sound" + lore: + - "&7&oentity.player.attack.nodamage" + slot: 2 + Sound_Strong: + spell: sound-entity-player-attack-strong + item: + type: iron_sword + name: "&eStrong Sound" + lore: + - "&7&oentity.player.attack.strong" + slot: 3 + Sound_Sweep: + spell: sound-entity-player-attack-sweep + item: + type: iron_sword + name: "&eSweep Sound" + lore: + - "&7&oentity.player.attack.sweep" + slot: 4 + Sound_Weak: + spell: sound-entity-player-attack-weak + item: + type: iron_sword + name: "&eWeak Sound" + lore: + - "&7&oentity.player.attack.weak" + slot: 5 + Button_Back: + spell: sb-entity-player + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-player-splash: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Splash Sounds" + options: + Sound_HighSpeed: + spell: sound-entity-player-splash-high_speed + item: + type: water_bucket + name: "&eHigh Speed Sound" + lore: + - "&7&oentity.player.splash.high_speed" + slot: 0 + Button_Back: + spell: sb-entity-player + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-polar_bear: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Polar_bear Sounds" + options: + Sound_Ambient: + spell: sound-entity-polar_bear-ambient + item: + type: ghast_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.polar_bear.ambient" + slot: 0 + Sound_AmbientBaby: + spell: sound-entity-polar_bear-ambient_baby + item: + type: ghast_spawn_egg + name: "&eAmbient Baby Sound" + lore: + - "&7&oentity.polar_bear.ambient_baby" + slot: 1 + Sound_Death: + spell: sound-entity-polar_bear-death + item: + type: ghast_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.polar_bear.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-polar_bear-hurt + item: + type: ghast_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.polar_bear.hurt" + slot: 3 + Sound_Step: + spell: sound-entity-polar_bear-step + item: + type: ghast_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.polar_bear.step" + slot: 4 + Sound_Warning: + spell: sound-entity-polar_bear-warning + item: + type: ghast_spawn_egg + name: "&eWarning Sound" + lore: + - "&7&oentity.polar_bear.warning" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-puffer_fish: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Puffer_fish Sounds" + options: + Sound_Ambient: + spell: sound-entity-puffer_fish-ambient + item: + type: pufferfish + name: "&eAmbient Sound" + lore: + - "&7&oentity.puffer_fish.ambient" + slot: 0 + Sound_BlowOut: + spell: sound-entity-puffer_fish-blow_out + item: + type: pufferfish + name: "&eBlow Out Sound" + lore: + - "&7&oentity.puffer_fish.blow_out" + slot: 1 + Sound_BlowUP: + spell: sound-entity-puffer_fish-blow_up + item: + type: pufferfish + name: "&eBlow UP Sound" + lore: + - "&7&oentity.puffer_fish.blow_up" + slot: 2 + Sound_Death: + spell: sound-entity-puffer_fish-death + item: + type: pufferfish + name: "&eDeath Sound" + lore: + - "&7&oentity.puffer_fish.death" + slot: 3 + Sound_Flop: + spell: sound-entity-puffer_fish-flop + item: + type: pufferfish + name: "&eFlop Sound" + lore: + - "&7&oentity.puffer_fish.flop" + slot: 4 + Sound_Hurt: + spell: sound-entity-puffer_fish-hurt + item: + type: pufferfish + name: "&eHurt Sound" + lore: + - "&7&oentity.puffer_fish.hurt" + slot: 5 + Sound_Sting: + spell: sound-entity-puffer_fish-sting + item: + type: pufferfish + name: "&eSting Sound" + lore: + - "&7&oentity.puffer_fish.sting" + slot: 6 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-rabbit: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Rabbit Sounds" + options: + Sound_Ambient: + spell: sound-entity-rabbit-ambient + item: + type: rabbit_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.rabbit.ambient" + slot: 0 + Sound_Attack: + spell: sound-entity-rabbit-attack + item: + type: rabbit_spawn_egg + name: "&eAttack Sound" + lore: + - "&7&oentity.rabbit.attack" + slot: 1 + Sound_Death: + spell: sound-entity-rabbit-death + item: + type: rabbit_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.rabbit.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-rabbit-hurt + item: + type: rabbit_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.rabbit.hurt" + slot: 3 + Sound_Jump: + spell: sound-entity-rabbit-jump + item: + type: rabbit_spawn_egg + name: "&eJump Sound" + lore: + - "&7&oentity.rabbit.jump" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-ravager: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Ravager Sounds" + options: + Sound_Ambient: + spell: sound-entity-ravager-ambient + item: + type: ravager_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.ravager.ambient" + slot: 0 + Sound_Attack: + spell: sound-entity-ravager-attack + item: + type: ravager_spawn_egg + name: "&eAttack Sound" + lore: + - "&7&oentity.ravager.attack" + slot: 1 + Sound_Celebrate: + spell: sound-entity-ravager-celebrate + item: + type: ravager_spawn_egg + name: "&eCelebrate Sound" + lore: + - "&7&oentity.ravager.celebrate" + slot: 2 + Sound_Death: + spell: sound-entity-ravager-death + item: + type: ravager_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.ravager.death" + slot: 3 + Sound_Hurt: + spell: sound-entity-ravager-hurt + item: + type: ravager_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.ravager.hurt" + slot: 4 + Sound_Roar: + spell: sound-entity-ravager-roar + item: + type: ravager_spawn_egg + name: "&eRoar Sound" + lore: + - "&7&oentity.ravager.roar" + slot: 5 + Sound_Step: + spell: sound-entity-ravager-step + item: + type: ravager_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.ravager.step" + slot: 6 + Sound_Stunned: + spell: sound-entity-ravager-stunned + item: + type: ravager_spawn_egg + name: "&eStunned Sound" + lore: + - "&7&oentity.ravager.stunned" + slot: 7 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-salmon: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Salmon Sounds" + options: + Sound_Ambient: + spell: sound-entity-salmon-ambient + item: + type: salmon + name: "&eAmbient Sound" + lore: + - "&7&oentity.salmon.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-salmon-death + item: + type: salmon + name: "&eDeath Sound" + lore: + - "&7&oentity.salmon.death" + slot: 1 + Sound_Flop: + spell: sound-entity-salmon-flop + item: + type: salmon + name: "&eFlop Sound" + lore: + - "&7&oentity.salmon.flop" + slot: 2 + Sound_Hurt: + spell: sound-entity-salmon-hurt + item: + type: salmon + name: "&eHurt Sound" + lore: + - "&7&oentity.salmon.hurt" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-sheep: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Sheep Sounds" + options: + Sound_Ambient: + spell: sound-entity-sheep-ambient + item: + type: sheep_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.sheep.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-sheep-death + item: + type: sheep_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.sheep.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-sheep-hurt + item: + type: sheep_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.sheep.hurt" + slot: 2 + Sound_Shear: + spell: sound-entity-sheep-shear + item: + type: sheep_spawn_egg + name: "&eShear Sound" + lore: + - "&7&oentity.sheep.shear" + slot: 3 + Sound_Step: + spell: sound-entity-sheep-step + item: + type: sheep_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.sheep.step" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-shulker: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Shulker Sounds" + options: + Sound_Ambient: + spell: sound-entity-shulker-ambient + item: + type: shulker_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.shulker.ambient" + slot: 0 + Sound_Close: + spell: sound-entity-shulker-close + item: + type: shulker_spawn_egg + name: "&eClose Sound" + lore: + - "&7&oentity.shulker.close" + slot: 1 + Sound_Death: + spell: sound-entity-shulker-death + item: + type: shulker_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.shulker.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-shulker-hurt + item: + type: shulker_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.shulker.hurt" + slot: 3 + Sound_HurtClosed: + spell: sound-entity-shulker-hurt_closed + item: + type: shulker_spawn_egg + name: "&eHurt Closed Sound" + lore: + - "&7&oentity.shulker.hurt_closed" + slot: 4 + Sound_Open: + spell: sound-entity-shulker-open + item: + type: shulker_spawn_egg + name: "&eOpen Sound" + lore: + - "&7&oentity.shulker.open" + slot: 5 + Sound_Shoot: + spell: sound-entity-shulker-shoot + item: + type: shulker_spawn_egg + name: "&eShoot Sound" + lore: + - "&7&oentity.shulker.shoot" + slot: 6 + Sound_Teleport: + spell: sound-entity-shulker-teleport + item: + type: shulker_spawn_egg + name: "&eTeleport Sound" + lore: + - "&7&oentity.shulker.teleport" + slot: 7 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-shulker_bullet: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Shulker_bullet Sounds" + options: + Sound_Hit: + spell: sound-entity-shulker_bullet-hit + item: + type: shulker_shell + name: "&eHit Sound" + lore: + - "&7&oentity.shulker_bullet.hit" + slot: 0 + Sound_Hurt: + spell: sound-entity-shulker_bullet-hurt + item: + type: shulker_shell + name: "&eHurt Sound" + lore: + - "&7&oentity.shulker_bullet.hurt" + slot: 1 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-silverfish: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Silverfish Sounds" + options: + Sound_Ambient: + spell: sound-entity-silverfish-ambient + item: + type: silverfish_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.silverfish.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-silverfish-death + item: + type: silverfish_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.silverfish.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-silverfish-hurt + item: + type: silverfish_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.silverfish.hurt" + slot: 2 + Sound_Step: + spell: sound-entity-silverfish-step + item: + type: silverfish_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.silverfish.step" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-skeleton: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Skeleton Sounds" + options: + Sound_Ambient: + spell: sound-entity-skeleton-ambient + item: + type: skeleton_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.skeleton.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-skeleton-death + item: + type: skeleton_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.skeleton.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-skeleton-hurt + item: + type: skeleton_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.skeleton.hurt" + slot: 2 + Sound_Shoot: + spell: sound-entity-skeleton-shoot + item: + type: skeleton_spawn_egg + name: "&eShoot Sound" + lore: + - "&7&oentity.skeleton.shoot" + slot: 3 + Sound_Step: + spell: sound-entity-skeleton-step + item: + type: skeleton_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.skeleton.step" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-skeleton_horse: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Skeleton_horse Sounds" + options: + Sound_Ambient: + spell: sound-entity-skeleton_horse-ambient + item: + type: skeleton_horse_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.skeleton_horse.ambient" + slot: 0 + Sound_AmbientWater: + spell: sound-entity-skeleton_horse-ambient_water + item: + type: skeleton_horse_spawn_egg + name: "&eAmbient Water Sound" + lore: + - "&7&oentity.skeleton_horse.ambient_water" + slot: 1 + Sound_Death: + spell: sound-entity-skeleton_horse-death + item: + type: skeleton_horse_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.skeleton_horse.death" + slot: 2 + Sound_GallopWater: + spell: sound-entity-skeleton_horse-gallop_water + item: + type: skeleton_horse_spawn_egg + name: "&eGallop Water Sound" + lore: + - "&7&oentity.skeleton_horse.gallop_water" + slot: 3 + Sound_Hurt: + spell: sound-entity-skeleton_horse-hurt + item: + type: skeleton_horse_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.skeleton_horse.hurt" + slot: 4 + Sound_JumpWater: + spell: sound-entity-skeleton_horse-jump_water + item: + type: skeleton_horse_spawn_egg + name: "&eJump Water Sound" + lore: + - "&7&oentity.skeleton_horse.jump_water" + slot: 5 + Sound_StepWater: + spell: sound-entity-skeleton_horse-step_water + item: + type: skeleton_horse_spawn_egg + name: "&eStep Water Sound" + lore: + - "&7&oentity.skeleton_horse.step_water" + slot: 6 + Sound_Swim: + spell: sound-entity-skeleton_horse-swim + item: + type: skeleton_horse_spawn_egg + name: "&eSwim Sound" + lore: + - "&7&oentity.skeleton_horse.swim" + slot: 7 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-slime: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Slime Sounds" + options: + Sound_Attack: + spell: sound-entity-slime-attack + item: + type: slime_spawn_egg + name: "&eAttack Sound" + lore: + - "&7&oentity.slime.attack" + slot: 0 + Sound_Death: + spell: sound-entity-slime-death + item: + type: slime_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.slime.death" + slot: 1 + Sound_DeathSmall: + spell: sound-entity-slime-death_small + item: + type: slime_spawn_egg + name: "&eDeath Small Sound" + lore: + - "&7&oentity.slime.death_small" + slot: 2 + Sound_Hurt: + spell: sound-entity-slime-hurt + item: + type: slime_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.slime.hurt" + slot: 3 + Sound_HurtSmall: + spell: sound-entity-slime-hurt_small + item: + type: slime_spawn_egg + name: "&eHurt Small Sound" + lore: + - "&7&oentity.slime.hurt_small" + slot: 4 + Sound_Jump: + spell: sound-entity-slime-jump + item: + type: slime_spawn_egg + name: "&eJump Sound" + lore: + - "&7&oentity.slime.jump" + slot: 5 + Sound_JumpSmall: + spell: sound-entity-slime-jump_small + item: + type: slime_spawn_egg + name: "&eJump Small Sound" + lore: + - "&7&oentity.slime.jump_small" + slot: 6 + Sound_Squish: + spell: sound-entity-slime-squish + item: + type: slime_spawn_egg + name: "&eSquish Sound" + lore: + - "&7&oentity.slime.squish" + slot: 7 + Sound_SquishSmall: + spell: sound-entity-slime-squish_small + item: + type: slime_spawn_egg + name: "&eSquish Small Sound" + lore: + - "&7&oentity.slime.squish_small" + slot: 8 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-snow_golem: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Snow_golem Sounds" + options: + Sound_Ambient: + spell: sound-entity-snow_golem-ambient + item: + type: carved_pumpkin + name: "&eAmbient Sound" + lore: + - "&7&oentity.snow_golem.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-snow_golem-death + item: + type: carved_pumpkin + name: "&eDeath Sound" + lore: + - "&7&oentity.snow_golem.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-snow_golem-hurt + item: + type: carved_pumpkin + name: "&eHurt Sound" + lore: + - "&7&oentity.snow_golem.hurt" + slot: 2 + Sound_Shear: + spell: sound-entity-snow_golem-shear + item: + type: carved_pumpkin + name: "&eShear Sound" + lore: + - "&7&oentity.snow_golem.shear" + slot: 3 + Sound_Shoot: + spell: sound-entity-snow_golem-shoot + item: + type: carved_pumpkin + name: "&eShoot Sound" + lore: + - "&7&oentity.snow_golem.shoot" + slot: 4 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-snowball: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Snowball Sounds" + options: + Sound_Throw: + spell: sound-entity-snowball-throw + item: + type: snowball + name: "&eThrow Sound" + lore: + - "&7&oentity.snowball.throw" + slot: 0 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-spider: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Spider Sounds" + options: + Sound_Ambient: + spell: sound-entity-spider-ambient + item: + type: spider_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.spider.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-spider-death + item: + type: spider_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.spider.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-spider-hurt + item: + type: spider_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.spider.hurt" + slot: 2 + Sound_Step: + spell: sound-entity-spider-step + item: + type: spider_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.spider.step" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-splash_potion: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Splash_potion Sounds" + options: + Sound_Break: + spell: sound-entity-splash_potion-break + item: + type: splash_potion + name: "&eBreak Sound" + lore: + - "&7&oentity.splash_potion.break" + slot: 0 + Sound_Throw: + spell: sound-entity-splash_potion-throw + item: + type: splash_potion + name: "&eThrow Sound" + lore: + - "&7&oentity.splash_potion.throw" + slot: 1 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-squid: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Squid Sounds" + options: + Sound_Ambient: + spell: sound-entity-squid-ambient + item: + type: squid_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.squid.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-squid-death + item: + type: squid_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.squid.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-squid-hurt + item: + type: squid_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.squid.hurt" + slot: 2 + Sound_Squirt: + spell: sound-entity-squid-squirt + item: + type: squid_spawn_egg + name: "&eSquirt Sound" + lore: + - "&7&oentity.squid.squirt" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-stray: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Stray Sounds" + options: + Sound_Ambient: + spell: sound-entity-stray-ambient + item: + type: stray_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.stray.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-stray-death + item: + type: stray_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.stray.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-stray-hurt + item: + type: stray_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.stray.hurt" + slot: 2 + Sound_Step: + spell: sound-entity-stray-step + item: + type: stray_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.stray.step" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-strider: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Strider Sounds" + options: + Sound_Ambient: + spell: sound-entity-strider-ambient + item: + type: strider_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.strider.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-strider-death + item: + type: strider_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.strider.death" + slot: 1 + Sound_Eat: + spell: sound-entity-strider-eat + item: + type: strider_spawn_egg + name: "&eEat Sound" + lore: + - "&7&oentity.strider.eat" + slot: 2 + Sound_Happy: + spell: sound-entity-strider-happy + item: + type: strider_spawn_egg + name: "&eHappy Sound" + lore: + - "&7&oentity.strider.happy" + slot: 3 + Sound_Hurt: + spell: sound-entity-strider-hurt + item: + type: strider_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.strider.hurt" + slot: 4 + Sound_Retreat: + spell: sound-entity-strider-retreat + item: + type: strider_spawn_egg + name: "&eRetreat Sound" + lore: + - "&7&oentity.strider.retreat" + slot: 5 + Sound_Saddle: + spell: sound-entity-strider-saddle + item: + type: strider_spawn_egg + name: "&eSaddle Sound" + lore: + - "&7&oentity.strider.saddle" + slot: 6 + Sound_Step: + spell: sound-entity-strider-step + item: + type: strider_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.strider.step" + slot: 7 + Sound_StepLava: + spell: sound-entity-strider-step_lava + item: + type: strider_spawn_egg + name: "&eStep Lava Sound" + lore: + - "&7&oentity.strider.step_lava" + slot: 8 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-tnt: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Tnt Sounds" + options: + Sound_Primed: + spell: sound-entity-tnt-primed + item: + type: tnt + name: "&ePrimed Sound" + lore: + - "&7&oentity.tnt.primed" + slot: 0 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-tropical_fish: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Tropical_fish Sounds" + options: + Sound_Ambient: + spell: sound-entity-tropical_fish-ambient + item: + type: tropical_fish + name: "&eAmbient Sound" + lore: + - "&7&oentity.tropical_fish.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-tropical_fish-death + item: + type: tropical_fish + name: "&eDeath Sound" + lore: + - "&7&oentity.tropical_fish.death" + slot: 1 + Sound_Flop: + spell: sound-entity-tropical_fish-flop + item: + type: tropical_fish + name: "&eFlop Sound" + lore: + - "&7&oentity.tropical_fish.flop" + slot: 2 + Sound_Hurt: + spell: sound-entity-tropical_fish-hurt + item: + type: tropical_fish + name: "&eHurt Sound" + lore: + - "&7&oentity.tropical_fish.hurt" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-turtle: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Turtle Sounds" + options: + Sound_AmbientLand: + spell: sound-entity-turtle-ambient_land + item: + type: turtle_spawn_egg + name: "&eAmbient Land Sound" + lore: + - "&7&oentity.turtle.ambient_land" + slot: 0 + Sound_Death: + spell: sound-entity-turtle-death + item: + type: turtle_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.turtle.death" + slot: 1 + Sound_DeathBaby: + spell: sound-entity-turtle-death_baby + item: + type: turtle_spawn_egg + name: "&eDeath Baby Sound" + lore: + - "&7&oentity.turtle.death_baby" + slot: 2 + Sound_EggBreak: + spell: sound-entity-turtle-egg_break + item: + type: turtle_spawn_egg + name: "&eEgg Break Sound" + lore: + - "&7&oentity.turtle.egg_break" + slot: 3 + Sound_EggCrack: + spell: sound-entity-turtle-egg_crack + item: + type: turtle_spawn_egg + name: "&eEgg Crack Sound" + lore: + - "&7&oentity.turtle.egg_crack" + slot: 4 + Sound_EggHatch: + spell: sound-entity-turtle-egg_hatch + item: + type: turtle_spawn_egg + name: "&eEgg Hatch Sound" + lore: + - "&7&oentity.turtle.egg_hatch" + slot: 5 + Sound_Hurt: + spell: sound-entity-turtle-hurt + item: + type: turtle_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.turtle.hurt" + slot: 6 + Sound_HurtBaby: + spell: sound-entity-turtle-hurt_baby + item: + type: turtle_spawn_egg + name: "&eHurt Baby Sound" + lore: + - "&7&oentity.turtle.hurt_baby" + slot: 7 + Sound_LayEgg: + spell: sound-entity-turtle-lay_egg + item: + type: turtle_spawn_egg + name: "&eLay Egg Sound" + lore: + - "&7&oentity.turtle.lay_egg" + slot: 8 + Sound_Shamble: + spell: sound-entity-turtle-shamble + item: + type: turtle_spawn_egg + name: "&eShamble Sound" + lore: + - "&7&oentity.turtle.shamble" + slot: 9 + Sound_ShambleBaby: + spell: sound-entity-turtle-shamble_baby + item: + type: turtle_spawn_egg + name: "&eShamble Baby Sound" + lore: + - "&7&oentity.turtle.shamble_baby" + slot: 10 + Sound_Swim: + spell: sound-entity-turtle-swim + item: + type: turtle_spawn_egg + name: "&eSwim Sound" + lore: + - "&7&oentity.turtle.swim" + slot: 11 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 22 +sb-entity-vex: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Vex Sounds" + options: + Sound_Ambient: + spell: sound-entity-vex-ambient + item: + type: vex_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.vex.ambient" + slot: 0 + Sound_Charge: + spell: sound-entity-vex-charge + item: + type: vex_spawn_egg + name: "&eCharge Sound" + lore: + - "&7&oentity.vex.charge" + slot: 1 + Sound_Death: + spell: sound-entity-vex-death + item: + type: vex_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.vex.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-vex-hurt + item: + type: vex_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.vex.hurt" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-villager: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Villager Sounds" + options: + Sound_Ambient: + spell: sound-entity-villager-ambient + item: + type: villager_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.villager.ambient" + slot: 0 + Sound_Celebrate: + spell: sound-entity-villager-celebrate + item: + type: villager_spawn_egg + name: "&eCelebrate Sound" + lore: + - "&7&oentity.villager.celebrate" + slot: 1 + Sound_Death: + spell: sound-entity-villager-death + item: + type: villager_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.villager.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-villager-hurt + item: + type: villager_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.villager.hurt" + slot: 3 + Sound_NO: + spell: sound-entity-villager-no + item: + type: villager_spawn_egg + name: "&eNO Sound" + lore: + - "&7&oentity.villager.no" + slot: 4 + Sound_Trade: + spell: sound-entity-villager-trade + item: + type: villager_spawn_egg + name: "&eTrade Sound" + lore: + - "&7&oentity.villager.trade" + slot: 5 + Sound_WorkArmorer: + spell: sound-entity-villager-work_armorer + item: + type: villager_spawn_egg + name: "&eWork Armorer Sound" + lore: + - "&7&oentity.villager.work_armorer" + slot: 6 + Sound_WorkButcher: + spell: sound-entity-villager-work_butcher + item: + type: villager_spawn_egg + name: "&eWork Butcher Sound" + lore: + - "&7&oentity.villager.work_butcher" + slot: 7 + Sound_WorkCartographer: + spell: sound-entity-villager-work_cartographer + item: + type: villager_spawn_egg + name: "&eWork Cartographer Sound" + lore: + - "&7&oentity.villager.work_cartographer" + slot: 8 + Sound_WorkCleric: + spell: sound-entity-villager-work_cleric + item: + type: villager_spawn_egg + name: "&eWork Cleric Sound" + lore: + - "&7&oentity.villager.work_cleric" + slot: 9 + Sound_WorkFarmer: + spell: sound-entity-villager-work_farmer + item: + type: villager_spawn_egg + name: "&eWork Farmer Sound" + lore: + - "&7&oentity.villager.work_farmer" + slot: 10 + Sound_WorkFisherman: + spell: sound-entity-villager-work_fisherman + item: + type: villager_spawn_egg + name: "&eWork Fisherman Sound" + lore: + - "&7&oentity.villager.work_fisherman" + slot: 11 + Sound_WorkFletcher: + spell: sound-entity-villager-work_fletcher + item: + type: villager_spawn_egg + name: "&eWork Fletcher Sound" + lore: + - "&7&oentity.villager.work_fletcher" + slot: 12 + Sound_WorkLeatherworker: + spell: sound-entity-villager-work_leatherworker + item: + type: villager_spawn_egg + name: "&eWork Leatherworker Sound" + lore: + - "&7&oentity.villager.work_leatherworker" + slot: 13 + Sound_WorkLibrarian: + spell: sound-entity-villager-work_librarian + item: + type: villager_spawn_egg + name: "&eWork Librarian Sound" + lore: + - "&7&oentity.villager.work_librarian" + slot: 14 + Sound_WorkMason: + spell: sound-entity-villager-work_mason + item: + type: villager_spawn_egg + name: "&eWork Mason Sound" + lore: + - "&7&oentity.villager.work_mason" + slot: 15 + Sound_WorkShepherd: + spell: sound-entity-villager-work_shepherd + item: + type: villager_spawn_egg + name: "&eWork Shepherd Sound" + lore: + - "&7&oentity.villager.work_shepherd" + slot: 16 + Sound_WorkToolsmith: + spell: sound-entity-villager-work_toolsmith + item: + type: villager_spawn_egg + name: "&eWork Toolsmith Sound" + lore: + - "&7&oentity.villager.work_toolsmith" + slot: 17 + Sound_WorkWeaponsmith: + spell: sound-entity-villager-work_weaponsmith + item: + type: villager_spawn_egg + name: "&eWork Weaponsmith Sound" + lore: + - "&7&oentity.villager.work_weaponsmith" + slot: 18 + Sound_Yes: + spell: sound-entity-villager-yes + item: + type: villager_spawn_egg + name: "&eYes Sound" + lore: + - "&7&oentity.villager.yes" + slot: 19 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 31 +sb-entity-vindicator: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Vindicator Sounds" + options: + Sound_Ambient: + spell: sound-entity-vindicator-ambient + item: + type: iron_axe + name: "&eAmbient Sound" + lore: + - "&7&oentity.vindicator.ambient" + slot: 0 + Sound_Celebrate: + spell: sound-entity-vindicator-celebrate + item: + type: iron_axe + name: "&eCelebrate Sound" + lore: + - "&7&oentity.vindicator.celebrate" + slot: 1 + Sound_Death: + spell: sound-entity-vindicator-death + item: + type: iron_axe + name: "&eDeath Sound" + lore: + - "&7&oentity.vindicator.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-vindicator-hurt + item: + type: iron_axe + name: "&eHurt Sound" + lore: + - "&7&oentity.vindicator.hurt" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-wandering_trader: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wandering_trader Sounds" + options: + Sound_Ambient: + spell: sound-entity-wandering_trader-ambient + item: + type: wandering_trader_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.wandering_trader.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-wandering_trader-death + item: + type: wandering_trader_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.wandering_trader.death" + slot: 1 + Sound_Disappeared: + spell: sound-entity-wandering_trader-disappeared + item: + type: wandering_trader_spawn_egg + name: "&eDisappeared Sound" + lore: + - "&7&oentity.wandering_trader.disappeared" + slot: 2 + Sound_DrinkMilk: + spell: sound-entity-wandering_trader-drink_milk + item: + type: wandering_trader_spawn_egg + name: "&eDrink Milk Sound" + lore: + - "&7&oentity.wandering_trader.drink_milk" + slot: 3 + Sound_DrinkPotion: + spell: sound-entity-wandering_trader-drink_potion + item: + type: wandering_trader_spawn_egg + name: "&eDrink Potion Sound" + lore: + - "&7&oentity.wandering_trader.drink_potion" + slot: 4 + Sound_Hurt: + spell: sound-entity-wandering_trader-hurt + item: + type: wandering_trader_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.wandering_trader.hurt" + slot: 5 + Sound_NO: + spell: sound-entity-wandering_trader-no + item: + type: wandering_trader_spawn_egg + name: "&eNO Sound" + lore: + - "&7&oentity.wandering_trader.no" + slot: 6 + Sound_Reappeared: + spell: sound-entity-wandering_trader-reappeared + item: + type: wandering_trader_spawn_egg + name: "&eReappeared Sound" + lore: + - "&7&oentity.wandering_trader.reappeared" + slot: 7 + Sound_Trade: + spell: sound-entity-wandering_trader-trade + item: + type: wandering_trader_spawn_egg + name: "&eTrade Sound" + lore: + - "&7&oentity.wandering_trader.trade" + slot: 8 + Sound_Yes: + spell: sound-entity-wandering_trader-yes + item: + type: wandering_trader_spawn_egg + name: "&eYes Sound" + lore: + - "&7&oentity.wandering_trader.yes" + slot: 9 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 22 +sb-entity-witch: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Witch Sounds" + options: + Sound_Ambient: + spell: sound-entity-witch-ambient + item: + type: witch_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.witch.ambient" + slot: 0 + Sound_Celebrate: + spell: sound-entity-witch-celebrate + item: + type: witch_spawn_egg + name: "&eCelebrate Sound" + lore: + - "&7&oentity.witch.celebrate" + slot: 1 + Sound_Death: + spell: sound-entity-witch-death + item: + type: witch_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.witch.death" + slot: 2 + Sound_Drink: + spell: sound-entity-witch-drink + item: + type: witch_spawn_egg + name: "&eDrink Sound" + lore: + - "&7&oentity.witch.drink" + slot: 3 + Sound_Hurt: + spell: sound-entity-witch-hurt + item: + type: witch_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.witch.hurt" + slot: 4 + Sound_Throw: + spell: sound-entity-witch-throw + item: + type: witch_spawn_egg + name: "&eThrow Sound" + lore: + - "&7&oentity.witch.throw" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-wither: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wither Sounds" + options: + Sound_Ambient: + spell: sound-entity-wither-ambient + item: + type: nether_star + name: "&eAmbient Sound" + lore: + - "&7&oentity.wither.ambient" + slot: 0 + Sound_BreakBlock: + spell: sound-entity-wither-break_block + item: + type: nether_star + name: "&eBreak Block Sound" + lore: + - "&7&oentity.wither.break_block" + slot: 1 + Sound_Death: + spell: sound-entity-wither-death + item: + type: nether_star + name: "&eDeath Sound" + lore: + - "&7&oentity.wither.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-wither-hurt + item: + type: nether_star + name: "&eHurt Sound" + lore: + - "&7&oentity.wither.hurt" + slot: 3 + Sound_Shoot: + spell: sound-entity-wither-shoot + item: + type: nether_star + name: "&eShoot Sound" + lore: + - "&7&oentity.wither.shoot" + slot: 4 + Sound_Spawn: + spell: sound-entity-wither-spawn + item: + type: nether_star + name: "&eSpawn Sound" + lore: + - "&7&oentity.wither.spawn" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-wither_skeleton: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wither_skeleton Sounds" + options: + Sound_Ambient: + spell: sound-entity-wither_skeleton-ambient + item: + type: wither_skeleton_skull + name: "&eAmbient Sound" + lore: + - "&7&oentity.wither_skeleton.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-wither_skeleton-death + item: + type: wither_skeleton_skull + name: "&eDeath Sound" + lore: + - "&7&oentity.wither_skeleton.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-wither_skeleton-hurt + item: + type: wither_skeleton_skull + name: "&eHurt Sound" + lore: + - "&7&oentity.wither_skeleton.hurt" + slot: 2 + Sound_Step: + spell: sound-entity-wither_skeleton-step + item: + type: wither_skeleton_skull + name: "&eStep Sound" + lore: + - "&7&oentity.wither_skeleton.step" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-wolf: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Wolf Sounds" + options: + Sound_Ambient: + spell: sound-entity-wolf-ambient + item: + type: wolf_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.wolf.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-wolf-death + item: + type: wolf_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.wolf.death" + slot: 1 + Sound_Growl: + spell: sound-entity-wolf-growl + item: + type: wolf_spawn_egg + name: "&eGrowl Sound" + lore: + - "&7&oentity.wolf.growl" + slot: 2 + Sound_Howl: + spell: sound-entity-wolf-howl + item: + type: wolf_spawn_egg + name: "&eHowl Sound" + lore: + - "&7&oentity.wolf.howl" + slot: 3 + Sound_Hurt: + spell: sound-entity-wolf-hurt + item: + type: wolf_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.wolf.hurt" + slot: 4 + Sound_Pant: + spell: sound-entity-wolf-pant + item: + type: wolf_spawn_egg + name: "&ePant Sound" + lore: + - "&7&oentity.wolf.pant" + slot: 5 + Sound_Shake: + spell: sound-entity-wolf-shake + item: + type: wolf_spawn_egg + name: "&eShake Sound" + lore: + - "&7&oentity.wolf.shake" + slot: 6 + Sound_Step: + spell: sound-entity-wolf-step + item: + type: wolf_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.wolf.step" + slot: 7 + Sound_Whine: + spell: sound-entity-wolf-whine + item: + type: wolf_spawn_egg + name: "&eWhine Sound" + lore: + - "&7&oentity.wolf.whine" + slot: 8 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-zoglin: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Zoglin Sounds" + options: + Sound_Ambient: + spell: sound-entity-zoglin-ambient + item: + type: zoglin_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.zoglin.ambient" + slot: 0 + Sound_Angry: + spell: sound-entity-zoglin-angry + item: + type: zoglin_spawn_egg + name: "&eAngry Sound" + lore: + - "&7&oentity.zoglin.angry" + slot: 1 + Sound_Attack: + spell: sound-entity-zoglin-attack + item: + type: zoglin_spawn_egg + name: "&eAttack Sound" + lore: + - "&7&oentity.zoglin.attack" + slot: 2 + Sound_Death: + spell: sound-entity-zoglin-death + item: + type: zoglin_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.zoglin.death" + slot: 3 + Sound_Hurt: + spell: sound-entity-zoglin-hurt + item: + type: zoglin_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.zoglin.hurt" + slot: 4 + Sound_Step: + spell: sound-entity-zoglin-step + item: + type: zoglin_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.zoglin.step" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-zombie: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Zombie Sounds" + options: + Sound_Ambient: + spell: sound-entity-zombie-ambient + item: + type: zombie_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.zombie.ambient" + slot: 0 + Sound_AttackIronDoor: + spell: sound-entity-zombie-attack_iron_door + item: + type: zombie_spawn_egg + name: "&eAttack Iron Door Sound" + lore: + - "&7&oentity.zombie.attack_iron_door" + slot: 1 + Sound_AttackWoodenDoor: + spell: sound-entity-zombie-attack_wooden_door + item: + type: zombie_spawn_egg + name: "&eAttack Wooden Door Sound" + lore: + - "&7&oentity.zombie.attack_wooden_door" + slot: 2 + Sound_BreakWoodenDoor: + spell: sound-entity-zombie-break_wooden_door + item: + type: zombie_spawn_egg + name: "&eBreak Wooden Door Sound" + lore: + - "&7&oentity.zombie.break_wooden_door" + slot: 3 + Sound_ConvertedTODrowned: + spell: sound-entity-zombie-converted_to_drowned + item: + type: zombie_spawn_egg + name: "&eConverted TO Drowned Sound" + lore: + - "&7&oentity.zombie.converted_to_drowned" + slot: 4 + Sound_Death: + spell: sound-entity-zombie-death + item: + type: zombie_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.zombie.death" + slot: 5 + Sound_DestroyEgg: + spell: sound-entity-zombie-destroy_egg + item: + type: zombie_spawn_egg + name: "&eDestroy Egg Sound" + lore: + - "&7&oentity.zombie.destroy_egg" + slot: 6 + Sound_Hurt: + spell: sound-entity-zombie-hurt + item: + type: zombie_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.zombie.hurt" + slot: 7 + Sound_Infect: + spell: sound-entity-zombie-infect + item: + type: zombie_spawn_egg + name: "&eInfect Sound" + lore: + - "&7&oentity.zombie.infect" + slot: 8 + Sound_Step: + spell: sound-entity-zombie-step + item: + type: zombie_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.zombie.step" + slot: 9 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 22 +sb-entity-zombie_horse: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Zombie_horse Sounds" + options: + Sound_Ambient: + spell: sound-entity-zombie_horse-ambient + item: + type: zombie_horse_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.zombie_horse.ambient" + slot: 0 + Sound_Death: + spell: sound-entity-zombie_horse-death + item: + type: zombie_horse_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.zombie_horse.death" + slot: 1 + Sound_Hurt: + spell: sound-entity-zombie_horse-hurt + item: + type: zombie_horse_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.zombie_horse.hurt" + slot: 2 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-zombie_villager: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Zombie_villager Sounds" + options: + Sound_Ambient: + spell: sound-entity-zombie_villager-ambient + item: + type: zombie_villager_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.zombie_villager.ambient" + slot: 0 + Sound_Converted: + spell: sound-entity-zombie_villager-converted + item: + type: zombie_villager_spawn_egg + name: "&eConverted Sound" + lore: + - "&7&oentity.zombie_villager.converted" + slot: 1 + Sound_Cure: + spell: sound-entity-zombie_villager-cure + item: + type: zombie_villager_spawn_egg + name: "&eCure Sound" + lore: + - "&7&oentity.zombie_villager.cure" + slot: 2 + Sound_Death: + spell: sound-entity-zombie_villager-death + item: + type: zombie_villager_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.zombie_villager.death" + slot: 3 + Sound_Hurt: + spell: sound-entity-zombie_villager-hurt + item: + type: zombie_villager_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.zombie_villager.hurt" + slot: 4 + Sound_Step: + spell: sound-entity-zombie_villager-step + item: + type: zombie_villager_spawn_egg + name: "&eStep Sound" + lore: + - "&7&oentity.zombie_villager.step" + slot: 5 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-entity-zombified_piglin: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Zombified_piglin Sounds" + options: + Sound_Ambient: + spell: sound-entity-zombified_piglin-ambient + item: + type: zombified_piglin_spawn_egg + name: "&eAmbient Sound" + lore: + - "&7&oentity.zombified_piglin.ambient" + slot: 0 + Sound_Angry: + spell: sound-entity-zombified_piglin-angry + item: + type: zombified_piglin_spawn_egg + name: "&eAngry Sound" + lore: + - "&7&oentity.zombified_piglin.angry" + slot: 1 + Sound_Death: + spell: sound-entity-zombified_piglin-death + item: + type: zombified_piglin_spawn_egg + name: "&eDeath Sound" + lore: + - "&7&oentity.zombified_piglin.death" + slot: 2 + Sound_Hurt: + spell: sound-entity-zombified_piglin-hurt + item: + type: zombified_piglin_spawn_egg + name: "&eHurt Sound" + lore: + - "&7&oentity.zombified_piglin.hurt" + slot: 3 + Button_Back: + spell: sb-entity1 + item: + type: book + name: "&6Back" + slot: 13 +sb-event: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Event Sounds" + options: + Raid: + spell: sb-event-raid + item: + type: bell + name: "&6Raid Sounds" + slot: 0 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 13 +sb-event-raid: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Raid Sounds" + options: + Sound_Horn: + spell: sound-event-raid-horn + item: + type: bell + name: "&eHorn Sound" + lore: + - "&7&oevent.raid.horn" + slot: 0 + Button_Back: + spell: sb-event + item: + type: book + name: "&6Back" + slot: 13 +sb-item: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Item Sounds" + options: + Armor: + spell: sb-item-armor + item: + type: iron_chestplate + name: "&6Armor Sounds" + slot: 0 + Axe: + spell: sb-item-axe + item: + type: iron_axe + name: "&6Axe Sounds" + slot: 1 + Book: + spell: sb-item-book + item: + type: book + name: "&6Book Sounds" + slot: 2 + Bottle: + spell: sb-item-bottle + item: + type: glass_bottle + name: "&6Bottle Sounds" + slot: 3 + Bucket: + spell: sb-item-bucket + item: + type: bucket + name: "&6Bucket Sounds" + slot: 4 + ChorusFruit: + spell: sb-item-chorus_fruit + item: + type: chorus_fruit + name: "&6Chorus Fruit Sounds" + slot: 5 + Crop: + spell: sb-item-crop + item: + type: wheat_seeds + name: "&6Crop Sounds" + slot: 6 + Crossbow: + spell: sb-item-crossbow + item: + type: crossbow + name: "&6Crossbow Sounds" + slot: 7 + Elytra: + spell: sb-item-elytra + item: + type: elytra + name: "&6Elytra Sounds" + slot: 8 + Firecharge: + spell: sb-item-firecharge + item: + type: fire_charge + name: "&6Firecharge Sounds" + slot: 9 + Flintandsteel: + spell: sb-item-flintandsteel + item: + type: flint_and_steel + name: "&6Flintandsteel Sounds" + slot: 10 + Hoe: + spell: sb-item-hoe + item: + type: wooden_hoe + name: "&6Hoe Sounds" + slot: 11 + HoneyBottle: + spell: sb-item-honey_bottle + item: + type: honey_bottle + name: "&6Honey Bottle Sounds" + slot: 12 + LodestoneCompass: + spell: sb-item-lodestone_compass + item: + type: compass + name: "&6Lodestone Compass Sounds" + slot: 13 + NetherWart: + spell: sb-item-nether_wart + item: + type: nether_wart + name: "&6Nether Wart Sounds" + slot: 14 + Shield: + spell: sb-item-shield + item: + type: shield + name: "&6Shield Sounds" + slot: 15 + Shovel: + spell: sb-item-shovel + item: + type: wooden_shovel + name: "&6Shovel Sounds" + slot: 16 + SweetBerries: + spell: sb-item-sweet_berries + item: + type: sweet_berries + name: "&6Sweet Berries Sounds" + slot: 17 + Totem: + spell: sb-item-totem + item: + type: totem_of_undying + name: "&6Totem Sounds" + slot: 18 + Trident: + spell: sb-item-trident + item: + type: trident + name: "&6Trident Sounds" + slot: 19 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 31 +sb-item-armor: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Armor Sounds" + options: + Sound_EquipChain: + spell: sound-item-armor-equip_chain + item: + type: iron_chestplate + name: "&eEquip Chain Sound" + lore: + - "&7&oitem.armor.equip_chain" + slot: 0 + Sound_EquipDiamond: + spell: sound-item-armor-equip_diamond + item: + type: iron_chestplate + name: "&eEquip Diamond Sound" + lore: + - "&7&oitem.armor.equip_diamond" + slot: 1 + Sound_EquipElytra: + spell: sound-item-armor-equip_elytra + item: + type: iron_chestplate + name: "&eEquip Elytra Sound" + lore: + - "&7&oitem.armor.equip_elytra" + slot: 2 + Sound_EquipGeneric: + spell: sound-item-armor-equip_generic + item: + type: iron_chestplate + name: "&eEquip Generic Sound" + lore: + - "&7&oitem.armor.equip_generic" + slot: 3 + Sound_EquipGold: + spell: sound-item-armor-equip_gold + item: + type: iron_chestplate + name: "&eEquip Gold Sound" + lore: + - "&7&oitem.armor.equip_gold" + slot: 4 + Sound_EquipIron: + spell: sound-item-armor-equip_iron + item: + type: iron_chestplate + name: "&eEquip Iron Sound" + lore: + - "&7&oitem.armor.equip_iron" + slot: 5 + Sound_EquipLeather: + spell: sound-item-armor-equip_leather + item: + type: iron_chestplate + name: "&eEquip Leather Sound" + lore: + - "&7&oitem.armor.equip_leather" + slot: 6 + Sound_EquipNetherite: + spell: sound-item-armor-equip_netherite + item: + type: iron_chestplate + name: "&eEquip Netherite Sound" + lore: + - "&7&oitem.armor.equip_netherite" + slot: 7 + Sound_EquipTurtle: + spell: sound-item-armor-equip_turtle + item: + type: iron_chestplate + name: "&eEquip Turtle Sound" + lore: + - "&7&oitem.armor.equip_turtle" + slot: 8 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-axe: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Axe Sounds" + options: + Sound_Strip: + spell: sound-item-axe-strip + item: + type: iron_axe + name: "&eStrip Sound" + lore: + - "&7&oitem.axe.strip" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-book: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Book Sounds" + options: + Sound_PageTurn: + spell: sound-item-book-page_turn + item: + type: book + name: "&ePage Turn Sound" + lore: + - "&7&oitem.book.page_turn" + slot: 0 + Sound_Put: + spell: sound-item-book-put + item: + type: book + name: "&ePut Sound" + lore: + - "&7&oitem.book.put" + slot: 1 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-bottle: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Bottle Sounds" + options: + Sound_Empty: + spell: sound-item-bottle-empty + item: + type: glass_bottle + name: "&eEmpty Sound" + lore: + - "&7&oitem.bottle.empty" + slot: 0 + Sound_Fill: + spell: sound-item-bottle-fill + item: + type: glass_bottle + name: "&eFill Sound" + lore: + - "&7&oitem.bottle.fill" + slot: 1 + Sound_FillDragonbreath: + spell: sound-item-bottle-fill_dragonbreath + item: + type: glass_bottle + name: "&eFill Dragonbreath Sound" + lore: + - "&7&oitem.bottle.fill_dragonbreath" + slot: 2 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-bucket: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Bucket Sounds" + options: + Sound_Empty: + spell: sound-item-bucket-empty + item: + type: bucket + name: "&eEmpty Sound" + lore: + - "&7&oitem.bucket.empty" + slot: 0 + Sound_EmptyFish: + spell: sound-item-bucket-empty_fish + item: + type: bucket + name: "&eEmpty Fish Sound" + lore: + - "&7&oitem.bucket.empty_fish" + slot: 1 + Sound_EmptyLava: + spell: sound-item-bucket-empty_lava + item: + type: bucket + name: "&eEmpty Lava Sound" + lore: + - "&7&oitem.bucket.empty_lava" + slot: 2 + Sound_Fill: + spell: sound-item-bucket-fill + item: + type: bucket + name: "&eFill Sound" + lore: + - "&7&oitem.bucket.fill" + slot: 3 + Sound_FillFish: + spell: sound-item-bucket-fill_fish + item: + type: bucket + name: "&eFill Fish Sound" + lore: + - "&7&oitem.bucket.fill_fish" + slot: 4 + Sound_FillLava: + spell: sound-item-bucket-fill_lava + item: + type: bucket + name: "&eFill Lava Sound" + lore: + - "&7&oitem.bucket.fill_lava" + slot: 5 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-chorus_fruit: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Chorus_fruit Sounds" + options: + Sound_Teleport: + spell: sound-item-chorus_fruit-teleport + item: + type: chorus_fruit + name: "&eTeleport Sound" + lore: + - "&7&oitem.chorus_fruit.teleport" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-crop: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Crop Sounds" + options: + Sound_Plant: + spell: sound-item-crop-plant + item: + type: wheat_seeds + name: "&ePlant Sound" + lore: + - "&7&oitem.crop.plant" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-crossbow: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Crossbow Sounds" + options: + Sound_Hit: + spell: sound-item-crossbow-hit + item: + type: crossbow + name: "&eHit Sound" + lore: + - "&7&oitem.crossbow.hit" + slot: 0 + Sound_LoadingEnd: + spell: sound-item-crossbow-loading_end + item: + type: crossbow + name: "&eLoading End Sound" + lore: + - "&7&oitem.crossbow.loading_end" + slot: 1 + Sound_LoadingMiddle: + spell: sound-item-crossbow-loading_middle + item: + type: crossbow + name: "&eLoading Middle Sound" + lore: + - "&7&oitem.crossbow.loading_middle" + slot: 2 + Sound_LoadingStart: + spell: sound-item-crossbow-loading_start + item: + type: crossbow + name: "&eLoading Start Sound" + lore: + - "&7&oitem.crossbow.loading_start" + slot: 3 + Sound_QuickCharge1: + spell: sound-item-crossbow-quick_charge_1 + item: + type: crossbow + name: "&eQuick Charge 1 Sound" + lore: + - "&7&oitem.crossbow.quick_charge_1" + slot: 4 + Sound_QuickCharge2: + spell: sound-item-crossbow-quick_charge_2 + item: + type: crossbow + name: "&eQuick Charge 2 Sound" + lore: + - "&7&oitem.crossbow.quick_charge_2" + slot: 5 + Sound_QuickCharge3: + spell: sound-item-crossbow-quick_charge_3 + item: + type: crossbow + name: "&eQuick Charge 3 Sound" + lore: + - "&7&oitem.crossbow.quick_charge_3" + slot: 6 + Sound_Shoot: + spell: sound-item-crossbow-shoot + item: + type: crossbow + name: "&eShoot Sound" + lore: + - "&7&oitem.crossbow.shoot" + slot: 7 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-elytra: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Elytra Sounds" + options: + Sound_Flying: + spell: sound-item-elytra-flying + item: + type: elytra + name: "&eFlying Sound" + lore: + - "&7&oitem.elytra.flying" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-firecharge: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Firecharge Sounds" + options: + Sound_Use: + spell: sound-item-firecharge-use + item: + type: fire_charge + name: "&eUse Sound" + lore: + - "&7&oitem.firecharge.use" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-flintandsteel: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Flintandsteel Sounds" + options: + Sound_Use: + spell: sound-item-flintandsteel-use + item: + type: flint_and_steel + name: "&eUse Sound" + lore: + - "&7&oitem.flintandsteel.use" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-hoe: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Hoe Sounds" + options: + Sound_Till: + spell: sound-item-hoe-till + item: + type: wooden_hoe + name: "&eTill Sound" + lore: + - "&7&oitem.hoe.till" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-honey_bottle: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Honey_bottle Sounds" + options: + Sound_Drink: + spell: sound-item-honey_bottle-drink + item: + type: honey_bottle + name: "&eDrink Sound" + lore: + - "&7&oitem.honey_bottle.drink" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-lodestone_compass: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Lodestone_compass Sounds" + options: + Sound_Lock: + spell: sound-item-lodestone_compass-lock + item: + type: compass + name: "&eLock Sound" + lore: + - "&7&oitem.lodestone_compass.lock" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-nether_wart: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Nether_wart Sounds" + options: + Sound_Plant: + spell: sound-item-nether_wart-plant + item: + type: nether_wart + name: "&ePlant Sound" + lore: + - "&7&oitem.nether_wart.plant" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-shield: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Shield Sounds" + options: + Sound_Block: + spell: sound-item-shield-block + item: + type: shield + name: "&eBlock Sound" + lore: + - "&7&oitem.shield.block" + slot: 0 + Sound_Break: + spell: sound-item-shield-break + item: + type: shield + name: "&eBreak Sound" + lore: + - "&7&oitem.shield.break" + slot: 1 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-shovel: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Shovel Sounds" + options: + Sound_Flatten: + spell: sound-item-shovel-flatten + item: + type: wooden_shovel + name: "&eFlatten Sound" + lore: + - "&7&oitem.shovel.flatten" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-sweet_berries: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Sweet_berries Sounds" + options: + Sound_PickFromBush: + spell: sound-item-sweet_berries-pick_from_bush + item: + type: sweet_berries + name: "&ePick From Bush Sound" + lore: + - "&7&oitem.sweet_berries.pick_from_bush" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-totem: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Totem Sounds" + options: + Sound_Use: + spell: sound-item-totem-use + item: + type: totem_of_undying + name: "&eUse Sound" + lore: + - "&7&oitem.totem.use" + slot: 0 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-item-trident: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Trident Sounds" + options: + Sound_Hit: + spell: sound-item-trident-hit + item: + type: trident + name: "&eHit Sound" + lore: + - "&7&oitem.trident.hit" + slot: 0 + Sound_HitGround: + spell: sound-item-trident-hit_ground + item: + type: trident + name: "&eHit Ground Sound" + lore: + - "&7&oitem.trident.hit_ground" + slot: 1 + Sound_Return: + spell: sound-item-trident-return + item: + type: trident + name: "&eReturn Sound" + lore: + - "&7&oitem.trident.return" + slot: 2 + Sound_Riptide1: + spell: sound-item-trident-riptide_1 + item: + type: trident + name: "&eRiptide 1 Sound" + lore: + - "&7&oitem.trident.riptide_1" + slot: 3 + Sound_Riptide2: + spell: sound-item-trident-riptide_2 + item: + type: trident + name: "&eRiptide 2 Sound" + lore: + - "&7&oitem.trident.riptide_2" + slot: 4 + Sound_Riptide3: + spell: sound-item-trident-riptide_3 + item: + type: trident + name: "&eRiptide 3 Sound" + lore: + - "&7&oitem.trident.riptide_3" + slot: 5 + Sound_Throw: + spell: sound-item-trident-throw + item: + type: trident + name: "&eThrow Sound" + lore: + - "&7&oitem.trident.throw" + slot: 6 + Sound_Thunder: + spell: sound-item-trident-thunder + item: + type: trident + name: "&eThunder Sound" + lore: + - "&7&oitem.trident.thunder" + slot: 7 + Button_Back: + spell: sb-item + item: + type: book + name: "&6Back" + slot: 13 +sb-music: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Music Sounds" + options: + Sound_Creative: + spell: sound-music-creative + item: + type: jukebox + name: "&eCreative Sound" + lore: + - "&7&omusic.creative" + slot: 0 + Sound_Credits: + spell: sound-music-credits + item: + type: jukebox + name: "&eCredits Sound" + lore: + - "&7&omusic.credits" + slot: 1 + Sound_Dragon: + spell: sound-music-dragon + item: + type: jukebox + name: "&eDragon Sound" + lore: + - "&7&omusic.dragon" + slot: 2 + Sound_End: + spell: sound-music-end + item: + type: jukebox + name: "&eEnd Sound" + lore: + - "&7&omusic.end" + slot: 3 + Sound_Game: + spell: sound-music-game + item: + type: jukebox + name: "&eGame Sound" + lore: + - "&7&omusic.game" + slot: 4 + Sound_Menu: + spell: sound-music-menu + item: + type: jukebox + name: "&eMenu Sound" + lore: + - "&7&omusic.menu" + slot: 5 + Sound_UnderWater: + spell: sound-music-under_water + item: + type: jukebox + name: "&eUnder Water Sound" + lore: + - "&7&omusic.under_water" + slot: 6 + Nether: + spell: sb-music-nether + item: + type: music_disc_pigstep + name: "&6Nether Sounds" + slot: 7 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 13 +sb-music-nether: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Nether Sounds" + options: + Sound_BasaltDeltas: + spell: sound-music-nether-basalt_deltas + item: + type: music_disc_pigstep + name: "&eBasalt Deltas Sound" + lore: + - "&7&omusic.nether.basalt_deltas" + slot: 0 + Sound_CrimsonForest: + spell: sound-music-nether-crimson_forest + item: + type: music_disc_pigstep + name: "&eCrimson Forest Sound" + lore: + - "&7&omusic.nether.crimson_forest" + slot: 1 + Sound_NetherWastes: + spell: sound-music-nether-nether_wastes + item: + type: music_disc_pigstep + name: "&eNether Wastes Sound" + lore: + - "&7&omusic.nether.nether_wastes" + slot: 2 + Sound_SoulSandValley: + spell: sound-music-nether-soul_sand_valley + item: + type: music_disc_pigstep + name: "&eSoul Sand Valley Sound" + lore: + - "&7&omusic.nether.soul_sand_valley" + slot: 3 + Sound_WarpedForest: + spell: sound-music-nether-warped_forest + item: + type: music_disc_pigstep + name: "&eWarped Forest Sound" + lore: + - "&7&omusic.nether.warped_forest" + slot: 4 + Button_Back: + spell: sb-music + item: + type: book + name: "&6Back" + slot: 13 +sb-music_disc: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Music_disc Sounds" + options: + Sound_11: + spell: sound-music_disc-11 + item: + type: music_disc_pigstep + name: "&e11 Sound" + lore: + - "&7&omusic_disc.11" + slot: 0 + Sound_13: + spell: sound-music_disc-13 + item: + type: music_disc_pigstep + name: "&e13 Sound" + lore: + - "&7&omusic_disc.13" + slot: 1 + Sound_Blocks: + spell: sound-music_disc-blocks + item: + type: music_disc_pigstep + name: "&eBlocks Sound" + lore: + - "&7&omusic_disc.blocks" + slot: 2 + Sound_Cat: + spell: sound-music_disc-cat + item: + type: music_disc_pigstep + name: "&eCat Sound" + lore: + - "&7&omusic_disc.cat" + slot: 3 + Sound_Chirp: + spell: sound-music_disc-chirp + item: + type: music_disc_pigstep + name: "&eChirp Sound" + lore: + - "&7&omusic_disc.chirp" + slot: 4 + Sound_Far: + spell: sound-music_disc-far + item: + type: music_disc_pigstep + name: "&eFar Sound" + lore: + - "&7&omusic_disc.far" + slot: 5 + Sound_Mall: + spell: sound-music_disc-mall + item: + type: music_disc_pigstep + name: "&eMall Sound" + lore: + - "&7&omusic_disc.mall" + slot: 6 + Sound_Mellohi: + spell: sound-music_disc-mellohi + item: + type: music_disc_pigstep + name: "&eMellohi Sound" + lore: + - "&7&omusic_disc.mellohi" + slot: 7 + Sound_Pigstep: + spell: sound-music_disc-pigstep + item: + type: music_disc_pigstep + name: "&ePigstep Sound" + lore: + - "&7&omusic_disc.pigstep" + slot: 8 + Sound_Stal: + spell: sound-music_disc-stal + item: + type: music_disc_pigstep + name: "&eStal Sound" + lore: + - "&7&omusic_disc.stal" + slot: 9 + Sound_Strad: + spell: sound-music_disc-strad + item: + type: music_disc_pigstep + name: "&eStrad Sound" + lore: + - "&7&omusic_disc.strad" + slot: 10 + Sound_Wait: + spell: sound-music_disc-wait + item: + type: music_disc_pigstep + name: "&eWait Sound" + lore: + - "&7&omusic_disc.wait" + slot: 11 + Sound_Ward: + spell: sound-music_disc-ward + item: + type: music_disc_pigstep + name: "&eWard Sound" + lore: + - "&7&omusic_disc.ward" + slot: 12 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 22 +sb-particle: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Particle Sounds" + options: + Sound_SoulEscape: + spell: sound-particle-soul_escape + item: + type: blaze_powder + name: "&eSoul Escape Sound" + lore: + - "&7&oparticle.soul_escape" + slot: 0 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 13 +sb-ui: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9UI Sounds" + options: + Button: + spell: sb-ui-button + item: + type: stone_button + name: "&6Button Sounds" + slot: 0 + CartographyTable: + spell: sb-ui-cartography_table + item: + type: cartography_table + name: "&6Cartography Table Sounds" + slot: 1 + Loom: + spell: sb-ui-loom + item: + type: loom + name: "&6Loom Sounds" + slot: 2 + Stonecutter: + spell: sb-ui-stonecutter + item: + type: stonecutter + name: "&6Stonecutter Sounds" + slot: 3 + Toast: + spell: sb-ui-toast + item: + type: name_tag + name: "&6Toast Sounds" + slot: 4 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 13 +sb-ui-button: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Button Sounds" + options: + Sound_Click: + spell: sound-ui-button-click + item: + type: stone_button + name: "&eClick Sound" + lore: + - "&7&oui.button.click" + slot: 0 + Button_Back: + spell: sb-ui + item: + type: book + name: "&6Back" + slot: 13 +sb-ui-cartography_table: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Cartography_table Sounds" + options: + Sound_TakeResult: + spell: sound-ui-cartography_table-take_result + item: + type: cartography_table + name: "&eTake Result Sound" + lore: + - "&7&oui.cartography_table.take_result" + slot: 0 + Button_Back: + spell: sb-ui + item: + type: book + name: "&6Back" + slot: 13 +sb-ui-loom: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Loom Sounds" + options: + Sound_SelectPattern: + spell: sound-ui-loom-select_pattern + item: + type: loom + name: "&eSelect Pattern Sound" + lore: + - "&7&oui.loom.select_pattern" + slot: 0 + Sound_TakeResult: + spell: sound-ui-loom-take_result + item: + type: loom + name: "&eTake Result Sound" + lore: + - "&7&oui.loom.take_result" + slot: 1 + Button_Back: + spell: sb-ui + item: + type: book + name: "&6Back" + slot: 13 +sb-ui-stonecutter: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Stonecutter Sounds" + options: + Sound_SelectRecipe: + spell: sound-ui-stonecutter-select_recipe + item: + type: stonecutter + name: "&eSelect Recipe Sound" + lore: + - "&7&oui.stonecutter.select_recipe" + slot: 0 + Sound_TakeResult: + spell: sound-ui-stonecutter-take_result + item: + type: stonecutter + name: "&eTake Result Sound" + lore: + - "&7&oui.stonecutter.take_result" + slot: 1 + Button_Back: + spell: sb-ui + item: + type: book + name: "&6Back" + slot: 13 +sb-ui-toast: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Toast Sounds" + options: + Sound_ChallengeComplete: + spell: sound-ui-toast-challenge_complete + item: + type: name_tag + name: "&eChallenge Complete Sound" + lore: + - "&7&oui.toast.challenge_complete" + slot: 0 + Sound_IN: + spell: sound-ui-toast-in + item: + type: name_tag + name: "&eIN Sound" + lore: + - "&7&oui.toast.in" + slot: 1 + Sound_Out: + spell: sound-ui-toast-out + item: + type: name_tag + name: "&eOut Sound" + lore: + - "&7&oui.toast.out" + slot: 2 + Button_Back: + spell: sb-ui + item: + type: book + name: "&6Back" + slot: 13 +sb-weather: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Weather Sounds" + options: + Sound_Rain: + spell: sound-weather-rain + item: + type: snowball + name: "&eRain Sound" + lore: + - "&7&oweather.rain" + slot: 0 + Rain: + spell: sb-weather-rain + item: + type: water_bucket + name: "&6Rain Sounds" + slot: 1 + Button_Back: + spell: sb + item: + type: book + name: "&6Back" + slot: 13 +sb-weather-rain: + spell-class: .MenuSpell + helper-spell: true + tags: + - NotSilenceable + delay: 1 + stay-open-non-option: true + title: "&9Rain Sounds" + options: + Sound_Above: + spell: sound-weather-rain-above + item: + type: water_bucket + name: "&eAbove Sound" + lore: + - "&7&oweather.rain.above" + slot: 0 + Button_Back: + spell: sb-weather + item: + type: book + name: "&6Back" + slot: 13 +sound-ambient-cave: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.cave + - Menu =ambient + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-basalt_deltas-additions: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.basalt_deltas.additions + - Menu =ambient_basalt_deltas + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-basalt_deltas-loop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.basalt_deltas.loop + - Menu =ambient_basalt_deltas + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-basalt_deltas-mood: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.basalt_deltas.mood + - Menu =ambient_basalt_deltas + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-crimson_forest-additions: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.crimson_forest.additions + - Menu =ambient_crimson_forest + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-crimson_forest-loop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.crimson_forest.loop + - Menu =ambient_crimson_forest + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-crimson_forest-mood: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.crimson_forest.mood + - Menu =ambient_crimson_forest + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-nether_wastes-additions: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.nether_wastes.additions + - Menu =ambient_nether_wastes + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-nether_wastes-loop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.nether_wastes.loop + - Menu =ambient_nether_wastes + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-nether_wastes-mood: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.nether_wastes.mood + - Menu =ambient_nether_wastes + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-soul_sand_valley-additions: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.soul_sand_valley.additions + - Menu =ambient_soul_sand_valley + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-soul_sand_valley-loop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.soul_sand_valley.loop + - Menu =ambient_soul_sand_valley + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-soul_sand_valley-mood: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.soul_sand_valley.mood + - Menu =ambient_soul_sand_valley + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-underwater-enter: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.underwater.enter + - Menu =ambient_underwater + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-underwater-exit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.underwater.exit + - Menu =ambient_underwater + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-underwater-loop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.underwater.loop + - Menu =ambient_underwater + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-underwater-loop-additions: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.underwater.loop.additions + - Menu =ambient_underwater_loop + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-underwater-loop-additions-rare: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.underwater.loop.additions.rare + - Menu =ambient_underwater_loop_additions + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-underwater-loop-additions-ultra_rare: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.underwater.loop.additions.ultra_rare + - Menu =ambient_underwater_loop_additions + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-warped_forest-additions: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.warped_forest.additions + - Menu =ambient_warped_forest + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-warped_forest-loop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.warped_forest.loop + - Menu =ambient_warped_forest + modifiers: + - chance 100 cast sb-selectsound +sound-ambient-warped_forest-mood: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ambient.warped_forest.mood + - Menu =ambient_warped_forest + modifiers: + - chance 100 cast sb-selectsound +sound-block-ancient_debris-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ancient_debris.break + - Menu =block_ancient_debris + modifiers: + - chance 100 cast sb-selectsound +sound-block-ancient_debris-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ancient_debris.fall + - Menu =block_ancient_debris + modifiers: + - chance 100 cast sb-selectsound +sound-block-ancient_debris-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ancient_debris.hit + - Menu =block_ancient_debris + modifiers: + - chance 100 cast sb-selectsound +sound-block-ancient_debris-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ancient_debris.place + - Menu =block_ancient_debris + modifiers: + - chance 100 cast sb-selectsound +sound-block-ancient_debris-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ancient_debris.step + - Menu =block_ancient_debris + modifiers: + - chance 100 cast sb-selectsound +sound-block-anvil-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.anvil.break + - Menu =block_anvil + modifiers: + - chance 100 cast sb-selectsound +sound-block-anvil-destroy: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.anvil.destroy + - Menu =block_anvil + modifiers: + - chance 100 cast sb-selectsound +sound-block-anvil-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.anvil.fall + - Menu =block_anvil + modifiers: + - chance 100 cast sb-selectsound +sound-block-anvil-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.anvil.hit + - Menu =block_anvil + modifiers: + - chance 100 cast sb-selectsound +sound-block-anvil-land: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.anvil.land + - Menu =block_anvil + modifiers: + - chance 100 cast sb-selectsound +sound-block-anvil-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.anvil.place + - Menu =block_anvil + modifiers: + - chance 100 cast sb-selectsound +sound-block-anvil-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.anvil.step + - Menu =block_anvil + modifiers: + - chance 100 cast sb-selectsound +sound-block-anvil-use: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.anvil.use + - Menu =block_anvil + modifiers: + - chance 100 cast sb-selectsound +sound-block-bamboo-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bamboo.break + - Menu =block_bamboo + modifiers: + - chance 100 cast sb-selectsound +sound-block-bamboo-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bamboo.fall + - Menu =block_bamboo + modifiers: + - chance 100 cast sb-selectsound +sound-block-bamboo-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bamboo.hit + - Menu =block_bamboo + modifiers: + - chance 100 cast sb-selectsound +sound-block-bamboo-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bamboo.place + - Menu =block_bamboo + modifiers: + - chance 100 cast sb-selectsound +sound-block-bamboo-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bamboo.step + - Menu =block_bamboo + modifiers: + - chance 100 cast sb-selectsound +sound-block-bamboo_sapling-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bamboo_sapling.break + - Menu =block_bamboo_sapling + modifiers: + - chance 100 cast sb-selectsound +sound-block-bamboo_sapling-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bamboo_sapling.hit + - Menu =block_bamboo_sapling + modifiers: + - chance 100 cast sb-selectsound +sound-block-bamboo_sapling-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bamboo_sapling.place + - Menu =block_bamboo_sapling + modifiers: + - chance 100 cast sb-selectsound +sound-block-barrel-close: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.barrel.close + - Menu =block_barrel + modifiers: + - chance 100 cast sb-selectsound +sound-block-barrel-open: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.barrel.open + - Menu =block_barrel + modifiers: + - chance 100 cast sb-selectsound +sound-block-basalt-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.basalt.break + - Menu =block_basalt + modifiers: + - chance 100 cast sb-selectsound +sound-block-basalt-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.basalt.fall + - Menu =block_basalt + modifiers: + - chance 100 cast sb-selectsound +sound-block-basalt-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.basalt.hit + - Menu =block_basalt + modifiers: + - chance 100 cast sb-selectsound +sound-block-basalt-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.basalt.place + - Menu =block_basalt + modifiers: + - chance 100 cast sb-selectsound +sound-block-basalt-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.basalt.step + - Menu =block_basalt + modifiers: + - chance 100 cast sb-selectsound +sound-block-beacon-activate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.beacon.activate + - Menu =block_beacon + modifiers: + - chance 100 cast sb-selectsound +sound-block-beacon-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.beacon.ambient + - Menu =block_beacon + modifiers: + - chance 100 cast sb-selectsound +sound-block-beacon-deactivate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.beacon.deactivate + - Menu =block_beacon + modifiers: + - chance 100 cast sb-selectsound +sound-block-beacon-power_select: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.beacon.power_select + - Menu =block_beacon + modifiers: + - chance 100 cast sb-selectsound +sound-block-beehive-drip: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.beehive.drip + - Menu =block_beehive + modifiers: + - chance 100 cast sb-selectsound +sound-block-beehive-enter: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.beehive.enter + - Menu =block_beehive + modifiers: + - chance 100 cast sb-selectsound +sound-block-beehive-exit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.beehive.exit + - Menu =block_beehive + modifiers: + - chance 100 cast sb-selectsound +sound-block-beehive-shear: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.beehive.shear + - Menu =block_beehive + modifiers: + - chance 100 cast sb-selectsound +sound-block-beehive-work: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.beehive.work + - Menu =block_beehive + modifiers: + - chance 100 cast sb-selectsound +sound-block-bell-resonate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bell.resonate + - Menu =block_bell + modifiers: + - chance 100 cast sb-selectsound +sound-block-bell-use: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bell.use + - Menu =block_bell + modifiers: + - chance 100 cast sb-selectsound +sound-block-blastfurnace-fire_crackle: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.blastfurnace.fire_crackle + - Menu =block_blastfurnace + modifiers: + - chance 100 cast sb-selectsound +sound-block-bone_block-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bone_block.break + - Menu =block_bone_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-bone_block-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bone_block.fall + - Menu =block_bone_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-bone_block-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bone_block.hit + - Menu =block_bone_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-bone_block-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bone_block.place + - Menu =block_bone_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-bone_block-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bone_block.step + - Menu =block_bone_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-brewing_stand-brew: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.brewing_stand.brew + - Menu =block_brewing_stand + modifiers: + - chance 100 cast sb-selectsound +sound-block-bubble_column-bubble_pop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bubble_column.bubble_pop + - Menu =block_bubble_column + modifiers: + - chance 100 cast sb-selectsound +sound-block-bubble_column-upwards_ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bubble_column.upwards_ambient + - Menu =block_bubble_column + modifiers: + - chance 100 cast sb-selectsound +sound-block-bubble_column-upwards_inside: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bubble_column.upwards_inside + - Menu =block_bubble_column + modifiers: + - chance 100 cast sb-selectsound +sound-block-bubble_column-whirlpool_ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bubble_column.whirlpool_ambient + - Menu =block_bubble_column + modifiers: + - chance 100 cast sb-selectsound +sound-block-bubble_column-whirlpool_inside: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.bubble_column.whirlpool_inside + - Menu =block_bubble_column + modifiers: + - chance 100 cast sb-selectsound +sound-block-campfire-crackle: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.campfire.crackle + - Menu =block_campfire + modifiers: + - chance 100 cast sb-selectsound +sound-block-chain-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.chain.break + - Menu =block_chain + modifiers: + - chance 100 cast sb-selectsound +sound-block-chain-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.chain.fall + - Menu =block_chain + modifiers: + - chance 100 cast sb-selectsound +sound-block-chain-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.chain.hit + - Menu =block_chain + modifiers: + - chance 100 cast sb-selectsound +sound-block-chain-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.chain.place + - Menu =block_chain + modifiers: + - chance 100 cast sb-selectsound +sound-block-chain-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.chain.step + - Menu =block_chain + modifiers: + - chance 100 cast sb-selectsound +sound-block-chest-close: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.chest.close + - Menu =block_chest + modifiers: + - chance 100 cast sb-selectsound +sound-block-chest-locked: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.chest.locked + - Menu =block_chest + modifiers: + - chance 100 cast sb-selectsound +sound-block-chest-open: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.chest.open + - Menu =block_chest + modifiers: + - chance 100 cast sb-selectsound +sound-block-chorus_flower-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.chorus_flower.death + - Menu =block_chorus_flower + modifiers: + - chance 100 cast sb-selectsound +sound-block-chorus_flower-grow: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.chorus_flower.grow + - Menu =block_chorus_flower + modifiers: + - chance 100 cast sb-selectsound +sound-block-comparator-click: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.comparator.click + - Menu =block_comparator + modifiers: + - chance 100 cast sb-selectsound +sound-block-composter-empty: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.composter.empty + - Menu =block_composter + modifiers: + - chance 100 cast sb-selectsound +sound-block-composter-fill: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.composter.fill + - Menu =block_composter + modifiers: + - chance 100 cast sb-selectsound +sound-block-composter-fill_success: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.composter.fill_success + - Menu =block_composter + modifiers: + - chance 100 cast sb-selectsound +sound-block-composter-ready: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.composter.ready + - Menu =block_composter + modifiers: + - chance 100 cast sb-selectsound +sound-block-conduit-activate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.conduit.activate + - Menu =block_conduit + modifiers: + - chance 100 cast sb-selectsound +sound-block-conduit-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.conduit.ambient + - Menu =block_conduit + modifiers: + - chance 100 cast sb-selectsound +sound-block-conduit-deactivate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.conduit.deactivate + - Menu =block_conduit + modifiers: + - chance 100 cast sb-selectsound +sound-block-conduit-ambient-short: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.conduit.ambient.short + - Menu =block_conduit_ambient + modifiers: + - chance 100 cast sb-selectsound +sound-block-conduit-attack-target: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.conduit.attack.target + - Menu =block_conduit_attack + modifiers: + - chance 100 cast sb-selectsound +sound-block-coral_block-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.coral_block.break + - Menu =block_coral_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-coral_block-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.coral_block.fall + - Menu =block_coral_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-coral_block-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.coral_block.hit + - Menu =block_coral_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-coral_block-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.coral_block.place + - Menu =block_coral_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-coral_block-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.coral_block.step + - Menu =block_coral_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-crop-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.crop.break + - Menu =block_crop + modifiers: + - chance 100 cast sb-selectsound +sound-block-dispenser-dispense: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.dispenser.dispense + - Menu =block_dispenser + modifiers: + - chance 100 cast sb-selectsound +sound-block-dispenser-fail: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.dispenser.fail + - Menu =block_dispenser + modifiers: + - chance 100 cast sb-selectsound +sound-block-dispenser-launch: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.dispenser.launch + - Menu =block_dispenser + modifiers: + - chance 100 cast sb-selectsound +sound-block-enchantment_table-use: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.enchantment_table.use + - Menu =block_enchantment_table + modifiers: + - chance 100 cast sb-selectsound +sound-block-end_gateway-spawn: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.end_gateway.spawn + - Menu =block_end_gateway + modifiers: + - chance 100 cast sb-selectsound +sound-block-end_portal-spawn: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.end_portal.spawn + - Menu =block_end_portal + modifiers: + - chance 100 cast sb-selectsound +sound-block-end_portal_frame-fill: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.end_portal_frame.fill + - Menu =block_end_portal_frame + modifiers: + - chance 100 cast sb-selectsound +sound-block-ender_chest-close: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ender_chest.close + - Menu =block_ender_chest + modifiers: + - chance 100 cast sb-selectsound +sound-block-ender_chest-open: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ender_chest.open + - Menu =block_ender_chest + modifiers: + - chance 100 cast sb-selectsound +sound-block-fence_gate-close: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.fence_gate.close + - Menu =block_fence_gate + modifiers: + - chance 100 cast sb-selectsound +sound-block-fence_gate-open: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.fence_gate.open + - Menu =block_fence_gate + modifiers: + - chance 100 cast sb-selectsound +sound-block-fire-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.fire.ambient + - Menu =block_fire + modifiers: + - chance 100 cast sb-selectsound +sound-block-fire-extinguish: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.fire.extinguish + - Menu =block_fire + modifiers: + - chance 100 cast sb-selectsound +sound-block-fungus-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.fungus.break + - Menu =block_fungus + modifiers: + - chance 100 cast sb-selectsound +sound-block-fungus-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.fungus.fall + - Menu =block_fungus + modifiers: + - chance 100 cast sb-selectsound +sound-block-fungus-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.fungus.hit + - Menu =block_fungus + modifiers: + - chance 100 cast sb-selectsound +sound-block-fungus-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.fungus.place + - Menu =block_fungus + modifiers: + - chance 100 cast sb-selectsound +sound-block-fungus-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.fungus.step + - Menu =block_fungus + modifiers: + - chance 100 cast sb-selectsound +sound-block-furnace-fire_crackle: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.furnace.fire_crackle + - Menu =block_furnace + modifiers: + - chance 100 cast sb-selectsound +sound-block-gilded_blackstone-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.gilded_blackstone.break + - Menu =block_gilded_blackstone + modifiers: + - chance 100 cast sb-selectsound +sound-block-gilded_blackstone-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.gilded_blackstone.fall + - Menu =block_gilded_blackstone + modifiers: + - chance 100 cast sb-selectsound +sound-block-gilded_blackstone-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.gilded_blackstone.hit + - Menu =block_gilded_blackstone + modifiers: + - chance 100 cast sb-selectsound +sound-block-gilded_blackstone-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.gilded_blackstone.place + - Menu =block_gilded_blackstone + modifiers: + - chance 100 cast sb-selectsound +sound-block-gilded_blackstone-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.gilded_blackstone.step + - Menu =block_gilded_blackstone + modifiers: + - chance 100 cast sb-selectsound +sound-block-glass-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.glass.break + - Menu =block_glass + modifiers: + - chance 100 cast sb-selectsound +sound-block-glass-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.glass.fall + - Menu =block_glass + modifiers: + - chance 100 cast sb-selectsound +sound-block-glass-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.glass.hit + - Menu =block_glass + modifiers: + - chance 100 cast sb-selectsound +sound-block-glass-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.glass.place + - Menu =block_glass + modifiers: + - chance 100 cast sb-selectsound +sound-block-glass-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.glass.step + - Menu =block_glass + modifiers: + - chance 100 cast sb-selectsound +sound-block-grass-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.grass.break + - Menu =block_grass + modifiers: + - chance 100 cast sb-selectsound +sound-block-grass-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.grass.fall + - Menu =block_grass + modifiers: + - chance 100 cast sb-selectsound +sound-block-grass-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.grass.hit + - Menu =block_grass + modifiers: + - chance 100 cast sb-selectsound +sound-block-grass-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.grass.place + - Menu =block_grass + modifiers: + - chance 100 cast sb-selectsound +sound-block-grass-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.grass.step + - Menu =block_grass + modifiers: + - chance 100 cast sb-selectsound +sound-block-gravel-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.gravel.break + - Menu =block_gravel + modifiers: + - chance 100 cast sb-selectsound +sound-block-gravel-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.gravel.fall + - Menu =block_gravel + modifiers: + - chance 100 cast sb-selectsound +sound-block-gravel-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.gravel.hit + - Menu =block_gravel + modifiers: + - chance 100 cast sb-selectsound +sound-block-gravel-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.gravel.place + - Menu =block_gravel + modifiers: + - chance 100 cast sb-selectsound +sound-block-gravel-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.gravel.step + - Menu =block_gravel + modifiers: + - chance 100 cast sb-selectsound +sound-block-grindstone-use: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.grindstone.use + - Menu =block_grindstone + modifiers: + - chance 100 cast sb-selectsound +sound-block-honey_block-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.honey_block.break + - Menu =block_honey_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-honey_block-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.honey_block.fall + - Menu =block_honey_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-honey_block-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.honey_block.hit + - Menu =block_honey_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-honey_block-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.honey_block.place + - Menu =block_honey_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-honey_block-slide: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.honey_block.slide + - Menu =block_honey_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-honey_block-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.honey_block.step + - Menu =block_honey_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-iron_door-close: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.iron_door.close + - Menu =block_iron_door + modifiers: + - chance 100 cast sb-selectsound +sound-block-iron_door-open: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.iron_door.open + - Menu =block_iron_door + modifiers: + - chance 100 cast sb-selectsound +sound-block-iron_trapdoor-close: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.iron_trapdoor.close + - Menu =block_iron_trapdoor + modifiers: + - chance 100 cast sb-selectsound +sound-block-iron_trapdoor-open: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.iron_trapdoor.open + - Menu =block_iron_trapdoor + modifiers: + - chance 100 cast sb-selectsound +sound-block-ladder-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ladder.break + - Menu =block_ladder + modifiers: + - chance 100 cast sb-selectsound +sound-block-ladder-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ladder.fall + - Menu =block_ladder + modifiers: + - chance 100 cast sb-selectsound +sound-block-ladder-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ladder.hit + - Menu =block_ladder + modifiers: + - chance 100 cast sb-selectsound +sound-block-ladder-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ladder.place + - Menu =block_ladder + modifiers: + - chance 100 cast sb-selectsound +sound-block-ladder-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.ladder.step + - Menu =block_ladder + modifiers: + - chance 100 cast sb-selectsound +sound-block-lantern-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lantern.break + - Menu =block_lantern + modifiers: + - chance 100 cast sb-selectsound +sound-block-lantern-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lantern.fall + - Menu =block_lantern + modifiers: + - chance 100 cast sb-selectsound +sound-block-lantern-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lantern.hit + - Menu =block_lantern + modifiers: + - chance 100 cast sb-selectsound +sound-block-lantern-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lantern.place + - Menu =block_lantern + modifiers: + - chance 100 cast sb-selectsound +sound-block-lantern-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lantern.step + - Menu =block_lantern + modifiers: + - chance 100 cast sb-selectsound +sound-block-lava-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lava.ambient + - Menu =block_lava + modifiers: + - chance 100 cast sb-selectsound +sound-block-lava-extinguish: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lava.extinguish + - Menu =block_lava + modifiers: + - chance 100 cast sb-selectsound +sound-block-lava-pop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lava.pop + - Menu =block_lava + modifiers: + - chance 100 cast sb-selectsound +sound-block-lever-click: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lever.click + - Menu =block_lever + modifiers: + - chance 100 cast sb-selectsound +sound-block-lily_pad-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lily_pad.place + - Menu =block_lily_pad + modifiers: + - chance 100 cast sb-selectsound +sound-block-lodestone-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lodestone.break + - Menu =block_lodestone + modifiers: + - chance 100 cast sb-selectsound +sound-block-lodestone-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lodestone.fall + - Menu =block_lodestone + modifiers: + - chance 100 cast sb-selectsound +sound-block-lodestone-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lodestone.hit + - Menu =block_lodestone + modifiers: + - chance 100 cast sb-selectsound +sound-block-lodestone-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lodestone.place + - Menu =block_lodestone + modifiers: + - chance 100 cast sb-selectsound +sound-block-lodestone-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.lodestone.step + - Menu =block_lodestone + modifiers: + - chance 100 cast sb-selectsound +sound-block-metal-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.metal.break + - Menu =block_metal + modifiers: + - chance 100 cast sb-selectsound +sound-block-metal-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.metal.fall + - Menu =block_metal + modifiers: + - chance 100 cast sb-selectsound +sound-block-metal-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.metal.hit + - Menu =block_metal + modifiers: + - chance 100 cast sb-selectsound +sound-block-metal-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.metal.place + - Menu =block_metal + modifiers: + - chance 100 cast sb-selectsound +sound-block-metal-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.metal.step + - Menu =block_metal + modifiers: + - chance 100 cast sb-selectsound +sound-block-metal_pressure_plate-click_off: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.metal_pressure_plate.click_off + - Menu =block_metal_pressure_plate + modifiers: + - chance 100 cast sb-selectsound +sound-block-metal_pressure_plate-click_on: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.metal_pressure_plate.click_on + - Menu =block_metal_pressure_plate + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_bricks-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_bricks.break + - Menu =block_nether_bricks + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_bricks-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_bricks.fall + - Menu =block_nether_bricks + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_bricks-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_bricks.hit + - Menu =block_nether_bricks + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_bricks-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_bricks.place + - Menu =block_nether_bricks + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_bricks-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_bricks.step + - Menu =block_nether_bricks + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_gold_ore-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_gold_ore.break + - Menu =block_nether_gold_ore + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_gold_ore-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_gold_ore.fall + - Menu =block_nether_gold_ore + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_gold_ore-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_gold_ore.hit + - Menu =block_nether_gold_ore + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_gold_ore-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_gold_ore.place + - Menu =block_nether_gold_ore + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_gold_ore-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_gold_ore.step + - Menu =block_nether_gold_ore + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_ore-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_ore.break + - Menu =block_nether_ore + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_ore-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_ore.fall + - Menu =block_nether_ore + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_ore-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_ore.hit + - Menu =block_nether_ore + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_ore-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_ore.place + - Menu =block_nether_ore + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_ore-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_ore.step + - Menu =block_nether_ore + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_sprouts-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_sprouts.break + - Menu =block_nether_sprouts + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_sprouts-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_sprouts.fall + - Menu =block_nether_sprouts + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_sprouts-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_sprouts.hit + - Menu =block_nether_sprouts + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_sprouts-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_sprouts.place + - Menu =block_nether_sprouts + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_sprouts-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_sprouts.step + - Menu =block_nether_sprouts + modifiers: + - chance 100 cast sb-selectsound +sound-block-nether_wart-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nether_wart.break + - Menu =block_nether_wart + modifiers: + - chance 100 cast sb-selectsound +sound-block-netherite_block-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.netherite_block.break + - Menu =block_netherite_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-netherite_block-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.netherite_block.fall + - Menu =block_netherite_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-netherite_block-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.netherite_block.hit + - Menu =block_netherite_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-netherite_block-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.netherite_block.place + - Menu =block_netherite_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-netherite_block-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.netherite_block.step + - Menu =block_netherite_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-netherrack-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.netherrack.break + - Menu =block_netherrack + modifiers: + - chance 100 cast sb-selectsound +sound-block-netherrack-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.netherrack.fall + - Menu =block_netherrack + modifiers: + - chance 100 cast sb-selectsound +sound-block-netherrack-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.netherrack.hit + - Menu =block_netherrack + modifiers: + - chance 100 cast sb-selectsound +sound-block-netherrack-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.netherrack.place + - Menu =block_netherrack + modifiers: + - chance 100 cast sb-selectsound +sound-block-netherrack-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.netherrack.step + - Menu =block_netherrack + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-banjo: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.banjo + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-basedrum: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.basedrum + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-bass: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.bass + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-bell: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.bell + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-bit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.bit + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-chime: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.chime + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-cow_bell: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.cow_bell + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-didgeridoo: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.didgeridoo + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-flute: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.flute + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-guitar: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.guitar + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-harp: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.harp + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-hat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.hat + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-iron_xylophone: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.iron_xylophone + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-pling: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.pling + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-snare: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.snare + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-note_block-xylophone: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.note_block.xylophone + - Menu =block_note_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-nylium-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nylium.break + - Menu =block_nylium + modifiers: + - chance 100 cast sb-selectsound +sound-block-nylium-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nylium.fall + - Menu =block_nylium + modifiers: + - chance 100 cast sb-selectsound +sound-block-nylium-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nylium.hit + - Menu =block_nylium + modifiers: + - chance 100 cast sb-selectsound +sound-block-nylium-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nylium.place + - Menu =block_nylium + modifiers: + - chance 100 cast sb-selectsound +sound-block-nylium-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.nylium.step + - Menu =block_nylium + modifiers: + - chance 100 cast sb-selectsound +sound-block-piston-contract: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.piston.contract + - Menu =block_piston + modifiers: + - chance 100 cast sb-selectsound +sound-block-piston-extend: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.piston.extend + - Menu =block_piston + modifiers: + - chance 100 cast sb-selectsound +sound-block-portal-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.portal.ambient + - Menu =block_portal + modifiers: + - chance 100 cast sb-selectsound +sound-block-portal-travel: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.portal.travel + - Menu =block_portal + modifiers: + - chance 100 cast sb-selectsound +sound-block-portal-trigger: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.portal.trigger + - Menu =block_portal + modifiers: + - chance 100 cast sb-selectsound +sound-block-pumpkin-carve: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.pumpkin.carve + - Menu =block_pumpkin + modifiers: + - chance 100 cast sb-selectsound +sound-block-redstone_torch-burnout: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.redstone_torch.burnout + - Menu =block_redstone_torch + modifiers: + - chance 100 cast sb-selectsound +sound-block-respawn_anchor-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.respawn_anchor.ambient + - Menu =block_respawn_anchor + modifiers: + - chance 100 cast sb-selectsound +sound-block-respawn_anchor-charge: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.respawn_anchor.charge + - Menu =block_respawn_anchor + modifiers: + - chance 100 cast sb-selectsound +sound-block-respawn_anchor-deplete: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.respawn_anchor.deplete + - Menu =block_respawn_anchor + modifiers: + - chance 100 cast sb-selectsound +sound-block-respawn_anchor-set_spawn: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.respawn_anchor.set_spawn + - Menu =block_respawn_anchor + modifiers: + - chance 100 cast sb-selectsound +sound-block-roots-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.roots.break + - Menu =block_roots + modifiers: + - chance 100 cast sb-selectsound +sound-block-roots-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.roots.fall + - Menu =block_roots + modifiers: + - chance 100 cast sb-selectsound +sound-block-roots-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.roots.hit + - Menu =block_roots + modifiers: + - chance 100 cast sb-selectsound +sound-block-roots-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.roots.place + - Menu =block_roots + modifiers: + - chance 100 cast sb-selectsound +sound-block-roots-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.roots.step + - Menu =block_roots + modifiers: + - chance 100 cast sb-selectsound +sound-block-sand-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.sand.break + - Menu =block_sand + modifiers: + - chance 100 cast sb-selectsound +sound-block-sand-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.sand.fall + - Menu =block_sand + modifiers: + - chance 100 cast sb-selectsound +sound-block-sand-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.sand.hit + - Menu =block_sand + modifiers: + - chance 100 cast sb-selectsound +sound-block-sand-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.sand.place + - Menu =block_sand + modifiers: + - chance 100 cast sb-selectsound +sound-block-sand-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.sand.step + - Menu =block_sand + modifiers: + - chance 100 cast sb-selectsound +sound-block-scaffolding-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.scaffolding.break + - Menu =block_scaffolding + modifiers: + - chance 100 cast sb-selectsound +sound-block-scaffolding-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.scaffolding.fall + - Menu =block_scaffolding + modifiers: + - chance 100 cast sb-selectsound +sound-block-scaffolding-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.scaffolding.hit + - Menu =block_scaffolding + modifiers: + - chance 100 cast sb-selectsound +sound-block-scaffolding-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.scaffolding.place + - Menu =block_scaffolding + modifiers: + - chance 100 cast sb-selectsound +sound-block-scaffolding-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.scaffolding.step + - Menu =block_scaffolding + modifiers: + - chance 100 cast sb-selectsound +sound-block-shroomlight-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.shroomlight.break + - Menu =block_shroomlight + modifiers: + - chance 100 cast sb-selectsound +sound-block-shroomlight-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.shroomlight.fall + - Menu =block_shroomlight + modifiers: + - chance 100 cast sb-selectsound +sound-block-shroomlight-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.shroomlight.hit + - Menu =block_shroomlight + modifiers: + - chance 100 cast sb-selectsound +sound-block-shroomlight-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.shroomlight.place + - Menu =block_shroomlight + modifiers: + - chance 100 cast sb-selectsound +sound-block-shroomlight-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.shroomlight.step + - Menu =block_shroomlight + modifiers: + - chance 100 cast sb-selectsound +sound-block-shulker_box-close: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.shulker_box.close + - Menu =block_shulker_box + modifiers: + - chance 100 cast sb-selectsound +sound-block-shulker_box-open: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.shulker_box.open + - Menu =block_shulker_box + modifiers: + - chance 100 cast sb-selectsound +sound-block-slime_block-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.slime_block.break + - Menu =block_slime_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-slime_block-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.slime_block.fall + - Menu =block_slime_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-slime_block-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.slime_block.hit + - Menu =block_slime_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-slime_block-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.slime_block.place + - Menu =block_slime_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-slime_block-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.slime_block.step + - Menu =block_slime_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-smithing_table-use: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.smithing_table.use + - Menu =block_smithing_table + modifiers: + - chance 100 cast sb-selectsound +sound-block-smoker-smoke: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.smoker.smoke + - Menu =block_smoker + modifiers: + - chance 100 cast sb-selectsound +sound-block-snow-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.snow.break + - Menu =block_snow + modifiers: + - chance 100 cast sb-selectsound +sound-block-snow-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.snow.fall + - Menu =block_snow + modifiers: + - chance 100 cast sb-selectsound +sound-block-snow-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.snow.hit + - Menu =block_snow + modifiers: + - chance 100 cast sb-selectsound +sound-block-snow-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.snow.place + - Menu =block_snow + modifiers: + - chance 100 cast sb-selectsound +sound-block-snow-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.snow.step + - Menu =block_snow + modifiers: + - chance 100 cast sb-selectsound +sound-block-soul_sand-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.soul_sand.break + - Menu =block_soul_sand + modifiers: + - chance 100 cast sb-selectsound +sound-block-soul_sand-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.soul_sand.fall + - Menu =block_soul_sand + modifiers: + - chance 100 cast sb-selectsound +sound-block-soul_sand-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.soul_sand.hit + - Menu =block_soul_sand + modifiers: + - chance 100 cast sb-selectsound +sound-block-soul_sand-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.soul_sand.place + - Menu =block_soul_sand + modifiers: + - chance 100 cast sb-selectsound +sound-block-soul_sand-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.soul_sand.step + - Menu =block_soul_sand + modifiers: + - chance 100 cast sb-selectsound +sound-block-soul_soil-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.soul_soil.break + - Menu =block_soul_soil + modifiers: + - chance 100 cast sb-selectsound +sound-block-soul_soil-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.soul_soil.fall + - Menu =block_soul_soil + modifiers: + - chance 100 cast sb-selectsound +sound-block-soul_soil-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.soul_soil.hit + - Menu =block_soul_soil + modifiers: + - chance 100 cast sb-selectsound +sound-block-soul_soil-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.soul_soil.place + - Menu =block_soul_soil + modifiers: + - chance 100 cast sb-selectsound +sound-block-soul_soil-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.soul_soil.step + - Menu =block_soul_soil + modifiers: + - chance 100 cast sb-selectsound +sound-block-stem-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stem.break + - Menu =block_stem + modifiers: + - chance 100 cast sb-selectsound +sound-block-stem-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stem.fall + - Menu =block_stem + modifiers: + - chance 100 cast sb-selectsound +sound-block-stem-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stem.hit + - Menu =block_stem + modifiers: + - chance 100 cast sb-selectsound +sound-block-stem-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stem.place + - Menu =block_stem + modifiers: + - chance 100 cast sb-selectsound +sound-block-stem-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stem.step + - Menu =block_stem + modifiers: + - chance 100 cast sb-selectsound +sound-block-stone-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stone.break + - Menu =block_stone + modifiers: + - chance 100 cast sb-selectsound +sound-block-stone-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stone.fall + - Menu =block_stone + modifiers: + - chance 100 cast sb-selectsound +sound-block-stone-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stone.hit + - Menu =block_stone + modifiers: + - chance 100 cast sb-selectsound +sound-block-stone-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stone.place + - Menu =block_stone + modifiers: + - chance 100 cast sb-selectsound +sound-block-stone-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stone.step + - Menu =block_stone + modifiers: + - chance 100 cast sb-selectsound +sound-block-stone_button-click_off: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stone_button.click_off + - Menu =block_stone_button + modifiers: + - chance 100 cast sb-selectsound +sound-block-stone_button-click_on: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stone_button.click_on + - Menu =block_stone_button + modifiers: + - chance 100 cast sb-selectsound +sound-block-stone_pressure_plate-click_off: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stone_pressure_plate.click_off + - Menu =block_stone_pressure_plate + modifiers: + - chance 100 cast sb-selectsound +sound-block-stone_pressure_plate-click_on: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.stone_pressure_plate.click_on + - Menu =block_stone_pressure_plate + modifiers: + - chance 100 cast sb-selectsound +sound-block-sweet_berry_bush-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.sweet_berry_bush.break + - Menu =block_sweet_berry_bush + modifiers: + - chance 100 cast sb-selectsound +sound-block-sweet_berry_bush-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.sweet_berry_bush.place + - Menu =block_sweet_berry_bush + modifiers: + - chance 100 cast sb-selectsound +sound-block-tripwire-attach: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.tripwire.attach + - Menu =block_tripwire + modifiers: + - chance 100 cast sb-selectsound +sound-block-tripwire-click_off: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.tripwire.click_off + - Menu =block_tripwire + modifiers: + - chance 100 cast sb-selectsound +sound-block-tripwire-click_on: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.tripwire.click_on + - Menu =block_tripwire + modifiers: + - chance 100 cast sb-selectsound +sound-block-tripwire-detach: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.tripwire.detach + - Menu =block_tripwire + modifiers: + - chance 100 cast sb-selectsound +sound-block-vine-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.vine.step + - Menu =block_vine + modifiers: + - chance 100 cast sb-selectsound +sound-block-wart_block-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wart_block.break + - Menu =block_wart_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-wart_block-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wart_block.fall + - Menu =block_wart_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-wart_block-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wart_block.hit + - Menu =block_wart_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-wart_block-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wart_block.place + - Menu =block_wart_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-wart_block-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wart_block.step + - Menu =block_wart_block + modifiers: + - chance 100 cast sb-selectsound +sound-block-water-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.water.ambient + - Menu =block_water + modifiers: + - chance 100 cast sb-selectsound +sound-block-weeping_vines-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.weeping_vines.break + - Menu =block_weeping_vines + modifiers: + - chance 100 cast sb-selectsound +sound-block-weeping_vines-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.weeping_vines.fall + - Menu =block_weeping_vines + modifiers: + - chance 100 cast sb-selectsound +sound-block-weeping_vines-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.weeping_vines.hit + - Menu =block_weeping_vines + modifiers: + - chance 100 cast sb-selectsound +sound-block-weeping_vines-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.weeping_vines.place + - Menu =block_weeping_vines + modifiers: + - chance 100 cast sb-selectsound +sound-block-weeping_vines-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.weeping_vines.step + - Menu =block_weeping_vines + modifiers: + - chance 100 cast sb-selectsound +sound-block-wet_grass-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wet_grass.break + - Menu =block_wet_grass + modifiers: + - chance 100 cast sb-selectsound +sound-block-wet_grass-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wet_grass.fall + - Menu =block_wet_grass + modifiers: + - chance 100 cast sb-selectsound +sound-block-wet_grass-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wet_grass.hit + - Menu =block_wet_grass + modifiers: + - chance 100 cast sb-selectsound +sound-block-wet_grass-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wet_grass.place + - Menu =block_wet_grass + modifiers: + - chance 100 cast sb-selectsound +sound-block-wet_grass-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wet_grass.step + - Menu =block_wet_grass + modifiers: + - chance 100 cast sb-selectsound +sound-block-wood-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wood.break + - Menu =block_wood + modifiers: + - chance 100 cast sb-selectsound +sound-block-wood-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wood.fall + - Menu =block_wood + modifiers: + - chance 100 cast sb-selectsound +sound-block-wood-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wood.hit + - Menu =block_wood + modifiers: + - chance 100 cast sb-selectsound +sound-block-wood-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wood.place + - Menu =block_wood + modifiers: + - chance 100 cast sb-selectsound +sound-block-wood-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wood.step + - Menu =block_wood + modifiers: + - chance 100 cast sb-selectsound +sound-block-wooden_button-click_off: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wooden_button.click_off + - Menu =block_wooden_button + modifiers: + - chance 100 cast sb-selectsound +sound-block-wooden_button-click_on: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wooden_button.click_on + - Menu =block_wooden_button + modifiers: + - chance 100 cast sb-selectsound +sound-block-wooden_door-close: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wooden_door.close + - Menu =block_wooden_door + modifiers: + - chance 100 cast sb-selectsound +sound-block-wooden_door-open: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wooden_door.open + - Menu =block_wooden_door + modifiers: + - chance 100 cast sb-selectsound +sound-block-wooden_pressure_plate-click_off: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wooden_pressure_plate.click_off + - Menu =block_wooden_pressure_plate + modifiers: + - chance 100 cast sb-selectsound +sound-block-wooden_pressure_plate-click_on: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wooden_pressure_plate.click_on + - Menu =block_wooden_pressure_plate + modifiers: + - chance 100 cast sb-selectsound +sound-block-wooden_trapdoor-close: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wooden_trapdoor.close + - Menu =block_wooden_trapdoor + modifiers: + - chance 100 cast sb-selectsound +sound-block-wooden_trapdoor-open: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wooden_trapdoor.open + - Menu =block_wooden_trapdoor + modifiers: + - chance 100 cast sb-selectsound +sound-block-wool-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wool.break + - Menu =block_wool + modifiers: + - chance 100 cast sb-selectsound +sound-block-wool-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wool.fall + - Menu =block_wool + modifiers: + - chance 100 cast sb-selectsound +sound-block-wool-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wool.hit + - Menu =block_wool + modifiers: + - chance 100 cast sb-selectsound +sound-block-wool-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wool.place + - Menu =block_wool + modifiers: + - chance 100 cast sb-selectsound +sound-block-wool-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =block.wool.step + - Menu =block_wool + modifiers: + - chance 100 cast sb-selectsound +sound-enchant-thorns-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =enchant.thorns.hit + - Menu =enchant_thorns + modifiers: + - chance 100 cast sb-selectsound +sound-entity-armor_stand-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.armor_stand.break + - Menu =entity_armor_stand + modifiers: + - chance 100 cast sb-selectsound +sound-entity-armor_stand-fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.armor_stand.fall + - Menu =entity_armor_stand + modifiers: + - chance 100 cast sb-selectsound +sound-entity-armor_stand-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.armor_stand.hit + - Menu =entity_armor_stand + modifiers: + - chance 100 cast sb-selectsound +sound-entity-armor_stand-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.armor_stand.place + - Menu =entity_armor_stand + modifiers: + - chance 100 cast sb-selectsound +sound-entity-arrow-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.arrow.hit + - Menu =entity_arrow + modifiers: + - chance 100 cast sb-selectsound +sound-entity-arrow-hit_player: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.arrow.hit_player + - Menu =entity_arrow + modifiers: + - chance 100 cast sb-selectsound +sound-entity-arrow-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.arrow.shoot + - Menu =entity_arrow + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bat-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bat.ambient + - Menu =entity_bat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bat-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bat.death + - Menu =entity_bat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bat-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bat.hurt + - Menu =entity_bat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bat-loop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bat.loop + - Menu =entity_bat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bat-takeoff: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bat.takeoff + - Menu =entity_bat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bee-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bee.death + - Menu =entity_bee + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bee-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bee.hurt + - Menu =entity_bee + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bee-loop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bee.loop + - Menu =entity_bee + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bee-loop_aggressive: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bee.loop_aggressive + - Menu =entity_bee + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bee-pollinate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bee.pollinate + - Menu =entity_bee + modifiers: + - chance 100 cast sb-selectsound +sound-entity-bee-sting: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.bee.sting + - Menu =entity_bee + modifiers: + - chance 100 cast sb-selectsound +sound-entity-blaze-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.blaze.ambient + - Menu =entity_blaze + modifiers: + - chance 100 cast sb-selectsound +sound-entity-blaze-burn: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.blaze.burn + - Menu =entity_blaze + modifiers: + - chance 100 cast sb-selectsound +sound-entity-blaze-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.blaze.death + - Menu =entity_blaze + modifiers: + - chance 100 cast sb-selectsound +sound-entity-blaze-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.blaze.hurt + - Menu =entity_blaze + modifiers: + - chance 100 cast sb-selectsound +sound-entity-blaze-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.blaze.shoot + - Menu =entity_blaze + modifiers: + - chance 100 cast sb-selectsound +sound-entity-boat-paddle_land: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.boat.paddle_land + - Menu =entity_boat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-boat-paddle_water: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.boat.paddle_water + - Menu =entity_boat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cat-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cat.ambient + - Menu =entity_cat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cat-beg_for_food: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cat.beg_for_food + - Menu =entity_cat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cat-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cat.death + - Menu =entity_cat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cat-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cat.eat + - Menu =entity_cat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cat-hiss: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cat.hiss + - Menu =entity_cat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cat-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cat.hurt + - Menu =entity_cat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cat-purr: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cat.purr + - Menu =entity_cat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cat-purreow: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cat.purreow + - Menu =entity_cat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cat-stray_ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cat.stray_ambient + - Menu =entity_cat + modifiers: + - chance 100 cast sb-selectsound +sound-entity-chicken-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.chicken.ambient + - Menu =entity_chicken + modifiers: + - chance 100 cast sb-selectsound +sound-entity-chicken-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.chicken.death + - Menu =entity_chicken + modifiers: + - chance 100 cast sb-selectsound +sound-entity-chicken-egg: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.chicken.egg + - Menu =entity_chicken + modifiers: + - chance 100 cast sb-selectsound +sound-entity-chicken-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.chicken.hurt + - Menu =entity_chicken + modifiers: + - chance 100 cast sb-selectsound +sound-entity-chicken-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.chicken.step + - Menu =entity_chicken + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cod-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cod.ambient + - Menu =entity_cod + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cod-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cod.death + - Menu =entity_cod + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cod-flop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cod.flop + - Menu =entity_cod + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cod-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cod.hurt + - Menu =entity_cod + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cow-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cow.ambient + - Menu =entity_cow + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cow-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cow.death + - Menu =entity_cow + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cow-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cow.hurt + - Menu =entity_cow + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cow-milk: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cow.milk + - Menu =entity_cow + modifiers: + - chance 100 cast sb-selectsound +sound-entity-cow-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.cow.step + - Menu =entity_cow + modifiers: + - chance 100 cast sb-selectsound +sound-entity-creeper-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.creeper.death + - Menu =entity_creeper + modifiers: + - chance 100 cast sb-selectsound +sound-entity-creeper-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.creeper.hurt + - Menu =entity_creeper + modifiers: + - chance 100 cast sb-selectsound +sound-entity-creeper-primed: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.creeper.primed + - Menu =entity_creeper + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dolphin-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dolphin.ambient + - Menu =entity_dolphin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dolphin-ambient_water: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dolphin.ambient_water + - Menu =entity_dolphin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dolphin-attack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dolphin.attack + - Menu =entity_dolphin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dolphin-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dolphin.death + - Menu =entity_dolphin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dolphin-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dolphin.eat + - Menu =entity_dolphin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dolphin-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dolphin.hurt + - Menu =entity_dolphin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dolphin-jump: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dolphin.jump + - Menu =entity_dolphin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dolphin-play: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dolphin.play + - Menu =entity_dolphin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dolphin-splash: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dolphin.splash + - Menu =entity_dolphin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dolphin-swim: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dolphin.swim + - Menu =entity_dolphin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-donkey-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.donkey.ambient + - Menu =entity_donkey + modifiers: + - chance 100 cast sb-selectsound +sound-entity-donkey-angry: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.donkey.angry + - Menu =entity_donkey + modifiers: + - chance 100 cast sb-selectsound +sound-entity-donkey-chest: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.donkey.chest + - Menu =entity_donkey + modifiers: + - chance 100 cast sb-selectsound +sound-entity-donkey-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.donkey.death + - Menu =entity_donkey + modifiers: + - chance 100 cast sb-selectsound +sound-entity-donkey-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.donkey.eat + - Menu =entity_donkey + modifiers: + - chance 100 cast sb-selectsound +sound-entity-donkey-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.donkey.hurt + - Menu =entity_donkey + modifiers: + - chance 100 cast sb-selectsound +sound-entity-dragon_fireball-explode: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.dragon_fireball.explode + - Menu =entity_dragon_fireball + modifiers: + - chance 100 cast sb-selectsound +sound-entity-drowned-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.drowned.ambient + - Menu =entity_drowned + modifiers: + - chance 100 cast sb-selectsound +sound-entity-drowned-ambient_water: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.drowned.ambient_water + - Menu =entity_drowned + modifiers: + - chance 100 cast sb-selectsound +sound-entity-drowned-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.drowned.death + - Menu =entity_drowned + modifiers: + - chance 100 cast sb-selectsound +sound-entity-drowned-death_water: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.drowned.death_water + - Menu =entity_drowned + modifiers: + - chance 100 cast sb-selectsound +sound-entity-drowned-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.drowned.hurt + - Menu =entity_drowned + modifiers: + - chance 100 cast sb-selectsound +sound-entity-drowned-hurt_water: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.drowned.hurt_water + - Menu =entity_drowned + modifiers: + - chance 100 cast sb-selectsound +sound-entity-drowned-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.drowned.shoot + - Menu =entity_drowned + modifiers: + - chance 100 cast sb-selectsound +sound-entity-drowned-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.drowned.step + - Menu =entity_drowned + modifiers: + - chance 100 cast sb-selectsound +sound-entity-drowned-swim: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.drowned.swim + - Menu =entity_drowned + modifiers: + - chance 100 cast sb-selectsound +sound-entity-egg-throw: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.egg.throw + - Menu =entity_egg + modifiers: + - chance 100 cast sb-selectsound +sound-entity-elder_guardian-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.elder_guardian.ambient + - Menu =entity_elder_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-elder_guardian-ambient_land: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.elder_guardian.ambient_land + - Menu =entity_elder_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-elder_guardian-curse: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.elder_guardian.curse + - Menu =entity_elder_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-elder_guardian-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.elder_guardian.death + - Menu =entity_elder_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-elder_guardian-death_land: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.elder_guardian.death_land + - Menu =entity_elder_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-elder_guardian-flop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.elder_guardian.flop + - Menu =entity_elder_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-elder_guardian-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.elder_guardian.hurt + - Menu =entity_elder_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-elder_guardian-hurt_land: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.elder_guardian.hurt_land + - Menu =entity_elder_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ender_dragon-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ender_dragon.ambient + - Menu =entity_ender_dragon + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ender_dragon-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ender_dragon.death + - Menu =entity_ender_dragon + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ender_dragon-flap: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ender_dragon.flap + - Menu =entity_ender_dragon + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ender_dragon-growl: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ender_dragon.growl + - Menu =entity_ender_dragon + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ender_dragon-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ender_dragon.hurt + - Menu =entity_ender_dragon + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ender_dragon-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ender_dragon.shoot + - Menu =entity_ender_dragon + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ender_eye-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ender_eye.death + - Menu =entity_ender_eye + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ender_eye-launch: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ender_eye.launch + - Menu =entity_ender_eye + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ender_pearl-throw: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ender_pearl.throw + - Menu =entity_ender_pearl + modifiers: + - chance 100 cast sb-selectsound +sound-entity-enderman-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.enderman.ambient + - Menu =entity_enderman + modifiers: + - chance 100 cast sb-selectsound +sound-entity-enderman-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.enderman.death + - Menu =entity_enderman + modifiers: + - chance 100 cast sb-selectsound +sound-entity-enderman-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.enderman.hurt + - Menu =entity_enderman + modifiers: + - chance 100 cast sb-selectsound +sound-entity-enderman-scream: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.enderman.scream + - Menu =entity_enderman + modifiers: + - chance 100 cast sb-selectsound +sound-entity-enderman-stare: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.enderman.stare + - Menu =entity_enderman + modifiers: + - chance 100 cast sb-selectsound +sound-entity-enderman-teleport: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.enderman.teleport + - Menu =entity_enderman + modifiers: + - chance 100 cast sb-selectsound +sound-entity-endermite-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.endermite.ambient + - Menu =entity_endermite + modifiers: + - chance 100 cast sb-selectsound +sound-entity-endermite-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.endermite.death + - Menu =entity_endermite + modifiers: + - chance 100 cast sb-selectsound +sound-entity-endermite-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.endermite.hurt + - Menu =entity_endermite + modifiers: + - chance 100 cast sb-selectsound +sound-entity-endermite-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.endermite.step + - Menu =entity_endermite + modifiers: + - chance 100 cast sb-selectsound +sound-entity-evoker-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.evoker.ambient + - Menu =entity_evoker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-evoker-cast_spell: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.evoker.cast_spell + - Menu =entity_evoker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-evoker-celebrate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.evoker.celebrate + - Menu =entity_evoker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-evoker-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.evoker.death + - Menu =entity_evoker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-evoker-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.evoker.hurt + - Menu =entity_evoker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-evoker-prepare_attack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.evoker.prepare_attack + - Menu =entity_evoker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-evoker-prepare_summon: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.evoker.prepare_summon + - Menu =entity_evoker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-evoker-prepare_wololo: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.evoker.prepare_wololo + - Menu =entity_evoker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-evoker_fangs-attack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.evoker_fangs.attack + - Menu =entity_evoker_fangs + modifiers: + - chance 100 cast sb-selectsound +sound-entity-experience_bottle-throw: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.experience_bottle.throw + - Menu =entity_experience_bottle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-experience_orb-pickup: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.experience_orb.pickup + - Menu =entity_experience_orb + modifiers: + - chance 100 cast sb-selectsound +sound-entity-firework_rocket-blast: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.firework_rocket.blast + - Menu =entity_firework_rocket + modifiers: + - chance 100 cast sb-selectsound +sound-entity-firework_rocket-blast_far: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.firework_rocket.blast_far + - Menu =entity_firework_rocket + modifiers: + - chance 100 cast sb-selectsound +sound-entity-firework_rocket-large_blast: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.firework_rocket.large_blast + - Menu =entity_firework_rocket + modifiers: + - chance 100 cast sb-selectsound +sound-entity-firework_rocket-large_blast_far: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.firework_rocket.large_blast_far + - Menu =entity_firework_rocket + modifiers: + - chance 100 cast sb-selectsound +sound-entity-firework_rocket-launch: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.firework_rocket.launch + - Menu =entity_firework_rocket + modifiers: + - chance 100 cast sb-selectsound +sound-entity-firework_rocket-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.firework_rocket.shoot + - Menu =entity_firework_rocket + modifiers: + - chance 100 cast sb-selectsound +sound-entity-firework_rocket-twinkle: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.firework_rocket.twinkle + - Menu =entity_firework_rocket + modifiers: + - chance 100 cast sb-selectsound +sound-entity-firework_rocket-twinkle_far: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.firework_rocket.twinkle_far + - Menu =entity_firework_rocket + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fish-swim: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fish.swim + - Menu =entity_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fishing_bobber-retrieve: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fishing_bobber.retrieve + - Menu =entity_fishing_bobber + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fishing_bobber-splash: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fishing_bobber.splash + - Menu =entity_fishing_bobber + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fishing_bobber-throw: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fishing_bobber.throw + - Menu =entity_fishing_bobber + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-aggro: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.aggro + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.ambient + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-bite: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.bite + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.death + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.eat + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.hurt + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-screech: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.screech + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-sleep: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.sleep + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-sniff: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.sniff + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-spit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.spit + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-fox-teleport: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.fox.teleport + - Menu =entity_fox + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-big_fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.big_fall + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-burn: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.burn + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.death + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-drink: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.drink + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.eat + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-explode: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.explode + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-extinguish_fire: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.extinguish_fire + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.hurt + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-small_fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.small_fall + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-splash: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.splash + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-generic-swim: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.generic.swim + - Menu =entity_generic + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ghast-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ghast.ambient + - Menu =entity_ghast + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ghast-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ghast.death + - Menu =entity_ghast + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ghast-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ghast.hurt + - Menu =entity_ghast + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ghast-scream: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ghast.scream + - Menu =entity_ghast + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ghast-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ghast.shoot + - Menu =entity_ghast + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ghast-warn: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ghast.warn + - Menu =entity_ghast + modifiers: + - chance 100 cast sb-selectsound +sound-entity-guardian-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.guardian.ambient + - Menu =entity_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-guardian-ambient_land: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.guardian.ambient_land + - Menu =entity_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-guardian-attack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.guardian.attack + - Menu =entity_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-guardian-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.guardian.death + - Menu =entity_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-guardian-death_land: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.guardian.death_land + - Menu =entity_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-guardian-flop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.guardian.flop + - Menu =entity_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-guardian-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.guardian.hurt + - Menu =entity_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-guardian-hurt_land: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.guardian.hurt_land + - Menu =entity_guardian + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hoglin-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hoglin.ambient + - Menu =entity_hoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hoglin-angry: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hoglin.angry + - Menu =entity_hoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hoglin-attack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hoglin.attack + - Menu =entity_hoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hoglin-converted_to_zombified: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hoglin.converted_to_zombified + - Menu =entity_hoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hoglin-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hoglin.death + - Menu =entity_hoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hoglin-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hoglin.hurt + - Menu =entity_hoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hoglin-retreat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hoglin.retreat + - Menu =entity_hoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hoglin-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hoglin.step + - Menu =entity_hoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.ambient + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-angry: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.angry + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-armor: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.armor + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-breathe: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.breathe + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.death + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.eat + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-gallop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.gallop + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.hurt + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-jump: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.jump + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-land: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.land + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-saddle: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.saddle + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.step + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-horse-step_wood: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.horse.step_wood + - Menu =entity_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hostile-big_fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hostile.big_fall + - Menu =entity_hostile + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hostile-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hostile.death + - Menu =entity_hostile + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hostile-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hostile.hurt + - Menu =entity_hostile + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hostile-small_fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hostile.small_fall + - Menu =entity_hostile + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hostile-splash: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hostile.splash + - Menu =entity_hostile + modifiers: + - chance 100 cast sb-selectsound +sound-entity-hostile-swim: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.hostile.swim + - Menu =entity_hostile + modifiers: + - chance 100 cast sb-selectsound +sound-entity-husk-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.husk.ambient + - Menu =entity_husk + modifiers: + - chance 100 cast sb-selectsound +sound-entity-husk-converted_to_zombie: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.husk.converted_to_zombie + - Menu =entity_husk + modifiers: + - chance 100 cast sb-selectsound +sound-entity-husk-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.husk.death + - Menu =entity_husk + modifiers: + - chance 100 cast sb-selectsound +sound-entity-husk-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.husk.hurt + - Menu =entity_husk + modifiers: + - chance 100 cast sb-selectsound +sound-entity-husk-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.husk.step + - Menu =entity_husk + modifiers: + - chance 100 cast sb-selectsound +sound-entity-illusioner-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.illusioner.ambient + - Menu =entity_illusioner + modifiers: + - chance 100 cast sb-selectsound +sound-entity-illusioner-cast_spell: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.illusioner.cast_spell + - Menu =entity_illusioner + modifiers: + - chance 100 cast sb-selectsound +sound-entity-illusioner-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.illusioner.death + - Menu =entity_illusioner + modifiers: + - chance 100 cast sb-selectsound +sound-entity-illusioner-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.illusioner.hurt + - Menu =entity_illusioner + modifiers: + - chance 100 cast sb-selectsound +sound-entity-illusioner-mirror_move: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.illusioner.mirror_move + - Menu =entity_illusioner + modifiers: + - chance 100 cast sb-selectsound +sound-entity-illusioner-prepare_blindness: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.illusioner.prepare_blindness + - Menu =entity_illusioner + modifiers: + - chance 100 cast sb-selectsound +sound-entity-illusioner-prepare_mirror: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.illusioner.prepare_mirror + - Menu =entity_illusioner + modifiers: + - chance 100 cast sb-selectsound +sound-entity-iron_golem-attack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.iron_golem.attack + - Menu =entity_iron_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-iron_golem-damage: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.iron_golem.damage + - Menu =entity_iron_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-iron_golem-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.iron_golem.death + - Menu =entity_iron_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-iron_golem-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.iron_golem.hurt + - Menu =entity_iron_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-iron_golem-repair: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.iron_golem.repair + - Menu =entity_iron_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-iron_golem-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.iron_golem.step + - Menu =entity_iron_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-item-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.item.break + - Menu =entity_item + modifiers: + - chance 100 cast sb-selectsound +sound-entity-item-pickup: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.item.pickup + - Menu =entity_item + modifiers: + - chance 100 cast sb-selectsound +sound-entity-item_frame-add_item: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.item_frame.add_item + - Menu =entity_item_frame + modifiers: + - chance 100 cast sb-selectsound +sound-entity-item_frame-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.item_frame.break + - Menu =entity_item_frame + modifiers: + - chance 100 cast sb-selectsound +sound-entity-item_frame-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.item_frame.place + - Menu =entity_item_frame + modifiers: + - chance 100 cast sb-selectsound +sound-entity-item_frame-remove_item: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.item_frame.remove_item + - Menu =entity_item_frame + modifiers: + - chance 100 cast sb-selectsound +sound-entity-item_frame-rotate_item: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.item_frame.rotate_item + - Menu =entity_item_frame + modifiers: + - chance 100 cast sb-selectsound +sound-entity-leash_knot-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.leash_knot.break + - Menu =entity_leash_knot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-leash_knot-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.leash_knot.place + - Menu =entity_leash_knot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-lightning_bolt-impact: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.lightning_bolt.impact + - Menu =entity_lightning_bolt + modifiers: + - chance 100 cast sb-selectsound +sound-entity-lightning_bolt-thunder: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.lightning_bolt.thunder + - Menu =entity_lightning_bolt + modifiers: + - chance 100 cast sb-selectsound +sound-entity-lingering_potion-throw: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.lingering_potion.throw + - Menu =entity_lingering_potion + modifiers: + - chance 100 cast sb-selectsound +sound-entity-llama-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.llama.ambient + - Menu =entity_llama + modifiers: + - chance 100 cast sb-selectsound +sound-entity-llama-angry: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.llama.angry + - Menu =entity_llama + modifiers: + - chance 100 cast sb-selectsound +sound-entity-llama-chest: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.llama.chest + - Menu =entity_llama + modifiers: + - chance 100 cast sb-selectsound +sound-entity-llama-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.llama.death + - Menu =entity_llama + modifiers: + - chance 100 cast sb-selectsound +sound-entity-llama-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.llama.eat + - Menu =entity_llama + modifiers: + - chance 100 cast sb-selectsound +sound-entity-llama-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.llama.hurt + - Menu =entity_llama + modifiers: + - chance 100 cast sb-selectsound +sound-entity-llama-spit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.llama.spit + - Menu =entity_llama + modifiers: + - chance 100 cast sb-selectsound +sound-entity-llama-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.llama.step + - Menu =entity_llama + modifiers: + - chance 100 cast sb-selectsound +sound-entity-llama-swag: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.llama.swag + - Menu =entity_llama + modifiers: + - chance 100 cast sb-selectsound +sound-entity-magma_cube-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.magma_cube.death + - Menu =entity_magma_cube + modifiers: + - chance 100 cast sb-selectsound +sound-entity-magma_cube-death_small: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.magma_cube.death_small + - Menu =entity_magma_cube + modifiers: + - chance 100 cast sb-selectsound +sound-entity-magma_cube-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.magma_cube.hurt + - Menu =entity_magma_cube + modifiers: + - chance 100 cast sb-selectsound +sound-entity-magma_cube-hurt_small: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.magma_cube.hurt_small + - Menu =entity_magma_cube + modifiers: + - chance 100 cast sb-selectsound +sound-entity-magma_cube-jump: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.magma_cube.jump + - Menu =entity_magma_cube + modifiers: + - chance 100 cast sb-selectsound +sound-entity-magma_cube-squish: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.magma_cube.squish + - Menu =entity_magma_cube + modifiers: + - chance 100 cast sb-selectsound +sound-entity-magma_cube-squish_small: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.magma_cube.squish_small + - Menu =entity_magma_cube + modifiers: + - chance 100 cast sb-selectsound +sound-entity-minecart-inside: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.minecart.inside + - Menu =entity_minecart + modifiers: + - chance 100 cast sb-selectsound +sound-entity-minecart-riding: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.minecart.riding + - Menu =entity_minecart + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mooshroom-convert: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mooshroom.convert + - Menu =entity_mooshroom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mooshroom-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mooshroom.eat + - Menu =entity_mooshroom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mooshroom-milk: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mooshroom.milk + - Menu =entity_mooshroom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mooshroom-shear: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mooshroom.shear + - Menu =entity_mooshroom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mooshroom-suspicious_milk: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mooshroom.suspicious_milk + - Menu =entity_mooshroom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mule-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mule.ambient + - Menu =entity_mule + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mule-angry: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mule.angry + - Menu =entity_mule + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mule-chest: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mule.chest + - Menu =entity_mule + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mule-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mule.death + - Menu =entity_mule + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mule-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mule.eat + - Menu =entity_mule + modifiers: + - chance 100 cast sb-selectsound +sound-entity-mule-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.mule.hurt + - Menu =entity_mule + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ocelot-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ocelot.ambient + - Menu =entity_ocelot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ocelot-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ocelot.death + - Menu =entity_ocelot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ocelot-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ocelot.hurt + - Menu =entity_ocelot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-painting-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.painting.break + - Menu =entity_painting + modifiers: + - chance 100 cast sb-selectsound +sound-entity-painting-place: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.painting.place + - Menu =entity_painting + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-aggressive_ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.aggressive_ambient + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.ambient + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-bite: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.bite + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-cant_breed: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.cant_breed + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.death + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.eat + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.hurt + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-pre_sneeze: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.pre_sneeze + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-sneeze: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.sneeze + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.step + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-panda-worried_ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.panda.worried_ambient + - Menu =entity_panda + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.ambient + - Menu =entity_parrot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.death + - Menu =entity_parrot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.eat + - Menu =entity_parrot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-fly: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.fly + - Menu =entity_parrot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.hurt + - Menu =entity_parrot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.step + - Menu =entity_parrot + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-blaze: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.blaze + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-creeper: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.creeper + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-drowned: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.drowned + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-elder_guardian: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.elder_guardian + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-ender_dragon: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.ender_dragon + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-endermite: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.endermite + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-evoker: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.evoker + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-ghast: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.ghast + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-guardian: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.guardian + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-hoglin: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.hoglin + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-husk: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.husk + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-illusioner: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.illusioner + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-magma_cube: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.magma_cube + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-phantom: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.phantom + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-piglin: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.piglin + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-pillager: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.pillager + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-ravager: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.ravager + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-shulker: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.shulker + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-silverfish: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.silverfish + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-skeleton: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.skeleton + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-slime: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.slime + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-spider: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.spider + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-stray: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.stray + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-vex: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.vex + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-vindicator: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.vindicator + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-witch: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.witch + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-wither: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.wither + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-wither_skeleton: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.wither_skeleton + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-zoglin: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.zoglin + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-zombie: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.zombie + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-parrot-imitate-zombie_villager: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.parrot.imitate.zombie_villager + - Menu =entity_parrot_imitate + modifiers: + - chance 100 cast sb-selectsound +sound-entity-phantom-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.phantom.ambient + - Menu =entity_phantom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-phantom-bite: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.phantom.bite + - Menu =entity_phantom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-phantom-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.phantom.death + - Menu =entity_phantom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-phantom-flap: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.phantom.flap + - Menu =entity_phantom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-phantom-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.phantom.hurt + - Menu =entity_phantom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-phantom-swoop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.phantom.swoop + - Menu =entity_phantom + modifiers: + - chance 100 cast sb-selectsound +sound-entity-pig-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.pig.ambient + - Menu =entity_pig + modifiers: + - chance 100 cast sb-selectsound +sound-entity-pig-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.pig.death + - Menu =entity_pig + modifiers: + - chance 100 cast sb-selectsound +sound-entity-pig-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.pig.hurt + - Menu =entity_pig + modifiers: + - chance 100 cast sb-selectsound +sound-entity-pig-saddle: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.pig.saddle + - Menu =entity_pig + modifiers: + - chance 100 cast sb-selectsound +sound-entity-pig-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.pig.step + - Menu =entity_pig + modifiers: + - chance 100 cast sb-selectsound +sound-entity-piglin-admiring_item: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.piglin.admiring_item + - Menu =entity_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-piglin-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.piglin.ambient + - Menu =entity_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-piglin-angry: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.piglin.angry + - Menu =entity_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-piglin-celebrate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.piglin.celebrate + - Menu =entity_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-piglin-converted_to_zombified: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.piglin.converted_to_zombified + - Menu =entity_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-piglin-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.piglin.death + - Menu =entity_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-piglin-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.piglin.hurt + - Menu =entity_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-piglin-jealous: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.piglin.jealous + - Menu =entity_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-piglin-retreat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.piglin.retreat + - Menu =entity_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-piglin-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.piglin.step + - Menu =entity_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-pillager-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.pillager.ambient + - Menu =entity_pillager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-pillager-celebrate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.pillager.celebrate + - Menu =entity_pillager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-pillager-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.pillager.death + - Menu =entity_pillager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-pillager-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.pillager.hurt + - Menu =entity_pillager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-big_fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.big_fall + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-breath: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.breath + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-burp: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.burp + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.death + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.hurt + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-hurt_drown: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.hurt_drown + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-hurt_on_fire: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.hurt_on_fire + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-hurt_sweet_berry_bush: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.hurt_sweet_berry_bush + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-levelup: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.levelup + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-small_fall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.small_fall + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-splash: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.splash + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-swim: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.swim + - Menu =entity_player + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-attack-crit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.attack.crit + - Menu =entity_player_attack + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-attack-knockback: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.attack.knockback + - Menu =entity_player_attack + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-attack-nodamage: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.attack.nodamage + - Menu =entity_player_attack + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-attack-strong: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.attack.strong + - Menu =entity_player_attack + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-attack-sweep: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.attack.sweep + - Menu =entity_player_attack + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-attack-weak: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.attack.weak + - Menu =entity_player_attack + modifiers: + - chance 100 cast sb-selectsound +sound-entity-player-splash-high_speed: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.player.splash.high_speed + - Menu =entity_player_splash + modifiers: + - chance 100 cast sb-selectsound +sound-entity-polar_bear-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.polar_bear.ambient + - Menu =entity_polar_bear + modifiers: + - chance 100 cast sb-selectsound +sound-entity-polar_bear-ambient_baby: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.polar_bear.ambient_baby + - Menu =entity_polar_bear + modifiers: + - chance 100 cast sb-selectsound +sound-entity-polar_bear-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.polar_bear.death + - Menu =entity_polar_bear + modifiers: + - chance 100 cast sb-selectsound +sound-entity-polar_bear-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.polar_bear.hurt + - Menu =entity_polar_bear + modifiers: + - chance 100 cast sb-selectsound +sound-entity-polar_bear-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.polar_bear.step + - Menu =entity_polar_bear + modifiers: + - chance 100 cast sb-selectsound +sound-entity-polar_bear-warning: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.polar_bear.warning + - Menu =entity_polar_bear + modifiers: + - chance 100 cast sb-selectsound +sound-entity-puffer_fish-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.puffer_fish.ambient + - Menu =entity_puffer_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-puffer_fish-blow_out: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.puffer_fish.blow_out + - Menu =entity_puffer_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-puffer_fish-blow_up: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.puffer_fish.blow_up + - Menu =entity_puffer_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-puffer_fish-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.puffer_fish.death + - Menu =entity_puffer_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-puffer_fish-flop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.puffer_fish.flop + - Menu =entity_puffer_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-puffer_fish-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.puffer_fish.hurt + - Menu =entity_puffer_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-puffer_fish-sting: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.puffer_fish.sting + - Menu =entity_puffer_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-rabbit-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.rabbit.ambient + - Menu =entity_rabbit + modifiers: + - chance 100 cast sb-selectsound +sound-entity-rabbit-attack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.rabbit.attack + - Menu =entity_rabbit + modifiers: + - chance 100 cast sb-selectsound +sound-entity-rabbit-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.rabbit.death + - Menu =entity_rabbit + modifiers: + - chance 100 cast sb-selectsound +sound-entity-rabbit-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.rabbit.hurt + - Menu =entity_rabbit + modifiers: + - chance 100 cast sb-selectsound +sound-entity-rabbit-jump: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.rabbit.jump + - Menu =entity_rabbit + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ravager-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ravager.ambient + - Menu =entity_ravager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ravager-attack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ravager.attack + - Menu =entity_ravager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ravager-celebrate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ravager.celebrate + - Menu =entity_ravager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ravager-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ravager.death + - Menu =entity_ravager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ravager-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ravager.hurt + - Menu =entity_ravager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ravager-roar: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ravager.roar + - Menu =entity_ravager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ravager-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ravager.step + - Menu =entity_ravager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-ravager-stunned: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.ravager.stunned + - Menu =entity_ravager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-salmon-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.salmon.ambient + - Menu =entity_salmon + modifiers: + - chance 100 cast sb-selectsound +sound-entity-salmon-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.salmon.death + - Menu =entity_salmon + modifiers: + - chance 100 cast sb-selectsound +sound-entity-salmon-flop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.salmon.flop + - Menu =entity_salmon + modifiers: + - chance 100 cast sb-selectsound +sound-entity-salmon-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.salmon.hurt + - Menu =entity_salmon + modifiers: + - chance 100 cast sb-selectsound +sound-entity-sheep-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.sheep.ambient + - Menu =entity_sheep + modifiers: + - chance 100 cast sb-selectsound +sound-entity-sheep-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.sheep.death + - Menu =entity_sheep + modifiers: + - chance 100 cast sb-selectsound +sound-entity-sheep-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.sheep.hurt + - Menu =entity_sheep + modifiers: + - chance 100 cast sb-selectsound +sound-entity-sheep-shear: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.sheep.shear + - Menu =entity_sheep + modifiers: + - chance 100 cast sb-selectsound +sound-entity-sheep-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.sheep.step + - Menu =entity_sheep + modifiers: + - chance 100 cast sb-selectsound +sound-entity-shulker-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.shulker.ambient + - Menu =entity_shulker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-shulker-close: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.shulker.close + - Menu =entity_shulker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-shulker-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.shulker.death + - Menu =entity_shulker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-shulker-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.shulker.hurt + - Menu =entity_shulker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-shulker-hurt_closed: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.shulker.hurt_closed + - Menu =entity_shulker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-shulker-open: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.shulker.open + - Menu =entity_shulker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-shulker-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.shulker.shoot + - Menu =entity_shulker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-shulker-teleport: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.shulker.teleport + - Menu =entity_shulker + modifiers: + - chance 100 cast sb-selectsound +sound-entity-shulker_bullet-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.shulker_bullet.hit + - Menu =entity_shulker_bullet + modifiers: + - chance 100 cast sb-selectsound +sound-entity-shulker_bullet-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.shulker_bullet.hurt + - Menu =entity_shulker_bullet + modifiers: + - chance 100 cast sb-selectsound +sound-entity-silverfish-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.silverfish.ambient + - Menu =entity_silverfish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-silverfish-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.silverfish.death + - Menu =entity_silverfish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-silverfish-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.silverfish.hurt + - Menu =entity_silverfish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-silverfish-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.silverfish.step + - Menu =entity_silverfish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton.ambient + - Menu =entity_skeleton + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton.death + - Menu =entity_skeleton + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton.hurt + - Menu =entity_skeleton + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton.shoot + - Menu =entity_skeleton + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton.step + - Menu =entity_skeleton + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton_horse-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton_horse.ambient + - Menu =entity_skeleton_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton_horse-ambient_water: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton_horse.ambient_water + - Menu =entity_skeleton_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton_horse-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton_horse.death + - Menu =entity_skeleton_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton_horse-gallop_water: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton_horse.gallop_water + - Menu =entity_skeleton_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton_horse-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton_horse.hurt + - Menu =entity_skeleton_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton_horse-jump_water: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton_horse.jump_water + - Menu =entity_skeleton_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton_horse-step_water: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton_horse.step_water + - Menu =entity_skeleton_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-skeleton_horse-swim: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.skeleton_horse.swim + - Menu =entity_skeleton_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-slime-attack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.slime.attack + - Menu =entity_slime + modifiers: + - chance 100 cast sb-selectsound +sound-entity-slime-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.slime.death + - Menu =entity_slime + modifiers: + - chance 100 cast sb-selectsound +sound-entity-slime-death_small: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.slime.death_small + - Menu =entity_slime + modifiers: + - chance 100 cast sb-selectsound +sound-entity-slime-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.slime.hurt + - Menu =entity_slime + modifiers: + - chance 100 cast sb-selectsound +sound-entity-slime-hurt_small: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.slime.hurt_small + - Menu =entity_slime + modifiers: + - chance 100 cast sb-selectsound +sound-entity-slime-jump: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.slime.jump + - Menu =entity_slime + modifiers: + - chance 100 cast sb-selectsound +sound-entity-slime-jump_small: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.slime.jump_small + - Menu =entity_slime + modifiers: + - chance 100 cast sb-selectsound +sound-entity-slime-squish: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.slime.squish + - Menu =entity_slime + modifiers: + - chance 100 cast sb-selectsound +sound-entity-slime-squish_small: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.slime.squish_small + - Menu =entity_slime + modifiers: + - chance 100 cast sb-selectsound +sound-entity-snow_golem-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.snow_golem.ambient + - Menu =entity_snow_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-snow_golem-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.snow_golem.death + - Menu =entity_snow_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-snow_golem-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.snow_golem.hurt + - Menu =entity_snow_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-snow_golem-shear: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.snow_golem.shear + - Menu =entity_snow_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-snow_golem-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.snow_golem.shoot + - Menu =entity_snow_golem + modifiers: + - chance 100 cast sb-selectsound +sound-entity-snowball-throw: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.snowball.throw + - Menu =entity_snowball + modifiers: + - chance 100 cast sb-selectsound +sound-entity-spider-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.spider.ambient + - Menu =entity_spider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-spider-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.spider.death + - Menu =entity_spider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-spider-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.spider.hurt + - Menu =entity_spider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-spider-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.spider.step + - Menu =entity_spider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-splash_potion-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.splash_potion.break + - Menu =entity_splash_potion + modifiers: + - chance 100 cast sb-selectsound +sound-entity-splash_potion-throw: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.splash_potion.throw + - Menu =entity_splash_potion + modifiers: + - chance 100 cast sb-selectsound +sound-entity-squid-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.squid.ambient + - Menu =entity_squid + modifiers: + - chance 100 cast sb-selectsound +sound-entity-squid-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.squid.death + - Menu =entity_squid + modifiers: + - chance 100 cast sb-selectsound +sound-entity-squid-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.squid.hurt + - Menu =entity_squid + modifiers: + - chance 100 cast sb-selectsound +sound-entity-squid-squirt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.squid.squirt + - Menu =entity_squid + modifiers: + - chance 100 cast sb-selectsound +sound-entity-stray-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.stray.ambient + - Menu =entity_stray + modifiers: + - chance 100 cast sb-selectsound +sound-entity-stray-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.stray.death + - Menu =entity_stray + modifiers: + - chance 100 cast sb-selectsound +sound-entity-stray-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.stray.hurt + - Menu =entity_stray + modifiers: + - chance 100 cast sb-selectsound +sound-entity-stray-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.stray.step + - Menu =entity_stray + modifiers: + - chance 100 cast sb-selectsound +sound-entity-strider-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.strider.ambient + - Menu =entity_strider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-strider-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.strider.death + - Menu =entity_strider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-strider-eat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.strider.eat + - Menu =entity_strider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-strider-happy: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.strider.happy + - Menu =entity_strider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-strider-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.strider.hurt + - Menu =entity_strider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-strider-retreat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.strider.retreat + - Menu =entity_strider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-strider-saddle: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.strider.saddle + - Menu =entity_strider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-strider-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.strider.step + - Menu =entity_strider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-strider-step_lava: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.strider.step_lava + - Menu =entity_strider + modifiers: + - chance 100 cast sb-selectsound +sound-entity-tnt-primed: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.tnt.primed + - Menu =entity_tnt + modifiers: + - chance 100 cast sb-selectsound +sound-entity-tropical_fish-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.tropical_fish.ambient + - Menu =entity_tropical_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-tropical_fish-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.tropical_fish.death + - Menu =entity_tropical_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-tropical_fish-flop: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.tropical_fish.flop + - Menu =entity_tropical_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-tropical_fish-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.tropical_fish.hurt + - Menu =entity_tropical_fish + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-ambient_land: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.ambient_land + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.death + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-death_baby: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.death_baby + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-egg_break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.egg_break + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-egg_crack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.egg_crack + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-egg_hatch: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.egg_hatch + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.hurt + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-hurt_baby: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.hurt_baby + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-lay_egg: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.lay_egg + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-shamble: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.shamble + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-shamble_baby: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.shamble_baby + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-turtle-swim: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.turtle.swim + - Menu =entity_turtle + modifiers: + - chance 100 cast sb-selectsound +sound-entity-vex-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.vex.ambient + - Menu =entity_vex + modifiers: + - chance 100 cast sb-selectsound +sound-entity-vex-charge: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.vex.charge + - Menu =entity_vex + modifiers: + - chance 100 cast sb-selectsound +sound-entity-vex-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.vex.death + - Menu =entity_vex + modifiers: + - chance 100 cast sb-selectsound +sound-entity-vex-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.vex.hurt + - Menu =entity_vex + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.ambient + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-celebrate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.celebrate + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.death + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.hurt + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-no: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.no + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-trade: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.trade + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_armorer: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_armorer + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_butcher: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_butcher + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_cartographer: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_cartographer + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_cleric: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_cleric + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_farmer: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_farmer + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_fisherman: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_fisherman + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_fletcher: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_fletcher + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_leatherworker: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_leatherworker + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_librarian: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_librarian + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_mason: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_mason + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_shepherd: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_shepherd + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_toolsmith: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_toolsmith + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-work_weaponsmith: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.work_weaponsmith + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-villager-yes: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.villager.yes + - Menu =entity_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-vindicator-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.vindicator.ambient + - Menu =entity_vindicator + modifiers: + - chance 100 cast sb-selectsound +sound-entity-vindicator-celebrate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.vindicator.celebrate + - Menu =entity_vindicator + modifiers: + - chance 100 cast sb-selectsound +sound-entity-vindicator-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.vindicator.death + - Menu =entity_vindicator + modifiers: + - chance 100 cast sb-selectsound +sound-entity-vindicator-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.vindicator.hurt + - Menu =entity_vindicator + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wandering_trader-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wandering_trader.ambient + - Menu =entity_wandering_trader + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wandering_trader-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wandering_trader.death + - Menu =entity_wandering_trader + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wandering_trader-disappeared: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wandering_trader.disappeared + - Menu =entity_wandering_trader + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wandering_trader-drink_milk: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wandering_trader.drink_milk + - Menu =entity_wandering_trader + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wandering_trader-drink_potion: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wandering_trader.drink_potion + - Menu =entity_wandering_trader + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wandering_trader-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wandering_trader.hurt + - Menu =entity_wandering_trader + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wandering_trader-no: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wandering_trader.no + - Menu =entity_wandering_trader + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wandering_trader-reappeared: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wandering_trader.reappeared + - Menu =entity_wandering_trader + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wandering_trader-trade: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wandering_trader.trade + - Menu =entity_wandering_trader + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wandering_trader-yes: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wandering_trader.yes + - Menu =entity_wandering_trader + modifiers: + - chance 100 cast sb-selectsound +sound-entity-witch-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.witch.ambient + - Menu =entity_witch + modifiers: + - chance 100 cast sb-selectsound +sound-entity-witch-celebrate: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.witch.celebrate + - Menu =entity_witch + modifiers: + - chance 100 cast sb-selectsound +sound-entity-witch-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.witch.death + - Menu =entity_witch + modifiers: + - chance 100 cast sb-selectsound +sound-entity-witch-drink: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.witch.drink + - Menu =entity_witch + modifiers: + - chance 100 cast sb-selectsound +sound-entity-witch-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.witch.hurt + - Menu =entity_witch + modifiers: + - chance 100 cast sb-selectsound +sound-entity-witch-throw: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.witch.throw + - Menu =entity_witch + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wither-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wither.ambient + - Menu =entity_wither + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wither-break_block: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wither.break_block + - Menu =entity_wither + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wither-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wither.death + - Menu =entity_wither + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wither-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wither.hurt + - Menu =entity_wither + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wither-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wither.shoot + - Menu =entity_wither + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wither-spawn: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wither.spawn + - Menu =entity_wither + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wither_skeleton-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wither_skeleton.ambient + - Menu =entity_wither_skeleton + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wither_skeleton-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wither_skeleton.death + - Menu =entity_wither_skeleton + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wither_skeleton-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wither_skeleton.hurt + - Menu =entity_wither_skeleton + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wither_skeleton-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wither_skeleton.step + - Menu =entity_wither_skeleton + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wolf-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wolf.ambient + - Menu =entity_wolf + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wolf-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wolf.death + - Menu =entity_wolf + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wolf-growl: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wolf.growl + - Menu =entity_wolf + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wolf-howl: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wolf.howl + - Menu =entity_wolf + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wolf-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wolf.hurt + - Menu =entity_wolf + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wolf-pant: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wolf.pant + - Menu =entity_wolf + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wolf-shake: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wolf.shake + - Menu =entity_wolf + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wolf-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wolf.step + - Menu =entity_wolf + modifiers: + - chance 100 cast sb-selectsound +sound-entity-wolf-whine: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.wolf.whine + - Menu =entity_wolf + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zoglin-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zoglin.ambient + - Menu =entity_zoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zoglin-angry: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zoglin.angry + - Menu =entity_zoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zoglin-attack: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zoglin.attack + - Menu =entity_zoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zoglin-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zoglin.death + - Menu =entity_zoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zoglin-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zoglin.hurt + - Menu =entity_zoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zoglin-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zoglin.step + - Menu =entity_zoglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie.ambient + - Menu =entity_zombie + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie-attack_iron_door: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie.attack_iron_door + - Menu =entity_zombie + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie-attack_wooden_door: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie.attack_wooden_door + - Menu =entity_zombie + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie-break_wooden_door: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie.break_wooden_door + - Menu =entity_zombie + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie-converted_to_drowned: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie.converted_to_drowned + - Menu =entity_zombie + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie.death + - Menu =entity_zombie + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie-destroy_egg: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie.destroy_egg + - Menu =entity_zombie + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie.hurt + - Menu =entity_zombie + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie-infect: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie.infect + - Menu =entity_zombie + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie.step + - Menu =entity_zombie + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie_horse-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie_horse.ambient + - Menu =entity_zombie_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie_horse-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie_horse.death + - Menu =entity_zombie_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie_horse-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie_horse.hurt + - Menu =entity_zombie_horse + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie_villager-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie_villager.ambient + - Menu =entity_zombie_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie_villager-converted: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie_villager.converted + - Menu =entity_zombie_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie_villager-cure: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie_villager.cure + - Menu =entity_zombie_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie_villager-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie_villager.death + - Menu =entity_zombie_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie_villager-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie_villager.hurt + - Menu =entity_zombie_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombie_villager-step: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombie_villager.step + - Menu =entity_zombie_villager + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombified_piglin-ambient: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombified_piglin.ambient + - Menu =entity_zombified_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombified_piglin-angry: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombified_piglin.angry + - Menu =entity_zombified_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombified_piglin-death: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombified_piglin.death + - Menu =entity_zombified_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-entity-zombified_piglin-hurt: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =entity.zombified_piglin.hurt + - Menu =entity_zombified_piglin + modifiers: + - chance 100 cast sb-selectsound +sound-event-raid-horn: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =event.raid.horn + - Menu =event_raid + modifiers: + - chance 100 cast sb-selectsound +sound-item-armor-equip_chain: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.armor.equip_chain + - Menu =item_armor + modifiers: + - chance 100 cast sb-selectsound +sound-item-armor-equip_diamond: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.armor.equip_diamond + - Menu =item_armor + modifiers: + - chance 100 cast sb-selectsound +sound-item-armor-equip_elytra: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.armor.equip_elytra + - Menu =item_armor + modifiers: + - chance 100 cast sb-selectsound +sound-item-armor-equip_generic: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.armor.equip_generic + - Menu =item_armor + modifiers: + - chance 100 cast sb-selectsound +sound-item-armor-equip_gold: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.armor.equip_gold + - Menu =item_armor + modifiers: + - chance 100 cast sb-selectsound +sound-item-armor-equip_iron: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.armor.equip_iron + - Menu =item_armor + modifiers: + - chance 100 cast sb-selectsound +sound-item-armor-equip_leather: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.armor.equip_leather + - Menu =item_armor + modifiers: + - chance 100 cast sb-selectsound +sound-item-armor-equip_netherite: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.armor.equip_netherite + - Menu =item_armor + modifiers: + - chance 100 cast sb-selectsound +sound-item-armor-equip_turtle: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.armor.equip_turtle + - Menu =item_armor + modifiers: + - chance 100 cast sb-selectsound +sound-item-axe-strip: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.axe.strip + - Menu =item_axe + modifiers: + - chance 100 cast sb-selectsound +sound-item-book-page_turn: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.book.page_turn + - Menu =item_book + modifiers: + - chance 100 cast sb-selectsound +sound-item-book-put: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.book.put + - Menu =item_book + modifiers: + - chance 100 cast sb-selectsound +sound-item-bottle-empty: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.bottle.empty + - Menu =item_bottle + modifiers: + - chance 100 cast sb-selectsound +sound-item-bottle-fill: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.bottle.fill + - Menu =item_bottle + modifiers: + - chance 100 cast sb-selectsound +sound-item-bottle-fill_dragonbreath: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.bottle.fill_dragonbreath + - Menu =item_bottle + modifiers: + - chance 100 cast sb-selectsound +sound-item-bucket-empty: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.bucket.empty + - Menu =item_bucket + modifiers: + - chance 100 cast sb-selectsound +sound-item-bucket-empty_fish: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.bucket.empty_fish + - Menu =item_bucket + modifiers: + - chance 100 cast sb-selectsound +sound-item-bucket-empty_lava: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.bucket.empty_lava + - Menu =item_bucket + modifiers: + - chance 100 cast sb-selectsound +sound-item-bucket-fill: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.bucket.fill + - Menu =item_bucket + modifiers: + - chance 100 cast sb-selectsound +sound-item-bucket-fill_fish: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.bucket.fill_fish + - Menu =item_bucket + modifiers: + - chance 100 cast sb-selectsound +sound-item-bucket-fill_lava: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.bucket.fill_lava + - Menu =item_bucket + modifiers: + - chance 100 cast sb-selectsound +sound-item-chorus_fruit-teleport: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.chorus_fruit.teleport + - Menu =item_chorus_fruit + modifiers: + - chance 100 cast sb-selectsound +sound-item-crop-plant: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.crop.plant + - Menu =item_crop + modifiers: + - chance 100 cast sb-selectsound +sound-item-crossbow-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.crossbow.hit + - Menu =item_crossbow + modifiers: + - chance 100 cast sb-selectsound +sound-item-crossbow-loading_end: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.crossbow.loading_end + - Menu =item_crossbow + modifiers: + - chance 100 cast sb-selectsound +sound-item-crossbow-loading_middle: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.crossbow.loading_middle + - Menu =item_crossbow + modifiers: + - chance 100 cast sb-selectsound +sound-item-crossbow-loading_start: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.crossbow.loading_start + - Menu =item_crossbow + modifiers: + - chance 100 cast sb-selectsound +sound-item-crossbow-quick_charge_1: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.crossbow.quick_charge_1 + - Menu =item_crossbow + modifiers: + - chance 100 cast sb-selectsound +sound-item-crossbow-quick_charge_2: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.crossbow.quick_charge_2 + - Menu =item_crossbow + modifiers: + - chance 100 cast sb-selectsound +sound-item-crossbow-quick_charge_3: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.crossbow.quick_charge_3 + - Menu =item_crossbow + modifiers: + - chance 100 cast sb-selectsound +sound-item-crossbow-shoot: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.crossbow.shoot + - Menu =item_crossbow + modifiers: + - chance 100 cast sb-selectsound +sound-item-elytra-flying: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.elytra.flying + - Menu =item_elytra + modifiers: + - chance 100 cast sb-selectsound +sound-item-firecharge-use: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.firecharge.use + - Menu =item_firecharge + modifiers: + - chance 100 cast sb-selectsound +sound-item-flintandsteel-use: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.flintandsteel.use + - Menu =item_flintandsteel + modifiers: + - chance 100 cast sb-selectsound +sound-item-hoe-till: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.hoe.till + - Menu =item_hoe + modifiers: + - chance 100 cast sb-selectsound +sound-item-honey_bottle-drink: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.honey_bottle.drink + - Menu =item_honey_bottle + modifiers: + - chance 100 cast sb-selectsound +sound-item-lodestone_compass-lock: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.lodestone_compass.lock + - Menu =item_lodestone_compass + modifiers: + - chance 100 cast sb-selectsound +sound-item-nether_wart-plant: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.nether_wart.plant + - Menu =item_nether_wart + modifiers: + - chance 100 cast sb-selectsound +sound-item-shield-block: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.shield.block + - Menu =item_shield + modifiers: + - chance 100 cast sb-selectsound +sound-item-shield-break: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.shield.break + - Menu =item_shield + modifiers: + - chance 100 cast sb-selectsound +sound-item-shovel-flatten: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.shovel.flatten + - Menu =item_shovel + modifiers: + - chance 100 cast sb-selectsound +sound-item-sweet_berries-pick_from_bush: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.sweet_berries.pick_from_bush + - Menu =item_sweet_berries + modifiers: + - chance 100 cast sb-selectsound +sound-item-totem-use: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.totem.use + - Menu =item_totem + modifiers: + - chance 100 cast sb-selectsound +sound-item-trident-hit: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.trident.hit + - Menu =item_trident + modifiers: + - chance 100 cast sb-selectsound +sound-item-trident-hit_ground: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.trident.hit_ground + - Menu =item_trident + modifiers: + - chance 100 cast sb-selectsound +sound-item-trident-return: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.trident.return + - Menu =item_trident + modifiers: + - chance 100 cast sb-selectsound +sound-item-trident-riptide_1: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.trident.riptide_1 + - Menu =item_trident + modifiers: + - chance 100 cast sb-selectsound +sound-item-trident-riptide_2: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.trident.riptide_2 + - Menu =item_trident + modifiers: + - chance 100 cast sb-selectsound +sound-item-trident-riptide_3: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.trident.riptide_3 + - Menu =item_trident + modifiers: + - chance 100 cast sb-selectsound +sound-item-trident-throw: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.trident.throw + - Menu =item_trident + modifiers: + - chance 100 cast sb-selectsound +sound-item-trident-thunder: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =item.trident.thunder + - Menu =item_trident + modifiers: + - chance 100 cast sb-selectsound +sound-music-creative: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.creative + - Menu =music + modifiers: + - chance 100 cast sb-selectsound +sound-music-credits: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.credits + - Menu =music + modifiers: + - chance 100 cast sb-selectsound +sound-music-dragon: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.dragon + - Menu =music + modifiers: + - chance 100 cast sb-selectsound +sound-music-end: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.end + - Menu =music + modifiers: + - chance 100 cast sb-selectsound +sound-music-game: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.game + - Menu =music + modifiers: + - chance 100 cast sb-selectsound +sound-music-menu: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.menu + - Menu =music + modifiers: + - chance 100 cast sb-selectsound +sound-music-under_water: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.under_water + - Menu =music + modifiers: + - chance 100 cast sb-selectsound +sound-music-nether-basalt_deltas: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.nether.basalt_deltas + - Menu =music_nether + modifiers: + - chance 100 cast sb-selectsound +sound-music-nether-crimson_forest: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.nether.crimson_forest + - Menu =music_nether + modifiers: + - chance 100 cast sb-selectsound +sound-music-nether-nether_wastes: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.nether.nether_wastes + - Menu =music_nether + modifiers: + - chance 100 cast sb-selectsound +sound-music-nether-soul_sand_valley: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.nether.soul_sand_valley + - Menu =music_nether + modifiers: + - chance 100 cast sb-selectsound +sound-music-nether-warped_forest: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music.nether.warped_forest + - Menu =music_nether + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-11: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.11 + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-13: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.13 + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-blocks: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.blocks + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-cat: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.cat + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-chirp: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.chirp + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-far: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.far + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-mall: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.mall + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-mellohi: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.mellohi + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-pigstep: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.pigstep + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-stal: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.stal + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-strad: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.strad + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-wait: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.wait + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-music_disc-ward: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =music_disc.ward + - Menu =music_disc + modifiers: + - chance 100 cast sb-selectsound +sound-particle-soul_escape: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =particle.soul_escape + - Menu =particle + modifiers: + - chance 100 cast sb-selectsound +sound-ui-button-click: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ui.button.click + - Menu =ui_button + modifiers: + - chance 100 cast sb-selectsound +sound-ui-cartography_table-take_result: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ui.cartography_table.take_result + - Menu =ui_cartography_table + modifiers: + - chance 100 cast sb-selectsound +sound-ui-loom-select_pattern: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ui.loom.select_pattern + - Menu =ui_loom + modifiers: + - chance 100 cast sb-selectsound +sound-ui-loom-take_result: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ui.loom.take_result + - Menu =ui_loom + modifiers: + - chance 100 cast sb-selectsound +sound-ui-stonecutter-select_recipe: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ui.stonecutter.select_recipe + - Menu =ui_stonecutter + modifiers: + - chance 100 cast sb-selectsound +sound-ui-stonecutter-take_result: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ui.stonecutter.take_result + - Menu =ui_stonecutter + modifiers: + - chance 100 cast sb-selectsound +sound-ui-toast-challenge_complete: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ui.toast.challenge_complete + - Menu =ui_toast + modifiers: + - chance 100 cast sb-selectsound +sound-ui-toast-in: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ui.toast.in + - Menu =ui_toast + modifiers: + - chance 100 cast sb-selectsound +sound-ui-toast-out: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =ui.toast.out + - Menu =ui_toast + modifiers: + - chance 100 cast sb-selectsound +sound-weather-rain: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =weather.rain + - Menu =weather + modifiers: + - chance 100 cast sb-selectsound +sound-weather-rain-above: + spell-class: .instant.DummySpell + helper-spell: true + tags: + - NotSilenceable + variable-mods-cast: + - Sound =weather.rain.above + - Menu =weather_rain + modifiers: + - chance 100 cast sb-selectsound diff --git a/soundboards/base.yml b/soundboards/base.yml new file mode 100644 index 0000000..67aa02e --- /dev/null +++ b/soundboards/base.yml @@ -0,0 +1,576 @@ +# -------------------- { Variables } -------------------- +variables: + Sound: {type: playerstring} + Menu: {type: playerstring} + Pitch: {type: player} + Volume: {type: player} + PitchIsPreset: {type: playerstring} + PitchPreset: {type: player} + SoundCache: {type: playerstring} + + + +# -------------------- { Anchors } -------------------- +sb-anchor-menu: + <<: &menu + # TODO This is the preset from Util + # > + spell-class: ".MenuSpell" + helper-spell: true + tags: [NotSilenceable] + delay: 1 + stay-open-non-option: true + # < + enabled: false + +sb-anchor-dummy: + <<: &dummy + spell-class: ".instant.DummySpell" + helper-spell: true + tags: [NotSilenceable] + enabled: false + +# -------------------- { Spells } -------------------- +Dummy: + spell-class: ".instant.DummySpell" + helper-spell: true + tags: [NotSilenceable] + + + +# Soundboard original open +sb-main: + spell-class: ".MultiSpell" + permission-name: soundboard + tags: [NotSilenceable] + incantations: ["/soundboard", "/sounds", "/sb"] + always-granted: true + variable-mods-cast: + - Pitch =1 + - Volume =1 + - Sound =Empty + - Menu =Main + - PitchIsPreset =false + - SoundCache =Empty + spells: [DELAY 1, sb] + + + + + +# Sound Editing +sb-selectsound: + spell-class: ".MultiSpell" + helper-spell: true + tags: [NotSilenceable] + spells: [sb-configure, DELAY 1, sb-fixsound, DELAY 1, sb-showsound] + +sb-fixsound: + spell-class: ".targeted.ParseSpell" + helper-spell: true + target-self: true + operation: regex + expected-value: "\\." + parse-to: "-" + variable-to-parse: Sound + parse-to-variable: SoundCache + +sb-showsound: + <<: &command + spell-class: ".ExternalCommandSpell" + helper-spell: true + tags: [NotSilenceable] + execute-on-console-instead: true + do-variable-replacement: true + command-to-execute: ['minecraft:tellraw %a [{"text":"Open for (%var:Sound%) ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click Here","color":"aqua","clickEvent":{"action":"run_command","value":"/c sound-%var:SoundCache%"}},{"text":"]","color":"dark_aqua"}]'] + +sb-configure: + <<: *menu + title: "&9Modify Pitch or Volume & Play" + options: + Pitch1: + slot: 0 + item: + type: lime_wool + name: "&6Modify Pitch by .5" + lore: ["&eCurrent Pitch&f: &6%var:Pitch:2%"] + spell: sb-pitch-add1 + spell-right: sb-pitch-dec1 + stay-open: true + modifiers: [variable Pitch>1.5 deny, variable Pitch<.5 deny] + Pitch1Fail1: + slot: 0 + item: + type: gray_wool + name: "&6Pitch is over 1.5" + lore: ["&eCurrent Pitch&f: &6%var:Pitch:2%"] + spell: Dummy + spell-right: sb-pitch-dec1 + stay-open: true + modifiers: [variable Pitch>1.5 require] + Pitch1Fail2: + slot: 0 + item: + type: gray_wool + name: "&6Pitch is under 0.5" + lore: ["&eCurrent Pitch&f: &6%var:Pitch:2%"] + spell: sb-pitch-add1 + spell-right: Dummy + stay-open: true + modifiers: [variable Pitch<0.5 require] + Pitch2: + slot: 9 + item: + type: lime_wool + name: "&6Modify Pitch by 0.1" + lore: ["&eCurrent Pitch&f: &6%var:Pitch:2%"] + spell: sb-pitch-add2 + spell-right: sb-pitch-dec2 + stay-open: true + modifiers: [variable Pitch>1.9 deny, variable Pitch<.1 deny] + Pitch2Fail1: + slot: 9 + item: + type: gray_wool + name: "&6Pitch is over 1.9" + lore: ["&eCurrent Pitch&f: &6%var:Pitch:2%"] + spell: Dummy + spell-right: sb-pitch-dec2 + stay-open: true + modifiers: [variable Pitch>1.9 require] + Pitch2Fail2: + slot: 9 + item: + type: gray_wool + name: "&6Pitch is under 0.1" + lore: ["&eCurrent Pitch&f: &6%var:Pitch:2%"] + spell: sb-pitch-add2 + spell-right: Dummy + stay-open: true + modifiers: [variable Pitch<0.1 require] + Pitch3: + slot: 18 + item: + type: lime_wool + name: "&6Modify Pitch by 0.05" + lore: ["&eCurrent Pitch&f: &6%var:Pitch:2%"] + spell: sb-pitch-add3 + spell-right: sb-pitch-dec3 + stay-open: true + modifiers: [variable Pitch>1.95 deny, variable Pitch<.05 deny] + Pitch3Fail1: + slot: 18 + item: + type: gray_wool + name: "&6Pitch is over 1.95" + lore: ["&eCurrent Pitch&f: &6%var:Pitch:2%"] + spell: Dummy + spell-right: sb-pitch-dec3 + stay-open: true + modifiers: [variable Pitch>1.9 require] + Pitch3Fail2: + slot: 18 + item: + type: gray_wool + name: "&6Pitch is under 0.05" + lore: ["&eCurrent Pitch&f: &6%var:Pitch:2%"] + spell: sb-pitch-add3 + spell-right: Dummy + stay-open: true + modifiers: [variable Pitch<0.05 require] + Volume1: + slot: 8 + item: + type: lime_wool + name: "&6Modify Volume by 100" + lore: ["&eCurrent Volume&f: &6%var:Volume:2%"] + spell: sb-volume-add1 + spell-right: sb-volume-dec1 + stay-open: true + modifiers: [variable Volume>99.99 require] + Volume1Fail: + slot: 8 + item: + type: gray_wool + name: "&6Volume is under 100" + lore: ["&eCurrent Volume&f: &6%var:Volume:2%"] + spell: sb-volume-add1 + spell-right: Dummy + stay-open: true + modifiers: [variable Volume>99.99 deny] + Volume2: + slot: 17 + item: + type: lime_wool + name: "&6Modify Volume by 1" + lore: ["&eCurrent Volume&f: &6%var:Volume:2%"] + spell: sb-volume-add2 + spell-right: sb-volume-dec2 + stay-open: true + modifiers: [variable Volume>0.99 require] + Volume2Fail: + slot: 17 + item: + type: gray_wool + name: "&6Volume is under 1" + lore: ["&eCurrent Volume&f: &6%var:Volume:2%"] + spell: sb-volume-add2 + spell-right: Dummy + stay-open: true + modifiers: [variable Volume>0.99 deny] + Volume3: + slot: 26 + item: + type: lime_wool + name: "&6Modify Volume by 0.5" + lore: ["&eCurrent Volume&f: &6%var:Volume:2%"] + spell: sb-volume-add3 + spell-right: sb-volume-dec3 + stay-open: true + modifiers: [variable Volume>0 require] + Volume3Fail: + slot: 26 + item: + type: gray_wool + name: "&6Volume is under 0.5" + lore: ["&eCurrent Volume&f: &6%var:Volume:2%"] + spell: sb-volume-add3 + spell-right: Dummy + stay-open: true + modifiers: [variable Volume>0 deny] + PitchPresetRemove: + slot: 3 + item: + type: diamond + name: "&6Pitch Preset Remove" + lore: ["&eNote pitch (music semitones)", "&eNoteblock Clicks&f: %var:PitchPreset:0%"] + spell: sb-pitch-preset-remove + stay-open: true + PitchPreset: + slot: 4 + item: + type: note_block + name: "&6Pitch Presets" + lore: ["&eNote pitch (music semitones)", "&eNoteblock Clicks&f: %var:PitchPreset:0%"] + spell: sb-pitch-presets + PitchPresetAdd: + slot: 5 + item: + type: diamond + name: "&6Pitch Preset Add" + lore: ["&eNote pitch (music semitones)", "&eNoteblock Clicks&f: %var:PitchPreset:0%"] + spell: sb-pitch-preset-add + stay-open: true + PlaySound: + slot: 12 + item: + type: enchanted_book + name: "&6Play" + lore: ["&eSound&f: &6%var:Sound%", "&ePitch&f: &6%var:Pitch:2%", "&eVolume&f: &6%var:Volume:1%"] + spell: sb-play + stay-open: true + modifiers: [variablestringequals PitchIsPreset:false require] + PlaySoundPitchPreset: + slot: 12 + item: + type: enchanted_book + name: "&6Play" + lore: ["&eSound&f: &6%var:Sound%", "&ePitch&f: &6%var:Pitch:5%", "&eVolume&f: &6%var:Volume:1%"] + spell: sb-play + stay-open: true + modifiers: [variablestringequals PitchIsPreset:true require] + StopSound: + slot: 13 + item: 'barrier{name: "&6Stop Sound"}' + spell: sb-stop + stay-open: true + Show: + slot: 14 + item: 'paper{name: "&6Show Configuration In Chat"}' + spell: sb-show-check + Back: + slot: 22 + item: 'book{name: "&6Back"}' + spell: sb-back-edit + +sb-back-edit: + <<: *dummy + modifiers: [] + + + +sb-pitch-add1: {<<: *dummy, variable-mods-cast: [Pitch +0.5, PitchIsPreset =false]} +sb-pitch-add2: {<<: *dummy, variable-mods-cast: [Pitch +0.1, PitchIsPreset =false]} +sb-pitch-add3: {<<: *dummy, variable-mods-cast: [Pitch +0.05, PitchIsPreset =false]} +sb-pitch-dec1: {<<: *dummy, variable-mods-cast: [Pitch -0.5, PitchIsPreset =false]} +sb-pitch-dec2: {<<: *dummy, variable-mods-cast: [Pitch -0.1, PitchIsPreset =false]} +sb-pitch-dec3: {<<: *dummy, variable-mods-cast: [Pitch -0.05, PitchIsPreset =false]} +sb-volume-add1: {<<: *dummy, variable-mods-cast: [Volume +100]} +sb-volume-add2: {<<: *dummy, variable-mods-cast: [Volume +1]} +sb-volume-add3: {<<: *dummy, variable-mods-cast: [Volume +0.5]} +sb-volume-dec1: {<<: *dummy, variable-mods-cast: [Volume -100]} +sb-volume-dec2: {<<: *dummy, variable-mods-cast: [Volume -1]} +sb-volume-dec3: {<<: *dummy, variable-mods-cast: [Volume -0.5]} + +sb-show-check: + <<: *command + modifiers: + - variable Pitch=1.0 castinstead sb-show-clean-pitch + - variable Pitch=1.0 stop + - variable Volume=1.0 castinstead sb-show-clean-volume + - variable Volume=1.0 stop + - "variablestringequals PitchIsPreset:true castinstead sb-show-preset-pitch" + - "variablestringequals PitchIsPreset:true stop" + - variable Pitch=0.0 castinstead sb-show-whole-pitch + - variable Pitch=2.0 castinstead sb-show-whole-pitch + command-to-execute: ['minecraft:tellraw %a [{"text":"To show the sound configuration ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: %var:Sound% pitch: %var:Pitch:2% volume: %var:Volume:2%"},"hoverEvent":{"action":"show_text","value":{"text":"Click to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]'] +sb-show-clean-pitch: #final + <<: *command + modifiers: [variable Volume=1.0 castinstead sb-show-clean-all] + command-to-execute: ['minecraft:tellraw %a [{"text":"To show the sound configuration ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: %var:Sound% volume: %var:Volume:2%"},"hoverEvent":{"action":"show_text","value":{"text":"Click to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]'] +sb-show-clean-volume: #clear vol, but could be whole or preset + <<: *command + modifiers: + - "variablestringequals PitchIsPreset:true castinstead sb-show-clean-volume-preset-pitch" + - "variablestringequals PitchIsPreset:true stop" + - variable Pitch=0.0 castinstead sb-show-clean-volume-whole-pitch + - variable Pitch=2.0 castinstead sb-show-clean-volume-whole-pitch + command-to-execute: ['minecraft:tellraw %a [{"text":"To show the sound configuration ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: %var:Sound% pitch: %var:Pitch:2%"},"hoverEvent":{"action":"show_text","value":{"text":"Click to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]'] +sb-show-clean-all: #final + <<: *command + command-to-execute: ['minecraft:tellraw %a [{"text":"To show the sound configuration ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: %var:Sound%"},"hoverEvent":{"action":"show_text","value":{"text":"Click to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]'] +sb-show-clean-volume-preset-pitch: #final + <<: *command + command-to-execute: ['minecraft:tellraw %a [{"text":"To show the sound configuration ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: %var:Sound% pitch: %var:Pitch:5%"},"hoverEvent":{"action":"show_text","value":{"text":"Click to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]'] +sb-show-clean-volume-whole-pitch: #final + <<: *command + command-to-execute: ['minecraft:tellraw %a [{"text":"To show the sound configuration ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: %var:Sound% pitch: %var:Pitch:0%"},"hoverEvent":{"action":"show_text","value":{"text":"Click to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]'] +sb-show-preset-pitch: #final + <<: *command + command-to-execute: ['minecraft:tellraw %a [{"text":"To show the sound configuration ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: %var:Sound% pitch: %var:Pitch:5% volume: %var:Volume:2%"},"hoverEvent":{"action":"show_text","value":{"text":"Click to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]'] +sb-show-whole-pitch: #final + <<: *command + command-to-execute: ['minecraft:tellraw %a [{"text":"To show the sound configuration ","color":"aqua"},{"text":"[","color":"dark_aqua"},{"text":"Click Here","color":"aqua","clickEvent":{"action":"suggest_command","value":"sound: %var:Sound% pitch: %var:Pitch:0% volume: %var:Volume:2%"},"hoverEvent":{"action":"show_text","value":{"text":"Click to show","color":"aqua"}}},{"text":"]","color":"dark_aqua"}]'] + + + +sb-play: {<<: *command,command-to-execute: ["minecraft:execute at %a run playsound minecraft:%var:Sound% master %a ~ ~ ~ %var:Volume:2% %var:Pitch:2%"]} +sb-stop: {<<: *command,command-to-execute: ["minecraft:stopsound %a master %var:Sound%"]} + +sb-pitch-presets: + <<: *menu + title: "&9Pitch Presets (Semitones)" + options: + 0: + slot: 0 + item: + type: note_block + name: "&6F♯/G♭" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &60", "&ePitch&f: &60.5"] + spell: sb-pitch-preset0 + 1: + slot: 1 + item: + type: note_block + name: "&6G" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &61", "&ePitch&f: &62^(-11/12) ≈ 0.529732"] + spell: sb-pitch-preset1 + 2: + slot: 2 + item: + type: note_block + name: "&6G♯/A♭" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &62", "&ePitch&f: &62^(-10/12) ≈ 0.561231"] + spell: sb-pitch-preset2 + 3: + slot: 3 + item: + type: note_block + name: "&6A" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &63", "&ePitch&f: &62^(-9/12) ≈ 0.594604"] + spell: sb-pitch-preset3 + 4: + slot: 4 + item: + type: note_block + name: "&6A♯/B♭" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &64", "&ePitch&f: &62^(-8/12) ≈ 0.629961"] + spell: sb-pitch-preset4 + 5: + slot: 5 + item: + type: note_block + name: "&6B" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &65", "&ePitch&f: &62^(-7/12) ≈ 0.667420"] + spell: sb-pitch-preset5 + 6: + slot: 6 + item: + type: note_block + name: "&6C" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &66", "&ePitch&f: &62^(-6/12) ≈ 0.707107"] + spell: sb-pitch-preset6 + 7: + slot: 7 + item: + type: note_block + name: "&6C♯/D♭" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &67", "&ePitch&f: &62^(-5/12) ≈ 0.749154"] + spell: sb-pitch-preset7 + 8: + slot: 8 + item: + type: note_block + name: "&6D" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &68", "&ePitch&f: &62^(-4/12) ≈ 0.793701"] + spell: sb-pitch-preset8 + 9: + slot: 9 + item: + type: note_block + name: "&6D♯/E♭" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &69", "&ePitch&f: &62^(-3/12) ≈ 0.840896"] + spell: sb-pitch-preset9 + 10: + slot: 10 + item: + type: note_block + name: "&6E" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &610", "&ePitch&f: &62^(-2/12) ≈ 0.890899"] + spell: sb-pitch-preset10 + 11: + slot: 11 + item: + type: note_block + name: "&6F" + lore: ["&eOctave&f: &61", "&eNoteblock clicks&f: &611", "&ePitch&f: &62^(-1/12) ≈ 0.943874"] + spell: sb-pitch-preset11 + 12: + slot: 12 + item: + type: note_block + name: "&6F♯/G♭" + lore: ["&eOctave&f: &61 &eand &62", "&eNoteblock clicks&f: &6&612", "&ePitch&e: 1"] + spell: sb-pitch-preset12 + 13: + slot: 13 + item: + type: note_block + name: "&6G" + lore: ["&eOctave&f: &62", "&eNoteblock clicks&f: &613", "&ePitch&f: &62^(1/12) ≈ 1.059463"] + spell: sb-pitch-preset13 + 14: + slot: 14 + item: + type: note_block + name: "&6G♯/A♭" + lore: ["&eOctave&f: &62", "&eNoteblock clicks&f: &614", "&ePitch&f: &62^(2/12) ≈ 1.122462"] + spell: sb-pitch-preset14 + 15: + slot: 15 + item: + type: note_block + name: "&6A" + lore: ["&eOctave&f: &62", "&eNoteblock clicks&f: &615", "&ePitch&f: &62^(3/12) ≈ 1.189207"] + spell: sb-pitch-preset15 + 16: + slot: 16 + item: + type: note_block + name: "&6A♯/B♭" + lore: ["&eOctave&f: &62", "&eNoteblock clicks&f: &616", "&ePitch&f: &62^(4/12) ≈ 1.259921"] + spell: sb-pitch-preset16 + 17: + slot: 17 + item: + type: note_block + name: "&6B" + lore: ["&eOctave&f: &62", "&eNoteblock clicks&f: &617", "&ePitch&f: &62^(5/12) ≈ 1.334840"] + spell: sb-pitch-preset17 + 18: + slot: 18 + item: + type: note_block + name: "&6C" + lore: ["&eOctave&f: &62", "&eNoteblock clicks&f: &618", "&ePitch&f: &62^(6/12) ≈ 1.414214"] + spell: sb-pitch-preset18 + 19: + slot: 19 + item: + type: note_block + name: "&6C♯/D♭" + lore: ["&eOctave&f: &62", "eNoteblock clicks&f: &619", "&ePitch&f: &62^(7/12) ≈ 1.498307"] + spell: sb-pitch-preset19 + 20: + slot: 20 + item: + type: note_block + name: "&6D" + lore: ["&eOctave&f: &62", "eNoteblock clicks&f: &620", "&ePitch&f: &62^(8/12) ≈ 1.587401"] + spell: sb-pitch-preset20 + 21: + slot: 21 + item: + type: note_block + name: "&6D♯/E♭" + lore: ["&eOctave&f: &62", "&eNoteblock clicks&f: &621", "ePitch&f: &62^(9/12) ≈ 1.68179"] + spell: sb-pitch-preset21 + 22: + slot: 22 + item: + type: note_block + name: "&6E" + lore: ["&eOctave&f: &62", "&eNoteblock clicks&f: &622", "&ePitch&f: &62^(10/12) ≈ 1.781797"] + spell: sb-pitch-preset22 + 23: + slot: 23 + item: + type: note_block + name: "&6F" + lore: ["&eOctave&f: &62", "&eNoteblock clicks&f: &623", "&ePitch&f: &62^(11/12) ≈ 1.887749"] + spell: sb-pitch-preset23 + 24: + slot: 24 + item: + type: note_block + name: "&6F♯/G♭" + lore: ["&eOctave&f: &62", "&eNoteblock clicks&f: &624", "&ePitch&f: &62"] + spell: sb-pitch-preset24 + Back: + slot: 26 + item: 'book{name: "&6Back"}' + spell: sb-configure + +sb-pitch-preset-add: {<<: *command,modifiers: [chance 100 variable PitchPreset;+1,"variable PitchPreset=25 variable PitchPreset;=0"],command-to-execute: [c forcecast %a sb-pitch-preset%var:PitchPreset:0%]} +sb-pitch-preset-remove: {<<: *command,modifiers: ["variable PitchPreset=0 variable PitchPreset;=25",chance 100 variable PitchPreset;-1],command-to-execute: [c forcecast %a sb-pitch-preset%var:PitchPreset:0%]} + +sb-pitch-preset0: &preset + spell-class: ".MultiSpell" + helper-spell: true + tags: [NotSilenceable] + variable-mods-cast: [Pitch =0.5, PitchPreset =0, &pr PitchIsPreset =true] + spells: [sb-configure] +sb-pitch-preset1: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.529732, PitchPreset =1]} +sb-pitch-preset2: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.561231, PitchPreset =2]} +sb-pitch-preset3: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.594604, PitchPreset =3]} +sb-pitch-preset4: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.629961, PitchPreset =4]} +sb-pitch-preset5: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.667420, PitchPreset =5]} +sb-pitch-preset6: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.707107, PitchPreset =6]} +sb-pitch-preset7: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.749154, PitchPreset =7]} +sb-pitch-preset8: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.793701, PitchPreset =8]} +sb-pitch-preset9: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.840896, PitchPreset =9]} +sb-pitch-preset10: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.890899, PitchPreset =10]} +sb-pitch-preset11: {<<: *preset, variable-mods-cast: [*pr, Pitch =0.943874, PitchPreset =11]} +sb-pitch-preset12: {<<: *preset, variable-mods-cast: [*pr, Pitch =1, PitchPreset =12]} +sb-pitch-preset13: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.059463, PitchPreset =13]} +sb-pitch-preset14: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.122462, PitchPreset =14]} +sb-pitch-preset15: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.189207, PitchPreset =15]} +sb-pitch-preset16: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.259921, PitchPreset =16]} +sb-pitch-preset17: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.334840, PitchPreset =17]} +sb-pitch-preset18: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.414214, PitchPreset =18]} +sb-pitch-preset19: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.498307, PitchPreset =19]} +sb-pitch-preset20: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.587401, PitchPreset =20]} +sb-pitch-preset21: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.681793, PitchPreset =21]} +sb-pitch-preset22: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.781797, PitchPreset =22]} +sb-pitch-preset23: {<<: *preset, variable-mods-cast: [*pr, Pitch =1.887749, PitchPreset =23]} +sb-pitch-preset24: {<<: *preset, variable-mods-cast: [*pr, Pitch =2, PitchPreset =24]} diff --git a/sounds/1.16.5.txt b/sounds/1.16.5.txt new file mode 100644 index 0000000..1aedda6 --- /dev/null +++ b/sounds/1.16.5.txt @@ -0,0 +1,985 @@ +ambient.basalt_deltas.additions +ambient.basalt_deltas.loop +ambient.basalt_deltas.mood +ambient.cave +ambient.crimson_forest.additions +ambient.crimson_forest.loop +ambient.crimson_forest.mood +ambient.nether_wastes.additions +ambient.nether_wastes.loop +ambient.nether_wastes.mood +ambient.soul_sand_valley.additions +ambient.soul_sand_valley.loop +ambient.soul_sand_valley.mood +ambient.underwater.enter +ambient.underwater.exit +ambient.underwater.loop +ambient.underwater.loop.additions +ambient.underwater.loop.additions.rare +ambient.underwater.loop.additions.ultra_rare +ambient.warped_forest.additions +ambient.warped_forest.loop +ambient.warped_forest.mood +block.ancient_debris.break +block.ancient_debris.fall +block.ancient_debris.hit +block.ancient_debris.place +block.ancient_debris.step +block.anvil.break +block.anvil.destroy +block.anvil.fall +block.anvil.hit +block.anvil.land +block.anvil.place +block.anvil.step +block.anvil.use +block.bamboo.break +block.bamboo.fall +block.bamboo.hit +block.bamboo.place +block.bamboo.step +block.bamboo_sapling.break +block.bamboo_sapling.hit +block.bamboo_sapling.place +block.barrel.close +block.barrel.open +block.basalt.break +block.basalt.fall +block.basalt.hit +block.basalt.place +block.basalt.step +block.beacon.activate +block.beacon.ambient +block.beacon.deactivate +block.beacon.power_select +block.beehive.drip +block.beehive.enter +block.beehive.exit +block.beehive.shear +block.beehive.work +block.bell.resonate +block.bell.use +block.blastfurnace.fire_crackle +block.bone_block.break +block.bone_block.fall +block.bone_block.hit +block.bone_block.place +block.bone_block.step +block.brewing_stand.brew +block.bubble_column.bubble_pop +block.bubble_column.upwards_ambient +block.bubble_column.upwards_inside +block.bubble_column.whirlpool_ambient +block.bubble_column.whirlpool_inside +block.campfire.crackle +block.chain.break +block.chain.fall +block.chain.hit +block.chain.place +block.chain.step +block.chest.close +block.chest.locked +block.chest.open +block.chorus_flower.death +block.chorus_flower.grow +block.comparator.click +block.composter.empty +block.composter.fill +block.composter.fill_success +block.composter.ready +block.conduit.activate +block.conduit.ambient +block.conduit.ambient.short +block.conduit.attack.target +block.conduit.deactivate +block.coral_block.break +block.coral_block.fall +block.coral_block.hit +block.coral_block.place +block.coral_block.step +block.crop.break +block.dispenser.dispense +block.dispenser.fail +block.dispenser.launch +block.enchantment_table.use +block.end_gateway.spawn +block.end_portal.spawn +block.end_portal_frame.fill +block.ender_chest.close +block.ender_chest.open +block.fence_gate.close +block.fence_gate.open +block.fire.ambient +block.fire.extinguish +block.fungus.break +block.fungus.fall +block.fungus.hit +block.fungus.place +block.fungus.step +block.furnace.fire_crackle +block.gilded_blackstone.break +block.gilded_blackstone.fall +block.gilded_blackstone.hit +block.gilded_blackstone.place +block.gilded_blackstone.step +block.glass.break +block.glass.fall +block.glass.hit +block.glass.place +block.glass.step +block.grass.break +block.grass.fall +block.grass.hit +block.grass.place +block.grass.step +block.gravel.break +block.gravel.fall +block.gravel.hit +block.gravel.place +block.gravel.step +block.grindstone.use +block.honey_block.break +block.honey_block.fall +block.honey_block.hit +block.honey_block.place +block.honey_block.slide +block.honey_block.step +block.iron_door.close +block.iron_door.open +block.iron_trapdoor.close +block.iron_trapdoor.open +block.ladder.break +block.ladder.fall +block.ladder.hit +block.ladder.place +block.ladder.step +block.lantern.break +block.lantern.fall +block.lantern.hit +block.lantern.place +block.lantern.step +block.lava.ambient +block.lava.extinguish +block.lava.pop +block.lever.click +block.lily_pad.place +block.lodestone.break +block.lodestone.fall +block.lodestone.hit +block.lodestone.place +block.lodestone.step +block.metal.break +block.metal.fall +block.metal.hit +block.metal.place +block.metal.step +block.metal_pressure_plate.click_off +block.metal_pressure_plate.click_on +block.nether_bricks.break +block.nether_bricks.fall +block.nether_bricks.hit +block.nether_bricks.place +block.nether_bricks.step +block.nether_gold_ore.break +block.nether_gold_ore.fall +block.nether_gold_ore.hit +block.nether_gold_ore.place +block.nether_gold_ore.step +block.nether_ore.break +block.nether_ore.fall +block.nether_ore.hit +block.nether_ore.place +block.nether_ore.step +block.nether_sprouts.break +block.nether_sprouts.fall +block.nether_sprouts.hit +block.nether_sprouts.place +block.nether_sprouts.step +block.nether_wart.break +block.netherite_block.break +block.netherite_block.fall +block.netherite_block.hit +block.netherite_block.place +block.netherite_block.step +block.netherrack.break +block.netherrack.fall +block.netherrack.hit +block.netherrack.place +block.netherrack.step +block.note_block.banjo +block.note_block.basedrum +block.note_block.bass +block.note_block.bell +block.note_block.bit +block.note_block.chime +block.note_block.cow_bell +block.note_block.didgeridoo +block.note_block.flute +block.note_block.guitar +block.note_block.harp +block.note_block.hat +block.note_block.iron_xylophone +block.note_block.pling +block.note_block.snare +block.note_block.xylophone +block.nylium.break +block.nylium.fall +block.nylium.hit +block.nylium.place +block.nylium.step +block.piston.contract +block.piston.extend +block.portal.ambient +block.portal.travel +block.portal.trigger +block.pumpkin.carve +block.redstone_torch.burnout +block.respawn_anchor.ambient +block.respawn_anchor.charge +block.respawn_anchor.deplete +block.respawn_anchor.set_spawn +block.roots.break +block.roots.fall +block.roots.hit +block.roots.place +block.roots.step +block.sand.break +block.sand.fall +block.sand.hit +block.sand.place +block.sand.step +block.scaffolding.break +block.scaffolding.fall +block.scaffolding.hit +block.scaffolding.place +block.scaffolding.step +block.shroomlight.break +block.shroomlight.fall +block.shroomlight.hit +block.shroomlight.place +block.shroomlight.step +block.shulker_box.close +block.shulker_box.open +block.slime_block.break +block.slime_block.fall +block.slime_block.hit +block.slime_block.place +block.slime_block.step +block.smithing_table.use +block.smoker.smoke +block.snow.break +block.snow.fall +block.snow.hit +block.snow.place +block.snow.step +block.soul_sand.break +block.soul_sand.fall +block.soul_sand.hit +block.soul_sand.place +block.soul_sand.step +block.soul_soil.break +block.soul_soil.fall +block.soul_soil.hit +block.soul_soil.place +block.soul_soil.step +block.stem.break +block.stem.fall +block.stem.hit +block.stem.place +block.stem.step +block.stone.break +block.stone.fall +block.stone.hit +block.stone.place +block.stone.step +block.stone_button.click_off +block.stone_button.click_on +block.stone_pressure_plate.click_off +block.stone_pressure_plate.click_on +block.sweet_berry_bush.break +block.sweet_berry_bush.place +block.tripwire.attach +block.tripwire.click_off +block.tripwire.click_on +block.tripwire.detach +block.vine.step +block.wart_block.break +block.wart_block.fall +block.wart_block.hit +block.wart_block.place +block.wart_block.step +block.water.ambient +block.weeping_vines.break +block.weeping_vines.fall +block.weeping_vines.hit +block.weeping_vines.place +block.weeping_vines.step +block.wet_grass.break +block.wet_grass.fall +block.wet_grass.hit +block.wet_grass.place +block.wet_grass.step +block.wood.break +block.wood.fall +block.wood.hit +block.wood.place +block.wood.step +block.wooden_button.click_off +block.wooden_button.click_on +block.wooden_door.close +block.wooden_door.open +block.wooden_pressure_plate.click_off +block.wooden_pressure_plate.click_on +block.wooden_trapdoor.close +block.wooden_trapdoor.open +block.wool.break +block.wool.fall +block.wool.hit +block.wool.place +block.wool.step +enchant.thorns.hit +entity.armor_stand.break +entity.armor_stand.fall +entity.armor_stand.hit +entity.armor_stand.place +entity.arrow.hit +entity.arrow.hit_player +entity.arrow.shoot +entity.bat.ambient +entity.bat.death +entity.bat.hurt +entity.bat.loop +entity.bat.takeoff +entity.bee.death +entity.bee.hurt +entity.bee.loop +entity.bee.loop_aggressive +entity.bee.pollinate +entity.bee.sting +entity.blaze.ambient +entity.blaze.burn +entity.blaze.death +entity.blaze.hurt +entity.blaze.shoot +entity.boat.paddle_land +entity.boat.paddle_water +entity.cat.ambient +entity.cat.beg_for_food +entity.cat.death +entity.cat.eat +entity.cat.hiss +entity.cat.hurt +entity.cat.purr +entity.cat.purreow +entity.cat.stray_ambient +entity.chicken.ambient +entity.chicken.death +entity.chicken.egg +entity.chicken.hurt +entity.chicken.step +entity.cod.ambient +entity.cod.death +entity.cod.flop +entity.cod.hurt +entity.cow.ambient +entity.cow.death +entity.cow.hurt +entity.cow.milk +entity.cow.step +entity.creeper.death +entity.creeper.hurt +entity.creeper.primed +entity.dolphin.ambient +entity.dolphin.ambient_water +entity.dolphin.attack +entity.dolphin.death +entity.dolphin.eat +entity.dolphin.hurt +entity.dolphin.jump +entity.dolphin.play +entity.dolphin.splash +entity.dolphin.swim +entity.donkey.ambient +entity.donkey.angry +entity.donkey.chest +entity.donkey.death +entity.donkey.eat +entity.donkey.hurt +entity.dragon_fireball.explode +entity.drowned.ambient +entity.drowned.ambient_water +entity.drowned.death +entity.drowned.death_water +entity.drowned.hurt +entity.drowned.hurt_water +entity.drowned.shoot +entity.drowned.step +entity.drowned.swim +entity.egg.throw +entity.elder_guardian.ambient +entity.elder_guardian.ambient_land +entity.elder_guardian.curse +entity.elder_guardian.death +entity.elder_guardian.death_land +entity.elder_guardian.flop +entity.elder_guardian.hurt +entity.elder_guardian.hurt_land +entity.ender_dragon.ambient +entity.ender_dragon.death +entity.ender_dragon.flap +entity.ender_dragon.growl +entity.ender_dragon.hurt +entity.ender_dragon.shoot +entity.ender_eye.death +entity.ender_eye.launch +entity.ender_pearl.throw +entity.enderman.ambient +entity.enderman.death +entity.enderman.hurt +entity.enderman.scream +entity.enderman.stare +entity.enderman.teleport +entity.endermite.ambient +entity.endermite.death +entity.endermite.hurt +entity.endermite.step +entity.evoker.ambient +entity.evoker.cast_spell +entity.evoker.celebrate +entity.evoker.death +entity.evoker.hurt +entity.evoker.prepare_attack +entity.evoker.prepare_summon +entity.evoker.prepare_wololo +entity.evoker_fangs.attack +entity.experience_bottle.throw +entity.experience_orb.pickup +entity.firework_rocket.blast +entity.firework_rocket.blast_far +entity.firework_rocket.large_blast +entity.firework_rocket.large_blast_far +entity.firework_rocket.launch +entity.firework_rocket.shoot +entity.firework_rocket.twinkle +entity.firework_rocket.twinkle_far +entity.fish.swim +entity.fishing_bobber.retrieve +entity.fishing_bobber.splash +entity.fishing_bobber.throw +entity.fox.aggro +entity.fox.ambient +entity.fox.bite +entity.fox.death +entity.fox.eat +entity.fox.hurt +entity.fox.screech +entity.fox.sleep +entity.fox.sniff +entity.fox.spit +entity.fox.teleport +entity.generic.big_fall +entity.generic.burn +entity.generic.death +entity.generic.drink +entity.generic.eat +entity.generic.explode +entity.generic.extinguish_fire +entity.generic.hurt +entity.generic.small_fall +entity.generic.splash +entity.generic.swim +entity.ghast.ambient +entity.ghast.death +entity.ghast.hurt +entity.ghast.scream +entity.ghast.shoot +entity.ghast.warn +entity.guardian.ambient +entity.guardian.ambient_land +entity.guardian.attack +entity.guardian.death +entity.guardian.death_land +entity.guardian.flop +entity.guardian.hurt +entity.guardian.hurt_land +entity.hoglin.ambient +entity.hoglin.angry +entity.hoglin.attack +entity.hoglin.converted_to_zombified +entity.hoglin.death +entity.hoglin.hurt +entity.hoglin.retreat +entity.hoglin.step +entity.horse.ambient +entity.horse.angry +entity.horse.armor +entity.horse.breathe +entity.horse.death +entity.horse.eat +entity.horse.gallop +entity.horse.hurt +entity.horse.jump +entity.horse.land +entity.horse.saddle +entity.horse.step +entity.horse.step_wood +entity.hostile.big_fall +entity.hostile.death +entity.hostile.hurt +entity.hostile.small_fall +entity.hostile.splash +entity.hostile.swim +entity.husk.ambient +entity.husk.converted_to_zombie +entity.husk.death +entity.husk.hurt +entity.husk.step +entity.illusioner.ambient +entity.illusioner.cast_spell +entity.illusioner.death +entity.illusioner.hurt +entity.illusioner.mirror_move +entity.illusioner.prepare_blindness +entity.illusioner.prepare_mirror +entity.iron_golem.attack +entity.iron_golem.damage +entity.iron_golem.death +entity.iron_golem.hurt +entity.iron_golem.repair +entity.iron_golem.step +entity.item.break +entity.item.pickup +entity.item_frame.add_item +entity.item_frame.break +entity.item_frame.place +entity.item_frame.remove_item +entity.item_frame.rotate_item +entity.leash_knot.break +entity.leash_knot.place +entity.lightning_bolt.impact +entity.lightning_bolt.thunder +entity.lingering_potion.throw +entity.llama.ambient +entity.llama.angry +entity.llama.chest +entity.llama.death +entity.llama.eat +entity.llama.hurt +entity.llama.spit +entity.llama.step +entity.llama.swag +entity.magma_cube.death +entity.magma_cube.death_small +entity.magma_cube.hurt +entity.magma_cube.hurt_small +entity.magma_cube.jump +entity.magma_cube.squish +entity.magma_cube.squish_small +entity.minecart.inside +entity.minecart.riding +entity.mooshroom.convert +entity.mooshroom.eat +entity.mooshroom.milk +entity.mooshroom.shear +entity.mooshroom.suspicious_milk +entity.mule.ambient +entity.mule.angry +entity.mule.chest +entity.mule.death +entity.mule.eat +entity.mule.hurt +entity.ocelot.ambient +entity.ocelot.death +entity.ocelot.hurt +entity.painting.break +entity.painting.place +entity.panda.aggressive_ambient +entity.panda.ambient +entity.panda.bite +entity.panda.cant_breed +entity.panda.death +entity.panda.eat +entity.panda.hurt +entity.panda.pre_sneeze +entity.panda.sneeze +entity.panda.step +entity.panda.worried_ambient +entity.parrot.ambient +entity.parrot.death +entity.parrot.eat +entity.parrot.fly +entity.parrot.hurt +entity.parrot.imitate.blaze +entity.parrot.imitate.creeper +entity.parrot.imitate.drowned +entity.parrot.imitate.elder_guardian +entity.parrot.imitate.ender_dragon +entity.parrot.imitate.endermite +entity.parrot.imitate.evoker +entity.parrot.imitate.ghast +entity.parrot.imitate.guardian +entity.parrot.imitate.hoglin +entity.parrot.imitate.husk +entity.parrot.imitate.illusioner +entity.parrot.imitate.magma_cube +entity.parrot.imitate.phantom +entity.parrot.imitate.piglin +entity.parrot.imitate.pillager +entity.parrot.imitate.ravager +entity.parrot.imitate.shulker +entity.parrot.imitate.silverfish +entity.parrot.imitate.skeleton +entity.parrot.imitate.slime +entity.parrot.imitate.spider +entity.parrot.imitate.stray +entity.parrot.imitate.vex +entity.parrot.imitate.vindicator +entity.parrot.imitate.witch +entity.parrot.imitate.wither +entity.parrot.imitate.wither_skeleton +entity.parrot.imitate.zoglin +entity.parrot.imitate.zombie +entity.parrot.imitate.zombie_villager +entity.parrot.step +entity.phantom.ambient +entity.phantom.bite +entity.phantom.death +entity.phantom.flap +entity.phantom.hurt +entity.phantom.swoop +entity.pig.ambient +entity.pig.death +entity.pig.hurt +entity.pig.saddle +entity.pig.step +entity.piglin.admiring_item +entity.piglin.ambient +entity.piglin.angry +entity.piglin.celebrate +entity.piglin.converted_to_zombified +entity.piglin.death +entity.piglin.hurt +entity.piglin.jealous +entity.piglin.retreat +entity.piglin.step +entity.pillager.ambient +entity.pillager.celebrate +entity.pillager.death +entity.pillager.hurt +entity.player.attack.crit +entity.player.attack.knockback +entity.player.attack.nodamage +entity.player.attack.strong +entity.player.attack.sweep +entity.player.attack.weak +entity.player.big_fall +entity.player.breath +entity.player.burp +entity.player.death +entity.player.hurt +entity.player.hurt_drown +entity.player.hurt_on_fire +entity.player.hurt_sweet_berry_bush +entity.player.levelup +entity.player.small_fall +entity.player.splash +entity.player.splash.high_speed +entity.player.swim +entity.polar_bear.ambient +entity.polar_bear.ambient_baby +entity.polar_bear.death +entity.polar_bear.hurt +entity.polar_bear.step +entity.polar_bear.warning +entity.puffer_fish.ambient +entity.puffer_fish.blow_out +entity.puffer_fish.blow_up +entity.puffer_fish.death +entity.puffer_fish.flop +entity.puffer_fish.hurt +entity.puffer_fish.sting +entity.rabbit.ambient +entity.rabbit.attack +entity.rabbit.death +entity.rabbit.hurt +entity.rabbit.jump +entity.ravager.ambient +entity.ravager.attack +entity.ravager.celebrate +entity.ravager.death +entity.ravager.hurt +entity.ravager.roar +entity.ravager.step +entity.ravager.stunned +entity.salmon.ambient +entity.salmon.death +entity.salmon.flop +entity.salmon.hurt +entity.sheep.ambient +entity.sheep.death +entity.sheep.hurt +entity.sheep.shear +entity.sheep.step +entity.shulker.ambient +entity.shulker.close +entity.shulker.death +entity.shulker.hurt +entity.shulker.hurt_closed +entity.shulker.open +entity.shulker.shoot +entity.shulker.teleport +entity.shulker_bullet.hit +entity.shulker_bullet.hurt +entity.silverfish.ambient +entity.silverfish.death +entity.silverfish.hurt +entity.silverfish.step +entity.skeleton.ambient +entity.skeleton.death +entity.skeleton.hurt +entity.skeleton.shoot +entity.skeleton.step +entity.skeleton_horse.ambient +entity.skeleton_horse.ambient_water +entity.skeleton_horse.death +entity.skeleton_horse.gallop_water +entity.skeleton_horse.hurt +entity.skeleton_horse.jump_water +entity.skeleton_horse.step_water +entity.skeleton_horse.swim +entity.slime.attack +entity.slime.death +entity.slime.death_small +entity.slime.hurt +entity.slime.hurt_small +entity.slime.jump +entity.slime.jump_small +entity.slime.squish +entity.slime.squish_small +entity.snow_golem.ambient +entity.snow_golem.death +entity.snow_golem.hurt +entity.snow_golem.shear +entity.snow_golem.shoot +entity.snowball.throw +entity.spider.ambient +entity.spider.death +entity.spider.hurt +entity.spider.step +entity.splash_potion.break +entity.splash_potion.throw +entity.squid.ambient +entity.squid.death +entity.squid.hurt +entity.squid.squirt +entity.stray.ambient +entity.stray.death +entity.stray.hurt +entity.stray.step +entity.strider.ambient +entity.strider.death +entity.strider.eat +entity.strider.happy +entity.strider.hurt +entity.strider.retreat +entity.strider.saddle +entity.strider.step +entity.strider.step_lava +entity.tnt.primed +entity.tropical_fish.ambient +entity.tropical_fish.death +entity.tropical_fish.flop +entity.tropical_fish.hurt +entity.turtle.ambient_land +entity.turtle.death +entity.turtle.death_baby +entity.turtle.egg_break +entity.turtle.egg_crack +entity.turtle.egg_hatch +entity.turtle.hurt +entity.turtle.hurt_baby +entity.turtle.lay_egg +entity.turtle.shamble +entity.turtle.shamble_baby +entity.turtle.swim +entity.vex.ambient +entity.vex.charge +entity.vex.death +entity.vex.hurt +entity.villager.ambient +entity.villager.celebrate +entity.villager.death +entity.villager.hurt +entity.villager.no +entity.villager.trade +entity.villager.work_armorer +entity.villager.work_butcher +entity.villager.work_cartographer +entity.villager.work_cleric +entity.villager.work_farmer +entity.villager.work_fisherman +entity.villager.work_fletcher +entity.villager.work_leatherworker +entity.villager.work_librarian +entity.villager.work_mason +entity.villager.work_shepherd +entity.villager.work_toolsmith +entity.villager.work_weaponsmith +entity.villager.yes +entity.vindicator.ambient +entity.vindicator.celebrate +entity.vindicator.death +entity.vindicator.hurt +entity.wandering_trader.ambient +entity.wandering_trader.death +entity.wandering_trader.disappeared +entity.wandering_trader.drink_milk +entity.wandering_trader.drink_potion +entity.wandering_trader.hurt +entity.wandering_trader.no +entity.wandering_trader.reappeared +entity.wandering_trader.trade +entity.wandering_trader.yes +entity.witch.ambient +entity.witch.celebrate +entity.witch.death +entity.witch.drink +entity.witch.hurt +entity.witch.throw +entity.wither.ambient +entity.wither.break_block +entity.wither.death +entity.wither.hurt +entity.wither.shoot +entity.wither.spawn +entity.wither_skeleton.ambient +entity.wither_skeleton.death +entity.wither_skeleton.hurt +entity.wither_skeleton.step +entity.wolf.ambient +entity.wolf.death +entity.wolf.growl +entity.wolf.howl +entity.wolf.hurt +entity.wolf.pant +entity.wolf.shake +entity.wolf.step +entity.wolf.whine +entity.zoglin.ambient +entity.zoglin.angry +entity.zoglin.attack +entity.zoglin.death +entity.zoglin.hurt +entity.zoglin.step +entity.zombie.ambient +entity.zombie.attack_iron_door +entity.zombie.attack_wooden_door +entity.zombie.break_wooden_door +entity.zombie.converted_to_drowned +entity.zombie.death +entity.zombie.destroy_egg +entity.zombie.hurt +entity.zombie.infect +entity.zombie.step +entity.zombie_horse.ambient +entity.zombie_horse.death +entity.zombie_horse.hurt +entity.zombie_villager.ambient +entity.zombie_villager.converted +entity.zombie_villager.cure +entity.zombie_villager.death +entity.zombie_villager.hurt +entity.zombie_villager.step +entity.zombified_piglin.ambient +entity.zombified_piglin.angry +entity.zombified_piglin.death +entity.zombified_piglin.hurt +event.raid.horn +item.armor.equip_chain +item.armor.equip_diamond +item.armor.equip_elytra +item.armor.equip_generic +item.armor.equip_gold +item.armor.equip_iron +item.armor.equip_leather +item.armor.equip_netherite +item.armor.equip_turtle +item.axe.strip +item.book.page_turn +item.book.put +item.bottle.empty +item.bottle.fill +item.bottle.fill_dragonbreath +item.bucket.empty +item.bucket.empty_fish +item.bucket.empty_lava +item.bucket.fill +item.bucket.fill_fish +item.bucket.fill_lava +item.chorus_fruit.teleport +item.crop.plant +item.crossbow.hit +item.crossbow.loading_end +item.crossbow.loading_middle +item.crossbow.loading_start +item.crossbow.quick_charge_1 +item.crossbow.quick_charge_2 +item.crossbow.quick_charge_3 +item.crossbow.shoot +item.elytra.flying +item.firecharge.use +item.flintandsteel.use +item.hoe.till +item.honey_bottle.drink +item.lodestone_compass.lock +item.nether_wart.plant +item.shield.block +item.shield.break +item.shovel.flatten +item.sweet_berries.pick_from_bush +item.totem.use +item.trident.hit +item.trident.hit_ground +item.trident.return +item.trident.riptide_1 +item.trident.riptide_2 +item.trident.riptide_3 +item.trident.throw +item.trident.thunder +music.creative +music.credits +music.dragon +music.end +music.game +music.menu +music.nether.basalt_deltas +music.nether.crimson_forest +music.nether.nether_wastes +music.nether.soul_sand_valley +music.nether.warped_forest +music.under_water +music_disc.11 +music_disc.13 +music_disc.blocks +music_disc.cat +music_disc.chirp +music_disc.far +music_disc.mall +music_disc.mellohi +music_disc.pigstep +music_disc.stal +music_disc.strad +music_disc.wait +music_disc.ward +particle.soul_escape +ui.button.click +ui.cartography_table.take_result +ui.loom.select_pattern +ui.loom.take_result +ui.stonecutter.select_recipe +ui.stonecutter.take_result +ui.toast.challenge_complete +ui.toast.in +ui.toast.out +weather.rain +weather.rain.above