lifesteal/src/ca/thetechrobo/smp/LifeExtractor.java

16 lines
403 B
Java

package ca.thetechrobo.smp;
import java.util.ArrayList;
import org.bukkit.Material;
public class LifeExtractor extends SuperLife {
public void create() {
this.lore = new ArrayList<String>();
this.lore.add("Converts one of your lives into an item.");
this.lore.add("Won't work if you only have 1 life.");
this.m = Material.NETHERITE_HOE;
this.dn = "§5LifextractorTM";
supercreate();
}
}