Skip to content

Commit

Permalink
Add JEI information
Browse files Browse the repository at this point in the history
  • Loading branch information
YocyCraft committed Dec 18, 2024
1 parent 1ed980b commit e745a7c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/generated/resources/assets/anvilcraft/lang/en_ud.json
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@
"itemGroup.anvilcraft.tools": "sǝıʇıןıʇ∩ :ʇɟɐɹƆןıʌuⱯ",
"jei.anvilcraft.info.capacitor": "˙ʇı uıɐʇqo oʇ ɹǝbɹɐɥɔ ǝɥʇ uı ɹoʇıɔɐdɐɔ ʎʇdɯǝ ǝɥʇ ǝbɹɐɥɔ uɐɔ noʎ",
"jei.anvilcraft.info.craw_claw": "˙ɹǝʇɐʍ ǝɥʇ uı pǝɔɐןd sdɐɹʇ qɐɹɔ ɯoɹɟ sıɥʇ uıɐʇqo uɐɔ noʎ",
"jei.anvilcraft.info.end_dust": "˙ןɐʇɹod puǝ ɥbnoɹɥʇ ןןɐɟ uǝɥʍ ʇsnᗡ puƎ oʇuı pǝʇɹǝʌuoɔ ǝq ןןıʍ 'bbƎ uobɐɹᗡ puɐ sןıʌuɐ ɹoɟ ʇdǝɔxǝ 'ʞɔoןq buıןןɐɟ ʎuⱯ",
"jei.anvilcraft.info.geode_1": "˙buısn uǝɥʍ ʎqɹɐǝu sǝpoǝ⅁ ʇsʎɥʇǝɯⱯ spuıℲ",
"jei.anvilcraft.info.geode_2": "˙sʞɔoןq ʇsʎɥʇǝɯⱯ buıppnᗺ ʎq pǝddoɹᗡ",
"jei.anvilcraft.info.geode_3": "ʇsǝɥƆ snuoᗺ ǝɥʇ uı ʇı puıɟ osןɐ uɐɔ noʎ",
Expand Down
1 change: 1 addition & 0 deletions src/generated/resources/assets/anvilcraft/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@
"itemGroup.anvilcraft.tools": "AnvilCraft: Utilities",
"jei.anvilcraft.info.capacitor": "You can charge the empty capacitor in the charger to obtain it.",
"jei.anvilcraft.info.craw_claw": "You can obtain this from crab traps placed in the water.",
"jei.anvilcraft.info.end_dust": "Any falling block, except for anvils and Dragon Egg, will be converted into End Dust when fall through end portal.",
"jei.anvilcraft.info.geode_1": "Finds Amethyst Geodes nearby when using.",
"jei.anvilcraft.info.geode_2": "Dropped by Budding Amethyst blocks.",
"jei.anvilcraft.info.geode_3": "You can also find it in the Bonus Chest",
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/dev/dubhe/anvilcraft/data/lang/JeiLang.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,8 @@ public static void init(RegistrateLangProvider provider) {
provider.add("jei.anvilcraft.info.craw_claw", "You can obtain this from crab traps placed in the water.");

provider.add("jei.anvilcraft.info.capacitor", "You can charge the empty capacitor in the charger to obtain it.");

provider.add("jei.anvilcraft.info.end_dust", "Any falling block, except for anvils and Dragon Egg, will be " +
"converted into End Dust when fall through end portal.");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ public void registerRecipes(IRecipeRegistration registration) {
registration.addItemStackInfo(
new ItemStack(ModItems.CAPACITOR.get()),
Component.translatable("jei.anvilcraft.info.capacitor"));
registration.addItemStackInfo(
ModBlocks.END_DUST.asStack(),
Component.translatable("jei.anvilcraft.info.end_dust"));
}

@Override
Expand Down

0 comments on commit e745a7c

Please sign in to comment.