mirror of
https://github.com/Theta-Dev/ConstructionWand.git
synced 2025-10-14 20:23:32 +02:00
28 lines
677 B
Java
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");
|
|
}
|
|
}
|