More base parts
This commit is contained in:
BIN
core/assets/baseparts/1603219216674.msch
Normal file
BIN
core/assets/baseparts/1603219216674.msch
Normal file
Binary file not shown.
BIN
core/assets/baseparts/1603219241094.msch
Normal file
BIN
core/assets/baseparts/1603219241094.msch
Normal file
Binary file not shown.
BIN
core/assets/baseparts/1603219316221.msch
Normal file
BIN
core/assets/baseparts/1603219316221.msch
Normal file
Binary file not shown.
2
core/assets/baseparts/1603219367279.msch
Normal file
2
core/assets/baseparts/1603219367279.msch
Normal file
@@ -0,0 +1,2 @@
|
||||
mschxś%ÍmĂ ŕ·Vű±îĎveZ˛™XmÔvŮí‡#Ä<pǬ ŁŰ sqáJőť2–ŤĘšýQ}ŠŔ€ĄśůE¶¦qÓWÚmIg^‰;)¸l)` ®P¶[ö!ŕQ}uŃź»]SĽčËkÍ˙€'?¨ č8Śť‚jĹž<C4B9>SĹ´/Đ
|
||||
|
||||
BIN
core/assets/baseparts/1603219428262.msch
Normal file
BIN
core/assets/baseparts/1603219428262.msch
Normal file
Binary file not shown.
BIN
core/assets/baseparts/1603219511695.msch
Normal file
BIN
core/assets/baseparts/1603219511695.msch
Normal file
Binary file not shown.
2
core/assets/baseparts/1603219540119.msch
Normal file
2
core/assets/baseparts/1603219540119.msch
Normal file
@@ -0,0 +1,2 @@
|
||||
mschxś%‹Q
|
||||
€ _fšôŐAüě@RKĄ˘F×oU–a–aF@z÷T·K–<>ňž®X®ŕ<01>%żé$[ÂG k;˛Ńyş-o'0†™á‘UşjdZjqęQő¨kKńăż`c
|
||||
2
core/assets/baseparts/1603222786081.msch
Normal file
2
core/assets/baseparts/1603222786081.msch
Normal file
@@ -0,0 +1,2 @@
|
||||
mschxśEOËnÄ ň"[©{ëOpč'ŃÄŠ<C384>¬iµż^UJír( ±ÇăÁ€n
|
||||
tt;ÁĘąlď<6C>W:–ěŧ®ĘOĚG
|
||||
BIN
core/assets/baseparts/1603222833941.msch
Normal file
BIN
core/assets/baseparts/1603222833941.msch
Normal file
Binary file not shown.
BIN
core/assets/baseparts/1603222912251.msch
Normal file
BIN
core/assets/baseparts/1603222912251.msch
Normal file
Binary file not shown.
@@ -43,8 +43,6 @@ public class FlyingAI extends AIController{
|
||||
return null;
|
||||
}
|
||||
|
||||
//TODO clean up
|
||||
|
||||
protected void attack(float circleLength){
|
||||
vec.set(target).sub(unit);
|
||||
|
||||
|
||||
@@ -94,7 +94,7 @@ public class FormationAI extends AIController implements FormationMember{
|
||||
|
||||
@Override
|
||||
public float formationSize(){
|
||||
return unit.hitSize * 1f;
|
||||
return unit.hitSize * 1.1f;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -13,8 +13,6 @@ import java.util.*;
|
||||
import static mindustry.Vars.*;
|
||||
|
||||
public class GroundAI extends AIController{
|
||||
//static final float commandCooldown = 60f * 10;
|
||||
//float commandTimer = 60*3;
|
||||
|
||||
@Override
|
||||
public void updateMovement(){
|
||||
@@ -57,19 +55,5 @@ public class GroundAI extends AIController{
|
||||
unit.lookAt(unit.vel().angle());
|
||||
}
|
||||
|
||||
//auto-command works but it's very buggy
|
||||
/*
|
||||
if(unit instanceof Commanderc){
|
||||
Commanderc c = (Commanderc)unit;
|
||||
//try to command when missing members
|
||||
if(c.controlling().size <= unit.type().commandLimit/2){
|
||||
commandTimer -= Time.delta;
|
||||
|
||||
if(commandTimer <= 0){
|
||||
c.commandNearby(new SquareFormation(), u -> !(u.controller() instanceof FormationAI) && !(u instanceof Commanderc));
|
||||
commandTimer = commandCooldown;
|
||||
}
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1186,7 +1186,7 @@ public class Blocks implements ContentList{
|
||||
requirements(Category.power, with(Items.lead, 100, Items.silicon, 75, Items.phasefabric, 25, Items.plastanium, 75, Items.thorium, 50));
|
||||
size = 2;
|
||||
powerProduction = 4.5f;
|
||||
itemDuration = 60 * 15f;
|
||||
itemDuration = 60 * 18f;
|
||||
}};
|
||||
|
||||
solarPanel = new SolarGenerator("solar-panel"){{
|
||||
|
||||
@@ -74,7 +74,7 @@ abstract class CommanderComp implements Entityc, Posc{
|
||||
void command(Formation formation, Seq<Unit> units){
|
||||
clearCommand();
|
||||
|
||||
float spacing = hitSize * 0.65f;
|
||||
float spacing = hitSize * 0.8f;
|
||||
minFormationSpeed = type.speed;
|
||||
|
||||
controlling.addAll(units);
|
||||
|
||||
Reference in New Issue
Block a user