Advertisement
wingman007

OOPWarcraft

Mar 18th, 2016
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.37 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Warcraft
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Hunter ragnar = new Hunter(200);
  14.             Hunter zotak4o = new Hunter(200);
  15.  
  16.            
  17.             for (int i = 0; i < 100; i++)
  18.             {
  19.                
  20.                 ragnar.getHit(zotak4o.Hit());
  21.                 Console.WriteLine("ragnar : {0} " , ragnar.healthStats());
  22.                 zotak4o.getHit(ragnar.Hit());
  23.                 Console.WriteLine("zotak4o : {0}" ,zotak4o.healthStats());
  24.  
  25.                 if (zotak4o.healthStats() <= 1 || ragnar.healthStats() <= 1) {
  26.                     break;
  27.                 }
  28.             }
  29.         }
  30.     }
  31.  
  32.     class Hunter
  33.     {
  34.         int health;
  35.         int damage = 50;
  36.         static Random rand = new Random();
  37.  
  38.         public Hunter(int health)
  39.         {
  40.             this.health = health;
  41.         }
  42.  
  43.         public void getHit(int damage)
  44.         {
  45.             if (damage < health)
  46.             {
  47.                 this.health = health - damage;
  48.             }
  49.         }
  50.  
  51.         public int healthStats()
  52.         {
  53.             return health;
  54.         }
  55.  
  56.         public int Hit()
  57.         {          
  58.            return rand.Next(0,damage);
  59.         }
  60.     }
  61.  
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement