Skip to content

Commit

Permalink
Merge branch '4-write-note-for-advanced-grindstone-in-emi' of https:/…
Browse files Browse the repository at this point in the history
…/github.com/Ramen5914/Ramens-Additions into 4-write-note-for-advanced-grindstone-in-emi
  • Loading branch information
Ramen5914 committed Sep 14, 2024
2 parents 68861d1 + 19c7981 commit 947570a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@
[![GitHub Release](https://img.shields.io/github/v/release/ramen5914/ramens-additions?include_prereleases&sort=semver&display_name=tag&style=for-the-badge&logo=github&color=%23d48ad1&label=Latest%20Version)](https://github.com/Ramen5914/Ramens-Additions/releases)

## Mod Details
This is a super small mod (for now) that I created to add certain things I wished were in vanilla Minecraft. Please comment or create an issue on GitHub to suggest things to add to the mod!
This is a super small mod (for now) that I created to add certain things I wished were in vanilla Minecraft. I plan to continually add things to this mod that people request, or that I feel are missing from the game. This project is definitely a "kitchen sink" sort of mod (no real theme), but I hope to make up for certain things that minecraft lacks.

## Additions
Here is a list of items my mod currently adds:

### Advanced Grindstone
This is an upgrade to the vanilla Grindstone that lets you remove specific enchants, curses, or everything from any enchanted item, at a cost.
The Advanced Grindstone is a special type of grindstone that you can craft with a netherite ingot and a regular Grindstone in a smithing table. It is an upgrade (but not a replacement) to the vanilla Grindstone that lets you not only remove all the enchantments from an item, but also curses. You can even just choose one enchantment/curse to remove by using the gui.

## Contributing
I highly encourage anyone who ever sees this mod to send me ideas on what I can add next. Please submit your ideas as an [issue](https://github.com/Ramen5914/Ramens-Additions/issues) on GitHub and I will mark it as an enhancement. There is a [project board](https://github.com/users/Ramen5914/projects/6) for this repo as well which will show you what I am currently working on for the mod. Another great place to share ideas or talk with me would be on my [discord server](https://discord.gg/Fp7AT6uaD8) or in [GitHub Discussions](https://github.com/Ramen5914/Ramens-Additions/discussions).
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ protected void addTranslations() {

add(String.format("container.%s.advanced_grindstone_title", RamensAdditions.MOD_ID), "Advanced Grindstone");
add(String.format("itemgroup.%s.advanced_grindstone_tab", RamensAdditions.MOD_ID), "Ramen's Additions");
add(String.format("tag.item.%s.disenchanting_catalysts", RamensAdditions.MOD_ID), "Items that can be used in the Advanced Grindstone to remove single enchants.");
add(String.format("emi.category.%s.advanced_grindstone", RamensAdditions.MOD_ID), "Advanced Grinding");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ protected void updateTooltip() {
else
if (options.get(i).getB()) {
toolTip.add(Component.empty()
.append("-> ")
.append("> ")
.append(options.get(i).getA())
.withStyle(ChatFormatting.DARK_RED));
} else {
Expand Down
4 changes: 2 additions & 2 deletions update.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"1.0.0": "First release of my mod."
},
"promos": {
"1.21.1-latest": "0.0.5",
"1.21.1-recommended": "0.0.5"
"1.21.1-latest": "0.0.6",
"1.21.1-recommended": "0.0.6"
},
"versions": "1.21.1"
}

0 comments on commit 947570a

Please sign in to comment.