mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-03-31 08:46:26 +02:00
107 lines
4.3 KiB
Java
107 lines
4.3 KiB
Java
package com.gmail.nossr50.skills.excavation;
|
|
|
|
import com.gmail.nossr50.api.ItemSpawnReason;
|
|
import com.gmail.nossr50.config.Config;
|
|
import com.gmail.nossr50.datatypes.experience.XPGainReason;
|
|
import com.gmail.nossr50.datatypes.player.McMMOPlayer;
|
|
import com.gmail.nossr50.datatypes.skills.PrimarySkillType;
|
|
import com.gmail.nossr50.datatypes.skills.SubSkillType;
|
|
import com.gmail.nossr50.datatypes.treasure.ExcavationTreasure;
|
|
import com.gmail.nossr50.skills.SkillManager;
|
|
import com.gmail.nossr50.util.Misc;
|
|
import com.gmail.nossr50.util.Permissions;
|
|
import com.gmail.nossr50.util.random.RandomChanceUtil;
|
|
import com.gmail.nossr50.util.skills.RankUtils;
|
|
import com.gmail.nossr50.util.skills.SkillUtils;
|
|
import org.bukkit.Location;
|
|
import org.bukkit.block.BlockState;
|
|
import org.bukkit.entity.EntityType;
|
|
import org.bukkit.entity.ExperienceOrb;
|
|
import org.bukkit.entity.Player;
|
|
|
|
import java.util.List;
|
|
|
|
public class ExcavationManager extends SkillManager {
|
|
public ExcavationManager(McMMOPlayer mcMMOPlayer) {
|
|
super(mcMMOPlayer, PrimarySkillType.EXCAVATION);
|
|
}
|
|
|
|
/**
|
|
* Process treasure drops & XP gain for Excavation.
|
|
*
|
|
* @param blockState The {@link BlockState} to check ability activation for
|
|
*/
|
|
public void excavationBlockCheck(BlockState blockState) {
|
|
int xp = Excavation.getBlockXP(blockState);
|
|
|
|
if (Permissions.isSubSkillEnabled(getPlayer(), SubSkillType.EXCAVATION_ARCHAEOLOGY)) {
|
|
List<ExcavationTreasure> treasures = Excavation.getTreasures(blockState);
|
|
|
|
if (!treasures.isEmpty()) {
|
|
int skillLevel = getSkillLevel();
|
|
Location location = Misc.getBlockCenter(blockState);
|
|
|
|
for (ExcavationTreasure treasure : treasures) {
|
|
if (skillLevel >= treasure.getDropLevel()
|
|
&& RandomChanceUtil.checkRandomChanceExecutionSuccess(getPlayer(), PrimarySkillType.EXCAVATION, treasure.getDropChance())) {
|
|
|
|
//Spawn Vanilla XP orbs if a dice roll succeeds
|
|
if(RandomChanceUtil.rollDice(getArchaelogyExperienceOrbChance(), 100)) {
|
|
ExperienceOrb experienceOrb = (ExperienceOrb) getPlayer().getWorld().spawnEntity(location, EntityType.EXPERIENCE_ORB);
|
|
experienceOrb.setExperience(getExperienceOrbsReward());
|
|
}
|
|
|
|
xp += treasure.getXp();
|
|
Misc.spawnItem(location, treasure.getDrop(), ItemSpawnReason.EXCAVATION_TREASURE);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
applyXpGain(xp, XPGainReason.PVE);
|
|
}
|
|
|
|
public int getExperienceOrbsReward() {
|
|
return getArchaeologyRank();
|
|
}
|
|
|
|
public double getArchaelogyExperienceOrbChance() {
|
|
return getArchaeologyRank() * 2;
|
|
}
|
|
|
|
public int getArchaeologyRank() {
|
|
return RankUtils.getRank(getPlayer(), SubSkillType.EXCAVATION_ARCHAEOLOGY);
|
|
}
|
|
|
|
public void printExcavationDebug(Player player, BlockState blockState)
|
|
{
|
|
if (Permissions.isSubSkillEnabled(getPlayer(), SubSkillType.EXCAVATION_ARCHAEOLOGY)) {
|
|
List<ExcavationTreasure> treasures = Excavation.getTreasures(blockState);
|
|
|
|
if (!treasures.isEmpty()) {
|
|
for (ExcavationTreasure treasure : treasures) {
|
|
player.sendMessage("|||||||||||||||||||||||||||||||||");
|
|
player.sendMessage("[mcMMO DEBUG] Treasure found: ("+treasure.getDrop().getType().toString()+")");
|
|
player.sendMessage("[mcMMO DEBUG] Drop Chance for Treasure: "+treasure.getDropChance());
|
|
player.sendMessage("[mcMMO DEBUG] Skill Level Required: "+treasure.getDropLevel());
|
|
player.sendMessage("[mcMMO DEBUG] XP for Treasure: "+treasure.getXp());
|
|
}
|
|
} else {
|
|
player.sendMessage("[mcMMO DEBUG] No treasures found for this block.");
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Process the Giga Drill Breaker ability.
|
|
*
|
|
* @param blockState The {@link BlockState} to check ability activation for
|
|
*/
|
|
public void gigaDrillBreaker(BlockState blockState) {
|
|
excavationBlockCheck(blockState);
|
|
excavationBlockCheck(blockState);
|
|
|
|
SkillUtils.handleDurabilityChange(getPlayer().getInventory().getItemInMainHand(), Config.getInstance().getAbilityToolDamage());
|
|
}
|
|
}
|