Browse Source

Rewards implemented for Sniper and Missile

Jovian (Toshiba) 6 years ago
parent
commit
5bfd0a0c8e
1 changed files with 15 additions and 1 deletions
  1. 15 1
      Score.cpp

+ 15 - 1
Score.cpp

@@ -119,13 +119,27 @@ void Score::giveLoot( std::string planet )
         return;
     }
 
-    // Bouclier de combat en recompene
+    // Bouclier de combat en recompense
     if ( planet == "Titan" )
     {
         m_hasShield = true;
         return;
     }
 
+    // Sniper
+    if ( planet == "DistantSite2018_FR" )
+    {
+        m_hasWeapon[ SNIPER_ID ] = true;
+        return;
+    }
+
+    // Sniper
+    if ( planet == "Chateaubriande" )
+    {
+        m_hasWeapon[ MISSILE_ID ] = true;
+        return;
+    }
+
     // Majoration du CPU
     if ( planet == "BlueMoon" && m_cpuLoad < 100 )
     {