class Game_Player < Game_Character 
  attr_accessor :nonmovable
  #--------------------------------------------------------------------------
  # ● 移動可能判定
  #--------------------------------------------------------------------------
  alias takononmovablemovable movable?
  def movable?
    return false if @nonmovable
    return takononmovablemovable
  end
end  