feat: working block implementation
This commit is contained in:
parent
23981fb9ca
commit
802bbb6c7b
31 changed files with 1580 additions and 51 deletions
51
README.en.md
Normal file
51
README.en.md
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
[Русская версия](README.md)
|
||||
|
||||
# Enchantment Transfer Mod
|
||||
|
||||
A mod for Minecraft 1.21.1 that adds a machine for transferring enchantments between items.
|
||||
|
||||
## Features
|
||||
|
||||
- **Enchantment Transfer**: Transfers enchantments from one item to another (as well as to books)
|
||||
- **Charge System**: Machine requires energy in the form of items
|
||||
- **Redstone Control**: Only works with redstone signal
|
||||
- **Processing Progress**: Processing time depends on amount and level of enchantments
|
||||
|
||||
## Accepted Fuel Sources
|
||||
|
||||
| Item | Charge |
|
||||
|-----------------|-------|
|
||||
| Redstone | 16 |
|
||||
| Copper Ingot | 1 |
|
||||
| Iron Ingot | 4 |
|
||||
| Gold Ingot | 2 |
|
||||
| Diamond | 32 |
|
||||
| Netherite Ingot | 64 |
|
||||
|
||||
Maximum charge capacity: 1 000 000 units
|
||||
|
||||
## How to Use
|
||||
|
||||
1. Place the **Enchantment Transferrer** block in the world
|
||||
2. Put an enchanted item, target item and, optionally, a **book**
|
||||
3. Put **fuel items** in the fuel slot
|
||||
4. Provide a **redstone signal** to activate
|
||||
5. Wait for the process to complete
|
||||
|
||||
## Installation
|
||||
|
||||
1. Install NeoForge 21.1.219 for Minecraft 1.21.1
|
||||
2. Place the `.jar` mod file in the `mods` folder
|
||||
3. Launch the game
|
||||
|
||||
## Building
|
||||
|
||||
```bash
|
||||
gradlew.bat build
|
||||
```
|
||||
|
||||
The built file will be located in `build/libs/`
|
||||
|
||||
## 3rd-party Assets
|
||||
|
||||
UI and block textures were taken from [Ycarx/artoftecharium](https://github.com/Ycarx/artoftecharium) and altered to suite my needs.
|
||||
Loading…
Add table
Add a link
Reference in a new issue