summaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/funnyteleporters/FunnyRegistry.java
blob: 498adf5d703741daa394dd94add162518c70af05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package moe.nea.funnyteleporters;

import eu.pb4.polymer.core.api.block.PolymerBlockUtils;
import eu.pb4.polymer.core.api.item.PolymerBlockItem;
import net.minecraft.block.AbstractBlock;
import net.minecraft.block.Block;
import net.minecraft.block.entity.BlockEntity;
import net.minecraft.block.entity.BlockEntityType;
import net.minecraft.block.piston.PistonBehavior;
import net.minecraft.item.Item;
import net.minecraft.item.Items;
import net.minecraft.registry.Registries;
import net.minecraft.registry.Registry;
import net.minecraft.util.Identifier;

public class FunnyRegistry {
	public static Block COLOURED_CHEST = registerBlock("coloured_chest", new ColouredChestBlock(AbstractBlock.Settings.create()
	                                                                                                                  .pistonBehavior(PistonBehavior.PUSH_ONLY)
	                                                                                                                  .strength(50.0F, 1200.0F)), Items.REINFORCED_DEEPSLATE);
	public static BlockEntityType<ColouredChestBlockEntity> COLOURED_CHEST_ENTITY = registerBlockEntity("coloured_chest", BlockEntityType.Builder.create(ColouredChestBlockEntity::new, COLOURED_CHEST));


	private static <T extends BlockEntity> BlockEntityType<T> registerBlockEntity(String name, BlockEntityType.Builder<T> builder) {
		var be = Registry.register(Registries.BLOCK_ENTITY_TYPE,
		                           Identifier.of(FunnyTeleporters.MOD_ID, name),
		                           builder.build()
		);
		PolymerBlockUtils.registerBlockEntity(be);
		return be;
	}

	private static <T extends Block> T registerBlock(String name, T block, Item blockItem) {
		var id = Identifier.of(FunnyTeleporters.MOD_ID, name);
		Registry.register(Registries.ITEM, id, new PolymerBlockItem(block, new Item.Settings(), blockItem));
		return Registry.register(Registries.BLOCK, id, block);
	}

	public static void init() {

	}
}