Bundles updated / Updated mechanical drill sprite

This commit is contained in:
Anuken
2018-08-20 22:09:15 -04:00
parent 01ae8bec85
commit 1cc8cbe8a8
10 changed files with 574 additions and 571 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 B

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 B

After

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 143 B

After

Width:  |  Height:  |  Size: 287 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 99 B

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 97 B

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 391 B

After

Width:  |  Height:  |  Size: 385 B

View File

@@ -398,14 +398,14 @@ content.recipe.name=Blocks
item.stone.name=Stone item.stone.name=Stone
item.stone.description=A common raw material. Used for separating and refining into other materials, or melting into lava. item.stone.description=A common raw material. Used for separating and refining into other materials, or melting into lava.
item.tungsten.name=Tungsten item.copper.name=Copper
item.tungsten.description=A common, but very useful structure material. Used in drills and heat-resistant blocks such as generators and smelteries. item.copper.description=A useful structure material. Used extensively in all types of blocks.
item.lead.name=Lead item.lead.name=Lead
item.lead.description=A basic starter material. Used extensively in electronics and liquid transportation blocks. item.lead.description=A basic starter material. Used extensively in electronics and liquid transportation blocks.
item.coal.name=Coal item.coal.name=Coal
item.coal.description=A common and readily available fuel. item.coal.description=A common and readily available fuel.
item.carbide.name=Carbide item.dense-alloy.name=Dense Alloy
item.carbide.description=A tough alloy made with tungsten and carbon. Used in advanced transportation blocks and high-tier drills. item.dense-alloy.description=A tough alloy made with lead and copper. Used in advanced transportation blocks and high-tier drills.
item.titanium.name=Titanium item.titanium.name=Titanium
item.titanium.description=A rare super-light metal used extensively in liquid transportation, drills and aircraft. item.titanium.description=A rare super-light metal used extensively in liquid transportation, drills and aircraft.
item.thorium.name=Thorium item.thorium.name=Thorium
@@ -458,10 +458,12 @@ block.shrub.name=shrub
block.rock.name=rock block.rock.name=rock
block.blackrock.name=blackrock block.blackrock.name=blackrock
block.icerock.name=icerock block.icerock.name=icerock
block.tungsten-wall.name=Tungsten Wall block.copper-wall.name=Copper Wall
block.tungsten-wall-large.name=Large Tungsten Wall block.copper-wall-large.name=Large Tungsten Wall
block.carbide-wall.name=Carbide Wall block.composite-wall.name=Composite Wall
block.carbide-wall-large.name=Large Carbide Wall block.composite-wall-large.name=Large Composite Wall
block.phase-wall.name=Composite Wall
block.phase-wall-large.name=Large Composite Wall
block.thorium-wall.name=Thorium Wall block.thorium-wall.name=Thorium Wall
block.thorium-wall-large.name=Large Thorium Wall block.thorium-wall-large.name=Large Thorium Wall
block.door.name=Door block.door.name=Door
@@ -500,8 +502,8 @@ block.battery.name=Battery
block.battery-large.name=Large Battery block.battery-large.name=Large Battery
block.combustion-generator.name=Combustion Generator block.combustion-generator.name=Combustion Generator
block.turbine-generator.name=Turbine Generator block.turbine-generator.name=Turbine Generator
block.tungsten-drill.name=Tungsten Drill block.mechanical-drill.name=Mechanical Drill
block.carbide-drill.name=Carbide Drill block.pneumatic-drill.name=Pneumatic Drill
block.laser-drill.name=Laser Drill block.laser-drill.name=Laser Drill
block.water-extractor.name=Water Extractor block.water-extractor.name=Water Extractor
block.cultivator.name=Cultivator block.cultivator.name=Cultivator
@@ -551,7 +553,7 @@ block.liquid-tank.name=Liquid Tank
block.liquid-junction.name=Liquid Junction block.liquid-junction.name=Liquid Junction
block.bridge-conduit.name=Bridge Conduit block.bridge-conduit.name=Bridge Conduit
block.rotary-pump.name=Rotary Pump block.rotary-pump.name=Rotary Pump
block.nuclear-reactor.name=Nuclear Reactor block.thorium-reactor.name=Thorium Reactor
block.command-center.name=Command Center block.command-center.name=Command Center
block.mass-driver.name=Mass Driver block.mass-driver.name=Mass Driver
block.blast-drill.name=Blast Drill block.blast-drill.name=Blast Drill

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 137 KiB

After

Width:  |  Height:  |  Size: 136 KiB

View File

@@ -23,8 +23,9 @@ public class Recipes implements ContentList{
new Recipe(defense, DefenseBlocks.thoriumWall, new ItemStack(Items.thorium, 12)); new Recipe(defense, DefenseBlocks.thoriumWall, new ItemStack(Items.thorium, 12));
new Recipe(defense, DefenseBlocks.thoriumWallLarge, new ItemStack(Items.thorium, 12 * 4)); new Recipe(defense, DefenseBlocks.thoriumWallLarge, new ItemStack(Items.thorium, 12 * 4));
new Recipe(defense, DefenseBlocks.phaseWall, new ItemStack(Items.phasematter, 12)); //TODO will be added once sprites are ready
new Recipe(defense, DefenseBlocks.phaseWallLarge, new ItemStack(Items.phasematter, 12 * 4)); //new Recipe(defense, DefenseBlocks.phaseWall, new ItemStack(Items.phasematter, 12));
//new Recipe(defense, DefenseBlocks.phaseWallLarge, new ItemStack(Items.phasematter, 12 * 4));
new Recipe(defense, DefenseBlocks.door, new ItemStack(Items.densealloy, 12), new ItemStack(Items.silicon, 8)); new Recipe(defense, DefenseBlocks.door, new ItemStack(Items.densealloy, 12), new ItemStack(Items.silicon, 8));
new Recipe(defense, DefenseBlocks.doorLarge, new ItemStack(Items.densealloy, 12 * 4), new ItemStack(Items.silicon, 8 * 4)); new Recipe(defense, DefenseBlocks.doorLarge, new ItemStack(Items.densealloy, 12 * 4), new ItemStack(Items.silicon, 8 * 4));