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/SteadfastSpell.java
TheBrokenRail e431ddb057
All checks were successful
SorceryCraft/pipeline/head This commit looks good
1.1
API is now stable
Fix /spell suggestions
2020-03-08 13:45:52 -04:00

28 lines
593 B
Java

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