Skip to content

Commit 5e30bca

Browse files
authored
Update README.md
1 parent 5d2a3d5 commit 5e30bca

File tree

1 file changed

+42
-2
lines changed

1 file changed

+42
-2
lines changed

README.md

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,47 @@
1-
# Tiered
1+
# Tiered [heavy beta]
22

33
Tiered is a Fabric mod inspired by (https://www.curseforge.com/minecraft/mc-mods/quality-tools)[Quality Tools]. Every tool you make will have a special modifier, as seen below:
4+
45
<img src="resources/legendary_chestplate.png" width="400">
56

7+
### Customization
8+
9+
Tiered is entirely data-driven, which means you can add, modify, and remove modifiers as you see fit. The base path for modifiers is `data/modid/item_attributes`, and tiered modifiers are stored under the modid of tiered. Here's an example modifier called "Hasteful," which grants additional dig speed when any of the valid tools are held:
10+
```json
11+
{
12+
"id": "tiered:hasteful",
13+
"verifiers": [
14+
{
15+
"tag": "fabric:pickaxes"
16+
},
17+
{
18+
"tag": "fabric:shovels"
19+
},
20+
{
21+
"tag": "fabric:axes"
22+
}
23+
],
24+
"style": {
25+
"color": "GREEN"
26+
},
27+
"attributes": [
28+
{
29+
"type": "generic.digSpeed",
30+
"modifier": {
31+
"name": "tiered:hasteful",
32+
"operation": "MULTIPLY_TOTAL",
33+
"amount": 0.10
34+
},
35+
"optional_equipment_slots": [
36+
"MAINHAND"
37+
]
38+
}
39+
]
40+
}
41+
```
42+
43+
Tiered currently provides 2 custom attributes: Dig Speed and Crit chance. Dig Speed increases the speed of your block breaking (think: haste), and Crit Chance offers an additional random chance to crit when using a tool.
44+
45+
646
### License
7-
Tiered is licensed under MIT. You are free to use the code inside this repo as you want.
47+
Tiered is licensed under MIT. You are free to use the code inside this repo as you want.

0 commit comments

Comments
 (0)