Skip to content
This repository has been archived by the owner on Apr 22, 2019. It is now read-only.

Commit

Permalink
Stub in some infused stone stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
pahimar committed Oct 14, 2016
1 parent a26d32d commit 6a25139
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 2 deletions.
10 changes: 10 additions & 0 deletions src/main/java/com/pahimar/ee3/block/BlockInfusedStone.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.pahimar.ee3.block;

import com.pahimar.ee3.block.base.BlockBase;

public class BlockInfusedStone extends BlockBase {

public BlockInfusedStone() {
super("infused_stone");
}
}
10 changes: 10 additions & 0 deletions src/main/java/com/pahimar/ee3/block/BlockInfusedStoneSlab.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.pahimar.ee3.block;

import com.pahimar.ee3.block.base.BlockBase;

public class BlockInfusedStoneSlab extends BlockBase {

public BlockInfusedStoneSlab() {
super("infused_stone_slab");
}
}
12 changes: 12 additions & 0 deletions src/main/resources/assets/ee3/blockstates/infused_stone.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"custom": { "flip-v": true },
"model": "ee3:infused_stone"
},
"variants": {
"normal": [{}],
"inventory": [{}]
}
}
4 changes: 2 additions & 2 deletions src/main/resources/assets/ee3/lang/en_US.lang
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ tile.ee3:glass_bell.name=Glass Bell
tile.ee3:research_station.name=Research Station
tile.ee3:augmentation_table.name=Augmentation Table [WIP]
tile.ee3:transmutation_square.name=Transmutation Square [WIP]
tile.ee3:ash_infused_stone.name=Ash Infused Stone
tile.ee3:ash_infused_stone_slab.name=Ash Infused Stone Slab
tile.ee3:infused_stone.name=Infused Stone
tile.ee3:infused_stone_slab.name=Infused Stone Slab
tile.ee3:alchemy_array.name=Alchemy Array
tile.ee3:dummy_array.name=Alchemy Array
tile.ee3:transmutation_tablet.name=Transmutation Tablet
Expand Down
6 changes: 6 additions & 0 deletions src/main/resources/assets/ee3/models/block/infused_stone.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "ee3:blocks/infused_stone"
}
}

0 comments on commit 6a25139

Please sign in to comment.