1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-22 04:35:53 +00:00
Slimefun4/src/me/mrCookieSlime/Slimefun/Objects/SlimefunItem/ChargedItem.java
mrCookieSlime 686004304c Slimefun 4
2016-04-14 18:24:03 +02:00

25 lines
822 B
Java

package me.mrCookieSlime.Slimefun.Objects.SlimefunItem;
import me.mrCookieSlime.Slimefun.Lists.RecipeType;
import me.mrCookieSlime.Slimefun.Objects.Category;
import org.bukkit.inventory.ItemStack;
public class ChargedItem extends SlimefunItem {
String chargeType;
public ChargedItem(Category category, ItemStack item, String name, RecipeType recipeType, ItemStack[] recipe, String chargeType) {
super(category, item, name, recipeType, recipe);
this.chargeType = chargeType;
}
public ChargedItem(Category category, ItemStack item, String name, RecipeType recipeType, ItemStack[] recipe, String chargeType, String[] keys, Object[] values) {
super(category, item, name, recipeType, recipe, keys, values);
this.chargeType = chargeType;
}
public String getChargeType() { return this.chargeType; }
}