-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
77 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,46 @@ | ||
# no-enchantment-cap | ||
# No Enchant Cap | ||
|
||
More info on the CurseForge page. | ||
https://www.curseforge.com/minecraft/mc-mods/no-enchant-cap | ||
No Enchant Cap is a simple mod which changes some features related to enchanting in Minecraft. | ||
|
||
<details> | ||
<summary><b>Feature List</b></summary><br> | ||
Removes the anvil experience limit. (Enabled by default)<br> | ||
<img src="https://github.com/AmyMialee/no-enchant-cap/raw/main/assets/anvilXPCap.png"><br><br> | ||
Allows any enchantment on any item. (Enabled by default)<br> | ||
<img src="https://github.com/AmyMialee/no-enchant-cap/raw/main/assets/incompatibleItem.png"><br><br> | ||
Enchantments over X (10) will use number levels.<br> | ||
<img src="https://github.com/AmyMialee/no-enchant-cap/raw/main/assets/numberLevels.png"><br><br> | ||
Removes all limits on the /enchant command.<br> | ||
<img src="https://github.com/AmyMialee/no-enchant-cap/raw/main/assets/enchantCommand.png"><br><br> | ||
Using /enchant you can add negative levels. (Likely won't function as intended)<br> | ||
<img src="https://github.com/AmyMialee/no-enchant-cap/raw/main/assets/negativeLevels.png"><br><br> | ||
Allow incompatible enchantments to be applied together. (Disabled by default)<br> | ||
<img src="https://github.com/AmyMialee/no-enchant-cap/raw/main/assets/mergeIncompatible.png"><br><br> | ||
Allows combining above typical enchantment limits. (Disabled by default)<br> | ||
<img src="https://github.com/AmyMialee/no-enchant-cap/raw/main/assets/anvilLevelCap.png"><br><br> | ||
</details> | ||
|
||
<table align="center"> | ||
<tr> | ||
<th><b>Join my Discord</b></th> | ||
<th><b>Find the mod on Curseforge!</b></th> | ||
<th><b>Find the mod on Modrinth!</b></th> | ||
</tr> | ||
<tr> | ||
<th> | ||
<a href="https://discord.gg/P4dUsxv6An"> | ||
<img src="https://cdn.discordapp.com/attachments/793182374410059887/924000460292104282/3437c10597c1526c3dbd98c737c2bcae.svg" width="150" height="150"> | ||
</a> | ||
</th> | ||
<th> | ||
<a href="https://www.curseforge.com/minecraft/mc-mods/no-enchant-cap"> | ||
<img src="https://cdn.discordapp.com/attachments/793182374410059887/923990008543711282/anvil.svg" width="150" height="150"> | ||
</a> | ||
</th> | ||
<th> | ||
<a href="https://modrinth.com/mod/no-enchant-cap"> | ||
<img src="https://docs.modrinth.com/img/logo.svg" width="150" height="150"> | ||
</a> | ||
</th> | ||
</tr> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package amymialee.noenchantcap; | ||
|
||
import com.terraformersmc.modmenu.api.ConfigScreenFactory; | ||
import com.terraformersmc.modmenu.api.ModMenuApi; | ||
import me.shedaniel.autoconfig.AutoConfig; | ||
|
||
public class EnchantModMenu implements ModMenuApi { | ||
@Override | ||
public ConfigScreenFactory<?> getModConfigScreenFactory() { | ||
return parent -> AutoConfig.getConfigScreen(EnchantModConfig.class, parent).get(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"text.autoconfig.no-enchant-cap.title" : "No Enchant Cap Config", | ||
|
||
"text.autoconfig.no-enchant-cap.option.removeAnvilXPLimit" : "Remove anvil experience limit.", | ||
"text.autoconfig.no-enchant-cap.option.allowAllEnchantmentCombinations" : "Allow all enchantments to be combined.", | ||
"text.autoconfig.no-enchant-cap.option.allowAnyEnchantOnAnyItem" : "Allow any enchantment on any item.", | ||
"text.autoconfig.no-enchant-cap.option.removeAnvilLevelLimit" : "Remove anvil enchant level limit.", | ||
"text.autoconfig.no-enchant-cap.option.newAnvilLevelLimit" : "New anvil enchant level limit." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters