Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Sound rewriting with JSON
Dieser Commit ist enthalten in:
Ursprung
2153377c0e
Commit
aacce4f77b
@ -737,61 +737,7 @@ public class ProtocolSnapshotTo1_12_2 extends Protocol {
|
|||||||
providers.register(PaintingProvider.class, new PaintingProvider());
|
providers.register(PaintingProvider.class, new PaintingProvider());
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO Generate this for 1.13-pre6
|
|
||||||
private int getNewSoundID(final int oldID) {
|
private int getNewSoundID(final int oldID) {
|
||||||
int newId = oldID;
|
return MappingData.oldToNewSounds.get(oldID);
|
||||||
if (oldID >= 1)
|
|
||||||
newId += 6;
|
|
||||||
if (oldID >= 9)
|
|
||||||
newId += 4;
|
|
||||||
if (oldID >= 10)
|
|
||||||
newId += 5;
|
|
||||||
if (oldID >= 21)
|
|
||||||
newId += 5;
|
|
||||||
if (oldID >= 86)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 166)
|
|
||||||
newId += 4;
|
|
||||||
if (oldID >= 174)
|
|
||||||
newId += 10;
|
|
||||||
if (oldID >= 179)
|
|
||||||
newId += 9;
|
|
||||||
if (oldID >= 226)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 271)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 326)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 335)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 352)
|
|
||||||
newId += 6;
|
|
||||||
if (oldID >= 373)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 380)
|
|
||||||
newId += 7;
|
|
||||||
if (oldID >= 385)
|
|
||||||
newId += 4;
|
|
||||||
if (oldID >= 412)
|
|
||||||
newId += 5;
|
|
||||||
if (oldID >= 438)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 443)
|
|
||||||
newId += 16;
|
|
||||||
if (oldID >= 484)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 485)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 508)
|
|
||||||
newId += 2;
|
|
||||||
if (oldID >= 513)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 515)
|
|
||||||
newId += 1;
|
|
||||||
if (oldID >= 524)
|
|
||||||
newId += 8;
|
|
||||||
if (oldID >= 531)
|
|
||||||
newId += 1;
|
|
||||||
return newId;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,7 @@ public class MappingData {
|
|||||||
public static Map<String, int[]> itemTags = new HashMap<>();
|
public static Map<String, int[]> itemTags = new HashMap<>();
|
||||||
public static Map<String, int[]> fluidTags = new HashMap<>();
|
public static Map<String, int[]> fluidTags = new HashMap<>();
|
||||||
public static BiMap<Short, String> oldEnchantmentsIds = HashBiMap.create();
|
public static BiMap<Short, String> oldEnchantmentsIds = HashBiMap.create();
|
||||||
|
public static Map<Integer, Integer> oldToNewSounds = new HashMap<>();
|
||||||
|
|
||||||
public static void init() {
|
public static void init() {
|
||||||
JsonObject mapping1_12 = loadData("mapping-1.12.json");
|
JsonObject mapping1_12 = loadData("mapping-1.12.json");
|
||||||
@ -39,6 +40,8 @@ public class MappingData {
|
|||||||
loadTags(fluidTags, mapping1_13.getAsJsonObject("fluid_tags"));
|
loadTags(fluidTags, mapping1_13.getAsJsonObject("fluid_tags"));
|
||||||
System.out.println("Loading enchantments...");
|
System.out.println("Loading enchantments...");
|
||||||
loadEnchantments(oldEnchantmentsIds, mapping1_12.getAsJsonObject("enchantments"));
|
loadEnchantments(oldEnchantmentsIds, mapping1_12.getAsJsonObject("enchantments"));
|
||||||
|
System.out.println("Loading sound mapping...");
|
||||||
|
mapIdentifiers(oldToNewSounds, mapping1_12.getAsJsonArray("sounds"), mapping1_13.getAsJsonArray("sounds"));
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void mapIdentifiers(Map<Integer, Integer> output, JsonObject oldIdentifiers, JsonObject newIdentifiers) {
|
private static void mapIdentifiers(Map<Integer, Integer> output, JsonObject oldIdentifiers, JsonObject newIdentifiers) {
|
||||||
@ -62,6 +65,28 @@ public class MappingData {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void mapIdentifiers(Map<Integer, Integer> output, JsonArray oldIdentifiers, JsonArray newIdentifiers) {
|
||||||
|
for (int i = 0; i < oldIdentifiers.size(); i++) {
|
||||||
|
JsonElement v = oldIdentifiers.get(i);
|
||||||
|
Integer index = findIndex(newIdentifiers, v.getAsString());
|
||||||
|
if (index == null) {
|
||||||
|
System.out.println("No key for " + v + " :( ");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
output.put(i, index);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Integer findIndex(JsonArray array, String value) {
|
||||||
|
for (int i = 0; i < array.size(); i++) {
|
||||||
|
JsonElement v = array.get(i);
|
||||||
|
if (v.getAsString().equals(value)) {
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
private static void loadTags(Map<String, int[]> output, JsonObject newTags) {
|
private static void loadTags(Map<String, int[]> output, JsonObject newTags) {
|
||||||
for (Map.Entry<String, JsonElement> entry : newTags.entrySet()) {
|
for (Map.Entry<String, JsonElement> entry : newTags.entrySet()) {
|
||||||
JsonArray ids = entry.getValue().getAsJsonArray();
|
JsonArray ids = entry.getValue().getAsJsonArray();
|
||||||
|
@ -2409,5 +2409,556 @@
|
|||||||
"62": "minecraft:lure",
|
"62": "minecraft:lure",
|
||||||
"70": "minecraft:mending",
|
"70": "minecraft:mending",
|
||||||
"71": "minecraft:vanishing_curse"
|
"71": "minecraft:vanishing_curse"
|
||||||
}
|
},
|
||||||
|
"sounds": [
|
||||||
|
"ambient.cave",
|
||||||
|
"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.brewing_stand.brew",
|
||||||
|
"block.chest.close",
|
||||||
|
"block.chest.locked",
|
||||||
|
"block.chest.open",
|
||||||
|
"block.chorus_flower.death",
|
||||||
|
"block.chorus_flower.grow",
|
||||||
|
"block.wool.break", // cloth -> wool
|
||||||
|
"block.wool.fall",
|
||||||
|
"block.wool.hit",
|
||||||
|
"block.wool.place",
|
||||||
|
"block.wool.step",
|
||||||
|
"block.comparator.click",
|
||||||
|
"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", // enderchest -> ender_chest
|
||||||
|
"block.ender_chest.open",
|
||||||
|
"block.fence_gate.close",
|
||||||
|
"block.fence_gate.open",
|
||||||
|
"block.fire.ambient",
|
||||||
|
"block.fire.extinguish",
|
||||||
|
"block.furnace.fire_crackle",
|
||||||
|
"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.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.lava.ambient",
|
||||||
|
"block.lava.extinguish",
|
||||||
|
"block.lava.pop",
|
||||||
|
"block.lever.click",
|
||||||
|
"block.metal.break",
|
||||||
|
"block.metal.fall",
|
||||||
|
"block.metal.hit",
|
||||||
|
"block.metal.place",
|
||||||
|
"block.metal.step",
|
||||||
|
"block.metal_pressure_plate.click_off", // metal_pressureplate -> metal_pressure_plate
|
||||||
|
"block.metal_pressure_plate.click_on",
|
||||||
|
"block.note_block.basedrum", // note -> note_block
|
||||||
|
"block.note_block.bass",
|
||||||
|
"block.note_block.bell",
|
||||||
|
"block.note_block.chime",
|
||||||
|
"block.note_block.flute",
|
||||||
|
"block.note_block.guitar",
|
||||||
|
"block.note_block.harp",
|
||||||
|
"block.note_block.hat",
|
||||||
|
"block.note_block.pling",
|
||||||
|
"block.note_block.snare",
|
||||||
|
"block.note_block.xylophone",
|
||||||
|
"block.piston.contract",
|
||||||
|
"block.piston.extend",
|
||||||
|
"block.portal.ambient",
|
||||||
|
"block.portal.travel",
|
||||||
|
"block.portal.trigger",
|
||||||
|
"block.redstone_torch.burnout",
|
||||||
|
"block.sand.break",
|
||||||
|
"block.sand.fall",
|
||||||
|
"block.sand.hit",
|
||||||
|
"block.sand.place",
|
||||||
|
"block.sand.step",
|
||||||
|
"block.shulker_box.close",
|
||||||
|
"block.shulker_box.open",
|
||||||
|
"block.slime_block.break", // slime -> slime_block
|
||||||
|
"block.slime_block.fall",
|
||||||
|
"block.slime_block.hit",
|
||||||
|
"block.slime_block.place",
|
||||||
|
"block.slime_block.step",
|
||||||
|
"block.snow.break",
|
||||||
|
"block.snow.fall",
|
||||||
|
"block.snow.hit",
|
||||||
|
"block.snow.place",
|
||||||
|
"block.snow.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", // stone_pressureplate -> stone_pressure_plate
|
||||||
|
"block.stone_pressure_plate.click_on",
|
||||||
|
"block.tripwire.attach",
|
||||||
|
"block.tripwire.click_off",
|
||||||
|
"block.tripwire.click_on",
|
||||||
|
"block.tripwire.detach",
|
||||||
|
"block.water.ambient",
|
||||||
|
"block.lily_pad.place", // waterlily -> lily_pad
|
||||||
|
"block.wood.break",
|
||||||
|
"block.wood.fall",
|
||||||
|
"block.wood.hit",
|
||||||
|
"block.wood.place",
|
||||||
|
"block.wood.step",
|
||||||
|
"block.wooden_button.click_off", // wood_button -> wooden_button
|
||||||
|
"block.wooden_button.click_on",
|
||||||
|
"block.wooden_pressure_plate.click_off", // wood_pressureplate -> wooden_pressure_plate
|
||||||
|
"block.wooden_pressure_plate.click_on",
|
||||||
|
"block.wooden_door.close",
|
||||||
|
"block.wooden_door.open",
|
||||||
|
"block.wooden_trapdoor.close",
|
||||||
|
"block.wooden_trapdoor.open",
|
||||||
|
"enchant.thorns.hit",
|
||||||
|
"entity.armor_stand.break", // armorstand -> armor_stand
|
||||||
|
"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.blaze.ambient",
|
||||||
|
"entity.blaze.burn",
|
||||||
|
"entity.blaze.death",
|
||||||
|
"entity.blaze.hurt",
|
||||||
|
"entity.blaze.shoot",
|
||||||
|
"entity.boat.paddle_land",
|
||||||
|
"entity.boat.paddle_water",
|
||||||
|
"entity.fishing_bobber.retrieve", // bobber -> fishing_bobber
|
||||||
|
"entity.fishing_bobber.splash",
|
||||||
|
"entity.fishing_bobber.throw",
|
||||||
|
"entity.cat.ambient",
|
||||||
|
"entity.cat.death",
|
||||||
|
"entity.cat.hiss",
|
||||||
|
"entity.cat.hurt",
|
||||||
|
"entity.cat.purr",
|
||||||
|
"entity.cat.purreow",
|
||||||
|
"entity.chicken.ambient",
|
||||||
|
"entity.chicken.death",
|
||||||
|
"entity.chicken.egg",
|
||||||
|
"entity.chicken.hurt",
|
||||||
|
"entity.chicken.step",
|
||||||
|
"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.donkey.ambient",
|
||||||
|
"entity.donkey.angry",
|
||||||
|
"entity.donkey.chest",
|
||||||
|
"entity.donkey.death",
|
||||||
|
"entity.donkey.hurt",
|
||||||
|
"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", // enderdragon -> ender_dragon
|
||||||
|
"entity.ender_dragon.death",
|
||||||
|
"entity.ender_dragon.flap",
|
||||||
|
"entity.ender_dragon.growl",
|
||||||
|
"entity.ender_dragon.hurt",
|
||||||
|
"entity.ender_dragon.shoot",
|
||||||
|
"entity.dragon_fireball.explode", // enderdragon_fireball -> dragon_fireball
|
||||||
|
"entity.ender_eye.death", // endereye -> ender_eye
|
||||||
|
"entity.ender_eye.launch",
|
||||||
|
"entity.enderman.ambient", // endermen -> enderman
|
||||||
|
"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.ender_pearl.throw", // enderpearl -> ender_pearl
|
||||||
|
"entity.evoker_fangs.attack", // evocation -> evoker
|
||||||
|
"entity.evoker.ambient", // evocation_illager -> evoker
|
||||||
|
"entity.evoker.cast_spell",
|
||||||
|
"entity.evoker.death",
|
||||||
|
"entity.evoker.hurt",
|
||||||
|
"entity.evoker.prepare_attack",
|
||||||
|
"entity.evoker.prepare_summon",
|
||||||
|
"entity.evoker.prepare_wololo",
|
||||||
|
"entity.experience_bottle.throw",
|
||||||
|
"entity.experience_orb.pickup",
|
||||||
|
"entity.firework_rocket.blast", // firework -> firework_rocket
|
||||||
|
"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.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.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.death",
|
||||||
|
"entity.husk.hurt",
|
||||||
|
"entity.husk.step",
|
||||||
|
"entity.illusioner.ambient", // illusion_illager -> illusioner
|
||||||
|
"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", // irongolem -> iron_golem
|
||||||
|
"entity.iron_golem.death",
|
||||||
|
"entity.iron_golem.hurt",
|
||||||
|
"entity.iron_golem.step",
|
||||||
|
"entity.item.break",
|
||||||
|
"entity.item.pickup",
|
||||||
|
"entity.item_frame.add_item", // itemframe -> item_frame
|
||||||
|
"entity.item_frame.break",
|
||||||
|
"entity.item_frame.place",
|
||||||
|
"entity.item_frame.remove_item",
|
||||||
|
"entity.item_frame.rotate_item",
|
||||||
|
"entity.leash_knot.break", // leashknot -> leash_knot
|
||||||
|
"entity.leash_knot.place",
|
||||||
|
"entity.lightning_bolt.impact", // lightning -> lightning_bolt
|
||||||
|
"entity.lightning_bolt.thunder",
|
||||||
|
"entity.lingering_potion.throw", // lingeringpotion -> lingering_potion
|
||||||
|
"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", // magmacube -> magma_cube
|
||||||
|
"entity.magma_cube.hurt",
|
||||||
|
"entity.magma_cube.jump",
|
||||||
|
"entity.magma_cube.squish",
|
||||||
|
"entity.minecart.inside",
|
||||||
|
"entity.minecart.riding",
|
||||||
|
"entity.mooshroom.shear",
|
||||||
|
"entity.mule.ambient",
|
||||||
|
"entity.mule.chest",
|
||||||
|
"entity.mule.death",
|
||||||
|
"entity.mule.hurt",
|
||||||
|
"entity.painting.break",
|
||||||
|
"entity.painting.place",
|
||||||
|
"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.elder_guardian",
|
||||||
|
"entity.parrot.imitate.ender_dragon", // enderdragon -> ender_dragon
|
||||||
|
"entity.parrot.imitate.enderman",
|
||||||
|
"entity.parrot.imitate.endermite",
|
||||||
|
"entity.parrot.imitate.evoker", // evocation_illager -> evoker
|
||||||
|
"entity.parrot.imitate.ghast",
|
||||||
|
"entity.parrot.imitate.husk",
|
||||||
|
"entity.parrot.imitate.illusioner", // illusion_illager -> illusioner
|
||||||
|
"entity.parrot.imitate.magma_cube", // magmacube -> magma_cube
|
||||||
|
"entity.parrot.imitate.polar_bear",
|
||||||
|
"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", // vindication_illager
|
||||||
|
"entity.parrot.imitate.witch",
|
||||||
|
"entity.parrot.imitate.wither",
|
||||||
|
"entity.parrot.imitate.wither_skeleton",
|
||||||
|
"entity.parrot.imitate.wolf",
|
||||||
|
"entity.parrot.imitate.zombie",
|
||||||
|
"entity.parrot.imitate.zombie_pigman",
|
||||||
|
"entity.parrot.imitate.zombie_villager",
|
||||||
|
"entity.parrot.step",
|
||||||
|
"entity.pig.ambient",
|
||||||
|
"entity.pig.death",
|
||||||
|
"entity.pig.hurt",
|
||||||
|
"entity.pig.saddle",
|
||||||
|
"entity.pig.step",
|
||||||
|
"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.levelup",
|
||||||
|
"entity.player.small_fall",
|
||||||
|
"entity.player.splash",
|
||||||
|
"entity.player.swim",
|
||||||
|
"entity.polar_bear.ambient",
|
||||||
|
"entity.polar_bear.ambient_baby", // baby_ambient -> ambient_baby
|
||||||
|
"entity.polar_bear.death",
|
||||||
|
"entity.polar_bear.hurt",
|
||||||
|
"entity.polar_bear.step",
|
||||||
|
"entity.polar_bear.warning",
|
||||||
|
"entity.rabbit.ambient",
|
||||||
|
"entity.rabbit.attack",
|
||||||
|
"entity.rabbit.death",
|
||||||
|
"entity.rabbit.hurt",
|
||||||
|
"entity.rabbit.jump",
|
||||||
|
"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.death",
|
||||||
|
"entity.skeleton_horse.hurt",
|
||||||
|
"entity.slime.attack",
|
||||||
|
"entity.slime.death",
|
||||||
|
"entity.slime.hurt",
|
||||||
|
"entity.slime.jump",
|
||||||
|
"entity.slime.squish",
|
||||||
|
"entity.magma_cube.death_small", // moved small to end, magmacube -> magma_cube
|
||||||
|
"entity.magma_cube.hurt_small",
|
||||||
|
"entity.magma_cube.squish_small",
|
||||||
|
"entity.slime.death_small",
|
||||||
|
"entity.slime.hurt_small",
|
||||||
|
"entity.slime.jump_small",
|
||||||
|
"entity.slime.squish_small",
|
||||||
|
"entity.snowball.throw",
|
||||||
|
"entity.snow_golem.ambient", // snowman -> snow_golem
|
||||||
|
"entity.snow_golem.death",
|
||||||
|
"entity.snow_golem.hurt",
|
||||||
|
"entity.snow_golem.shoot",
|
||||||
|
"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.stray.ambient",
|
||||||
|
"entity.stray.death",
|
||||||
|
"entity.stray.hurt",
|
||||||
|
"entity.stray.step",
|
||||||
|
"entity.tnt.primed",
|
||||||
|
"entity.vex.ambient",
|
||||||
|
"entity.vex.charge",
|
||||||
|
"entity.vex.death",
|
||||||
|
"entity.vex.hurt",
|
||||||
|
"entity.villager.ambient",
|
||||||
|
"entity.villager.death",
|
||||||
|
"entity.villager.hurt",
|
||||||
|
"entity.villager.no",
|
||||||
|
"entity.villager.trade", // trading -> trade
|
||||||
|
"entity.villager.yes",
|
||||||
|
"entity.vindicator.ambient", // vindication_illager -> vindicator
|
||||||
|
"entity.vindicator.death",
|
||||||
|
"entity.vindicator.hurt",
|
||||||
|
"entity.witch.ambient",
|
||||||
|
"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.zombie.ambient",
|
||||||
|
"entity.zombie.attack_wooden_door", // door_wood -> wooden_door
|
||||||
|
"entity.zombie.attack_iron_door",
|
||||||
|
"entity.zombie.break_wooden_door", // door_wood -> wooden_door
|
||||||
|
"entity.zombie.death",
|
||||||
|
"entity.zombie.hurt",
|
||||||
|
"entity.zombie.infect",
|
||||||
|
"entity.zombie.step",
|
||||||
|
"entity.zombie_horse.ambient",
|
||||||
|
"entity.zombie_horse.death",
|
||||||
|
"entity.zombie_horse.hurt",
|
||||||
|
"entity.zombie_pigman.ambient", // pig -> pigman
|
||||||
|
"entity.zombie_pigman.angry",
|
||||||
|
"entity.zombie_pigman.death",
|
||||||
|
"entity.zombie_pigman.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",
|
||||||
|
"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.bottle.empty",
|
||||||
|
"item.bottle.fill",
|
||||||
|
"item.bottle.fill_dragonbreath",
|
||||||
|
"item.bucket.empty",
|
||||||
|
"item.bucket.empty_lava",
|
||||||
|
"item.bucket.fill",
|
||||||
|
"item.bucket.fill_lava",
|
||||||
|
"item.chorus_fruit.teleport",
|
||||||
|
"item.elytra.flying",
|
||||||
|
"item.firecharge.use",
|
||||||
|
"item.flintandsteel.use",
|
||||||
|
"item.hoe.till",
|
||||||
|
"item.shield.block",
|
||||||
|
"item.shield.break",
|
||||||
|
"item.shovel.flatten",
|
||||||
|
"item.totem.use",
|
||||||
|
"music.creative",
|
||||||
|
"music.credits",
|
||||||
|
"music.dragon",
|
||||||
|
"music.end",
|
||||||
|
"music.game",
|
||||||
|
"music.menu",
|
||||||
|
"music.nether",
|
||||||
|
"music_disc.11", // record -> music_disc
|
||||||
|
"music_disc.13",
|
||||||
|
"music_disc.blocks",
|
||||||
|
"music_disc.cat",
|
||||||
|
"music_disc.chirp",
|
||||||
|
"music_disc.far",
|
||||||
|
"music_disc.mall",
|
||||||
|
"music_disc.mellohi",
|
||||||
|
"music_disc.stal",
|
||||||
|
"music_disc.strad",
|
||||||
|
"music_disc.wait",
|
||||||
|
"music_disc.ward",
|
||||||
|
"ui.button.click",
|
||||||
|
"ui.toast.in",
|
||||||
|
"ui.toast.out",
|
||||||
|
"ui.toast.challenge_complete",
|
||||||
|
"weather.rain",
|
||||||
|
"weather.rain.above"
|
||||||
|
]
|
||||||
}
|
}
|
@ -9991,5 +9991,669 @@
|
|||||||
4,
|
4,
|
||||||
3
|
3
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
|
"sounds": [
|
||||||
|
"ambient.cave",
|
||||||
|
"ambient.underwater.enter",
|
||||||
|
"ambient.underwater.exit",
|
||||||
|
"ambient.underwater.loop",
|
||||||
|
"ambient.underwater.loop.additions",
|
||||||
|
"ambient.underwater.loop.additions.rare",
|
||||||
|
"ambient.underwater.loop.additions.ultra_rare",
|
||||||
|
"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.beacon.activate",
|
||||||
|
"block.beacon.ambient",
|
||||||
|
"block.beacon.deactivate",
|
||||||
|
"block.beacon.power_select",
|
||||||
|
"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.chest.close",
|
||||||
|
"block.chest.locked",
|
||||||
|
"block.chest.open",
|
||||||
|
"block.chorus_flower.death",
|
||||||
|
"block.chorus_flower.grow",
|
||||||
|
"block.wool.break",
|
||||||
|
"block.wool.fall",
|
||||||
|
"block.wool.hit",
|
||||||
|
"block.wool.place",
|
||||||
|
"block.wool.step",
|
||||||
|
"block.comparator.click",
|
||||||
|
"block.conduit.activate",
|
||||||
|
"block.conduit.ambient",
|
||||||
|
"block.conduit.ambient.short",
|
||||||
|
"block.conduit.attack.target",
|
||||||
|
"block.conduit.deactivate",
|
||||||
|
"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.furnace.fire_crackle",
|
||||||
|
"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.wet_grass.break",
|
||||||
|
"block.wet_grass.fall",
|
||||||
|
"block.wet_grass.hit",
|
||||||
|
"block.wet_grass.place",
|
||||||
|
"block.wet_grass.step",
|
||||||
|
"block.coral_block.break",
|
||||||
|
"block.coral_block.fall",
|
||||||
|
"block.coral_block.hit",
|
||||||
|
"block.coral_block.place",
|
||||||
|
"block.coral_block.step",
|
||||||
|
"block.gravel.break",
|
||||||
|
"block.gravel.fall",
|
||||||
|
"block.gravel.hit",
|
||||||
|
"block.gravel.place",
|
||||||
|
"block.gravel.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.lava.ambient",
|
||||||
|
"block.lava.extinguish",
|
||||||
|
"block.lava.pop",
|
||||||
|
"block.lever.click",
|
||||||
|
"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.note_block.basedrum",
|
||||||
|
"block.note_block.bass",
|
||||||
|
"block.note_block.bell",
|
||||||
|
"block.note_block.chime",
|
||||||
|
"block.note_block.flute",
|
||||||
|
"block.note_block.guitar",
|
||||||
|
"block.note_block.harp",
|
||||||
|
"block.note_block.hat",
|
||||||
|
"block.note_block.pling",
|
||||||
|
"block.note_block.snare",
|
||||||
|
"block.note_block.xylophone",
|
||||||
|
"block.piston.contract",
|
||||||
|
"block.piston.extend",
|
||||||
|
"block.portal.ambient",
|
||||||
|
"block.portal.travel",
|
||||||
|
"block.portal.trigger",
|
||||||
|
"block.pumpkin.carve",
|
||||||
|
"block.redstone_torch.burnout",
|
||||||
|
"block.sand.break",
|
||||||
|
"block.sand.fall",
|
||||||
|
"block.sand.hit",
|
||||||
|
"block.sand.place",
|
||||||
|
"block.sand.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.snow.break",
|
||||||
|
"block.snow.fall",
|
||||||
|
"block.snow.hit",
|
||||||
|
"block.snow.place",
|
||||||
|
"block.snow.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.tripwire.attach",
|
||||||
|
"block.tripwire.click_off",
|
||||||
|
"block.tripwire.click_on",
|
||||||
|
"block.tripwire.detach",
|
||||||
|
"block.water.ambient",
|
||||||
|
"block.lily_pad.place",
|
||||||
|
"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_pressure_plate.click_off",
|
||||||
|
"block.wooden_pressure_plate.click_on",
|
||||||
|
"block.wooden_door.close",
|
||||||
|
"block.wooden_door.open",
|
||||||
|
"block.wooden_trapdoor.close",
|
||||||
|
"block.wooden_trapdoor.open",
|
||||||
|
"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.blaze.ambient",
|
||||||
|
"entity.blaze.burn",
|
||||||
|
"entity.blaze.death",
|
||||||
|
"entity.blaze.hurt",
|
||||||
|
"entity.blaze.shoot",
|
||||||
|
"entity.boat.paddle_land",
|
||||||
|
"entity.boat.paddle_water",
|
||||||
|
"entity.fishing_bobber.retrieve",
|
||||||
|
"entity.fishing_bobber.splash",
|
||||||
|
"entity.fishing_bobber.throw",
|
||||||
|
"entity.cat.ambient",
|
||||||
|
"entity.cat.death",
|
||||||
|
"entity.cat.hiss",
|
||||||
|
"entity.cat.hurt",
|
||||||
|
"entity.cat.purr",
|
||||||
|
"entity.cat.purreow",
|
||||||
|
"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.hurt",
|
||||||
|
"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.dragon_fireball.explode",
|
||||||
|
"entity.ender_eye.death",
|
||||||
|
"entity.ender_eye.launch",
|
||||||
|
"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.ender_pearl.throw",
|
||||||
|
"entity.evoker.ambient",
|
||||||
|
"entity.evoker.cast_spell",
|
||||||
|
"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.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.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.death",
|
||||||
|
"entity.iron_golem.hurt",
|
||||||
|
"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.hurt",
|
||||||
|
"entity.magma_cube.jump",
|
||||||
|
"entity.magma_cube.squish",
|
||||||
|
"entity.minecart.inside",
|
||||||
|
"entity.minecart.riding",
|
||||||
|
"entity.mooshroom.shear",
|
||||||
|
"entity.mule.ambient",
|
||||||
|
"entity.mule.chest",
|
||||||
|
"entity.mule.death",
|
||||||
|
"entity.mule.hurt",
|
||||||
|
"entity.painting.break",
|
||||||
|
"entity.painting.place",
|
||||||
|
"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.enderman",
|
||||||
|
"entity.parrot.imitate.endermite",
|
||||||
|
"entity.parrot.imitate.evoker",
|
||||||
|
"entity.parrot.imitate.ghast",
|
||||||
|
"entity.parrot.imitate.husk",
|
||||||
|
"entity.parrot.imitate.illusioner",
|
||||||
|
"entity.parrot.imitate.magma_cube",
|
||||||
|
"entity.parrot.imitate.phantom",
|
||||||
|
"entity.parrot.imitate.polar_bear",
|
||||||
|
"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.wolf",
|
||||||
|
"entity.parrot.imitate.zombie",
|
||||||
|
"entity.parrot.imitate.zombie_pigman",
|
||||||
|
"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.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.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.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.death",
|
||||||
|
"entity.skeleton_horse.hurt",
|
||||||
|
"entity.skeleton_horse.swim",
|
||||||
|
"entity.skeleton_horse.ambient_water",
|
||||||
|
"entity.skeleton_horse.gallop_water",
|
||||||
|
"entity.skeleton_horse.jump_water",
|
||||||
|
"entity.skeleton_horse.step_water",
|
||||||
|
"entity.slime.attack",
|
||||||
|
"entity.slime.death",
|
||||||
|
"entity.slime.hurt",
|
||||||
|
"entity.slime.jump",
|
||||||
|
"entity.slime.squish",
|
||||||
|
"entity.magma_cube.death_small",
|
||||||
|
"entity.magma_cube.hurt_small",
|
||||||
|
"entity.magma_cube.squish_small",
|
||||||
|
"entity.slime.death_small",
|
||||||
|
"entity.slime.hurt_small",
|
||||||
|
"entity.slime.jump_small",
|
||||||
|
"entity.slime.squish_small",
|
||||||
|
"entity.snow_golem.ambient",
|
||||||
|
"entity.snow_golem.death",
|
||||||
|
"entity.snow_golem.hurt",
|
||||||
|
"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.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.death",
|
||||||
|
"entity.villager.hurt",
|
||||||
|
"entity.villager.no",
|
||||||
|
"entity.villager.trade",
|
||||||
|
"entity.villager.yes",
|
||||||
|
"entity.vindicator.ambient",
|
||||||
|
"entity.vindicator.death",
|
||||||
|
"entity.vindicator.hurt",
|
||||||
|
"entity.witch.ambient",
|
||||||
|
"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.zombie.ambient",
|
||||||
|
"entity.zombie.attack_wooden_door",
|
||||||
|
"entity.zombie.attack_iron_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_pigman.ambient",
|
||||||
|
"entity.zombie_pigman.angry",
|
||||||
|
"entity.zombie_pigman.death",
|
||||||
|
"entity.zombie_pigman.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",
|
||||||
|
"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_turtle",
|
||||||
|
"item.axe.strip",
|
||||||
|
"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.elytra.flying",
|
||||||
|
"item.firecharge.use",
|
||||||
|
"item.flintandsteel.use",
|
||||||
|
"item.hoe.till",
|
||||||
|
"item.shield.block",
|
||||||
|
"item.shield.break",
|
||||||
|
"item.shovel.flatten",
|
||||||
|
"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",
|
||||||
|
"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.stal",
|
||||||
|
"music_disc.strad",
|
||||||
|
"music_disc.wait",
|
||||||
|
"music_disc.ward",
|
||||||
|
"ui.button.click",
|
||||||
|
"ui.toast.challenge_complete",
|
||||||
|
"ui.toast.in",
|
||||||
|
"ui.toast.out",
|
||||||
|
"weather.rain",
|
||||||
|
"weather.rain.above"
|
||||||
|
]
|
||||||
}
|
}
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren