Stuff about force cages, stone blocks, move mountains

- Add all objects, fields, and sfx to place_spell_pattern
- Add move mountains effect to place_spell_pattern
- Most of the implementation for force cages and stone blocks is now done (still untested)
- Properly implement MOVE_MOUNTAINS_MASS spell
This commit is contained in:
2014-12-14 15:21:53 -05:00
parent c8889a9989
commit fbe186f8b7
9 changed files with 174 additions and 21 deletions

View File

@@ -346,6 +346,9 @@ bool is_blocked(location to_check)
if (univ.town.is_force_barr(to_check.x,to_check.y))
return true;
if(univ.town.is_force_cage(to_check.x,to_check.y))
return true;
return false;
}
return true;