Skip to content

Commit

Permalink
updated mining material sell values
Browse files Browse the repository at this point in the history
  • Loading branch information
ItzKatze committed Oct 6, 2024
1 parent a004ff4 commit ebd86b6
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class EnchantedCoal implements Enchanted, Sellable, MinionFuelItem {

@Override
public double getSellValue() {
return 320;
return 160;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class EnchantedCoalBlock implements Enchanted, Sellable {

@Override
public double getSellValue() {
return 51000;
return 25500;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class EnchantedEmerald implements Enchanted, Sellable {

@Override
public double getSellValue() {
return 960;
return 640;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class EnchantedEmeraldBlock implements Enchanted, Sellable {
@Override
public double getSellValue() {
return 153600;
return 102400;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class EnchantedGold implements Enchanted, Sellable {
@Override
public double getSellValue() {
return 640;
return 480;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class EnchantedGoldBlock implements Enchanted, Sellable {
@Override
public double getSellValue() {
return 102000;
return 76800;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class EnchantedIron implements Enchanted, Sellable {
@Override
public double getSellValue() {
return 480;
return 320;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class EnchantedIronBlock implements Enchanted, Sellable {
@Override
public double getSellValue() {
return 76800;
return 51200;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public ItemStatistics getStatistics(SkyBlockItem instance) {

@Override
public double getSellValue() {
return 2;
return 1;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public ItemStatistics getStatistics(SkyBlockItem instance) {

@Override
public double getSellValue() {
return 18;
return 9;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ public ItemStatistics getStatistics(SkyBlockItem instance) {

@Override
public double getSellValue() {
return 6;
return 4;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public SkyBlockRecipe<?> getRecipe() {

@Override
public double getSellValue() {
return 54;
return 36;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public SkyBlockRecipe<?> getRecipe() {

@Override
public double getSellValue() {
return 36;
return 27;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public ItemStatistics getStatistics(SkyBlockItem instance) {

@Override
public double getSellValue() {
return 4;
return 3;
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public SkyBlockRecipe<?> getRecipe() {

@Override
public double getSellValue() {
return 0.4;
return 0.3;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public SkyBlockRecipe<?> getRecipe() {

@Override
public double getSellValue() {
return 27;
return 18;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ public ItemStatistics getStatistics(SkyBlockItem instance) {

@Override
public double getSellValue() {
return 3;
return 2;
}
}

0 comments on commit ebd86b6

Please sign in to comment.