ConstructionWand/src/main/java/thetadev/constructionwand/items/core/ItemCoreAngel.java
Theta-Dev 39e02d8fe6 Added crafting recipes for wand cores
Wand core list in tooltip
Tooltips for wand cores
2021-03-08 01:33:19 +01:00

21 lines
476 B
Java

package thetadev.constructionwand.items.core;
import thetadev.constructionwand.api.IWandAction;
import thetadev.constructionwand.wand.action.ActionAngel;
public class ItemCoreAngel extends ItemCore
{
public ItemCoreAngel(String name, Properties properties) {
super(name, properties);
}
@Override
public int getColor() {
return 0xE9B115;
}
@Override
public IWandAction getWandAction() {
return new ActionAngel();
}
}