Skip to content

Commit 115677d

Browse files
committed
Added LICENSE, modified README.md file.
1 parent 1457a9b commit 115677d

File tree

6 files changed

+82
-13
lines changed

6 files changed

+82
-13
lines changed

.github/media/config_preview.png

345 KB
Loading

.github/media/showcase_1.gif

11.7 MB
Loading

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# separate terms of service, privacy policy, and support
77
# documentation.
88

9-
name: Java CI with Maven
9+
name: Java build
1010

1111
on:
1212
push:

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Levy.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 51 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1-
# YetAnotherLootManager
2-
3-
[![Java CI with Maven](https://github.com/Levy-Y/YetAnotherLootManager/actions/workflows/maven.yml/badge.svg)](https://github.com/Levy-Y/YetAnotherLootManager/actions/workflows/maven.yml)
1+
# Yet Another Loot Manager
2+
3+
[![Java build](https://github.com/Levy-Y/YetAnotherLootManager/actions/workflows/maven.yml/badge.svg)](https://github.com/Levy-Y/YetAnotherLootManager/actions/workflows/maven.yml)
4+
5+
---
6+
7+
<div align="center" style="border-radius: 21px;">
8+
<img src=".github/media/showcase_1.gif" alt="Showcase 1" width="100%" style="border-radius: 20px;">
9+
<br>
10+
<h3>🎯 Take control of your server's loot with easy customization! Support for Nexo included. 🚀</h3>
11+
<h4>*ItemsAdder coming soon*</h4>
12+
</div>
13+
14+
---
15+
16+
## 🛠️ Config File Made Easy
17+
18+
<div align="center">
19+
<img src=".github/media/config_preview.png" alt="Config Preview" width="90%" style="border-radius: 20px;">
20+
<h3>🔧 Effortlessly configure and customize to suit your needs!</h3>
21+
</div>
22+
23+
---
24+
25+
## 🤝 Contribution
26+
27+
We welcome contributions to **Yet Another Loot Manager**! Here's how you can get involved:
28+
1. Fork the repository and create a new branch for your feature or bugfix.
29+
2. Submit a pull request describing your changes.
30+
31+
Please ensure your code includes proper documentation. Feedback and feature suggestions are also welcome in the Issues section!
32+
33+
---
34+
35+
## 📂 My Other Projects
36+
37+
Check out some of my other work:
38+
- [**Bartering manager**](https://github.com/Levy-Y/bartering-manager) - Easily modify the loot of piglin bartering.
39+
- [**Morph potion**](https://github.com/Levy-Y/MorphPotion) - Transform into an animal by drinking a potion.
40+
41+
Explore my GitHub profile for more: [**Levy-Y**](https://github.com/Levy-Y)
42+
43+
---
44+
45+
## ⚖️ Legal
46+
47+
**Yet Another Loot Manager** is licensed under the [MIT License](https://opensource.org/licenses/MIT).
48+
49+
This project is not affiliated with or endorsed by Nexo or ItemsAdder. All trademarks referenced are the property of their respective owners.
50+
51+
---

src/main/resources/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ dungeons:
77
- name: "Haunted_Mines" # Dungeon identifier
88
loot: # List of available items in the loot table
99
- provider: "VANILLA" # Loot provider ex.: VANILLA, NEXO, ITEMSADDER
10-
item: "minecraft:diamond" # The items identifier
10+
item: "mace" # The items identifier
1111
amount:
1212
min: 1 # Minimum amount to generate
13-
max: 3 # Maximum amount to generate
13+
max: 1 # Maximum amount to generate
1414
chance: 0.5 # Chance to generate 0.5 = 50%
1515
- provider: "NEXO"
16-
item: "dragon_heart"
16+
item: "onyx_ore"
1717
amount:
1818
min: 1
19-
max: 1
20-
chance: 0.1
21-
- provider: "MMOITEMS"
22-
item: "magic_wand"
19+
max: 5
20+
chance: 0.3
21+
- provider: "NEXO"
22+
item: "amethyst"
2323
amount:
2424
min: 1
25-
max: 2
26-
chance: 0.2
25+
max: 3
26+
chance: 0.5

0 commit comments

Comments
 (0)