Open LoneDev6 opened 11 months ago
Note: Might be worth thinking about if it would be good to implement some of the new vanilla properties emulating them.
https://www.minecraft.net/ja-jp/article/minecraft-snapshot-24w12a
How this feature goes in current state of IA as community waits for this. Some more informations will be usefull
Similarly to the vanilla tags. Would be nice to have some sort of attributes (tags) to group various items and be able to use this information in the plugin configurations.
For example
Be able to make a tool break a particular group of blocks faster. Let's say there is a pack which has various items:
In this case a I cannot identify which ore is rare or not only based on the name, so wildcard notations (for example
block*
) won't work.So a property
tags
could be introduced:Which could be used in some special properties to match the needed group of custom blocks. (note: this is just an example, this property
break_speed
doesn't exists and might be worth to be implemented while making this feature #1268).Another example
A tool which has break speed multiplier set to 2 for any block which have a tag which ends with
_rare_ore
. So in this case it will match withblock1
,block2
,block3
,block4
,block5
because they both have a tag which satisfies the rule.