
[ENHANCEMENT] Ability to change Block Properties of Excavated Variants
kobaltromero opened this issue ยท 12 comments
What feature would improve this mod?
In the config, it would be nice to be able to set custom hardness values, resistances, etc.
Why would this feature be useful?
This would allow harder materials to take longer to mine, for hardcore modpacks.
Is there any other relevant info about this feature request?
No response
Mod Compatibility
- This feature cannot be added through the config
The hardness is already calculated from the hardness of the constituent blocks; I can probably add a config value for the ratio of this averaging pretty easily. More than that is likely outside the scope of this mod.
Once again, this seems outside the scope of this mod; I do everything possible to avoid config bloat. I'll look at some possible options; I can probably find some way to put something for this together.
The only thing is, it takes no time to mine something if it's made out of bedrock with the default way it calculates.
Hmm. That looks like I'm not properly copying over the unbreakable status from the stone. Which makes sense wit the current setup. Should be an easy enough fix.
But before you fix that, can you at least add a hardness override? Cause in my pack I don't want bedrock ores to be completely unbreakable. That would defeat the purpose of bedrock variants.
I've put together a modifier system for ore variants for the next version; once I publish it, I'll dump a test config here to try for the bedrock stuff.
Again, thank you so much. This change is very much appreciated. The mod is absolutely brilliant.
On the newest version for 1.19 (0.7.3, once it ends up on curseforge), create a file in globalresources/<any folder>/excavated_variants/<any namespace>/modifiers
named <put some name here>.json
. In this file, put:
{
"filter": [
"stone:<your stone name here>"
],
"destroy_time": 10.0 //or whatever destroy time you want
}
Filling in all the details as necessary. Let me know if you have more questions.