Skip to content

Commit

Permalink
Added properties of Architect's Table
Browse files Browse the repository at this point in the history
  • Loading branch information
kill05 committed Jun 11, 2024
1 parent 95f832c commit 97951f1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/com/github/kill05/ArchitectTools.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@
import net.minecraft.client.Minecraft;
import net.minecraft.client.render.stitcher.TextureRegistry;
import net.minecraft.core.block.Block;
import net.minecraft.core.block.tag.BlockTags;
import net.minecraft.core.data.DataLoader;
import net.minecraft.core.item.Item;
import net.minecraft.core.item.ItemStack;
import net.minecraft.core.sound.BlockSounds;
import org.apache.commons.lang3.tuple.Pair;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
Expand Down Expand Up @@ -56,6 +58,11 @@ public final class ArchitectTools implements ModInitializer, RecipeEntrypoint, C
public static final Item BLANK_PATTERN = item("blank_pattern", "blank_pattern");

public static final Block ARCHITECT_TABLE_BLOCK = new BlockBuilder(MOD_ID)
.setHardness(2.5F)
.setResistance(5.0F)
.setFlammability(10, 10)
.setBlockSound(BlockSounds.WOOD)
.setTags(BlockTags.MINEABLE_BY_AXE)
.build(new ArchitectTableBlock());


Expand Down

0 comments on commit 97951f1

Please sign in to comment.