mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 21:56:47 +01:00
38 lines
1.5 KiB
Java
38 lines
1.5 KiB
Java
package com.gmail.nossr50.skills.excavation;
|
|
|
|
import com.gmail.nossr50.config.experience.ExperienceConfig;
|
|
import com.gmail.nossr50.config.treasure.TreasureConfig;
|
|
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 (TreasureConfig.getInstance().excavationMap.containsKey(friendly))
|
|
return TreasureConfig.getInstance().excavationMap.get(friendly);
|
|
return new ArrayList<ExcavationTreasure>();
|
|
}
|
|
|
|
protected static int getBlockXP(BlockState blockState) {
|
|
int xp = ExperienceConfig.getInstance().getXp(PrimarySkillType.EXCAVATION, blockState.getType());
|
|
|
|
if (xp == 0 && mcMMO.getModManager().isCustomExcavationBlock(blockState)) {
|
|
xp = mcMMO.getModManager().getBlock(blockState).getXpGain();
|
|
}
|
|
|
|
return xp;
|
|
}
|
|
}
|