mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-06 03:36:23 +02:00
34 lines
1.3 KiB
Java
34 lines
1.3 KiB
Java
package com.gmail.nossr50.skills.excavation;
|
|
|
|
import com.gmail.nossr50.config.experience.ExperienceConfig;
|
|
import com.gmail.nossr50.config.treasure.ExcavationTreasureConfig;
|
|
import com.gmail.nossr50.datatypes.skills.PrimarySkillType;
|
|
import com.gmail.nossr50.datatypes.treasure.ExcavationTreasure;
|
|
import com.gmail.nossr50.mcMMO;
|
|
import com.gmail.nossr50.util.StringUtils;
|
|
import org.bukkit.block.BlockState;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class Excavation {
|
|
/**
|
|
* Get the list of possible {@link ExcavationTreasure|ExcavationTreasures} obtained from a given block.
|
|
*
|
|
* @param blockState The {@link BlockState} of the block to check.
|
|
* @return the list of treasures that could be found
|
|
*/
|
|
protected static List<ExcavationTreasure> getTreasures(BlockState blockState) {
|
|
String friendly = StringUtils.getFriendlyConfigBlockDataString(blockState.getBlockData());
|
|
if (ExcavationTreasureConfig.getInstance().excavationMap.containsKey(friendly))
|
|
return ExcavationTreasureConfig.getInstance().excavationMap.get(friendly);
|
|
return new ArrayList<>();
|
|
}
|
|
|
|
protected static int getBlockXP(BlockState blockState) {
|
|
int xp = mcMMO.getConfigManager().getExperienceMapManager().getExcavationXp(blockState.getType());
|
|
|
|
return xp;
|
|
}
|
|
}
|