This plugin is a
MineIt add-on to allow MineableGems to specify in which mines it will take effect the drop.
The code is really complex and it depends on the system and server (spigot/paper...) you're running it. If you experience any problem contact me on
[email protected].
/!\ Dependencies /!\
You'll need both
MineIt and
MineableGems (this plugin version was tested with
MineableGems v1.11.3).
This plugin does not contains any file or copy of MineableGems, it just recompiles an already existing .jar. You still need MineableGems.
How does it work? In the
MineableGems description page you'll find all the configurations you can apply to a drop. In addition to this, you can use the
Mine attribute to tell in which mine will that drop occur (
if no mine is specified it will occur in all the blocks, both inside and outside the mines).
For example in this setup you have an internal mine (named 'in') that drops ice when you mine stone, and the external one (named 'out') that drops iron.
Code (YAML):
Blocks:
STONE: # Block drop to override 1:
Material: ICE
# Drop on break STONE Mine: in
# Mine where ICE is dropped Chance: 100
# Probability of the drop Name: "&cSoft diamond"# Drop custom name # More configuration needed to work # Check the original plugin page to see all the customization parameters Find-In: Everywhere
Biome-Filter: [] Filter-as-Blacklist: true
Fortune-Enchantment: false
Prevent-Drops-If-Placed: false
Vanilla-Drops: half
Auto-Inventory: false
2:
Material: IRON_ORE
Mine: out
Chance: 100
Name: "&cRaw material" Find-In: Everywhere
Biome-Filter: [] Filter-as-Blacklist: true
Fortune-Enchantment: false
Prevent-Drops-If-Placed: false
Vanilla-Drops: half
Auto-Inventory: false