NaturesAura/src/main/java/de/ellpeck/naturesaura/data/BlockTagProvider.java

37 lines
1.8 KiB
Java
Raw Normal View History

2020-01-29 00:40:28 +01:00
package de.ellpeck.naturesaura.data;
2020-01-23 16:05:52 +01:00
import de.ellpeck.naturesaura.NaturesAura;
2020-01-23 16:05:52 +01:00
import de.ellpeck.naturesaura.blocks.ModBlocks;
import net.minecraft.data.DataGenerator;
2021-12-15 16:24:53 +01:00
import net.minecraft.data.tags.BlockTagsProvider;
import net.minecraft.resources.ResourceLocation;
2020-01-23 16:05:52 +01:00
import net.minecraft.tags.BlockTags;
2022-03-04 15:59:04 +01:00
import net.minecraft.tags.TagKey;
2021-12-15 16:24:53 +01:00
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
2020-02-26 19:32:42 +01:00
import net.minecraftforge.common.Tags;
2021-12-16 21:56:27 +01:00
import net.minecraftforge.common.data.ExistingFileHelper;
import org.jetbrains.annotations.Nullable;
2020-01-23 16:05:52 +01:00
public class BlockTagProvider extends BlockTagsProvider {
2022-03-04 15:59:04 +01:00
public static final TagKey<Block> NETHER_ALTAR_WOOD = BlockTags.create(new ResourceLocation(NaturesAura.MOD_ID, "nether_altar_wood"));
2021-12-16 21:56:27 +01:00
public BlockTagProvider(DataGenerator gen, @Nullable ExistingFileHelper existingFileHelper) {
super(gen, NaturesAura.MOD_ID, existingFileHelper);
2020-01-23 16:05:52 +01:00
}
@Override
2021-12-15 16:24:53 +01:00
protected void addTags() {
this.tag(BlockTags.LOGS).add(ModBlocks.ANCIENT_LOG, ModBlocks.ANCIENT_BARK);
this.tag(BlockTags.PLANKS).add(ModBlocks.ANCIENT_PLANKS);
this.tag(BlockTags.STAIRS).add(ModBlocks.ANCIENT_STAIRS, ModBlocks.INFUSED_BRICK_STAIRS, ModBlocks.INFUSED_STAIRS);
this.tag(BlockTags.LEAVES).add(ModBlocks.GOLDEN_LEAVES, ModBlocks.ANCIENT_LEAVES, ModBlocks.DECAYED_LEAVES);
this.tag(BlockTags.RAILS).add(ModBlocks.DIMENSION_RAIL_END, ModBlocks.DIMENSION_RAIL_NETHER, ModBlocks.DIMENSION_RAIL_OVERWORLD);
this.tag(BlockTags.SLABS).add(ModBlocks.ANCIENT_SLAB, ModBlocks.INFUSED_SLAB, ModBlocks.INFUSED_BRICK_SLAB);
2022-03-04 15:59:04 +01:00
this.tag(BlockTags.DIRT).add(ModBlocks.NETHER_GRASS);
2021-12-15 16:24:53 +01:00
this.tag(BlockTags.SMALL_FLOWERS).add(ModBlocks.END_FLOWER, ModBlocks.AURA_BLOOM);
this.tag(NETHER_ALTAR_WOOD).add(Blocks.CRIMSON_PLANKS, Blocks.WARPED_PLANKS);
2020-01-23 16:05:52 +01:00
}
}