If one or more of those columns have no constraints against them (like a foreign key, index, default, rule, etc), you should be able to change each one quickly by doing
ALTER TABLE monster ALTER COLUMN MyIntCol1 bigint
Management Studio’s change SQL is rarely the most efficient and tends to favour temporary tables for anything modifying an existing column.