mirror of
https://github.com/SimplexDevelopment/ArcanumOcculta.git
synced 2025-07-02 22:16:41 +00:00
TODO: - Listener implementations - Spell tome, book, and wand items - Persistent data storage - Configurable values - Custom spells
13 lines
384 B
Java
13 lines
384 B
Java
package app.simplexdev.arcanumocculta.spell.effect;
|
|
|
|
import app.simplexdev.arcanumocculta.base.effect.AbstractSpellEffect;
|
|
import org.bukkit.potion.PotionEffectType;
|
|
|
|
import java.time.Duration;
|
|
|
|
public class FireballEffect extends AbstractSpellEffect {
|
|
public FireballEffect(Duration duration, float amplifier) {
|
|
super(duration, amplifier, PotionEffectType.HARM);
|
|
}
|
|
}
|