mirror of
https://github.com/Klagarge/PokeHES.git
synced 2024-11-23 01:43:28 +00:00
a
This commit is contained in:
parent
769adeeeca
commit
f2f289672f
@ -43,21 +43,23 @@ public class Battle {
|
|||||||
System.out.println("xp player : " + xpPlayer);
|
System.out.println("xp player : " + xpPlayer);
|
||||||
System.out.println("xp win " + newXp);
|
System.out.println("xp win " + newXp);
|
||||||
|
|
||||||
|
//the player is at the last question, the finish text must be displayed
|
||||||
if(getLineSpeech() == 4){
|
if(getLineSpeech() == 4){
|
||||||
FinishSpeech();
|
finishSpeech();
|
||||||
}
|
}
|
||||||
|
//the player is at the finish text and he must quit the battle
|
||||||
else if( getLineSpeech() == 5 || getLineSpeech() == 6){
|
else if( getLineSpeech() == 5 || getLineSpeech() == 6){
|
||||||
finish();
|
finish();
|
||||||
e.recoveredTime = 0;
|
|
||||||
}
|
}
|
||||||
|
//the player answer the question and it is check and if the enemy is killed
|
||||||
else if(0 < getLineSpeech() && getLineSpeech() < 4){
|
else if(0 < getLineSpeech() && getLineSpeech() < 4){
|
||||||
checkAnswer(answer);
|
checkAnswer(answer);
|
||||||
|
|
||||||
if(pvEnemy <= 0){
|
if(pvEnemy <= 0){
|
||||||
FinishSpeech();
|
finishSpeech();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//default case : increase speech to display the new line
|
||||||
else{
|
else{
|
||||||
readNextLine();
|
readNextLine();
|
||||||
}
|
}
|
||||||
@ -100,7 +102,7 @@ public class Battle {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void FinishSpeech(){
|
public void finishSpeech(){
|
||||||
if(pvEnemy>0){
|
if(pvEnemy>0){
|
||||||
//alive (speechLine = 6)
|
//alive (speechLine = 6)
|
||||||
lineSpeech = 6;
|
lineSpeech = 6;
|
||||||
@ -116,6 +118,7 @@ public class Battle {
|
|||||||
|
|
||||||
public void finish(){
|
public void finish(){
|
||||||
screenBattleOn = false;
|
screenBattleOn = false;
|
||||||
|
e.recoveredTime = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean getAttackOn(){
|
public boolean getAttackOn(){
|
||||||
|
Loading…
Reference in New Issue
Block a user