|
|
@@ -1,14 +1,29 @@
|
|
|
// INDICATEURS
|
|
|
|
|
|
/*
|
|
|
+<<<<<<< HEAD
|
|
|
+=======
|
|
|
+TOTAL
|
|
|
+
|
|
|
+< contient l'influence et la richesse max >
|
|
|
+*/
|
|
|
+const total = { wealth : 100 , influence : 100 };
|
|
|
+
|
|
|
+/*
|
|
|
+>>>>>>> eeb7ff6d99e2ccaf8b19c6a80bbf40f10c387570
|
|
|
CLERGE :
|
|
|
- richesse : relatif a la noblesse et au peuple
|
|
|
- influence : relatif a la noblesse
|
|
|
|
|
|
OBJET : { INT: wealth | INT: influence }
|
|
|
*/
|
|
|
+<<<<<<< HEAD
|
|
|
let clergy = { wealth : 0 , influence : 0 };
|
|
|
|
|
|
+=======
|
|
|
+
|
|
|
+let clergy = { wealth : 0 , influence : 0 };
|
|
|
+>>>>>>> eeb7ff6d99e2ccaf8b19c6a80bbf40f10c387570
|
|
|
|
|
|
/*
|
|
|
NOBLESSE :
|
|
|
@@ -18,8 +33,13 @@ NOBLESSE :
|
|
|
|
|
|
OBJET : { INT: wealth | INT: influence | INT: army }
|
|
|
*/
|
|
|
+<<<<<<< HEAD
|
|
|
let nobility = { wealth : 0 , influence : 0 , army : 0 };
|
|
|
|
|
|
+=======
|
|
|
+
|
|
|
+let nobility = { wealth : 0 , influence : 0 , army : 0 };
|
|
|
+>>>>>>> eeb7ff6d99e2ccaf8b19c6a80bbf40f10c387570
|
|
|
|
|
|
/*
|
|
|
PEUPLE :
|
|
|
@@ -28,6 +48,7 @@ PEUPLE :
|
|
|
|
|
|
OBJET : { INT: wealth | INT: wellBeing }
|
|
|
*/
|
|
|
+<<<<<<< HEAD
|
|
|
let people = { wealth : 0 , wellBeing : 0 };
|
|
|
|
|
|
|
|
|
@@ -36,4 +57,15 @@ let round = 0;
|
|
|
|
|
|
|
|
|
// Score actuel
|
|
|
+=======
|
|
|
+
|
|
|
+let people = { wealth : 0 , wellBeing : 0 };
|
|
|
+
|
|
|
+// Tour de jeu actuel
|
|
|
+
|
|
|
+let round = 0;
|
|
|
+
|
|
|
+// Score actuel
|
|
|
+
|
|
|
+>>>>>>> eeb7ff6d99e2ccaf8b19c6a80bbf40f10c387570
|
|
|
let score = 0;
|