Skip to content
This repository has been archived by the owner on May 25, 2020. It is now read-only.

Commit

Permalink
Ajout d'indications concernant les niveaux a chaque début de combat
Browse files Browse the repository at this point in the history
  • Loading branch information
Jlppc committed Nov 9, 2016
1 parent a5ec3c1 commit cabd3f8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
Binary file modified bin/jlppc/regimys/launch/Start.class
Binary file not shown.
Binary file modified jar/Regimys.jar
Binary file not shown.
13 changes: 10 additions & 3 deletions src/jlppc/regimys/launch/Start.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ public class Start {

public static boolean pre = (preNbre != 0);

public static String versionS = "" + version + (pre ? (" pre " + preNbre) : "") + commits;//Actuel : 0.04
public static int sousVers = 2;

public static boolean sousVersIs = sousVers == 0;

public static String versionS = "" + version + (sousVersIs ? "." + sousVers : "") + (pre ? (" pre " + preNbre) : "") + commits;//Actuel : 0.04

//Utilitaires pratiques
/**
Expand Down Expand Up @@ -76,7 +80,10 @@ public static void main(String[] args) throws InstantiationException, IllegalAcc
System.out.println("Un des mots suivants doivent apparaitre après --creator :" + Log.saut + "<html><ul><li>pokemon</li></ul></html>");
System.exit(2);//Les signaux d'exit du programme : 0 : Tout va bien. 1 : Erreur dans le programme 2 : Erreur dans les arguments.
}
}else{
}else if(args[0].equals("--version")){
System.out.println("Pokémon Regimys version " + versionS);
}
else{
System.out.println("Page d'aide des arguments de Pokemon Regimys." + Log.saut + "--creator : Permet d'affcher une fenetre de creation d'un objet (Voir --creator aide)" + Log.saut + "--help : Affiche cette page");
}

Expand Down Expand Up @@ -115,7 +122,7 @@ public static void main(String[] args) throws InstantiationException, IllegalAcc
}
joueur.healPoke();
Pokemon adv = new Pokemon(eAdv, joueur.getPoke(0).getLevel() - rand.nextInt(3), new Attaque[]{Charge.class.newInstance(), Rugissement.class.newInstance(), Soin.class.newInstance(), Triplattaque.class.newInstance()}, Caractere.HARDI, null);
FormattedString.outPrintln("%o vs %o", joueur.getPoke(0).getSurnom(), adv.getSurnom());
FormattedString.outPrintln("%o niveau %o vs %o niveau %o", joueur.getPoke(0).getSurnom(),joueur.getPoke(0).getLevel(), adv.getSurnom(), adv.getLevel());
Fight.fight(joueur.getPoke(0), adv);
}

Expand Down

0 comments on commit cabd3f8

Please sign in to comment.