Added more blocks for Yulife to bang his head against
This commit is contained in:
parent
4174be42b0
commit
bafbd0b076
|
@ -292,7 +292,8 @@ public class Constants
|
||||||
BLOOD_TANK("BlockBloodTank"),
|
BLOOD_TANK("BlockBloodTank"),
|
||||||
MIMIC("BlockMimic"),
|
MIMIC("BlockMimic"),
|
||||||
ALCHEMY_TABLE("BlockAlchemyTable"),
|
ALCHEMY_TABLE("BlockAlchemyTable"),
|
||||||
DEMON_BRICK_1("BlockDemonBricks1");
|
DEMON_BRICK_1("BlockDemonBricks1"),
|
||||||
|
DEMON_BRICK_2("BlockDemonBricks2");
|
||||||
|
|
||||||
@Getter
|
@Getter
|
||||||
private final String regName;
|
private final String regName;
|
||||||
|
|
|
@ -116,6 +116,7 @@ public class ModBlocks
|
||||||
public static Block mimic;
|
public static Block mimic;
|
||||||
|
|
||||||
public static Block demonBrick1;
|
public static Block demonBrick1;
|
||||||
|
public static Block demonBrick2;
|
||||||
|
|
||||||
public static void init()
|
public static void init()
|
||||||
{
|
{
|
||||||
|
@ -155,6 +156,7 @@ public class ModBlocks
|
||||||
mimic = registerBlock(new ItemBlockMimic(new BlockMimic()), Constants.BloodMagicBlock.MIMIC.getRegName());
|
mimic = registerBlock(new ItemBlockMimic(new BlockMimic()), Constants.BloodMagicBlock.MIMIC.getRegName());
|
||||||
|
|
||||||
demonBrick1 = registerBlock(new ItemBlockDemonBase(new BlockDemonBase("bricks1", new String[] { "brick1_raw", "brick1_corrosive", "brick1_destructive", "brick1_vengeful", "brick1_steadfast", "brick2_raw", "brick2_corrosive", "brick2_destructive", "brick2_vengeful", "brick2_steadfast", "brick3_raw", "brick3_corrosive", "brick3_destructive", "brick3_vengeful", "brick3_steadfast" })), Constants.BloodMagicBlock.DEMON_BRICK_1.getRegName());
|
demonBrick1 = registerBlock(new ItemBlockDemonBase(new BlockDemonBase("bricks1", new String[] { "brick1_raw", "brick1_corrosive", "brick1_destructive", "brick1_vengeful", "brick1_steadfast", "brick2_raw", "brick2_corrosive", "brick2_destructive", "brick2_vengeful", "brick2_steadfast", "brick3_raw", "brick3_corrosive", "brick3_destructive", "brick3_vengeful", "brick3_steadfast" })), Constants.BloodMagicBlock.DEMON_BRICK_1.getRegName());
|
||||||
|
demonBrick2 = registerBlock(new ItemBlockDemonBase(new BlockDemonBase("bricks2", new String[] { "smallbrick_raw", "smallbrick_corrosive", "smallbrick_destructive", "smallbrick_vengeful", "smallbrick_steadfast", "tile_raw", "tile_corrosive", "tile_destructive", "tile_vengeful", "tile_steadfast", "tilespecial_raw", "tilespecial_corrosive", "tilespecial_destructive", "tilespecial_vengeful", "tilespecial_steadfast" })), Constants.BloodMagicBlock.DEMON_BRICK_2.getRegName());
|
||||||
|
|
||||||
// testSpellBlock = registerBlock(new BlockTestSpellBlock());
|
// testSpellBlock = registerBlock(new BlockTestSpellBlock());
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,88 @@
|
||||||
|
{
|
||||||
|
"forge_marker": 1,
|
||||||
|
"defaults": {
|
||||||
|
"textures": { },
|
||||||
|
"model": "cube_all",
|
||||||
|
"uvlock": true
|
||||||
|
},
|
||||||
|
"variants": {
|
||||||
|
"type": {
|
||||||
|
"smallbrick_raw": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_smallbrick"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"smallbrick_corrosive": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_smallbrick_c"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"smallbrick_destructive": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_smallbrick_d"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"smallbrick_vengeful": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_smallbrick_v"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"smallbrick_steadfast": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_smallbrick_s"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tile_raw": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_tile"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tile_corrosive": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_tile_c"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tile_destructive": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_tile_d"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tile_vengeful": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_tile_v"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tile_steadfast": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_tile_s"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tilespecial_raw": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_tilespecial"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tilespecial_corrosive": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_tilespecial_c"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tilespecial_destructive": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_tilespecial_d"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tilespecial_vengeful": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_tilespecial_v"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tilespecial_steadfast": {
|
||||||
|
"textures": {
|
||||||
|
"all": "bloodmagic:blocks/dungeon/dungeon_tilespecial_s"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue