Skip to content

Commit

Permalink
pushed version to 0.8.0 and added crafting recipe for Redirection Cube
Browse files Browse the repository at this point in the history
  • Loading branch information
XDjackieXD committed Jul 3, 2016
1 parent f2b9335 commit 461e79f
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Ideas.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ laser link:
The probability that a Packet gets lost increases with decrease of signal quality (Transparent blocks & distance decrease quality, better components make link quality better)
Blocks: (multiple tiers?)
-Laser Casing
-Mirror
-Laser HV power supply for better Lasers
lasers tier 2 and 3 need a separate power supply which has to be powered by RF
-Signal Sniffer (aka the NSA-o-mat (I don't think you will get that pun if you don't speak german ^^)) alternative names: Big Brother, Spy Machine, NSA in a box
Expand All @@ -19,6 +18,7 @@ laser link:
flying Entity -> intra-dimensional through portals possible
AE2 integration:
maybe link two AE2-networks over a laser link?
Mirror

Satellites:
Satellites and huge multiblock radio dishes :3
Expand Down
21 changes: 11 additions & 10 deletions Recipes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,17 @@ Laser
N:S:L
I:I:I

Discouragement Redirection Cube

G... Glass
Q... Quartz Infused Lens
I... Iron
M... Semi Reflective Mirror

I:Q:I
G:M:G
I:G:I

AE Encoder

M... ME Controller
Expand Down Expand Up @@ -177,16 +188,6 @@ Duplex Unit (Item)
I:D:I
E:L:E

Mirror (Block)

G... Glas Panel
I... Iron
D... Diamond

I:D:I
I:G:I
I:D:I

NSA'o'mat - Signal Interceptor (needs two lasers, phototransistors and Lenses!) (Block)

S... Switch
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ buildscript {
apply plugin: 'idea'
apply plugin: 'net.minecraftforge.gradle.forge'

version = "0.7.3-MC1.9.4"
version = "0.8.0-MC1.9.4"
group = "at.chaosfield.openradio"
archivesBaseName = "OpenRadio"

minecraft {
version = "1.9.4-12.17.0.1954"
version = "1.9.4-12.17.0.1976"
runDir = "run"

mappings = "snapshot_20160606"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/at/chaosfield/openradio/OpenRadio.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Created by Jakob Riepler (XDjackieXD)
*/

@Mod(name = "Open Radio", modid = OpenRadio.MODID, version = "0.7.3", modLanguage = "java", dependencies = "required-after:OpenComputers@[1.6.0,)")
@Mod(name = "Open Radio", modid = OpenRadio.MODID, version = "0.8.0", modLanguage = "java", dependencies = "required-after:OpenComputers@[1.6.0,)")
public class OpenRadio{

public static final String MODID = "openradio";
Expand Down
7 changes: 7 additions & 0 deletions src/main/java/at/chaosfield/openradio/init/Crafting.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,13 @@ public static void init(){
'G', "ingotGold",
'D', "gemDiamond"));

GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Blocks.mirrorBlock), //Laser Block
"IQI", "GMG", "IGI",
'I', "ingotIron",
'M', new ItemStack(Items.mirrorItem),
'G', "blockGlass",
'Q', new ItemStack(Blocks.lensBlock2)));

/*if(Loader.isModLoaded("appliedenergistics2")){
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Blocks.aeencoderBlock),
"INI", "CMC", "INI",
Expand Down

0 comments on commit 461e79f

Please sign in to comment.