mirror of
https://github.com/Theta-Dev/ConstructionWand.git
synced 2025-08-06 02:45:26 +02:00
21 lines
476 B
Java
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();
|
|
}
|
|
}
|