Added Lime Artifact

This commit is contained in:
Auxilor
2020-08-29 13:28:52 +01:00
parent f032ab70e0
commit 49e0f087c8
5 changed files with 61 additions and 3 deletions

View File

@@ -187,6 +187,7 @@ public class EcoEnchants {
public static final EcoEnchant BUCKSHOT = new Buckshot();
public static final EcoEnchant DIVERSE = new Diverse();
public static final EcoEnchant LIFE_STEAL = new LifeSteal();
public static final EcoEnchant LIME_ARTIFACT = new LimeArtifact();
/**
* Get all registered {@link EcoEnchant}s

View File

@@ -0,0 +1,16 @@
package com.willfp.ecoenchants.enchantments.ecoenchants.artifact;
import com.willfp.ecoenchants.enchantments.Artifact;
import org.bukkit.Color;
import org.bukkit.Particle;
public class LimeArtifact extends Artifact {
public LimeArtifact() {
super(
"lime_artifact",
4.0,
Particle.REDSTONE,
new Particle.DustOptions(Color.fromRGB(3, 252, 140), 1.0f)
);
}
}