A var
is a Variant, and can hold any valid value. So if you do this:
var blue = get_node("blue_enemy")
Then it will be a reference to that node. Or if you create it in code.
var blue = blue_enemy_scene.instance()
Then you can save blue
somewhere, in an Array, pass it to a function, whatever.