Skip to content

Commit e69621c

Browse files
Merge pull request #499 from ItzKatze/master
corrected silk touch values
2 parents 860f62b + a9f6dcf commit e69621c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

type.generic/src/main/java/net/swofty/types/generic/enchantment/impl/EnchantmentSilkTouch.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ public class EnchantmentSilkTouch implements Ench, EnchFromTable {
1515

1616
@Override
1717
public String getDescription(int level) {
18-
return "§7Allows you to mine blocks in their original form.";
18+
return "§7Allows you to collect normally unobtainable block drops.";
1919
}
2020

2121
@Override
2222
public ApplyLevels getLevelsToApply(@NonNull SkyBlockPlayer player) {
2323
HashMap<Integer, Integer> levels = new HashMap<>(Map.of(
24-
1, 64
24+
1, 10
2525
));
2626
return new ApplyLevels(levels);
2727
}
@@ -37,13 +37,13 @@ public List<EnchantItemGroups> getGroups() {
3737
@Override
3838
public TableLevels getLevelsFromTableToApply(@NonNull SkyBlockPlayer player) {
3939
HashMap<Integer, Integer> levels = new HashMap<>(Map.of(
40-
1, 30
40+
1, 10
4141
));
4242
return new TableLevels(levels);
4343
}
4444

4545
@Override
4646
public int getRequiredBookshelfPower() {
47-
return 15;
47+
return 5;
4848
}
4949
}

0 commit comments

Comments
 (0)