You can use Math.round(x) for the nearest whole number, or round down with Math.floor(x).
--------------------------------
@set health = 91
var H = squiffy.get("health")/2;
squiffy.set("health", Math.round(H));
Your Health is now at {health}.
------------------------------------------