Tweak stat pages
This commit is contained in:
@@ -932,7 +932,7 @@ block.lancer.name = Lancer
|
|||||||
block.conveyor.name = Conveyor
|
block.conveyor.name = Conveyor
|
||||||
block.titanium-conveyor.name = Titanium Conveyor
|
block.titanium-conveyor.name = Titanium Conveyor
|
||||||
block.plastanium-conveyor.name = Plastanium Conveyor
|
block.plastanium-conveyor.name = Plastanium Conveyor
|
||||||
block.plastanium-conveyor.description = Employs craters to move items around,\ninput items at the start,\nextract at the end.
|
block.plastanium-conveyor.description = Moves items in batches via craters.\nOverdriving increases item capacity.\nOnly dotted tracks can accept items.
|
||||||
block.armored-conveyor.name = Armored Conveyor
|
block.armored-conveyor.name = Armored Conveyor
|
||||||
block.armored-conveyor.description = Moves items at the same speed as titanium conveyors, but possesses more armor. Does not accept inputs from the sides from anything but other conveyor belts.
|
block.armored-conveyor.description = Moves items at the same speed as titanium conveyors, but possesses more armor. Does not accept inputs from the sides from anything but other conveyor belts.
|
||||||
block.junction.name = Junction
|
block.junction.name = Junction
|
||||||
@@ -1115,7 +1115,7 @@ unit.draug.description = A primitive mining drone. Cheap to produce. Expendable.
|
|||||||
unit.spirit.description = A modified draug drone, designed for repair instead of mining. Automatically fixes any damaged blocks in the area.
|
unit.spirit.description = A modified draug drone, designed for repair instead of mining. Automatically fixes any damaged blocks in the area.
|
||||||
unit.phantom.description = An advanced drone unit. Follows users. Assists in block construction.
|
unit.phantom.description = An advanced drone unit. Follows users. Assists in block construction.
|
||||||
unit.dagger.description = The most basic ground mech. Cheap to produce. Overwhelming when used in swarms.
|
unit.dagger.description = The most basic ground mech. Cheap to produce. Overwhelming when used in swarms.
|
||||||
unit.crater.description = Logistic roomba, inhabits compressed conveyors to move items around.
|
unit.crater.description = Logictic roomba, takes great pride in moving items around, beep boop. <3\n*happy noises* (^-^)
|
||||||
unit.crawler.description = A ground unit consisting of a stripped-down frame with high explosives strapped on top. Not particular durable. Explodes on contact with enemies.
|
unit.crawler.description = A ground unit consisting of a stripped-down frame with high explosives strapped on top. Not particular durable. Explodes on contact with enemies.
|
||||||
unit.titan.description = An advanced, armored ground unit. Attacks both ground and air targets. Equipped with two miniature Scorch-class flamethrowers.
|
unit.titan.description = An advanced, armored ground unit. Attacks both ground and air targets. Equipped with two miniature Scorch-class flamethrowers.
|
||||||
unit.fortress.description = A heavy artillery mech. Equipped with two modified Hail-type cannons for long-range assault on enemy structures and units.
|
unit.fortress.description = A heavy artillery mech. Equipped with two modified Hail-type cannons for long-range assault on enemy structures and units.
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import mindustry.world.*;
|
|||||||
import arc.graphics.g2d.*;
|
import arc.graphics.g2d.*;
|
||||||
import mindustry.entities.type.*;
|
import mindustry.entities.type.*;
|
||||||
import mindustry.entities.type.base.*;
|
import mindustry.entities.type.base.*;
|
||||||
|
import mindustry.world.meta.*;
|
||||||
|
|
||||||
public class PlastaniumConveyor extends ArmoredConveyor{
|
public class PlastaniumConveyor extends ArmoredConveyor{
|
||||||
protected TextureRegion start;
|
protected TextureRegion start;
|
||||||
@@ -34,6 +35,16 @@ public class PlastaniumConveyor extends ArmoredConveyor{
|
|||||||
end = Core.atlas.find(name + "-6-0");
|
end = Core.atlas.find(name + "-6-0");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setStats(){
|
||||||
|
super.setStats();
|
||||||
|
|
||||||
|
stats.remove(BlockStat.itemCapacity);
|
||||||
|
stats.remove(BlockStat.itemsMoved);
|
||||||
|
|
||||||
|
stats.add(BlockStat.maxUnits, 1, StatUnit.none);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void draw(Tile tile){
|
public void draw(Tile tile){
|
||||||
super.draw(tile);
|
super.draw(tile);
|
||||||
|
|||||||
Reference in New Issue
Block a user