This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
SorceryCraft/src/main/java/com/thebrokenrail/sorcerycraft/spell/InwardSpell.java
TheBrokenRail 07d1d44f52
All checks were successful
SorceryCraft/pipeline/head This commit looks good
1.0.11
Allow Spells to Affect Blocks
Add Cooling Spell
2020-03-07 15:12:46 -05:00

28 lines
586 B
Java

package com.thebrokenrail.sorcerycraft.spell;
import com.thebrokenrail.sorcerycraft.spell.registry.Spell;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.util.Identifier;
public class InwardSpell extends Spell {
public InwardSpell(Identifier id, int level) {
super(id, level);
}
@Override
public int getXPCost() {
return 16;
}
@Override
public ItemStack getItemCost() {
return new ItemStack(Items.ENDER_EYE);
}
@Override
public int getMaxLevel() {
return 1;
}
}