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/Spell.java
TheBrokenRail 6052e00429
All checks were successful
SorceryCraft/pipeline/head This commit looks good
Initial Commit
2020-03-01 13:19:59 -05:00

31 lines
626 B
Java

package com.thebrokenrail.sorcerycraft.spell;
import net.minecraft.entity.Entity;
import net.minecraft.item.ItemStack;
public abstract class Spell {
private final String id;
private final int level;
public Spell(String id, int level) {
this.id = id;
this.level = level;
}
public String getID() {
return id;
}
public int getLevel() {
return level;
}
public abstract void execute(Entity target, Entity source, Entity attacker);
public abstract int getXPCost();
public abstract ItemStack getItemCost();
public abstract int getMaxLevel();
}