Less turret HP

This commit is contained in:
Anuken
2022-04-28 17:23:54 -04:00
parent 7e665d376e
commit 512e409417
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -3744,7 +3744,7 @@ public class Blocks{
restitution = 0.03f; restitution = 0.03f;
range = 190; range = 190;
shootCone = 3f; shootCone = 3f;
scaledHealth = 280; scaledHealth = 180;
rotateSpeed = 1.6f; rotateSpeed = 1.6f;
researchCostMultiplier = 0.05f; researchCostMultiplier = 0.05f;
@@ -3823,7 +3823,7 @@ public class Blocks{
}} }}
); );
scaledHealth = 330; scaledHealth = 210;
shootY = 7f; shootY = 7f;
size = 3; size = 3;
}}; }};
@@ -3907,7 +3907,7 @@ public class Blocks{
consumeLiquid(Liquids.hydrogen, 5f / 60f); consumeLiquid(Liquids.hydrogen, 5f / 60f);
scaledHealth = 300; scaledHealth = 250;
range = 390f; range = 390f;
size = 4; size = 4;
}}; }};
@@ -3991,7 +3991,7 @@ public class Blocks{
outlineColor = Pal.darkOutline; outlineColor = Pal.darkOutline;
scaledHealth = 420; scaledHealth = 280;
range = 270f; range = 270f;
size = 4; size = 4;
@@ -254,7 +254,7 @@ public class PlacementFragment{
ImageButton button = blockTable.button(new TextureRegionDrawable(block.uiIcon), Styles.selecti, () -> { ImageButton button = blockTable.button(new TextureRegionDrawable(block.uiIcon), Styles.selecti, () -> {
if(unlocked(block)){ if(unlocked(block)){
if(Core.input.keyDown(KeyCode.shiftLeft) && Fonts.getUnicode(block.name) != 0){ if((Core.input.keyDown(KeyCode.shiftLeft) || Core.input.keyDown(KeyCode.controlLeft)) && Fonts.getUnicode(block.name) != 0){
Core.app.setClipboardText((char)Fonts.getUnicode(block.name) + ""); Core.app.setClipboardText((char)Fonts.getUnicode(block.name) + "");
ui.showInfoFade("@copied"); ui.showInfoFade("@copied");
}else{ }else{