Skip to content

Commit 461e79f

Browse files
committed
pushed version to 0.8.0 and added crafting recipe for Redirection Cube
1 parent f2b9335 commit 461e79f

File tree

5 files changed

+22
-14
lines changed

5 files changed

+22
-14
lines changed

Ideas.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ laser link:
55
The probability that a Packet gets lost increases with decrease of signal quality (Transparent blocks & distance decrease quality, better components make link quality better)
66
Blocks: (multiple tiers?)
77
-Laser Casing
8-
-Mirror
98
-Laser HV power supply for better Lasers
109
lasers tier 2 and 3 need a separate power supply which has to be powered by RF
1110
-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
@@ -19,6 +18,7 @@ laser link:
1918
flying Entity -> intra-dimensional through portals possible
2019
AE2 integration:
2120
maybe link two AE2-networks over a laser link?
21+
Mirror
2222

2323
Satellites:
2424
Satellites and huge multiblock radio dishes :3

Recipes.txt

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,17 @@ Laser
149149
N:S:L
150150
I:I:I
151151

152+
Discouragement Redirection Cube
153+
154+
G... Glass
155+
Q... Quartz Infused Lens
156+
I... Iron
157+
M... Semi Reflective Mirror
158+
159+
I:Q:I
160+
G:M:G
161+
I:G:I
162+
152163
AE Encoder
153164

154165
M... ME Controller
@@ -177,16 +188,6 @@ Duplex Unit (Item)
177188
I:D:I
178189
E:L:E
179190

180-
Mirror (Block)
181-
182-
G... Glas Panel
183-
I... Iron
184-
D... Diamond
185-
186-
I:D:I
187-
I:G:I
188-
I:D:I
189-
190191
NSA'o'mat - Signal Interceptor (needs two lasers, phototransistors and Lenses!) (Block)
191192

192193
S... Switch

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ buildscript {
1414
apply plugin: 'idea'
1515
apply plugin: 'net.minecraftforge.gradle.forge'
1616

17-
version = "0.7.3-MC1.9.4"
17+
version = "0.8.0-MC1.9.4"
1818
group = "at.chaosfield.openradio"
1919
archivesBaseName = "OpenRadio"
2020

2121
minecraft {
22-
version = "1.9.4-12.17.0.1954"
22+
version = "1.9.4-12.17.0.1976"
2323
runDir = "run"
2424

2525
mappings = "snapshot_20160606"

src/main/java/at/chaosfield/openradio/OpenRadio.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* Created by Jakob Riepler (XDjackieXD)
2020
*/
2121

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

2525
public static final String MODID = "openradio";

src/main/java/at/chaosfield/openradio/init/Crafting.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,13 @@ public static void init(){
111111
'G', "ingotGold",
112112
'D', "gemDiamond"));
113113

114+
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Blocks.mirrorBlock), //Laser Block
115+
"IQI", "GMG", "IGI",
116+
'I', "ingotIron",
117+
'M', new ItemStack(Items.mirrorItem),
118+
'G', "blockGlass",
119+
'Q', new ItemStack(Blocks.lensBlock2)));
120+
114121
/*if(Loader.isModLoaded("appliedenergistics2")){
115122
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Blocks.aeencoderBlock),
116123
"INI", "CMC", "INI",

0 commit comments

Comments
 (0)