A push reaction is what happens when a piston tries to push a block.

Importing the package

Link to importing-the-package

It might be required for you to import the package if you encounter any issues, so better be safe than sorry and add the import.
import mods.contenttweaker.PushReaction;

Comparing two reactions

Link to comparing-two-reactions

You can see if two reactions are equal by using the == operator.

ZenScript
Copy
if(a == b){}

You can use these methods to get PushReaction Objects:

ZenScript
Copy
mods.contenttweaker.PushReaction.normal();
mods.contenttweaker.PushReaction.destroy();
mods.contenttweaker.PushReaction.block();
mods.contenttweaker.PushReaction.ignore();
mods.contenttweaker.PushReaction.pushOnly();