Skip to content

Commit

Permalink
Merge pull request #14 from uujuju1/erekir
Browse files Browse the repository at this point in the history
v7 pull request
  • Loading branch information
uujuju1 committed May 15, 2022
2 parents 1fabbd3 + 474dcd7 commit 628ccee
Show file tree
Hide file tree
Showing 63 changed files with 361 additions and 346 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/sprites/blocks/production/mantle-pulverizer-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/sprites/blocks/production/mantle-pulverizer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/sprites/blocks/turrets/acidic.png
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/sprites/blocks/turrets/base/rain-base.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/sprites/blocks/turrets/base/toxic-base.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/sprites/blocks/turrets/base/uno-base.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/sprites/blocks/turrets/calenmite/hammer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/sprites/blocks/turrets/calenmite/press.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/sprites/blocks/turrets/copremite/toxic.png
Binary file removed assets/sprites/blocks/turrets/corrosive.png
Diff not rendered.
Binary file removed assets/sprites/blocks/turrets/granite.png
Diff not rendered.
Binary file removed assets/sprites/blocks/turrets/hammer.png
Diff not rendered.
Binary file added assets/sprites/blocks/turrets/mesulfate/rain.png
File renamed without changes
Binary file added assets/sprites/blocks/turrets/mesulfate/uno.png
Binary file removed assets/sprites/blocks/turrets/rain.png
Diff not rendered.
Binary file removed assets/sprites/blocks/turrets/toxic.png
Diff not rendered.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ allprojects{
}

dependencies{
compileOnly "com.github.Anuken.Arc:arc-core:$mindustryVersion"
compileOnly "com.github.Anuken.Mindustry:core:$mindustryVersion"
compileOnly "com.github.Anuken.Arc:arc-core:dfcb21ce56"
compileOnly "com.github.Anuken.MindustryJitpack:core:935b478139"
annotationProcessor "com.github.Anuken:jabel:$jabelVersion"
}

Expand Down
2 changes: 1 addition & 1 deletion mod.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ author: "Uujuju"
main: "oblivion.ProjectOblivion"
description: "The technology of the oblivion awaits you..."
version: 1
minGameVersion: 135
minGameVersion: 136
java: true
8 changes: 4 additions & 4 deletions src/oblivion/blocks/defense/StatusBomb.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ public TextureRegion[] icons() {
@Override
public void setBars() {
super.setBars();
bars.add("charge", entity -> new Bar(Core.bundle.get("stat.reload"), Color.valueOf("E6875C"), () -> ((StatusBombBuild) entity).reload/cooldownTime));
bars.add("craftCharge", entity -> new Bar(Core.bundle.get("stat.productiontime"), Color.valueOf("FFA665"), () -> ((StatusBombBuild) entity).craftReload/craftTime));
bars.add("capacity", entity -> new Bar(Core.bundle.get("stat.ammo"), Pal.lancerLaser, () -> ((float) ((StatusBombBuild) entity).shots/bombCapacity)));
addBar("charge", entity -> new Bar(Core.bundle.get("stat.reload"), Color.valueOf("E6875C"), () -> ((StatusBombBuild) entity).reload/cooldownTime));
addBar("craftCharge", entity -> new Bar(Core.bundle.get("stat.productiontime"), Color.valueOf("FFA665"), () -> ((StatusBombBuild) entity).craftReload/craftTime));
addBar("capacity", entity -> new Bar(Core.bundle.get("stat.ammo"), Pal.lancerLaser, () -> ((float) ((StatusBombBuild) entity).shots/bombCapacity)));
}

@Override
Expand Down Expand Up @@ -69,7 +69,7 @@ public void buildConfiguration(Table table) {

@Override
public void updateTile() {
if (cons.valid() && shots < bombCapacity) {
if (efficiency > 0f && shots < bombCapacity) {
craftReload += Time.delta;
if (craftReload >= craftTime) {
craftEffect.at(x, y);
Expand Down
51 changes: 0 additions & 51 deletions src/oblivion/blocks/production/ManualDrill.java

This file was deleted.

Loading

0 comments on commit 628ccee

Please sign in to comment.