Exemplo n.º 1
0
 public boolean isAccomplished(GamePlayState state, Player player) {
   for (QuestGoal goal : this.m_goals) {
     if (goal.isAccomplished(state, player) == false) {
       return false;
     }
   }
   return true;
 }
Exemplo n.º 2
0
 public boolean isAccomplished(GamePlayState state, Player player, Interactable interactable) {
   for (QuestGoal goal : this.m_goals) {
     // System.out.println("checking accomplished quest stage 61 ");
     if (goal.isAccomplished(state, player, interactable) == false) {
       return false;
     }
   }
   return true;
 }