Skip to content

Commit

Permalink
Update resources
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiiragi283 committed Mar 11, 2024
1 parent 8ebd807 commit 8655a98
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 4 deletions.
45 changes: 45 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Enchanting Smith

## About

- Add new Smithing Recipe format applying enchantment
- Additional recipes can be added via json recipes!

## Supported Loader & Versions

| Loader | MC version | Available |
|:--------:|:----------:|:---------:|
| Fabric | 1.16.5 | O |
| | 1.18.2 | X |
| | 1.19.2 | X |
| | 1.20.1 | O |
| Forge | 1.16.5 | O |
| | 1.18.2 | X |
| | 1.19.2 | X |
| | 1.20.1 | X |
| NeoForge | - | - |

## Dependencies

- Fabric ... None
- Forge ... None

## Json Recipe Format

```json
{
"type": "enchanting_smith:upgrade",
"upgrade": {
"item": "item id (ex; minecraft:iron_ingot)",
"tag": "item tag id (ex; minecraft:water_buckets)",
"_comment": "upgrade block is the same as ingredient format, so must have either \"item\" or \"tag\"!!"
},
"enchantment": "enchantment id (ex; minecraft:protection)"
}
```

## Credits

- Icon
- [Original - Game-icons.net](https://game-icons.net/1x1/lorc/anvil-impact.html)
- [License - CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
8 changes: 4 additions & 4 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ loaderVersion="${loader_version_range}" #mandatory This is typically bumped ever
# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here.
license="${mod_license}"
# A URL to refer people to when problems occur with this mod
#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional
issueTrackerURL="https://github.com/Hiiragi283/Enchanting-Smith/issues" #optional
# A list of mods - how many allowed here is determined by the individual mod loader
[[mods]] #mandatory
# The modid of the mod
Expand All @@ -23,9 +23,9 @@ displayName="${mod_name}" #mandatory
# A URL to query for updates for this mod. See the JSON update specification https://docs.minecraftforge.net/en/latest/misc/updatechecker/
#updateJSONURL="https://change.me.example.invalid/updates.json" #optional
# A URL for the "homepage" for this mod, displayed in the mod UI
#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional
displayURL="https://github.com/Hiiragi283/Enchanting-Smith/" #optional
# A file name (in the root of the mod JAR) containing a logo for display
#logoFile="examplemod.png" #optional
logoFile="assets/enchanting_smith/textures/icon.png" #optional
# A text field displayed in the mod UI
#credits="" #optional
# A text field displayed in the mod UI
Expand Down Expand Up @@ -61,4 +61,4 @@ mandatory=true
# This version range declares a minimum of the current minecraft version up to but not including the next major version
versionRange="${minecraft_version_range}"
ordering="NONE"
side="BOTH"
side="BOTH"
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8655a98

Please sign in to comment.