mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-11 07:39:39 +07:00
Balanced a few electric turrets, fixed crash
This commit is contained in:
parent
6ec28be541
commit
d8e8765cec
@ -26,7 +26,8 @@ public class Recipes implements ContentList{
|
||||
new Recipe(weapon, TurretBlocks.hail, new ItemStack(Items.tungsten, 25), new ItemStack(Items.carbide, 25));
|
||||
|
||||
new Recipe(weapon, TurretBlocks.lancer, new ItemStack(Items.tungsten, 25), new ItemStack(Items.lead, 25), new ItemStack(Items.silicon, 25));
|
||||
new Recipe(weapon, TurretBlocks.arc, new ItemStack(Items.tungsten, 25), new ItemStack(Items.lead, 30), new ItemStack(Items.silicon, 30));
|
||||
//TODO arc turret broken
|
||||
//new Recipe(weapon, TurretBlocks.arc, new ItemStack(Items.tungsten, 25), new ItemStack(Items.lead, 30), new ItemStack(Items.silicon, 30));
|
||||
|
||||
//DISTRIBUTION
|
||||
new Recipe(distribution, DistributionBlocks.conveyor, new ItemStack(Items.lead, 1));
|
||||
|
@ -35,7 +35,7 @@ public class TurretBullets extends BulletList implements ContentList {
|
||||
@Override
|
||||
public void load() {
|
||||
|
||||
fireball = new BulletType(1f, 1) {
|
||||
fireball = new BulletType(1f, 4) {
|
||||
{
|
||||
pierce = true;
|
||||
hitTiles = false;
|
||||
@ -90,7 +90,7 @@ public class TurretBullets extends BulletList implements ContentList {
|
||||
}
|
||||
};
|
||||
|
||||
lancerLaser = new BulletType(0.001f, 1) {
|
||||
lancerLaser = new BulletType(0.001f, 110) {
|
||||
Color[] colors = {Palette.lancerLaser.cpy().mul(1f, 1f, 1f, 0.4f), Palette.lancerLaser, Color.WHITE};
|
||||
float[] tscales = {1f, 0.7f, 0.5f, 0.2f};
|
||||
float[] lenscales = {1f, 1.1f, 1.13f, 1.14f};
|
||||
@ -160,7 +160,7 @@ public class TurretBullets extends BulletList implements ContentList {
|
||||
statusIntensity = 0.5f;
|
||||
}
|
||||
};
|
||||
lightning = new BulletType(0.001f, 5) {
|
||||
lightning = new BulletType(0.001f, 10) {
|
||||
{
|
||||
lifetime = 1;
|
||||
despawneffect = Fx.none;
|
||||
|
@ -65,9 +65,7 @@ public class Control extends Module{
|
||||
Core.atlas.setErrorRegion("error");
|
||||
ContentLoader.initialize(Content::load);
|
||||
|
||||
//TODO load database
|
||||
//not loaded currently for testing
|
||||
//db.load();
|
||||
db.load();
|
||||
|
||||
gdxInput = Gdx.input;
|
||||
|
||||
@ -356,8 +354,8 @@ public class Control extends Module{
|
||||
if(!state.mode.infiniteResources && !state.mode.disableWaveTimer && Timers.get("timerCheckUnlock", 120)){
|
||||
checkUnlockableBlocks();
|
||||
|
||||
//save if the db changed
|
||||
if(db.isDirty()){
|
||||
//save if the db changed, but don't save unlocks
|
||||
if(db.isDirty() && !debug){
|
||||
db.save();
|
||||
}
|
||||
}
|
||||
|
@ -28,6 +28,7 @@ import io.anuke.ucore.util.SeedRandom;
|
||||
|
||||
import static io.anuke.mindustry.Vars.bulletGroup;
|
||||
|
||||
//TODO utterly broken
|
||||
public class Lightning extends TimedEntity implements Poolable, DrawTrait{
|
||||
private static Array<SolidTrait> entities = new Array<>();
|
||||
private static Rectangle rect = new Rectangle();
|
||||
|
@ -45,7 +45,7 @@ public class BreakBlock extends Block {
|
||||
@Override
|
||||
public boolean isSolidFor(Tile tile) {
|
||||
BreakEntity entity = tile.entity();
|
||||
return entity.previous.solid;
|
||||
return entity.previous == null || entity.previous.solid;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user