Improve Balancing
This commit is contained in:
parent
73cb9b1991
commit
cfa6e499ce
@ -1,5 +1,8 @@
|
||||
# Changelog
|
||||
|
||||
**1.0.12**
|
||||
* Improve Balancing
|
||||
|
||||
**1.0.11**
|
||||
* Ctrl+Middle-Clicking an active Teleportation Beacon/Restrictor will now correctly appear as active in the inventory
|
||||
|
||||
|
@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G
|
||||
fabric_loader_version = 0.7.10+build.191
|
||||
|
||||
# Mod Properties
|
||||
mod_version = 1.0.11
|
||||
mod_version = 1.0.12
|
||||
maven_group = com.thebrokenrail
|
||||
archives_base_name = reliccraft
|
||||
|
||||
|
@ -104,7 +104,7 @@ public class Actions {
|
||||
public static class DirtAction implements Action {
|
||||
@Override
|
||||
public int getCost() {
|
||||
return 15;
|
||||
return 25;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -161,7 +161,7 @@ public class Actions {
|
||||
public static class DiamondAction extends ConversionAction {
|
||||
@Override
|
||||
public int getCost() {
|
||||
return 99;
|
||||
return 75;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -248,7 +248,7 @@ public class Actions {
|
||||
public static class BedrockAction implements Action {
|
||||
@Override
|
||||
public int getCost() {
|
||||
return 60;
|
||||
return 90;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -303,7 +303,7 @@ public class Actions {
|
||||
|
||||
@Override
|
||||
public int getCost() {
|
||||
return 50;
|
||||
return 15;
|
||||
}
|
||||
}
|
||||
|
||||
@ -337,7 +337,7 @@ public class Actions {
|
||||
|
||||
@Override
|
||||
public int getCost() {
|
||||
return 70;
|
||||
return 36;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user