Skip to content

Commit

Permalink
Version 0.7.7 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Eschatologue committed Feb 1, 2022
1 parent 8804c57 commit 313f320
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/UAW/content/UAWBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -993,14 +993,14 @@ UAWLiquids.surgeSolvent, new SplashBulletType(0, range) {{
UAWGroundFactory = new UnitFactory("uaw-ground-factory") {{
requirements(Category.units, with(
Items.lead, 550,
Items.silicon, 80,
Items.metaglass, 80,
Items.silicon, 90,
Items.metaglass, 90,
Items.titanium, 250,
Items.plastanium, 100
));
size = 5;
consumes.power(3.5f);
consumes.liquid(Liquids.oil, 0.5f);
consumes.liquid(Liquids.oil, 1f);
liquidCapacity = 120f;
plans = Seq.with(
new UnitPlan(UAWUnitTypes.gardlacz, 35f * tick, with(
Expand All @@ -1022,7 +1022,7 @@ UAWLiquids.surgeSolvent, new SplashBulletType(0, range) {{
floating = true;
size = 5;
consumes.power(3.5f);
consumes.liquid(Liquids.oil, 0.5f);
consumes.liquid(Liquids.oil, 1f);
liquidCapacity = 120f;
plans = Seq.with(
new UnitPlan(UAWUnitTypes.clurit, 45f * tick, with(
Expand All @@ -1035,7 +1035,7 @@ UAWLiquids.surgeSolvent, new SplashBulletType(0, range) {{
Items.silicon, 55,
Items.metaglass, 50,
Items.titanium, 100,
Items.blastCompound, 30f,
Items.blastCompound, 30,
Items.lead, 120
))
);
Expand All @@ -1050,7 +1050,7 @@ UAWLiquids.surgeSolvent, new SplashBulletType(0, range) {{
));
size = 5;
consumes.power(3.5f);
consumes.liquid(Liquids.oil, 0.5f);
consumes.liquid(Liquids.oil, 1f);
liquidCapacity = 120f;
plans = Seq.with(
new UnitPlan(UAWUnitTypes.aglovale, 35f * tick, with(
Expand All @@ -1063,7 +1063,8 @@ UAWLiquids.surgeSolvent, new SplashBulletType(0, range) {{
Items.silicon, 85,
Items.titanium, 90,
Items.lead, 150,
Items.blastCompound, 50
Items.plastanium, 75,
Items.blastCompound, 35
))
);
}};
Expand Down

0 comments on commit 313f320

Please sign in to comment.