mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Moved more stuff into skill files.
This commit is contained in:
parent
d920702389
commit
4a2325f244
@ -237,7 +237,7 @@ public class mcBlockListener implements Listener
|
|||||||
}
|
}
|
||||||
if(LoadProperties.toolsLoseDurabilityFromAbilities)
|
if(LoadProperties.toolsLoseDurabilityFromAbilities)
|
||||||
{
|
{
|
||||||
if(inhand.getEnchantments().containsKey(Enchantment.DURABILITY))
|
if(!inhand.getEnchantments().containsKey(Enchantment.DURABILITY))
|
||||||
m.damageTool(player, (short) LoadProperties.abilityDurabilityLoss);
|
m.damageTool(player, (short) LoadProperties.abilityDurabilityLoss);
|
||||||
}
|
}
|
||||||
plugin.misc.treeFeller.clear();
|
plugin.misc.treeFeller.clear();
|
||||||
@ -342,7 +342,7 @@ public class mcBlockListener implements Listener
|
|||||||
|
|
||||||
if(LoadProperties.toolsLoseDurabilityFromAbilities)
|
if(LoadProperties.toolsLoseDurabilityFromAbilities)
|
||||||
{
|
{
|
||||||
if(inhand.getEnchantments().containsKey(Enchantment.DURABILITY))
|
if(!inhand.getEnchantments().containsKey(Enchantment.DURABILITY))
|
||||||
m.damageTool(player, (short) LoadProperties.abilityDurabilityLoss);
|
m.damageTool(player, (short) LoadProperties.abilityDurabilityLoss);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -369,45 +369,17 @@ public class mcBlockListener implements Listener
|
|||||||
&& player.getItemInHand().getTypeId() == 0
|
&& player.getItemInHand().getTypeId() == 0
|
||||||
&& (Excavation.canBeGigaDrillBroken(block) || block.getTypeId() == 78))
|
&& (Excavation.canBeGigaDrillBroken(block) || block.getTypeId() == 78))
|
||||||
{
|
{
|
||||||
Material mat = Material.getMaterial(block.getTypeId());
|
event.setInstaBreak(true);
|
||||||
|
Unarmed.berserk(player, block);
|
||||||
if(block.getTypeId() == 2)
|
|
||||||
mat = Material.DIRT;
|
|
||||||
if(block.getTypeId() == 78)
|
|
||||||
mat = Material.SNOW_BALL;
|
|
||||||
if(block.getTypeId() == 82)
|
|
||||||
mat = Material.CLAY_BALL;
|
|
||||||
if(block.getTypeId() == 110)
|
|
||||||
mat = Material.DIRT;
|
|
||||||
|
|
||||||
byte type = block.getData();
|
|
||||||
|
|
||||||
ItemStack item = new ItemStack(mat, 1, (byte)0, type);
|
|
||||||
player.incrementStatistic(Statistic.MINE_BLOCK, event.getBlock().getType());
|
|
||||||
|
|
||||||
block.setType(Material.AIR);
|
|
||||||
|
|
||||||
if(item.getType() == Material.CLAY_BALL)
|
|
||||||
{
|
|
||||||
m.mcDropItem(block.getLocation(), item);
|
|
||||||
m.mcDropItem(block.getLocation(), item);
|
|
||||||
m.mcDropItem(block.getLocation(), item);
|
|
||||||
m.mcDropItem(block.getLocation(), item);
|
|
||||||
} else
|
|
||||||
{
|
|
||||||
m.mcDropItem(block.getLocation(), item);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(LoadProperties.spoutEnabled)
|
|
||||||
SpoutStuff.playSoundForPlayer(SoundEffect.POP, player, block.getLocation());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SUPER BREAKER CHECKS
|
* SUPER BREAKER CHECKS
|
||||||
*/
|
*/
|
||||||
if(PP.getSuperBreakerMode()
|
if(PP.getSuperBreakerMode()
|
||||||
&& Mining.canBeSuperBroken(block)
|
&& Mining.canBeSuperBroken(block)
|
||||||
&& m.blockBreakSimulate(block, player))
|
&& m.blockBreakSimulate(block, player)
|
||||||
|
&& mcPermissions.getInstance().mining(player))
|
||||||
{
|
{
|
||||||
|
|
||||||
if(LoadProperties.miningrequirespickaxe)
|
if(LoadProperties.miningrequirespickaxe)
|
||||||
@ -420,26 +392,22 @@ public class mcBlockListener implements Listener
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* LEAF BLOWER
|
* LEAF BLOWER CHECKS
|
||||||
*/
|
*/
|
||||||
if(block.getTypeId() == 18 && mcPermissions.getInstance().woodcutting(player) && PP.getSkillLevel(SkillType.WOODCUTTING) >= 100 && m.isAxes(player.getItemInHand()) && m.blockBreakSimulate(block, player))
|
if(block.getTypeId() == 18
|
||||||
|
&& mcPermissions.getInstance().woodcutting(player)
|
||||||
|
&& PP.getSkillLevel(SkillType.WOODCUTTING) >= 100
|
||||||
|
&& m.blockBreakSimulate(block, player))
|
||||||
{
|
{
|
||||||
|
if(LoadProperties.woodcuttingrequiresaxe)
|
||||||
if(LoadProperties.toolsLoseDurabilityFromAbilities)
|
|
||||||
{
|
|
||||||
if(inhand.getEnchantments().containsKey(Enchantment.DURABILITY))
|
|
||||||
m.damageTool(player, (short) LoadProperties.abilityDurabilityLoss);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(Math.random() * 10 > 9)
|
|
||||||
{
|
{
|
||||||
ItemStack x = new ItemStack(Material.SAPLING, 1, (short)0, (byte)(block.getData()-8));
|
if(m.isAxes(inhand))
|
||||||
m.mcDropItem(block.getLocation(), x);
|
WoodCutting.leafBlower(player, block);
|
||||||
}
|
}
|
||||||
block.setType(Material.AIR);
|
else{
|
||||||
player.incrementStatistic(Statistic.MINE_BLOCK, event.getBlock().getType());
|
WoodCutting.leafBlower(player, block);
|
||||||
if(LoadProperties.spoutEnabled)
|
}
|
||||||
SpoutStuff.playSoundForPlayer(SoundEffect.POP, player, block.getLocation());
|
|
||||||
}
|
}
|
||||||
if(block.getType() == Material.AIR && plugin.misc.blockWatchList.contains(block))
|
if(block.getType() == Material.AIR && plugin.misc.blockWatchList.contains(block))
|
||||||
{
|
{
|
||||||
|
@ -25,7 +25,9 @@ import com.gmail.nossr50.m;
|
|||||||
import com.gmail.nossr50.config.LoadProperties;
|
import com.gmail.nossr50.config.LoadProperties;
|
||||||
import com.gmail.nossr50.datatypes.PlayerProfile;
|
import com.gmail.nossr50.datatypes.PlayerProfile;
|
||||||
import com.gmail.nossr50.datatypes.SkillType;
|
import com.gmail.nossr50.datatypes.SkillType;
|
||||||
|
import com.gmail.nossr50.listeners.Material;
|
||||||
import com.gmail.nossr50.locale.mcLocale;
|
import com.gmail.nossr50.locale.mcLocale;
|
||||||
|
import com.gmail.nossr50.spout.SpoutStuff;
|
||||||
|
|
||||||
public class Unarmed {
|
public class Unarmed {
|
||||||
public static void berserkActivationCheck(Player player)
|
public static void berserkActivationCheck(Player player)
|
||||||
@ -108,4 +110,36 @@ public class Unarmed {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void berserk(Player player, Block block){
|
||||||
|
|
||||||
|
Material mat = Material.getMaterial(block.getTypeId());
|
||||||
|
byte damage = 0;
|
||||||
|
|
||||||
|
if(block.getTypeId() == 2 || block.getTypeId() == 110)
|
||||||
|
mat = Material.DIRT;
|
||||||
|
if(block.getTypeId() == 78)
|
||||||
|
mat = Material.SNOW_BALL;
|
||||||
|
if(block.getTypeId() == 82)
|
||||||
|
mat = Material.CLAY_BALL;
|
||||||
|
|
||||||
|
ItemStack item = new ItemStack(mat, 1, (byte)0, damage);
|
||||||
|
player.incrementStatistic(Statistic.MINE_BLOCK, event.getBlock().getType());
|
||||||
|
|
||||||
|
// block.setType(Material.AIR);
|
||||||
|
|
||||||
|
if(item.getType() == Material.CLAY_BALL)
|
||||||
|
{
|
||||||
|
m.mcDropItem(block.getLocation(), item);
|
||||||
|
m.mcDropItem(block.getLocation(), item);
|
||||||
|
m.mcDropItem(block.getLocation(), item);
|
||||||
|
m.mcDropItem(block.getLocation(), item);
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
m.mcDropItem(block.getLocation(), item);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(LoadProperties.spoutEnabled)
|
||||||
|
SpoutStuff.playSoundForPlayer(SoundEffect.POP, player, block.getLocation());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -27,9 +27,11 @@ import org.bukkit.inventory.ItemStack;
|
|||||||
import com.gmail.nossr50.Users;
|
import com.gmail.nossr50.Users;
|
||||||
import com.gmail.nossr50.m;
|
import com.gmail.nossr50.m;
|
||||||
import com.gmail.nossr50.mcMMO;
|
import com.gmail.nossr50.mcMMO;
|
||||||
|
import com.gmail.nossr50.mcPermissions;
|
||||||
import com.gmail.nossr50.datatypes.PlayerProfile;
|
import com.gmail.nossr50.datatypes.PlayerProfile;
|
||||||
import com.gmail.nossr50.datatypes.SkillType;
|
import com.gmail.nossr50.datatypes.SkillType;
|
||||||
import com.gmail.nossr50.locale.mcLocale;
|
import com.gmail.nossr50.locale.mcLocale;
|
||||||
|
import com.gmail.nossr50.spout.SpoutStuff;
|
||||||
import com.gmail.nossr50.config.*;
|
import com.gmail.nossr50.config.*;
|
||||||
|
|
||||||
|
|
||||||
@ -195,4 +197,24 @@ public class WoodCutting
|
|||||||
PP.addXP(SkillType.WOODCUTTING, xp, player);
|
PP.addXP(SkillType.WOODCUTTING, xp, player);
|
||||||
Skills.XpCheckSkill(SkillType.WOODCUTTING, player);
|
Skills.XpCheckSkill(SkillType.WOODCUTTING, player);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void leafBlower(Player player, Block block){
|
||||||
|
if(LoadProperties.toolsLoseDurabilityFromAbilities)
|
||||||
|
{
|
||||||
|
if(!player.getItemInHand().getEnchantments().containsKey(Enchantment.DURABILITY))
|
||||||
|
m.damageTool(player, (short) LoadProperties.abilityDurabilityLoss);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(Math.random() * 10 > 9)
|
||||||
|
{
|
||||||
|
ItemStack x = new ItemStack(Material.SAPLING, 1, (short)0, (byte)(block.getData()-8));
|
||||||
|
m.mcDropItem(block.getLocation(), x);
|
||||||
|
}
|
||||||
|
|
||||||
|
block.setType(Material.AIR);
|
||||||
|
player.incrementStatistic(Statistic.MINE_BLOCK, event.getBlock().getType());
|
||||||
|
|
||||||
|
if(LoadProperties.spoutEnabled)
|
||||||
|
SpoutStuff.playSoundForPlayer(SoundEffect.POP, player, block.getLocation());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user