package villageSchtroumpf;

public class SchtroumpfInit{

    public static void main(String[] args){
	
	System.out.println("--------\n PARTIE 1 \n");

	System.out.println("etape 1");

	Schtroumpf schtroumpfMusicien;
	schtroumpfMusicien = new Schtroumpf("musicien", 0);
	
	schtroumpfMusicien.voirGargamel();
	System.out.println("etape 2");

	schtroumpfMusicien.gargamelSenVa();
	System.out.println("etape 6");

	System.out.println("--------\n PARTIE 2 \n");

	Schtroumpf schtroumpfGourmand = new Schtroumpf("gourmand", 5);

	schtroumpfMusicien.acheterSalsepareille(10);

	schtroumpfMusicien.donnerSalsepareille(schtroumpfGourmand, 5);
    }

}
