ConstructionWand/src/main/java/thetadev/constructionwand/items/core/ItemCoreDestruction.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
500 B
Java

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