ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/items/base/ItemBase.java

37 lines
913 B
Java
Raw Normal View History

2020-09-09 16:49:01 +02:00
package de.ellpeck.actuallyadditions.common.items.base;
2020-09-09 16:49:01 +02:00
import de.ellpeck.actuallyadditions.common.ActuallyAdditions;
import de.ellpeck.actuallyadditions.common.util.ItemUtil;
import net.minecraft.item.Item;
2016-01-08 20:51:03 +01:00
import net.minecraft.item.ItemStack;
2019-05-02 09:10:29 +02:00
public class ItemBase extends Item {
2016-05-19 20:05:12 +02:00
private final String name;
2020-10-31 21:42:32 +01:00
public ItemBase(Properties properties, String name) {
super(properties);
this.name = name;
this.register();
}
2019-05-02 09:10:29 +02:00
private void register() {
2016-03-18 18:38:39 +01:00
ItemUtil.registerItem(this, this.getBaseName(), this.shouldAddCreative());
2016-01-08 16:52:53 +01:00
2016-01-08 20:51:03 +01:00
this.registerRendering();
}
2019-05-02 09:10:29 +02:00
protected String getBaseName() {
return this.name;
}
2015-12-19 10:30:39 +01:00
2019-05-02 09:10:29 +02:00
public boolean shouldAddCreative() {
2015-12-19 10:30:39 +01:00
return true;
}
2016-02-01 17:49:55 +01:00
2019-05-02 09:10:29 +02:00
protected void registerRendering() {
2018-05-10 11:38:58 +02:00
ActuallyAdditions.PROXY.addRenderRegister(new ItemStack(this), this.getRegistryName(), "inventory");
2016-02-01 17:49:55 +01:00
}
}