ConstructionWand/src/main/java/thetadev/constructionwand/items/core/ItemCoreAngel.java
2022-08-09 13:43:38 +02:00

28 lines
677 B
Java

package thetadev.constructionwand.items.core;
import net.minecraft.resources.ResourceLocation;
import thetadev.constructionwand.ConstructionWand;
import thetadev.constructionwand.api.IWandAction;
import thetadev.constructionwand.wand.action.ActionAngel;
public class ItemCoreAngel extends ItemCore
{
public ItemCoreAngel(Properties properties) {
super(properties);
}
@Override
public int getColor() {
return 0xE9B115;
}
@Override
public IWandAction getWandAction() {
return new ActionAngel();
}
@Override
public ResourceLocation getRegistryName() {
return ConstructionWand.loc("core_angel");
}
}