mirror of
https://github.com/SimplexDevelopment/ArcanumOcculta.git
synced 2025-07-03 14:26:42 +00:00
Backend Finalization
TODO: - Listener implementations - Spell tome, book, and wand items - Persistent data storage - Configurable values - Custom spells
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user