Added Lime Artifact
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user