hedgewars/uGears.pas
changeset 394 4c017ae1226a
parent 393 db01cc79f278
child 408 6c3da4907d00
--- a/hedgewars/uGears.pas	Mon Feb 05 19:33:24 2007 +0000
+++ b/hedgewars/uGears.pas	Mon Feb 05 20:26:13 2007 +0000
@@ -221,7 +221,7 @@
                 end;
         gtRope: begin
                 Result^.Radius:= 3;
-                Result^.Friction:= 500;
+                Result^.Friction:= 450;
                 RopePoints.Count:= 0;
                 end;
    gtExplosion: begin
@@ -798,6 +798,8 @@
 end;
 
 procedure SpawnBoxOfSmth;
+var t: LongInt;
+    i: TAmmoType;
 begin
 if (CountGears(gtCase) >= 5) or (getrandom(cCaseFactor) <> 0) then exit;
 FollowGear:= AddGear(0, 0, gtCase, 0, 0, 0, 0);
@@ -807,8 +809,19 @@
         FollowGear^.Pos:= posCaseHealth
         end;
      1: begin
+        t:= 0;
+        for i:= Low(TAmmoType) to High(TAmmoType) do
+            inc(t, Ammoz[i].Probability);
+        t:= GetRandom(t);
+        i:= Low(TAmmoType);
+        dec(t, Ammoz[i].Probability);
+        while t >= 0 do
+          begin
+          inc(i);
+          dec(t, Ammoz[i].Probability)
+          end;
         FollowGear^.Pos:= posCaseAmmo;
-        FollowGear^.State:= Longword(amMineStrike)
+        FollowGear^.State:= Longword(i)
         end;
      end;
 FindPlace(FollowGear, true, 0, 2048)