Am I doing something wrong here to wildcard anything that is in the middle of these? I followed previous searches here and it is erroring out. Trying to make the growing crystals that drop nothing unbreakable.
e.modify('buddingcrystals:small_.*_bud', block => {
block.setDestroySpeed(-1);
block.setExplosionResistance(-1);
});
e.modify('buddingcrystals:medium_.*_bud', block => {
block.setDestroySpeed(-1);
block.setExplosionResistance(-1);
});
e.modify('buddingcrystals:large_.*_bud', block => {
block.setDestroySpeed(-1);
block.setExplosionResistance(-1);
});
});```