Skip to content

Commit a3372f2

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 362527e + 8b3fc4b commit a3372f2

File tree

1 file changed

+59
-3
lines changed

1 file changed

+59
-3
lines changed

README.md

Lines changed: 59 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,63 @@
1-
# Tiered
1+
# Tiered [heavy beta]
2+
3+
Tiered is a Fabric mod inspired by [Quality Tools](https://www.curseforge.com/minecraft/mc-mods/quality-tools). Every tool you make will have a special modifier, as seen below:
24

3-
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:
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+
### Verifiers
46+
47+
A verifier (specified in the "verifiers" array of your modifier json file) defines whether or not a given tag or tool is valid for the modifier.
48+
49+
A specific item ID can be specified with:
50+
```json
51+
"id": "minecraft:apple"
52+
```
53+
54+
and a tag can be specified with:
55+
```json
56+
"tag": "fabric:helmets"
57+
```
58+
59+
Tiered provides 4 armor tags (`fabric:helmets`, `fabric:chestplates`, `fabric:leggings`, and `fabric:boots` for your convenience).
60+
61+
662
### License
7-
Tiered is licensed under MIT. You are free to use the code inside this repo as you want.
63+
Tiered is licensed under MIT. You are free to use the code inside this repo as you want.

0 commit comments

Comments
 (0)