mcMMO/src/main/java/com/gmail/nossr50/skills/gathering/Herbalism.java

611 lines
24 KiB
Java
Raw Normal View History

2012-05-01 19:58:47 +02:00
package com.gmail.nossr50.skills.gathering;
2012-01-09 20:00:13 +01:00
import org.bukkit.CropState;
2013-01-08 17:31:07 +01:00
import org.bukkit.DyeColor;
2012-01-09 20:00:13 +01:00
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.block.Block;
import org.bukkit.entity.Player;
import org.bukkit.event.block.BlockBreakEvent;
import org.bukkit.inventory.ItemStack;
2012-02-24 07:02:23 +01:00
import org.bukkit.inventory.PlayerInventory;
2012-12-25 07:01:10 +01:00
import org.bukkit.material.MaterialData;
2012-02-24 07:02:23 +01:00
import com.gmail.nossr50.mcMMO;
import com.gmail.nossr50.config.AdvancedConfig;
2012-04-26 16:27:57 +02:00
import com.gmail.nossr50.config.Config;
import com.gmail.nossr50.config.mods.CustomBlocksConfig;
import com.gmail.nossr50.datatypes.AbilityType;
2012-01-09 20:00:13 +01:00
import com.gmail.nossr50.datatypes.PlayerProfile;
import com.gmail.nossr50.datatypes.SkillType;
import com.gmail.nossr50.datatypes.mods.CustomBlock;
2012-04-27 11:47:11 +02:00
import com.gmail.nossr50.locale.LocaleLoader;
import com.gmail.nossr50.runnables.GreenThumbTimer;
2012-04-27 11:47:11 +02:00
import com.gmail.nossr50.util.Misc;
import com.gmail.nossr50.util.ModChecks;
2012-04-27 11:47:11 +02:00
import com.gmail.nossr50.util.Permissions;
2012-05-01 19:58:47 +02:00
import com.gmail.nossr50.util.Skills;
2012-04-27 11:47:11 +02:00
import com.gmail.nossr50.util.Users;
2012-01-09 20:00:13 +01:00
2012-03-10 19:03:31 +01:00
public class Herbalism {
public static int farmersDietRankChangeLevel = AdvancedConfig.getInstance().getFarmerDietRankChange();
public static int farmersDietMaxLevel = farmersDietRankChangeLevel * 5;
public static int greenThumbStageChangeLevel = AdvancedConfig.getInstance().getGreenThumbStageChange();
public static int greenThumbStageMaxLevel = greenThumbStageChangeLevel * 4;
public static double greenThumbMaxChance = AdvancedConfig.getInstance().getGreenThumbChanceMax();
public static int greenThumbMaxLevel = AdvancedConfig.getInstance().getGreenThumbMaxLevel();
public static double doubleDropsMaxChance = AdvancedConfig.getInstance().getHerbalismDoubleDropsChanceMax();
public static int doubleDropsMaxLevel = AdvancedConfig.getInstance().getHerbalismDoubleDropsMaxLevel();
public static double hylianLuckMaxChance = AdvancedConfig.getInstance().getHylianLuckChanceMax();
public static int hylianLuckMaxLevel = AdvancedConfig.getInstance().getHylianLucksMaxLevel();
2012-03-26 17:04:17 +02:00
2012-03-10 19:03:31 +01:00
/**
* Activate the Green Terra ability.
*
* @param player The player activating the ability
* @param block The block to be changed by Green Terra
*/
public static void greenTerra(Player player, Block block) {
PlayerInventory inventory = player.getInventory();
boolean hasSeeds = inventory.contains(Material.SEEDS);
if (!hasSeeds) {
player.sendMessage(LocaleLoader.getString("Herbalism.Ability.GTe.NeedMore"));
2012-03-10 19:03:31 +01:00
}
else if (hasSeeds && !block.getType().equals(Material.WHEAT)) {
inventory.removeItem(new ItemStack(Material.SEEDS));
2012-05-15 06:49:19 +02:00
player.updateInventory(); // Needed until replacement available
greenTerraConvert(player, block);
}
}
2012-06-05 15:57:10 +02:00
public static void greenTerraConvert(Player player, Block block) {
Material type = block.getType();
2012-06-05 15:57:10 +02:00
if (Misc.blockBreakSimulate(block, player, false)) {
if (Config.getInstance().getHerbalismGreenThumbSmoothbrickToMossy() && type == Material.SMOOTH_BRICK && block.getData() == 0) {
block.setTypeIdAndData(block.getTypeId(), (byte) 1, false); //Set type of the brick to mossy, force the client update
}
else if (Config.getInstance().getHerbalismGreenThumbDirtToGrass() && type == Material.DIRT) {
block.setType(Material.GRASS);
}
else if (Config.getInstance().getHerbalismGreenThumbCobbleToMossy() && type == Material.COBBLESTONE) {
block.setType(Material.MOSSY_COBBLESTONE);
// Don't award double drops to mossified cobblestone
2012-12-24 22:17:19 +01:00
mcMMO.placeStore.setTrue(block);
2012-03-10 19:03:31 +01:00
}
else if (Config.getInstance().getHerbalismGreenThumbCobbleWallToMossyWall() && type == Material.COBBLE_WALL) {
block.setData((byte) 1);
}
2012-03-10 19:03:31 +01:00
}
}
/**
* Check for extra Herbalism drops.
*
* @param block The block to check for extra drops
* @param player The player getting extra drops
* @param event The event to use for Green Thumb
* @param plugin mcMMO plugin instance
*/
public static void herbalismProcCheck(final Block block, Player player, BlockBreakEvent event, mcMMO plugin) {
2013-01-10 05:03:17 +01:00
if (player == null)
return;
2012-07-03 16:04:04 +02:00
final PlayerProfile profile = Users.getProfile(player);
2012-03-13 08:31:07 +01:00
2012-07-03 16:04:04 +02:00
int herbLevel = profile.getSkillLevel(SkillType.HERBALISM);
2012-03-10 19:03:31 +01:00
int id = block.getTypeId();
Material type = block.getType();
2012-03-10 19:03:31 +01:00
Byte data = block.getData();
2012-07-04 21:35:14 +02:00
Location location = block.getLocation();
2012-03-10 19:03:31 +01:00
Material mat = null;
2012-03-10 19:03:31 +01:00
int xp = 0;
int catciDrops = 0;
int caneDrops = 0;
boolean customPlant = false;
2013-01-22 02:01:33 +01:00
int activationChance = Misc.calculateActivationChance(Permissions.luckyHerbalism(player));
float chance = (float) ((doubleDropsMaxChance / doubleDropsMaxLevel) * herbLevel);
if (chance > doubleDropsMaxChance) chance = (float) doubleDropsMaxChance;
2012-03-10 19:03:31 +01:00
switch (type) {
case BROWN_MUSHROOM:
case RED_MUSHROOM:
2012-12-24 22:17:19 +01:00
if (!mcMMO.placeStore.isTrue(block)) {
2012-03-10 19:03:31 +01:00
mat = Material.getMaterial(id);
xp = Config.getInstance().getHerbalismXPMushrooms();
2012-03-10 19:03:31 +01:00
}
break;
case CACTUS:
for (int y = 0; y <= 2; y++) {
Block b = block.getRelative(0, y, 0);
if (b.getType().equals(Material.CACTUS)) {
mat = Material.CACTUS;
2012-12-24 22:17:19 +01:00
if (!mcMMO.placeStore.isTrue(b)) {
2013-01-22 02:01:33 +01:00
if (chance > Misc.getRandom().nextInt(activationChance)) {
2012-03-10 19:03:31 +01:00
catciDrops++;
}
xp += Config.getInstance().getHerbalismXPCactus();
2012-03-10 19:03:31 +01:00
}
}
}
break;
case CROPS:
if (data == CropState.RIPE.getData()) {
2012-03-10 19:03:31 +01:00
mat = Material.WHEAT;
xp = Config.getInstance().getHerbalismXPWheat();
2013-01-07 02:52:31 +01:00
if (Permissions.greenThumbWheat(player)) {
greenThumbWheat(block, player, event, plugin);
}
2012-03-10 19:03:31 +01:00
}
break;
case MELON_BLOCK:
2012-12-24 22:17:19 +01:00
if (!mcMMO.placeStore.isTrue(block)) {
2012-03-10 19:03:31 +01:00
mat = Material.MELON;
xp = Config.getInstance().getHerbalismXPMelon();
2012-03-10 19:03:31 +01:00
}
break;
case NETHER_WARTS:
if (data == (byte) 0x3) {
mat = Material.NETHER_STALK;
xp = Config.getInstance().getHerbalismXPNetherWart();
2013-01-07 02:52:31 +01:00
if (Permissions.greenThumbNetherwart(player)) {
greenThumbWheat(block, player, event, plugin);
}
2012-03-10 19:03:31 +01:00
}
break;
case PUMPKIN:
case JACK_O_LANTERN:
2012-12-24 22:17:19 +01:00
if (!mcMMO.placeStore.isTrue(block)) {
2012-03-10 19:03:31 +01:00
mat = Material.getMaterial(id);
xp = Config.getInstance().getHerbalismXPPumpkin();
2012-03-10 19:03:31 +01:00
}
break;
case RED_ROSE:
case YELLOW_FLOWER:
2012-12-24 22:17:19 +01:00
if (!mcMMO.placeStore.isTrue(block)) {
2012-03-10 19:03:31 +01:00
mat = Material.getMaterial(id);
xp = Config.getInstance().getHerbalismXPFlowers();
2012-03-10 19:03:31 +01:00
}
break;
case SUGAR_CANE_BLOCK:
for (int y = 0; y <= 2; y++) {
Block b = block.getRelative(0, y, 0);
if (b.getType().equals(Material.SUGAR_CANE_BLOCK)) {
mat = Material.SUGAR_CANE;
2012-12-24 22:17:19 +01:00
if (!mcMMO.placeStore.isTrue(b)) {
2013-01-22 02:01:33 +01:00
if (chance > Misc.getRandom().nextInt(activationChance)) {
2012-03-10 19:03:31 +01:00
caneDrops++;
}
xp += Config.getInstance().getHerbalismXPSugarCane();
2012-03-10 19:03:31 +01:00
}
}
}
break;
case VINE:
2012-12-24 22:17:19 +01:00
if (!mcMMO.placeStore.isTrue(block)) {
2012-03-10 19:03:31 +01:00
mat = type;
xp = Config.getInstance().getHerbalismXPVines();
2012-03-10 19:03:31 +01:00
}
break;
case WATER_LILY:
2012-12-24 22:17:19 +01:00
if (!mcMMO.placeStore.isTrue(block)) {
2012-03-10 19:03:31 +01:00
mat = type;
xp = Config.getInstance().getHerbalismXPLilyPads();
2012-03-10 19:03:31 +01:00
}
break;
2012-12-24 22:56:25 +01:00
case COCOA:
2012-12-24 22:56:25 +01:00
if (((data) & 0x8) == 0x8) {
mat = Material.COCOA;
xp = Config.getInstance().getHerbalismXPCocoa();
2013-01-07 02:52:31 +01:00
if (Permissions.greenThumbCocoa(player)) {
greenThumbWheat(block, player, event, plugin);
}
}
break;
2012-03-10 19:03:31 +01:00
case CARROT:
if (data == CropState.RIPE.getData()) {
mat = Material.CARROT;
xp = Config.getInstance().getHerbalismXPCarrot();
2013-01-07 02:52:31 +01:00
if (Permissions.greenThumbCarrots(player)) {
greenThumbWheat(block, player, event, plugin);
}
}
break;
case POTATO:
if (data == CropState.RIPE.getData()) {
mat = Material.POTATO;
xp = Config.getInstance().getHerbalismXPPotato();
2013-01-07 02:52:31 +01:00
if (Permissions.greenThumbPotatoes(player)) {
greenThumbWheat(block, player, event, plugin);
}
}
break;
2012-03-10 19:03:31 +01:00
default:
ItemStack item = (new MaterialData(block.getTypeId(), block.getData())).toItemStack(1);
2012-12-25 07:01:10 +01:00
if (Config.getInstance().getBlockModsEnabled() && CustomBlocksConfig.getInstance().customHerbalismBlocks.contains(item)) {
customPlant = true;
xp = ModChecks.getCustomBlock(block).getXpGain();
}
2012-03-10 19:03:31 +01:00
break;
}
if (mat == null && !customPlant) {
return;
}
2013-01-07 02:52:31 +01:00
if (Permissions.herbalismDoubleDrops(player)) {
ItemStack is = null;
if (customPlant) {
is = new ItemStack(ModChecks.getCustomBlock(block).getItemDrop());
}
else {
if (mat == Material.COCOA) {
try {
2013-01-14 03:23:11 +01:00
is = new ItemStack(Material.INK_SACK, 1, DyeColor.BROWN.getDyeData());
}
catch (Exception e) {
is = new ItemStack(Material.INK_SACK, 1, (short) 3);
}
catch (NoSuchMethodError e) {
is = new ItemStack(Material.INK_SACK, 1, (short) 3);
}
}
else if (mat == Material.CARROT) {
2013-01-09 00:52:50 +01:00
is = new ItemStack(Material.CARROT_ITEM);
}
else if (mat == Material.POTATO) {
2013-01-09 00:52:50 +01:00
is = new ItemStack(Material.POTATO_ITEM);
}
else {
is = new ItemStack(mat);
}
}
2012-03-10 19:03:31 +01:00
2013-01-22 02:01:33 +01:00
if (chance > Misc.getRandom().nextInt(activationChance)) {
Config configInstance = Config.getInstance();
switch (type) {
case BROWN_MUSHROOM:
if (configInstance.getBrownMushroomsDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, is);
}
break;
case CACTUS:
if (configInstance.getCactiDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItems(location, is, catciDrops);
}
break;
case CROPS:
if (configInstance.getWheatDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, is);
}
break;
case MELON_BLOCK:
if (configInstance.getMelonsDoubleDropsEnabled()) {
Misc.dropItem(location, is);
}
break;
case NETHER_WARTS:
if (configInstance.getNetherWartsDoubleDropsEnabled()) {
Misc.dropItem(location, is);
}
break;
case PUMPKIN:
if (configInstance.getPumpkinsDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, is);
}
break;
case RED_MUSHROOM:
if (configInstance.getRedMushroomsDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, is);
}
break;
case SUGAR_CANE_BLOCK:
if (configInstance.getSugarCaneDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItems(location, is, caneDrops);
}
break;
case VINE:
if (configInstance.getVinesDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, is);
}
break;
case WATER_LILY:
if (configInstance.getWaterLiliesDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, is);
}
break;
case YELLOW_FLOWER:
if (configInstance.getYellowFlowersDoubleDropsEnabled()) {
2012-07-04 21:35:14 +02:00
Misc.dropItem(location, is);
}
break;
2012-12-24 22:56:25 +01:00
case COCOA:
if (configInstance.getCocoaDoubleDropsEnabled()) {
2012-09-07 23:49:00 +02:00
Misc.dropItem(location, is);
}
break;
case CARROT:
if (configInstance.getCarrotDoubleDropsEnabled()) {
Misc.dropItem(location, is);
}
break;
case POTATO:
if (configInstance.getPotatoDoubleDropsEnabled()) {
Misc.dropItem(location, is);
}
break;
default:
if (customPlant) {
CustomBlock customBlock = ModChecks.getCustomBlock(block);
int minimumDropAmount = customBlock.getMinimumDropAmount();
int maximumDropAmount = customBlock.getMaximumDropAmount();
is = customBlock.getItemDrop();
if (minimumDropAmount != maximumDropAmount) {
2012-07-04 21:35:14 +02:00
Misc.dropItems(location, is, minimumDropAmount);
Misc.randomDropItems(location, is, 50, maximumDropAmount - minimumDropAmount);
}
else {
2012-07-04 21:35:14 +02:00
Misc.dropItems(location, is, minimumDropAmount);
}
}
break;
}
2012-03-10 19:03:31 +01:00
}
}
2013-01-10 05:03:17 +01:00
if (Config.getInstance().getHerbalismAFKDisabled() && player.isInsideVehicle())
return;
2012-07-03 16:04:04 +02:00
Skills.xpProcessing(player, profile, SkillType.HERBALISM, xp);
2012-01-09 20:00:13 +01:00
}
2012-03-10 19:03:31 +01:00
/**
* Apply the Green Thumb ability to crops.
2012-03-10 19:03:31 +01:00
*
* @param block The block to apply the ability to
* @param player The player using the ability
* @param event The event triggering the ability
* @param plugin mcMMO plugin instance
*/
private static void greenThumbWheat(Block block, Player player, BlockBreakEvent event, mcMMO plugin) {
2012-07-03 16:04:04 +02:00
PlayerProfile profile = Users.getProfile(player);
int herbLevel = profile.getSkillLevel(SkillType.HERBALISM);
2012-03-10 19:03:31 +01:00
PlayerInventory inventory = player.getInventory();
boolean hasSeeds = false;
2012-07-04 21:35:14 +02:00
Location location = block.getLocation();
Material type = block.getType();
switch(type) {
case CROPS:
hasSeeds = inventory.contains(Material.SEEDS);
break;
case COCOA:
try {
2013-01-14 03:24:43 +01:00
hasSeeds = inventory.containsAtLeast(new ItemStack(Material.INK_SACK, 1, DyeColor.BROWN.getDyeData()), 1);
}
catch(Exception e) {
2013-01-10 18:55:54 +01:00
hasSeeds = inventory.containsAtLeast(new ItemStack(Material.INK_SACK, 1, (short) 3), 1);
}
catch(NoSuchMethodError e) {
hasSeeds = inventory.containsAtLeast(new ItemStack(Material.INK_SACK, 1, (short) 3), 1);
}
break;
case CARROT:
hasSeeds = inventory.contains(Material.CARROT_ITEM);
break;
case POTATO:
hasSeeds = inventory.contains(Material.POTATO_ITEM);
break;
case NETHER_WARTS:
hasSeeds = inventory.contains(Material.NETHER_STALK);
break;
default:
break;
}
2012-03-10 19:03:31 +01:00
2013-01-22 02:01:33 +01:00
int activationChance = Misc.calculateActivationChance(Permissions.luckyHerbalism(player));
float chance = (float) ((greenThumbMaxChance / greenThumbMaxLevel) * herbLevel);
if (chance > greenThumbMaxChance) chance = (float) greenThumbMaxChance;
2013-01-22 02:01:33 +01:00
if (hasSeeds && profile.getAbilityMode(AbilityType.GREEN_TERRA) || hasSeeds && (chance > Misc.getRandom().nextInt(activationChance))) {
2012-03-10 19:03:31 +01:00
event.setCancelled(true);
switch(type) {
case CROPS:
Misc.dropItem(location, new ItemStack(Material.WHEAT));
Misc.randomDropItems(location, new ItemStack(Material.SEEDS), 50, 3);
inventory.removeItem(new ItemStack(Material.SEEDS));
break;
case COCOA:
try {
2013-01-14 03:23:11 +01:00
Misc.dropItems(location, new ItemStack(Material.INK_SACK, 1, DyeColor.BROWN.getDyeData()), 3);
inventory.removeItem(new ItemStack(Material.INK_SACK, 1, DyeColor.BROWN.getDyeData()));
}
catch(Exception e) {
2013-01-09 00:52:50 +01:00
Misc.dropItems(location, new ItemStack(Material.INK_SACK, 1, (short) 3), 3);
inventory.removeItem(new ItemStack(Material.INK_SACK, 1, (short) 3));
}
catch(NoSuchMethodError e) {
Misc.dropItems(location, new ItemStack(Material.INK_SACK, 1, (short) 3), 3);
inventory.removeItem(new ItemStack(Material.INK_SACK, 1, (short) 3));
}
break;
case CARROT:
Misc.dropItem(location, new ItemStack(Material.CARROT_ITEM));
Misc.randomDropItems(location, new ItemStack(Material.CARROT_ITEM), 50, 3);
inventory.removeItem(new ItemStack(Material.CARROT_ITEM));
break;
case POTATO:
Misc.dropItem(location, new ItemStack(Material.POTATO_ITEM));
Misc.randomDropItems(location, new ItemStack(Material.POTATO_ITEM), 50, 3);
Misc.randomDropItem(location, new ItemStack(Material.POISONOUS_POTATO), 2);
inventory.removeItem(new ItemStack(Material.POTATO_ITEM));
break;
case NETHER_WARTS:
2013-01-09 00:52:50 +01:00
Misc.dropItems(location, new ItemStack(Material.NETHER_STALK), 2);
Misc.randomDropItems(location, new ItemStack(Material.NETHER_STALK), 50, 2);
inventory.removeItem(new ItemStack(Material.NETHER_STALK));
break;
default:
break;
}
2012-03-10 19:03:31 +01:00
plugin.getServer().getScheduler().scheduleSyncDelayedTask(plugin, new GreenThumbTimer(block, profile, type), 1);
2012-05-15 06:49:19 +02:00
player.updateInventory(); // Needed until replacement available
2012-03-10 19:03:31 +01:00
}
2012-01-09 20:00:13 +01:00
}
/**
* Apply the Green Thumb ability to blocks.
*
* @param is The item in the player's hand
* @param player The player activating the ability
* @param block The block being used in the ability
*/
public static void greenThumbBlocks(ItemStack is, Player player, Block block) {
2012-07-03 16:04:04 +02:00
PlayerProfile profile = Users.getProfile(player);
int skillLevel = profile.getSkillLevel(SkillType.HERBALISM);
int seeds = is.getAmount();
player.setItemInHand(new ItemStack(Material.SEEDS, seeds - 1));
2013-01-22 02:01:33 +01:00
int activationChance = Misc.calculateActivationChance(Permissions.luckyHerbalism(player));
float chance = (float) ((greenThumbMaxChance / greenThumbMaxLevel) * skillLevel);
if (chance > greenThumbMaxChance) chance = (float) greenThumbMaxChance;
2013-01-22 02:01:33 +01:00
if (chance > Misc.getRandom().nextInt(activationChance)) {
greenTerraConvert(player, block);
}
else {
2012-05-06 09:55:15 +02:00
player.sendMessage(LocaleLoader.getString("Herbalism.Ability.GTh.Fail"));
}
}
public static void hylianLuck(Block block, Player player, BlockBreakEvent event) {
int skillLevel = Users.getProfile(player).getSkillLevel(SkillType.HERBALISM);
float chance = (float) ((hylianLuckMaxChance / hylianLuckMaxLevel) * skillLevel);
if (chance > hylianLuckMaxChance) chance = (float) hylianLuckMaxChance;
2013-01-22 02:01:33 +01:00
int activationChance = Misc.calculateActivationChance(Permissions.luckyHerbalism(player));
2013-01-22 02:01:33 +01:00
if (chance > Misc.getRandom().nextInt(activationChance)) {
Location location = block.getLocation();
int dropNumber = Misc.getRandom().nextInt(3);
ItemStack item = null;
switch (block.getType()) {
case DEAD_BUSH:
case LONG_GRASS:
case SAPLING:
if (dropNumber == 0) {
item = new ItemStack(Material.MELON_SEEDS);
}
else if (dropNumber == 1) {
item = new ItemStack(Material.PUMPKIN_SEEDS);
}
else {
try {
item = (new MaterialData(Material.INK_SACK, DyeColor.BROWN.getDyeData())).toItemStack(1);
}
catch (Exception e) {
item = (new MaterialData(Material.INK_SACK, (byte) 0x3)).toItemStack(1);
}
catch (NoSuchMethodError e) {
item = (new MaterialData(Material.INK_SACK, (byte) 0x3)).toItemStack(1);
}
}
break;
case RED_ROSE:
case YELLOW_FLOWER:
if (dropNumber == 0) {
item = new ItemStack(Material.POTATO);
}
else if (dropNumber == 1) {
item = new ItemStack(Material.CARROT);
}
else {
item = new ItemStack(Material.APPLE);
}
break;
case FLOWER_POT:
if (dropNumber == 0) {
item = new ItemStack(Material.EMERALD);
}
else if (dropNumber == 1) {
item = new ItemStack(Material.DIAMOND);
}
else {
item = new ItemStack(Material.GOLD_NUGGET);
}
break;
default:
break;
}
if (item == null) {
return;
}
event.setCancelled(true);
event.getBlock().setType(Material.AIR);
Misc.dropItem(location, item);
player.sendMessage(LocaleLoader.getString("Herbalism.HylianLuck"));
}
}
}