Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions src/main/java/team/chisel/Features.java
Original file line number Diff line number Diff line change
Expand Up @@ -3187,6 +3187,41 @@ void addRecipes(IForgeRegistry<IRecipe> registry)
}
},

WARNING {
@Override
void addBlocks(ChiselBlockFactory factory) {
factory.newBlock(Material.ROCK, "warning", new ChiselBlockProvider<>(BlockCarvable::new, BlockCarvable.class)).opaque(false)
.newVariation("generic")
.next("biohazard")
.next("fire")
.next("explosion")
.next("death")
.next("falling")
.next("fall")
.next("voltage")
.next("rad")
.next("acid")
.next("underconstruction")
.next("sound")
.next("noentry")
.next("eldritch")
.next("projectile")
.next("crush")
.next("monsters")
.next("flux")
.build();
}

@Override
void addRecipes(IForgeRegistry<IRecipe> registry)
{
addShapedRecipe(registry, new ItemStack(ChiselBlocks.warning, 16, 0), "***", "*!*, "***",
'*', "stone",
'!', new ItemStack(Items.SIGN));
}
},


WATERSTONE {
@Override
void addBlocks(ChiselBlockFactory factory) {
Expand Down