Custom Stylesheet

This commit is contained in:
Frank Bauer 2021-07-17 10:27:21 +02:00
parent aa59cb9844
commit 5b9eb304bc
4 changed files with 910 additions and 14 deletions

View file

@ -1,5 +1,7 @@
package ru.bclib.api;
import java.util.function.Supplier;
import net.fabricmc.fabric.api.tag.TagRegistry;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.tags.BlockTags;
@ -14,8 +16,6 @@ import net.minecraft.world.level.block.Blocks;
import ru.bclib.BCLib;
import ru.bclib.util.TagHelper;
import java.util.function.Supplier;
public class TagAPI {
// Block Tags
public static final Tag.Named<Block> BOOKSHELVES = makeCommonBlockTag("bookshelves");

View file

@ -25,12 +25,8 @@ public class TagHelper {
* Adds one Tag to multiple Blocks.
*
* Example:
* <pre>
* {@code
* Tag.Named<Block> DIMENSION_STONE = makeBlockTag("mymod", "dim_stone");
* TagHelper.addTag(DIMENSION_STONE, Blocks.END_STONE, Blocks.NETHERRACK);
* }
* </pre>
* <pre>{@code Tag.Named<Block> DIMENSION_STONE = makeBlockTag("mymod", "dim_stone");
* TagHelper.addTag(DIMENSION_STONE, Blocks.END_STONE, Blocks.NETHERRACK);}</pre>
*
* The call will reserve the Tag. The Tag is added to the blocks once
* {@link #apply(String, Map)} was executed.
@ -53,12 +49,8 @@ public class TagHelper {
* Adds one Tag to multiple Items.
*
* Example:
* <pre>
* {@code
* Tag.Named<Item> METALS = makeBlockTag("mymod", "metals");
* TagHelper.addTag(METALS, Items.IRON_INGOT, Items.GOLD_INGOT, Items.COPPER_INGOT);
* }
* </pre>
* <pre>{@code Tag.Named<Item> METALS = makeBlockTag("mymod", "metals");
* TagHelper.addTag(METALS, Items.IRON_INGOT, Items.GOLD_INGOT, Items.COPPER_INGOT);}</pre>
*
* The call will reserve the Tag. The Tag is added to the items once
* {@link #apply(String, Map)} was executed.