From cfd3179cb83d3ae79571ae921d5ddc3e5e1097f9 Mon Sep 17 00:00:00 2001 From: creeper123123321 Date: Sun, 11 Nov 2018 11:57:33 -0200 Subject: [PATCH] try to eat less ram --- .../data/MappingData.java | 14 +- .../data/mapping-lang-1.12-1.13.json | 1071 ++++++++++++++++- 2 files changed, 1081 insertions(+), 4 deletions(-) diff --git a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/MappingData.java b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/MappingData.java index 4ec3c9776..8fca9c3f3 100644 --- a/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/MappingData.java +++ b/common/src/main/java/us/myles/ViaVersion/protocols/protocol1_13to1_12_2/data/MappingData.java @@ -49,7 +49,8 @@ public class MappingData { Via.getPlatform().getLogger().info("Loading sound mapping..."); soundMappings = new SoundMappingShortArray(mapping1_12.getAsJsonArray("sounds"), mapping1_13.getAsJsonArray("sounds")); Via.getPlatform().getLogger().info("Loading translation mappping"); - translateMapping = GsonUtil.getGson().fromJson( + translateMapping = new HashMap<>(); + Map translateData = GsonUtil.getGson().fromJson( new InputStreamReader( MappingData.class.getClassLoader() .getResourceAsStream("assets/viaversion/data/mapping-lang-1.12-1.13.json") @@ -65,8 +66,15 @@ public class MappingData { if (line.isEmpty()) continue; String[] keyAndTranslation = line.split("=", 2); if (keyAndTranslation.length != 2) continue; - if (!translateMapping.containsKey(keyAndTranslation[0])) { - translateMapping.put(keyAndTranslation[0], keyAndTranslation[1]); + String key = keyAndTranslation[0]; + String translation = keyAndTranslation[1]; + if (!translateData.containsKey(key)) { + translateMapping.put(key, translation); + } else { + String dataValue = translateData.get(keyAndTranslation[0]); + if (dataValue != null) { + translateMapping.put(key, dataValue); + } } } } catch (IOException e) { diff --git a/common/src/main/resources/assets/viaversion/data/mapping-lang-1.12-1.13.json b/common/src/main/resources/assets/viaversion/data/mapping-lang-1.12-1.13.json index 585c3981f..7fcc2d5c3 100644 --- a/common/src/main/resources/assets/viaversion/data/mapping-lang-1.12-1.13.json +++ b/common/src/main/resources/assets/viaversion/data/mapping-lang-1.12-1.13.json @@ -1,30 +1,504 @@ { + "language.name": null, + "language.region": null, + "language.code": null, + "gui.done": null, + "gui.cancel": null, + "gui.back": null, + "gui.toTitle": null, + "gui.toMenu": null, + "gui.up": null, + "gui.down": null, + "gui.yes": null, + "gui.no": null, + "gui.none": null, + "gui.all": null, + "gui.recipebook.moreRecipes": null, + "gui.recipebook.toggleRecipes.all": null, + "gui.recipebook.toggleRecipes.craftable": null, + "translation.test.none": null, + "translation.test.complex": null, + "translation.test.escape": null, + "translation.test.invalid": null, + "translation.test.invalid2": null, + "translation.test.args": null, + "translation.test.world": null, + "menu.game": null, + "menu.singleplayer": null, + "menu.multiplayer": null, + "menu.online": null, + "menu.options": null, + "menu.quit": null, + "menu.returnToMenu": null, + "menu.disconnect": null, + "menu.returnToGame": null, + "menu.generatingLevel": null, + "menu.loadingLevel": null, + "menu.generatingTerrain": null, + "menu.convertingLevel": null, + "menu.respawning": null, + "menu.shareToLan": null, + "selectWorld.title": null, + "selectWorld.empty": null, + "selectWorld.world": null, + "selectWorld.select": null, + "selectWorld.create": null, + "selectWorld.recreate": null, + "selectWorld.createDemo": null, + "selectWorld.delete": null, + "selectWorld.edit": null, + "selectWorld.edit.title": null, + "selectWorld.edit.resetIcon": null, + "selectWorld.deleteQuestion": null, "selectWorld.deleteButton": "selectWorld.delete", + "selectWorld.conversion": null, + "selectWorld.newWorld": null, + "selectWorld.newWorld.copyOf": null, + "selectWorld.enterName": null, + "selectWorld.resultFolder": null, + "selectWorld.enterSeed": null, + "selectWorld.seedInfo": null, + "selectWorld.cheats": null, + "selectWorld.customizeType": null, + "selectWorld.version": null, + "selectWorld.versionUnknown": null, + "selectWorld.versionQuestion": null, + "selectWorld.tooltip.fromNewerVersion1": null, + "selectWorld.tooltip.fromNewerVersion2": null, + "selectWorld.tooltip.snapshot1": null, + "selectWorld.tooltip.snapshot2": null, + "selectWorld.unable_to_load": null, + "selectWorld.load_folder_access": null, + "createWorld.customize.presets": null, + "createWorld.customize.presets.title": null, + "createWorld.customize.presets.select": null, + "createWorld.customize.presets.share": null, + "createWorld.customize.presets.list": null, + "createWorld.customize.flat.title": null, + "createWorld.customize.flat.tile": null, + "createWorld.customize.flat.height": null, + "createWorld.customize.flat.addLayer": null, + "createWorld.customize.flat.editLayer": null, + "createWorld.customize.flat.removeLayer": null, + "createWorld.customize.flat.layer.top": null, + "createWorld.customize.flat.layer": null, + "createWorld.customize.flat.layer.bottom": null, + "createWorld.customize.preset.classic_flat": null, + "createWorld.customize.preset.tunnelers_dream": null, + "createWorld.customize.preset.water_world": null, + "createWorld.customize.preset.overworld": null, + "createWorld.customize.preset.snowy_kingdom": null, + "createWorld.customize.preset.bottomless_pit": null, + "createWorld.customize.preset.desert": null, + "createWorld.customize.preset.redstone_ready": null, + "createWorld.customize.preset.the_void": null, + "createWorld.customize.custom.page0": null, + "createWorld.customize.custom.page1": null, + "createWorld.customize.custom.page2": null, + "createWorld.customize.custom.page3": null, + "createWorld.customize.custom.randomize": null, + "createWorld.customize.custom.prev": null, + "createWorld.customize.custom.next": null, + "createWorld.customize.custom.defaults": null, + "createWorld.customize.custom.confirm1": null, + "createWorld.customize.custom.confirm2": null, + "createWorld.customize.custom.confirmTitle": null, + "createWorld.customize.custom.mainNoiseScaleX": null, + "createWorld.customize.custom.mainNoiseScaleY": null, + "createWorld.customize.custom.mainNoiseScaleZ": null, + "createWorld.customize.custom.depthNoiseScaleX": null, + "createWorld.customize.custom.depthNoiseScaleZ": null, + "createWorld.customize.custom.depthNoiseScaleExponent": null, + "createWorld.customize.custom.baseSize": null, + "createWorld.customize.custom.coordinateScale": null, + "createWorld.customize.custom.heightScale": null, + "createWorld.customize.custom.stretchY": null, + "createWorld.customize.custom.upperLimitScale": null, + "createWorld.customize.custom.lowerLimitScale": null, + "createWorld.customize.custom.biomeDepthWeight": null, + "createWorld.customize.custom.biomeDepthOffset": null, + "createWorld.customize.custom.biomeScaleWeight": null, + "createWorld.customize.custom.biomeScaleOffset": null, + "createWorld.customize.custom.seaLevel": null, + "createWorld.customize.custom.useCaves": null, + "createWorld.customize.custom.useStrongholds": null, + "createWorld.customize.custom.useVillages": null, + "createWorld.customize.custom.useMineShafts": null, + "createWorld.customize.custom.useTemples": null, + "createWorld.customize.custom.useMonuments": null, + "createWorld.customize.custom.useMansions": null, + "createWorld.customize.custom.useRavines": null, + "createWorld.customize.custom.useDungeons": null, + "createWorld.customize.custom.dungeonChance": null, + "createWorld.customize.custom.useWaterLakes": null, + "createWorld.customize.custom.waterLakeChance": null, + "createWorld.customize.custom.useLavaLakes": null, + "createWorld.customize.custom.lavaLakeChance": null, + "createWorld.customize.custom.useLavaOceans": null, + "createWorld.customize.custom.fixedBiome": null, + "createWorld.customize.custom.biomeSize": null, + "createWorld.customize.custom.riverSize": null, + "createWorld.customize.custom.size": null, + "createWorld.customize.custom.count": null, + "createWorld.customize.custom.minHeight": null, + "createWorld.customize.custom.maxHeight": null, + "createWorld.customize.custom.center": null, + "createWorld.customize.custom.spread": null, + "createWorld.customize.custom.presets.title": null, "createWorld.customize.custom.presets": "createWorld.customize.presets", "createWorld.customize.custom.preset.waterWorld": "createWorld.customize.preset.water_world", + "createWorld.customize.custom.preset.isleLand": null, + "createWorld.customize.custom.preset.caveDelight": null, + "createWorld.customize.custom.preset.mountains": null, + "createWorld.customize.custom.preset.drought": null, + "createWorld.customize.custom.preset.caveChaos": null, + "createWorld.customize.custom.preset.goodLuck": null, + "gameMode.survival": null, + "gameMode.creative": null, + "gameMode.adventure": null, + "gameMode.spectator": null, + "gameMode.hardcore": null, + "gameMode.changed": null, "spectatorMenu.previous_page": "createWorld.customize.custom.prev", "spectatorMenu.next_page": "createWorld.customize.custom.next", + "spectatorMenu.close": null, + "spectatorMenu.teleport": null, + "spectatorMenu.teleport.prompt": null, + "spectatorMenu.team_teleport": null, + "spectatorMenu.team_teleport.prompt": null, + "spectatorMenu.root.prompt": null, + "selectWorld.gameMode": null, + "selectWorld.gameMode.survival": null, + "selectWorld.gameMode.survival.line1": null, + "selectWorld.gameMode.survival.line2": null, + "selectWorld.gameMode.creative": null, + "selectWorld.gameMode.creative.line1": null, + "selectWorld.gameMode.creative.line2": null, + "selectWorld.gameMode.spectator": null, + "selectWorld.gameMode.spectator.line1": null, + "selectWorld.gameMode.spectator.line2": null, + "selectWorld.gameMode.hardcore": null, + "selectWorld.gameMode.hardcore.line1": null, + "selectWorld.gameMode.hardcore.line2": null, + "selectWorld.gameMode.adventure": null, + "selectWorld.gameMode.adventure.line1": null, + "selectWorld.gameMode.adventure.line2": null, + "selectWorld.moreWorldOptions": null, + "selectWorld.mapFeatures": null, + "selectWorld.mapFeatures.info": null, + "selectWorld.mapType": null, + "selectWorld.mapType.normal": null, + "selectWorld.allowCommands": null, + "selectWorld.hardcoreMode": null, + "selectWorld.hardcoreMode.info": null, + "selectWorld.bonusItems": null, + "generator.default": null, + "generator.flat": null, + "generator.largeBiomes": null, + "generator.amplified": null, + "generator.customized": null, + "generator.debug_all_block_states": null, + "generator.amplified.info": null, + "selectServer.title": null, "selectServer.empty": "selectWorld.empty", + "selectServer.select": null, + "selectServer.direct": null, "selectServer.edit": "selectWorld.edit", "selectServer.delete": "selectWorld.delete", + "selectServer.add": null, + "selectServer.defaultName": null, + "selectServer.deleteQuestion": null, "selectServer.deleteButton": "selectWorld.delete", + "selectServer.refresh": null, + "selectServer.hiddenAddress": null, + "addServer.title": null, + "addServer.enterName": null, + "addServer.enterIp": null, "addServer.add": "gui.done", + "addServer.hideAddress": null, + "addServer.resourcePack": null, + "addServer.resourcePack.enabled": null, + "addServer.resourcePack.disabled": null, + "addServer.resourcePack.prompt": null, + "lanServer.title": null, + "lanServer.scanning": null, + "lanServer.start": null, + "lanServer.otherPlayers": null, + "mcoServer.title": null, + "multiplayer.title": null, + "multiplayer.connect": null, + "multiplayer.ipinfo": null, + "multiplayer.texturePrompt.line1": null, + "multiplayer.texturePrompt.line2": null, + "multiplayer.downloadingStats": null, + "multiplayer.stopSleeping": null, + "multiplayer.player.joined": null, + "multiplayer.player.joined.renamed": null, + "multiplayer.player.left": null, + "multiplayer.status.and_more": null, + "multiplayer.status.cancelled": null, + "multiplayer.status.cannot_connect": null, + "multiplayer.status.cannot_resolve": null, + "multiplayer.status.client_out_of_date": null, + "multiplayer.status.no_connection": null, + "multiplayer.status.old": null, + "multiplayer.status.pinging": null, + "multiplayer.status.server_out_of_date": null, + "multiplayer.status.unknown": null, + "multiplayer.status.unrequested": null, + "multiplayer.disconnect.authservers_down": null, + "multiplayer.disconnect.duplicate_login": null, + "multiplayer.disconnect.flying": null, + "multiplayer.disconnect.generic": null, + "multiplayer.disconnect.idling": null, + "multiplayer.disconnect.illegal_characters": null, + "multiplayer.disconnect.invalid_entity_attacked": null, + "multiplayer.disconnect.invalid_player_movement": null, + "multiplayer.disconnect.invalid_vehicle_movement": null, + "multiplayer.disconnect.outdated_client": null, + "multiplayer.disconnect.outdated_server": null, + "multiplayer.disconnect.server_shutdown": null, + "multiplayer.disconnect.slow_login": null, + "multiplayer.disconnect.unverified_username": null, + "chat.cannotSend": null, + "chat.type.text": null, + "chat.type.text.narrate": null, + "chat.type.emote": null, + "chat.type.announcement": null, + "chat.type.admin": null, + "chat.type.advancement.task": null, + "chat.type.advancement.challenge": null, + "chat.type.advancement.goal": null, + "chat.link.confirm": null, + "chat.link.warning": null, + "chat.copy": null, + "chat.link.confirmTrusted": null, + "chat.link.open": null, + "menu.playdemo": null, + "menu.resetdemo": null, + "demo.day.1": null, + "demo.day.2": null, + "demo.day.3": null, + "demo.day.4": null, + "demo.day.5": null, + "demo.day.warning": null, + "demo.reminder": null, + "demo.remainingTime": null, + "demo.demoExpired": null, + "demo.help.movement": null, + "demo.help.movementShort": null, + "demo.help.movementMouse": null, + "demo.help.jump": null, + "demo.help.inventory": null, + "demo.help.title": null, + "demo.help.fullWrapped": null, + "demo.help.buy": null, + "demo.help.later": null, + "connect.connecting": null, + "connect.authorizing": null, + "connect.failed": null, "disconnect.genericReason": "createWorld.customize.flat.layer", + "disconnect.disconnected": null, + "disconnect.lost": null, + "disconnect.kicked": null, + "disconnect.timeout": null, + "disconnect.closed": null, + "disconnect.loginFailedInfo.serversUnavailable": null, + "disconnect.loginFailedInfo.invalidSession": null, "disconnect.quitting": "multiplayer.status.quitting", + "disconnect.endOfStream": null, + "disconnect.overflow": null, + "disconnect.spam": null, + "soundCategory.master": null, + "soundCategory.music": null, + "soundCategory.record": null, + "soundCategory.weather": null, + "soundCategory.hostile": null, + "soundCategory.neutral": null, + "soundCategory.player": null, + "soundCategory.block": null, + "soundCategory.ambient": null, + "soundCategory.voice": null, + "record.nowPlaying": null, + "options.off": null, + "options.on": null, + "options.visible": null, + "options.hidden": null, + "options.title": null, + "options.controls": null, + "options.video": null, + "options.language": null, + "options.sounds": null, + "options.sounds.title": null, + "options.languageWarning": null, + "options.videoTitle": null, + "options.customizeTitle": null, "options.music": "soundCategory.music", + "options.sound": null, + "options.invertMouse": null, + "options.fov": null, "options.fov.min": "selectWorld.mapType.normal", + "options.fov.max": null, + "options.saturation": null, + "options.gamma": null, + "options.gamma.min": null, + "options.gamma.max": null, + "options.sensitivity": null, + "options.sensitivity.min": null, + "options.sensitivity.max": null, + "options.renderDistance": null, + "options.viewBobbing": null, + "options.ao": null, "options.ao.off": "options.off", + "options.ao.min": null, + "options.ao.max": null, + "options.anaglyph": null, + "options.chunks": null, + "options.framerate": null, + "options.framerateLimit": null, + "options.framerateLimit.max": null, + "options.difficulty": null, + "options.difficulty.peaceful": null, + "options.difficulty.easy": null, "options.difficulty.normal": "selectWorld.mapType.normal", + "options.difficulty.hard": null, "options.difficulty.hardcore": "selectWorld.gameMode.hardcore", + "options.graphics": null, + "options.graphics.fancy": null, + "options.graphics.fast": null, "options.clouds.fancy": "options.graphics.fancy", "options.clouds.fast": "options.graphics.fast", + "options.guiScale": null, + "options.guiScale.auto": null, "options.guiScale.normal": "selectWorld.mapType.normal", + "options.renderClouds": null, + "options.particles": null, "options.particles.all": "gui.all", + "options.particles.decreased": null, + "options.particles.minimal": null, + "options.multiplayer.title": null, + "options.chat.title": null, + "options.chat.visibility": null, "options.chat.visibility.full": "options.visible", + "options.chat.visibility.system": null, "options.chat.visibility.hidden": "options.hidden", + "options.chat.color": null, + "options.chat.opacity": null, + "options.chat.links": null, + "options.chat.links.prompt": null, + "options.chat.scale": null, + "options.chat.width": null, + "options.chat.height.focused": null, + "options.chat.height.unfocused": null, + "options.skinCustomisation": null, + "options.skinCustomisation.title": null, + "options.modelPart.cape": null, + "options.modelPart.hat": null, + "options.modelPart.jacket": null, + "options.modelPart.left_sleeve": null, + "options.modelPart.right_sleeve": null, + "options.modelPart.left_pants_leg": null, + "options.modelPart.right_pants_leg": null, + "options.snooper": null, + "options.snooper.view": null, + "options.snooper.title": null, + "options.snooper.desc": null, + "options.resourcepack": null, + "options.fullscreen": null, + "options.vsync": null, + "options.vbo": null, + "options.touchscreen": null, + "options.reducedDebugInfo": null, + "options.entityShadows": null, + "options.mainHand": null, + "options.mainHand.left": null, + "options.mainHand.right": null, + "options.attackIndicator": null, + "options.attack.crosshair": null, + "options.attack.hotbar": null, + "options.showSubtitles": null, + "options.realmsNotifications": null, + "options.autoJump": null, + "options.narrator": null, + "options.narrator.all": null, + "options.narrator.chat": null, + "options.narrator.system": null, + "options.narrator.notavailable": null, + "options.mipmapLevels": null, + "options.forceUnicodeFont": null, + "narrator.toast.disabled": null, + "narrator.toast.enabled": null, + "difficulty.lock.title": null, + "difficulty.lock.question": null, + "title.oldgl1": null, + "title.oldgl2": null, + "controls.title": null, + "controls.reset": null, + "controls.resetAll": null, + "key.sprint": null, + "key.forward": null, + "key.left": null, + "key.back": null, + "key.right": null, + "key.jump": null, + "key.inventory": null, + "key.drop": null, + "key.swapHands": null, + "key.chat": null, + "key.sneak": null, + "key.playerlist": null, + "key.attack": null, + "key.use": null, + "key.pickItem": null, "key.mouseButton": "key.mouse", + "key.command": null, + "key.screenshot": null, + "key.togglePerspective": null, + "key.smoothCamera": null, + "key.fullscreen": null, + "key.spectatorOutlines": null, + "key.hotbar.1": null, + "key.hotbar.2": null, + "key.hotbar.3": null, + "key.hotbar.4": null, + "key.hotbar.5": null, + "key.hotbar.6": null, + "key.hotbar.7": null, + "key.hotbar.8": null, + "key.hotbar.9": null, + "key.saveToolbarActivator": null, + "key.loadToolbarActivator": null, + "key.advancements": null, + "key.categories.movement": null, + "key.categories.misc": null, "key.categories.multiplayer": "menu.multiplayer", + "key.categories.gameplay": null, + "key.categories.ui": null, + "key.categories.inventory": null, "key.categories.creative": "gameMode.creative", + "resourcePack.openFolder": null, + "resourcePack.title": null, + "resourcePack.available.title": null, + "resourcePack.selected.title": null, + "resourcePack.folderInfo": null, + "resourcePack.incompatible": null, + "resourcePack.incompatible.old": null, + "resourcePack.incompatible.new": null, + "resourcePack.incompatible.confirm.title": null, + "resourcePack.incompatible.confirm.old": null, + "resourcePack.incompatible.confirm.new": null, + "sign.edit": null, + "book.pageIndicator": null, + "book.byAuthor": null, + "book.signButton": null, + "book.editTitle": null, + "book.finalizeButton": null, + "book.finalizeWarning": null, + "book.generation.0": null, + "book.generation.1": null, + "book.generation.2": null, + "book.generation.3": null, + "merchant.deprecated": null, "tile.air.name": "block.minecraft.air", "tile.barrier.name": "block.minecraft.barrier", "tile.stone.stone.name": "block.minecraft.stone", @@ -650,15 +1124,73 @@ "item.ironNugget.name": "item.minecraft.iron_nugget", "item.knowledgeBook.name": "item.minecraft.knowledge_book", "container.inventory": "key.categories.inventory", + "container.hopper": null, + "container.crafting": null, "container.dispenser": "block.minecraft.dispenser", "container.dropper": "block.minecraft.dropper", "container.furnace": "block.minecraft.furnace", + "container.enchant": null, + "container.enchant.lapis.one": null, + "container.enchant.lapis.many": null, + "container.enchant.level.one": null, + "container.enchant.level.many": null, + "container.enchant.level.requirement": null, + "container.enchant.clue": null, + "container.repair": null, + "container.repair.cost": null, + "container.repair.expensive": null, + "container.creative": null, "container.brewing": "block.minecraft.brewing_stand", "container.chest": "block.minecraft.chest", + "container.chestDouble": null, "container.enderchest": "block.minecraft.ender_chest", "container.beacon": "block.minecraft.beacon", "container.shulkerBox": "block.minecraft.shulker_box", + "container.shulkerBox.more": null, + "container.spectatorCantOpen": null, + "container.isLocked": null, + "structure_block.save_success": null, + "structure_block.save_failure": null, + "structure_block.load_success": null, + "structure_block.load_prepare": null, + "structure_block.load_not_found": null, + "structure_block.size_success": null, "structure_block.mode.save": "selectWorld.edit.save", + "structure_block.mode.load": null, + "structure_block.mode.data": null, + "structure_block.mode.corner": null, + "structure_block.hover.save": null, + "structure_block.hover.load": null, + "structure_block.hover.data": null, + "structure_block.hover.corner": null, + "structure_block.mode_info.save": null, + "structure_block.mode_info.load": null, + "structure_block.mode_info.data": null, + "structure_block.mode_info.corner": null, + "structure_block.structure_name": null, + "structure_block.custom_data": null, + "structure_block.position": null, + "structure_block.size": null, + "structure_block.integrity": null, + "structure_block.include_entities": null, + "structure_block.detect_size": null, + "structure_block.button.detect_size": null, + "structure_block.button.save": null, + "structure_block.button.load": null, + "structure_block.show_air": null, + "structure_block.show_boundingbox": null, + "item.dyed": null, + "item.unbreakable": null, + "item.canBreak": null, + "item.canPlace": null, + "item.color": null, + "item.nbt_tags": null, + "item.durability": null, + "filled_map.mansion": null, + "filled_map.monument": null, + "filled_map.unknown": null, + "filled_map.level": null, + "filled_map.scale": null, "entity.Item.name": "entity.minecraft.item", "entity.XPOrb.name": "entity.minecraft.experience_orb", "entity.SmallFireball.name": "entity.minecraft.small_fireball", @@ -739,8 +1271,64 @@ "entity.MinecartChest.name": "item.minecraft.chest_minecart", "entity.Boat.name": "entity.minecraft.boat", "entity.generic.name": "selectWorld.versionUnknown", + "death.fell.accident.ladder": null, + "death.fell.accident.vines": null, + "death.fell.accident.water": null, + "death.fell.accident.generic": null, + "death.fell.killer": null, + "death.fell.assist": null, + "death.fell.assist.item": null, + "death.fell.finish": null, + "death.fell.finish.item": null, + "death.attack.lightningBolt": null, + "death.attack.inFire": null, + "death.attack.inFire.player": null, + "death.attack.onFire": null, + "death.attack.onFire.player": null, + "death.attack.lava": null, + "death.attack.lava.player": null, + "death.attack.hotFloor.player": null, + "death.attack.inWall": null, + "death.attack.cramming": null, + "death.attack.drown": null, + "death.attack.drown.player": null, + "death.attack.starve": null, + "death.attack.cactus": null, + "death.attack.cactus.player": null, + "death.attack.generic": null, + "death.attack.explosion": null, + "death.attack.explosion.player": null, + "death.attack.magic": null, + "death.attack.wither": null, + "death.attack.anvil": null, + "death.attack.fallingBlock": null, + "death.attack.mob": null, "death.attack.player": "death.attack.mob", "death.attack.player.item": "death.attack.mob.item", + "death.attack.arrow": null, + "death.attack.arrow.item": null, + "death.attack.fireball": null, + "death.attack.fireball.item": null, + "death.attack.thrown": null, + "death.attack.thrown.item": null, + "death.attack.indirectMagic": null, + "death.attack.indirectMagic.item": null, + "death.attack.thorns": null, + "death.attack.fall": null, + "death.attack.outOfWorld": null, + "death.attack.dragonBreath": null, + "death.attack.flyIntoWall": null, + "death.attack.fireworks": null, + "deathScreen.respawn": null, + "deathScreen.spectate": null, + "deathScreen.deleteWorld": null, + "deathScreen.titleScreen": null, + "deathScreen.score": null, + "deathScreen.title.hardcore": null, + "deathScreen.title": null, + "deathScreen.leaveServer": null, + "deathScreen.quit.confirm": null, + "effect.none": null, "effect.moveSpeed": "effect.minecraft.speed", "effect.moveSlowdown": "effect.minecraft.slowness", "effect.digSpeed": "effect.minecraft.haste", @@ -788,6 +1376,7 @@ "tipped_arrow.effect.weakness": "item.minecraft.tipped_arrow.effect.weakness", "tipped_arrow.effect.levitation": "item.minecraft.tipped_arrow.effect.levitation", "tipped_arrow.effect.luck": "item.minecraft.tipped_arrow.effect.luck", + "potion.whenDrank": null, "potion.effect.empty": "item.minecraft.potion.effect.empty", "potion.effect.water": "item.minecraft.potion.effect.water", "potion.effect.mundane": "item.minecraft.potion.effect.mundane", @@ -849,6 +1438,8 @@ "lingering_potion.effect.levitation": "item.minecraft.lingering_potion.effect.levitation", "lingering_potion.effect.luck": "item.minecraft.lingering_potion.effect.luck", "potion.potency.0": "selectWorld.gameMode.spectator.line2", + "potion.potency.1": null, + "potion.potency.2": null, "enchantment.damage.all": "enchantment.minecraft.sharpness", "enchantment.damage.undead": "enchantment.minecraft.smite", "enchantment.damage.arthropods": "enchantment.minecraft.bane_of_arthropods", @@ -879,13 +1470,27 @@ "enchantment.mending": "enchantment.minecraft.mending", "enchantment.binding_curse": "enchantment.minecraft.binding_curse", "enchantment.vanishing_curse": "enchantment.minecraft.vanishing_curse", + "enchantment.level.1": null, "enchantment.level.2": "potion.potency.1", "enchantment.level.3": "potion.potency.2", "enchantment.level.4": "potion.potency.3", "enchantment.level.5": "potion.potency.4", "enchantment.level.6": "potion.potency.5", + "enchantment.level.7": null, + "enchantment.level.8": null, + "enchantment.level.9": null, + "enchantment.level.10": null, "gui.advancements": "key.advancements", + "gui.stats": null, + "advancements.empty": null, + "advancements.toast.task": null, + "advancements.toast.challenge": null, + "advancements.toast.goal": null, + "stats.tooltip.type.statistic": null, + "stat.generalButton": null, "stat.blocksButton": "soundCategory.block", + "stat.itemsButton": null, + "stat.mobsButton": null, "stat.used": "stat_type.minecraft.used", "stat.mined": "stat_type.minecraft.mined", "stat.crafted": "stat_type.minecraft.crafted", @@ -945,7 +1550,10 @@ "stat.chestOpened": "stat.minecraft.open_chest", "stat.shulkerBoxOpened": "stat.minecraft.open_shulker_box", "stat.sleepInBed": "stat.minecraft.sleep_in_bed", + "recipe.toast.title": null, + "recipe.toast.description": null, "commands.setblock.success": "subtitles.block.generic.place", + "commands.time.set": null, "commands.kill.successful": "commands.kill.success.single", "commands.save-on.alreadyOn": "commands.save.alreadyOn", "commands.save-off.alreadyOff": "commands.save.alreadyOff", @@ -953,17 +1561,84 @@ "commands.tp.success": "commands.teleport.success.entity.single", "commands.tp.success.coordinates": "commands.teleport.success.location.single", "commands.teleport.success.coordinates": "commands.teleport.success.location.single", + "commands.whitelist.reloaded": null, + "commands.whitelist.add.success": null, + "commands.whitelist.remove.success": null, + "commands.advancement.advancementNotFound": null, "commands.scoreboard.players.enable.success": "commands.scoreboard.players.enable.success.single", "commands.scoreboard.teams.remove.success": "commands.team.remove.success", + "commands.gamemode.success.self": null, + "commands.gamemode.success.other": null, + "commands.publish.started": null, + "commands.publish.failed": null, "commands.debug.start": "commands.debug.started", + "commands.message.display.outgoing": null, + "commands.message.display.incoming": null, + "commands.seed.success": null, + "itemGroup.buildingBlocks": null, + "itemGroup.decorations": null, "itemGroup.redstone": "item.minecraft.redstone", + "itemGroup.transportation": null, "itemGroup.misc": "key.categories.misc", + "itemGroup.search": null, + "itemGroup.food": null, + "itemGroup.tools": null, + "itemGroup.combat": null, + "itemGroup.brewing": null, + "itemGroup.materials": null, + "itemGroup.inventory": null, + "itemGroup.hotbar": null, + "inventory.binSlot": null, + "inventory.hotbarSaved": null, + "inventory.hotbarInfo": null, + "advMode.setCommand": null, + "advMode.setCommand.success": null, + "advMode.command": null, + "advMode.nearestPlayer": null, + "advMode.randomPlayer": null, + "advMode.allPlayers": null, + "advMode.allEntities": null, + "advMode.self": null, + "advMode.previousOutput": null, + "advMode.mode.sequence": null, + "advMode.mode.auto": null, + "advMode.mode.redstone": null, + "advMode.mode.conditional": null, + "advMode.mode.unconditional": null, + "advMode.mode.redstoneTriggered": null, + "advMode.mode.autoexec.bat": null, + "advMode.notEnabled": null, + "advMode.notAllowed": null, + "mount.onboard": null, + "build.tooHigh": null, + "item.modifiers.mainhand": null, + "item.modifiers.offhand": null, + "item.modifiers.feet": null, + "item.modifiers.legs": null, + "item.modifiers.chest": null, + "item.modifiers.head": null, + "attribute.modifier.plus.0": null, + "attribute.modifier.plus.1": null, "attribute.modifier.plus.2": "attribute.modifier.plus.1", + "attribute.modifier.take.0": null, + "attribute.modifier.take.1": null, "attribute.modifier.take.2": "attribute.modifier.take.1", "attribute.modifier.equals.0": "translation.test.args", + "attribute.modifier.equals.1": null, "attribute.modifier.equals.2": "attribute.modifier.equals.1", + "attribute.name.horse.jumpStrength": null, + "attribute.name.zombie.spawnReinforcements": null, + "attribute.name.generic.maxHealth": null, + "attribute.name.generic.followRange": null, + "attribute.name.generic.knockbackResistance": null, "attribute.name.generic.movementSpeed": "effect.minecraft.speed", + "attribute.name.generic.attackDamage": null, + "attribute.name.generic.attackSpeed": null, "attribute.name.generic.luck": "effect.minecraft.luck", + "attribute.name.generic.armor": null, + "attribute.name.generic.armorToughness": null, + "screenshot.success": null, + "screenshot.failure": null, "item.banner.black.name": "block.minecraft.black_banner", "item.banner.red.name": "block.minecraft.red_banner", "item.banner.green.name": "block.minecraft.green_banner", @@ -1605,24 +2280,119 @@ "item.banner.straight_cross.magenta": "block.minecraft.banner.straight_cross.magenta", "item.banner.straight_cross.orange": "block.minecraft.banner.straight_cross.orange", "item.banner.straight_cross.white": "block.minecraft.banner.straight_cross.white", + "subtitles.ambient.cave": null, + "subtitles.block.anvil.destroy": null, + "subtitles.block.anvil.land": null, + "subtitles.block.anvil.use": null, + "subtitles.block.brewing_stand.brew": null, + "subtitles.block.button.click": null, + "subtitles.block.chest.close": null, + "subtitles.block.chest.locked": null, + "subtitles.block.chest.open": null, + "subtitles.block.chorus_flower.death": null, + "subtitles.block.chorus_flower.grow": null, + "subtitles.block.comparator.click": null, + "subtitles.block.dispenser.dispense": null, + "subtitles.block.dispenser.fail": null, + "subtitles.block.door.toggle": null, + "subtitles.block.fence_gate.toggle": null, + "subtitles.block.fire.ambient": null, + "subtitles.block.fire.extinguish": null, + "subtitles.block.furnace.fire_crackle": null, + "subtitles.block.generic.break": null, + "subtitles.block.generic.footsteps": null, + "subtitles.block.generic.hit": null, + "subtitles.block.generic.place": null, + "subtitles.block.iron_trapdoor.close": null, + "subtitles.block.iron_trapdoor.open": null, + "subtitles.block.lava.ambient": null, + "subtitles.block.lava.extinguish": null, + "subtitles.block.lever.click": null, "subtitles.block.note.note": "subtitles.block.note_block.note", + "subtitles.block.piston.move": null, + "subtitles.block.portal.ambient": null, + "subtitles.block.pressure_plate.click": null, + "subtitles.block.redstone_torch.burnout": null, + "subtitles.block.shulker_box.close": null, + "subtitles.block.shulker_box.open": null, + "subtitles.block.trapdoor.toggle": null, + "subtitles.block.tripwire.attach": null, + "subtitles.block.tripwire.click": null, + "subtitles.block.tripwire.detach": null, + "subtitles.block.water.ambient": null, + "subtitles.enchant.thorns.hit": null, "subtitles.entity.armorstand.fall": "subtitles.entity.armor_stand.fall", + "subtitles.entity.arrow.hit": null, + "subtitles.entity.arrow.hit_player": null, + "subtitles.entity.arrow.shoot": null, + "subtitles.entity.bat.ambient": null, + "subtitles.entity.bat.death": null, + "subtitles.entity.bat.hurt": null, + "subtitles.entity.bat.takeoff": null, + "subtitles.entity.blaze.ambient": null, + "subtitles.entity.blaze.burn": null, + "subtitles.entity.blaze.death": null, + "subtitles.entity.blaze.hurt": null, + "subtitles.entity.blaze.shoot": null, "subtitles.entity.bobber.throw": "subtitles.entity.fishing_bobber.throw", + "subtitles.entity.cat.ambient": null, + "subtitles.entity.cat.death": null, + "subtitles.entity.cat.hurt": null, + "subtitles.entity.chicken.ambient": null, + "subtitles.entity.chicken.death": null, + "subtitles.entity.chicken.egg": null, + "subtitles.entity.chicken.hurt": null, + "subtitles.entity.parrot.ambient": null, + "subtitles.entity.parrot.death": null, + "subtitles.entity.parrot.eats": null, + "subtitles.entity.parrot.hurts": null, + "subtitles.entity.parrot.imitate.blaze": null, "subtitles.entity.parrot.imitate.cave_spider": "subtitles.entity.parrot.imitate.creeper", + "subtitles.entity.parrot.imitate.creeper": null, + "subtitles.entity.parrot.imitate.elder_guardian": null, "subtitles.entity.parrot.imitate.enderdragon": "subtitles.entity.parrot.imitate.ender_dragon", + "subtitles.entity.parrot.imitate.enderman": null, + "subtitles.entity.parrot.imitate.endermite": null, "subtitles.entity.parrot.imitate.evocation_illager": "subtitles.entity.parrot.imitate.evoker", + "subtitles.entity.parrot.imitate.ghast": null, + "subtitles.entity.parrot.imitate.husk": null, "subtitles.entity.parrot.imitate.illusion_illager": "subtitles.entity.parrot.imitate.evoker", "subtitles.entity.parrot.imitate.magmacube": "subtitles.entity.parrot.imitate.magma_cube", "subtitles.entity.parrot.imitate.polar_bear": "subtitles.entity.parrot.imitate.husk", + "subtitles.entity.parrot.imitate.shulker": null, "subtitles.entity.parrot.imitate.silverfish": "subtitles.entity.parrot.imitate.creeper", + "subtitles.entity.parrot.imitate.skeleton": null, "subtitles.entity.parrot.imitate.slime": "subtitles.entity.parrot.imitate.magma_cube", "subtitles.entity.parrot.imitate.spider": "subtitles.entity.parrot.imitate.creeper", "subtitles.entity.parrot.imitate.stray": "subtitles.entity.parrot.imitate.skeleton", + "subtitles.entity.parrot.imitate.vex": null, "subtitles.entity.parrot.imitate.vindication_illager": "subtitles.entity.parrot.imitate.vindicator", + "subtitles.entity.parrot.imitate.witch": null, + "subtitles.entity.parrot.imitate.wither": null, "subtitles.entity.parrot.imitate.wither_skeleton": "subtitles.entity.parrot.imitate.skeleton", + "subtitles.entity.parrot.imitate.wolf": null, "subtitles.entity.parrot.imitate.zombie": "subtitles.entity.parrot.imitate.husk", + "subtitles.entity.parrot.imitate.zombie_pigman": null, "subtitles.entity.parrot.imitate.zombie_villager": "subtitles.entity.parrot.imitate.husk", + "subtitles.entity.cow.ambient": null, + "subtitles.entity.cow.death": null, + "subtitles.entity.cow.hurt": null, + "subtitles.entity.cow.milk": null, + "subtitles.entity.creeper.death": null, + "subtitles.entity.creeper.hurt": null, + "subtitles.entity.creeper.primed": null, + "subtitles.entity.donkey.ambient": null, + "subtitles.entity.donkey.angry": null, + "subtitles.entity.donkey.chest": null, + "subtitles.entity.donkey.death": null, + "subtitles.entity.donkey.hurt": null, + "subtitles.entity.egg.throw": null, "subtitles.entity.elder_guardian.ambient.land": "subtitles.entity.elder_guardian.ambient_land", + "subtitles.entity.elder_guardian.ambient": null, + "subtitles.entity.elder_guardian.curse": null, + "subtitles.entity.elder_guardian.death": null, + "subtitles.entity.elder_guardian.flop": null, + "subtitles.entity.elder_guardian.hurt": null, "subtitles.entity.enderdragon.ambient": "subtitles.entity.ender_dragon.ambient", "subtitles.entity.enderdragon.death": "subtitles.entity.ender_dragon.death", "subtitles.entity.enderdragon.flap": "subtitles.entity.ender_dragon.flap", @@ -1630,6 +2400,14 @@ "subtitles.entity.enderdragon.hurt": "subtitles.entity.ender_dragon.hurt", "subtitles.entity.enderdragon.shoot": "subtitles.entity.ender_dragon.shoot", "subtitles.entity.endereye.launch": "subtitles.entity.ender_eye.launch", + "subtitles.entity.enderman.ambient": null, + "subtitles.entity.enderman.death": null, + "subtitles.entity.enderman.hurt": null, + "subtitles.entity.enderman.stare": null, + "subtitles.entity.enderman.teleport": null, + "subtitles.entity.endermite.ambient": null, + "subtitles.entity.endermite.death": null, + "subtitles.entity.endermite.hurt": null, "subtitles.entity.enderpearl.throw": "subtitles.entity.ender_pearl.throw", "subtitles.entity.evocation_fangs.attack": "subtitles.entity.evoker_fangs.attack", "subtitles.entity.evocation_illager.ambient": "subtitles.entity.evoker.ambient", @@ -1639,12 +2417,43 @@ "subtitles.entity.evocation_illager.prepare_attack": "subtitles.entity.evoker.prepare_attack", "subtitles.entity.evocation_illager.prepare_summon": "subtitles.entity.evoker.prepare_summon", "subtitles.entity.evocation_illager.prepare_wololo": "subtitles.entity.evoker.prepare_wololo", + "subtitles.entity.experience_orb.pickup": null, "subtitles.entity.firework.blast": "subtitles.entity.firework_rocket.blast", "subtitles.entity.firework.launch": "subtitles.entity.firework_rocket.launch", "subtitles.entity.firework.twinkle": "subtitles.entity.firework_rocket.twinkle", "subtitles.entity.generic.big_fall": "subtitles.entity.armor_stand.fall", + "subtitles.entity.generic.burn": null, + "subtitles.entity.generic.death": null, + "subtitles.entity.generic.drink": null, + "subtitles.entity.generic.eat": null, + "subtitles.entity.generic.explode": null, + "subtitles.entity.generic.extinguish_fire": null, + "subtitles.entity.generic.hurt": null, + "subtitles.entity.generic.splash": null, + "subtitles.entity.generic.swim": null, + "subtitles.entity.ghast.ambient": null, + "subtitles.entity.ghast.death": null, + "subtitles.entity.ghast.hurt": null, + "subtitles.entity.ghast.shoot": null, "subtitles.entity.guardian.ambient.land": "subtitles.entity.guardian.ambient_land", + "subtitles.entity.guardian.ambient": null, + "subtitles.entity.guardian.attack": null, + "subtitles.entity.guardian.death": null, + "subtitles.entity.guardian.flop": null, + "subtitles.entity.guardian.hurt": null, + "subtitles.entity.horse.ambient": null, "subtitles.entity.horse.angry": "subtitles.entity.horse.ambient", + "subtitles.entity.horse.armor": null, + "subtitles.entity.horse.breathe": null, + "subtitles.entity.horse.death": null, + "subtitles.entity.horse.eat": null, + "subtitles.entity.horse.gallop": null, + "subtitles.entity.horse.hurt": null, + "subtitles.entity.horse.jump": null, + "subtitles.entity.horse.saddle": null, + "subtitles.entity.husk.ambient": null, + "subtitles.entity.husk.death": null, + "subtitles.entity.husk.hurt": null, "subtitles.entity.illusion_illager.ambient": "subtitles.entity.illusioner.ambient", "subtitles.entity.illusion_illager.cast_spell": "subtitles.entity.illusioner.cast_spell", "subtitles.entity.illusion_illager.death": "subtitles.entity.illusioner.death", @@ -1652,6 +2461,11 @@ "subtitles.entity.illusion_illager.mirror_move": "subtitles.entity.illusioner.mirror_move", "subtitles.entity.illusion_illager.prepare_blindness": "subtitles.entity.illusioner.prepare_blindness", "subtitles.entity.illusion_illager.prepare_mirror": "subtitles.entity.illusioner.prepare_mirror", + "subtitles.entity.iron_golem.attack": null, + "subtitles.entity.iron_golem.death": null, + "subtitles.entity.iron_golem.hurt": null, + "subtitles.entity.item.break": null, + "subtitles.entity.item.pickup": null, "subtitles.entity.itemframe.add_item": "subtitles.entity.item_frame.add_item", "subtitles.entity.itemframe.break": "subtitles.entity.item_frame.break", "subtitles.entity.itemframe.place": "subtitles.entity.item_frame.place", @@ -1661,19 +2475,274 @@ "subtitles.entity.leashknot.place": "subtitles.entity.leash_knot.place", "subtitles.entity.lightning.impact": "subtitles.entity.lightning_bolt.impact", "subtitles.entity.lightning.thunder": "subtitles.entity.lightning_bolt.thunder", + "subtitles.entity.llama.ambient": null, + "subtitles.entity.llama.chest": null, + "subtitles.entity.llama.death": null, + "subtitles.entity.llama.eat": null, + "subtitles.entity.llama.hurt": null, + "subtitles.entity.llama.spit": null, + "subtitles.entity.llama.step": null, + "subtitles.entity.llama.swag": null, "subtitles.entity.magmacube.death": "subtitles.entity.magma_cube.death", "subtitles.entity.magmacube.hurt": "subtitles.entity.magma_cube.hurt", "subtitles.entity.magmacube.squish": "subtitles.entity.magma_cube.squish", + "subtitles.entity.minecart.riding": null, + "subtitles.entity.mule.ambient": null, + "subtitles.entity.mule.chest": null, + "subtitles.entity.mule.death": null, + "subtitles.entity.mule.hurt": null, + "subtitles.entity.painting.break": null, + "subtitles.entity.painting.place": null, + "subtitles.entity.pig.ambient": null, + "subtitles.entity.pig.death": null, + "subtitles.entity.pig.hurt": null, "subtitles.entity.pig.saddle": "subtitles.entity.horse.saddle", + "subtitles.entity.player.burp": null, + "subtitles.entity.player.death": null, + "subtitles.entity.player.hurt": null, + "subtitles.entity.player.levelup": null, + "subtitles.entity.polar_bear.ambient": null, "subtitles.entity.polar_bear.baby_ambient": "subtitles.entity.polar_bear.ambient_baby", + "subtitles.entity.polar_bear.death": null, + "subtitles.entity.polar_bear.hurt": null, + "subtitles.entity.polar_bear.warning": null, + "subtitles.entity.potion.splash": null, + "subtitles.entity.potion.throw": null, + "subtitles.entity.rabbit.ambient": null, + "subtitles.entity.rabbit.attack": null, + "subtitles.entity.rabbit.death": null, + "subtitles.entity.rabbit.hurt": null, + "subtitles.entity.rabbit.jump": null, + "subtitles.entity.sheep.ambient": null, + "subtitles.entity.sheep.death": null, + "subtitles.entity.sheep.hurt": null, + "subtitles.entity.shulker.ambient": null, "subtitles.entity.shulker.close": "subtitles.block.shulker_box.close", + "subtitles.entity.shulker.death": null, + "subtitles.entity.shulker.hurt": null, "subtitles.entity.shulker.open": "subtitles.block.shulker_box.open", + "subtitles.entity.shulker.shoot": null, + "subtitles.entity.shulker.teleport": null, + "subtitles.entity.shulker_bullet.hit": null, + "subtitles.entity.shulker_bullet.hurt": null, + "subtitles.entity.silverfish.ambient": null, + "subtitles.entity.silverfish.death": null, + "subtitles.entity.silverfish.hurt": null, + "subtitles.entity.skeleton.ambient": null, + "subtitles.entity.skeleton.death": null, + "subtitles.entity.skeleton.hurt": null, + "subtitles.entity.skeleton.shoot": null, + "subtitles.entity.skeleton_horse.ambient": null, + "subtitles.entity.skeleton_horse.death": null, + "subtitles.entity.skeleton_horse.hurt": null, + "subtitles.entity.slime.attack": null, + "subtitles.entity.slime.death": null, + "subtitles.entity.slime.hurt": null, + "subtitles.entity.slime.squish": null, + "subtitles.entity.snowball.throw": null, "subtitles.entity.snowman.death": "subtitles.entity.snow_golem.death", "subtitles.entity.snowman.hurt": "subtitles.entity.snow_golem.hurt", + "subtitles.entity.spider.ambient": null, + "subtitles.entity.spider.death": null, + "subtitles.entity.spider.hurt": null, + "subtitles.entity.squid.ambient": null, + "subtitles.entity.squid.death": null, + "subtitles.entity.squid.hurt": null, + "subtitles.entity.stray.ambient": null, + "subtitles.entity.stray.death": null, + "subtitles.entity.stray.hurt": null, + "subtitles.entity.tnt.primed": null, + "subtitles.entity.vex.ambient": null, + "subtitles.entity.vex.charge": null, + "subtitles.entity.vex.death": null, + "subtitles.entity.vex.hurt": null, + "subtitles.entity.villager.ambient": null, + "subtitles.entity.villager.death": null, + "subtitles.entity.villager.hurt": null, + "subtitles.entity.villager.no": null, "subtitles.entity.villager.trading": "subtitles.entity.villager.trade", + "subtitles.entity.villager.yes": null, "subtitles.entity.vindication_illager.ambient": "subtitles.entity.vindicator.ambient", "subtitles.entity.vindication_illager.death": "subtitles.entity.vindicator.death", "subtitles.entity.vindication_illager.hurt": "subtitles.entity.vindicator.hurt", + "subtitles.entity.witch.ambient": null, + "subtitles.entity.witch.death": null, + "subtitles.entity.witch.drink": null, + "subtitles.entity.witch.hurt": null, + "subtitles.entity.witch.throw": null, + "subtitles.entity.wither.ambient": null, + "subtitles.entity.wither.death": null, + "subtitles.entity.wither.hurt": null, + "subtitles.entity.wither.shoot": null, + "subtitles.entity.wither.spawn": null, + "subtitles.entity.wither_skeleton.ambient": null, + "subtitles.entity.wither_skeleton.death": null, + "subtitles.entity.wither_skeleton.hurt": null, + "subtitles.entity.wolf.ambient": null, + "subtitles.entity.wolf.death": null, + "subtitles.entity.wolf.growl": null, + "subtitles.entity.wolf.hurt": null, + "subtitles.entity.wolf.shake": null, + "subtitles.entity.zombie.ambient": null, + "subtitles.entity.zombie.death": null, + "subtitles.entity.zombie.hurt": null, + "subtitles.entity.zombie.infect": null, + "subtitles.entity.zombie_horse.ambient": null, + "subtitles.entity.zombie_horse.death": null, + "subtitles.entity.zombie_horse.hurt": null, + "subtitles.entity.zombie_pigman.ambient": null, + "subtitles.entity.zombie_pigman.angry": null, + "subtitles.entity.zombie_pigman.death": null, + "subtitles.entity.zombie_pigman.hurt": null, + "subtitles.entity.zombie_villager.ambient": null, + "subtitles.entity.zombie_villager.converted": null, + "subtitles.entity.zombie_villager.cure": null, + "subtitles.entity.zombie_villager.death": null, + "subtitles.entity.zombie_villager.hurt": null, + "subtitles.item.armor.equip_chain": null, + "subtitles.item.armor.equip_diamond": null, + "subtitles.item.armor.equip_gold": null, + "subtitles.item.armor.equip_iron": null, + "subtitles.item.armor.equip_leather": null, + "subtitles.item.bottle.fill": null, + "subtitles.item.bucket.empty": null, + "subtitles.item.bucket.fill": null, + "subtitles.item.chorus_fruit.teleport": null, + "subtitles.item.firecharge.use": null, + "subtitles.item.flintandsteel.use": null, + "subtitles.item.hoe.till": null, "subtitles.item.shear": "subtitles.item.shears.shear", - "advancements.adventure.root.title": "selectWorld.gameMode.adventure" + "subtitles.item.shield.block": null, + "subtitles.item.shovel.flatten": null, + "subtitles.item.totem.use": null, + "subtitles.weather.rain": null, + "debug.prefix": null, + "debug.reload_chunks.message": null, + "debug.show_hitboxes.on": null, + "debug.show_hitboxes.off": null, + "debug.cycle_renderdistance.message": null, + "debug.chunk_boundaries.on": null, + "debug.chunk_boundaries.off": null, + "debug.advanced_tooltips.on": null, + "debug.advanced_tooltips.off": null, + "debug.creative_spectator.error": null, + "debug.pause_focus.on": null, + "debug.pause_focus.off": null, + "debug.help.message": null, + "debug.reload_resourcepacks.message": null, + "resourcepack.downloading": null, + "resourcepack.requesting": null, + "resourcepack.progress": null, + "tutorial.move.title": null, + "tutorial.move.description": null, + "tutorial.look.title": null, + "tutorial.look.description": null, + "tutorial.find_tree.title": null, + "tutorial.find_tree.description": null, + "tutorial.punch_tree.title": null, + "tutorial.punch_tree.description": null, + "tutorial.open_inventory.title": null, + "tutorial.open_inventory.description": null, + "tutorial.craft_planks.title": null, + "tutorial.craft_planks.description": null, + "advancements.adventure.adventuring_time.title": null, + "advancements.adventure.adventuring_time.description": null, + "advancements.adventure.kill_all_mobs.title": null, + "advancements.adventure.kill_all_mobs.description": null, + "advancements.adventure.kill_a_mob.title": null, + "advancements.adventure.kill_a_mob.description": null, + "advancements.adventure.root.title": "selectWorld.gameMode.adventure", + "advancements.adventure.root.description": null, + "advancements.adventure.shoot_arrow.title": null, + "advancements.adventure.shoot_arrow.description": null, + "advancements.adventure.sleep_in_bed.description": null, + "advancements.adventure.trade.title": null, + "advancements.adventure.trade.description": null, + "advancements.adventure.summon_iron_golem.title": null, + "advancements.adventure.summon_iron_golem.description": null, + "advancements.adventure.totem_of_undying.title": null, + "advancements.adventure.totem_of_undying.description": null, + "advancements.husbandry.root.title": null, + "advancements.husbandry.root.description": null, + "advancements.husbandry.breed_an_animal.title": null, + "advancements.husbandry.breed_an_animal.description": null, + "advancements.husbandry.breed_all_animals.title": null, + "advancements.husbandry.breed_all_animals.description": null, + "advancements.husbandry.tame_an_animal.title": null, + "advancements.husbandry.tame_an_animal.description": null, + "advancements.husbandry.plant_seed.title": null, + "advancements.husbandry.plant_seed.description": null, + "advancements.husbandry.break_diamond_hoe.title": null, + "advancements.husbandry.break_diamond_hoe.description": null, + "advancements.husbandry.balanced_diet.title": null, + "advancements.husbandry.balanced_diet.description": null, + "advancements.end.dragon_breath.title": null, + "advancements.end.dragon_breath.description": null, + "advancements.end.dragon_egg.title": null, + "advancements.end.dragon_egg.description": null, + "advancements.end.elytra.title": null, + "advancements.end.enter_end_gateway.title": null, + "advancements.end.enter_end_gateway.description": null, + "advancements.end.find_end_city.title": null, + "advancements.end.find_end_city.description": null, + "advancements.end.kill_dragon.title": null, + "advancements.end.kill_dragon.description": null, + "advancements.end.levitate.title": null, + "advancements.end.levitate.description": null, + "advancements.end.respawn_dragon.title": null, + "advancements.end.root.title": null, + "advancements.end.root.description": null, + "advancements.nether.brew_potion.title": null, + "advancements.nether.brew_potion.description": null, + "advancements.nether.all_potions.title": null, + "advancements.nether.all_potions.description": null, + "advancements.nether.all_effects.title": null, + "advancements.nether.all_effects.description": null, + "advancements.nether.create_beacon.title": null, + "advancements.nether.create_beacon.description": null, + "advancements.nether.create_full_beacon.title": null, + "advancements.nether.create_full_beacon.description": null, + "advancements.nether.find_fortress.title": null, + "advancements.nether.find_fortress.description": null, + "advancements.nether.get_wither_skull.title": null, + "advancements.nether.obtain_blaze_rod.title": null, + "advancements.nether.obtain_blaze_rod.description": null, + "advancements.nether.return_to_sender.title": null, + "advancements.nether.return_to_sender.description": null, + "advancements.nether.root.title": null, + "advancements.nether.root.description": null, + "advancements.nether.summon_wither.title": null, + "advancements.nether.summon_wither.description": null, + "advancements.nether.fast_travel.title": null, + "advancements.nether.uneasy_alliance.title": null, + "advancements.story.cure_zombie_villager.title": null, + "advancements.story.deflect_arrow.title": null, + "advancements.story.deflect_arrow.description": null, + "advancements.story.enchant_item.title": null, + "advancements.story.enchant_item.description": null, + "advancements.story.enter_the_end.title": null, + "advancements.story.enter_the_end.description": null, + "advancements.story.enter_the_nether.title": null, + "advancements.story.enter_the_nether.description": null, + "advancements.story.follow_ender_eye.title": null, + "advancements.story.form_obsidian.title": null, + "advancements.story.form_obsidian.description": null, + "advancements.story.iron_tools.title": null, + "advancements.story.iron_tools.description": null, + "advancements.story.lava_bucket.title": null, + "advancements.story.lava_bucket.description": null, + "advancements.story.mine_diamond.title": null, + "advancements.story.mine_diamond.description": null, + "advancements.story.mine_stone.title": null, + "advancements.story.mine_stone.description": null, + "advancements.story.obtain_armor.title": null, + "advancements.story.obtain_armor.description": null, + "advancements.story.root.title": null, + "advancements.story.root.description": null, + "advancements.story.shiny_gear.title": null, + "advancements.story.shiny_gear.description": null, + "advancements.story.smelt_iron.title": null, + "advancements.story.smelt_iron.description": null, + "advancements.story.upgrade_tools.title": null, + "advancements.story.upgrade_tools.description": null } \ No newline at end of file