Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Warcraft
- {
- class Program
- {
- static void Main(string[] args)
- {
- Hunter ragnar = new Hunter(200);
- Hunter zotak4o = new Hunter(200);
- for (int i = 0; i < 100; i++)
- {
- ragnar.getHit(zotak4o.Hit());
- Console.WriteLine("ragnar : {0} " , ragnar.healthStats());
- zotak4o.getHit(ragnar.Hit());
- Console.WriteLine("zotak4o : {0}" ,zotak4o.healthStats());
- if (zotak4o.healthStats() <= 1 || ragnar.healthStats() <= 1) {
- break;
- }
- }
- }
- }
- class Hunter
- {
- int health;
- int damage = 50;
- static Random rand = new Random();
- public Hunter(int health)
- {
- this.health = health;
- }
- public void getHit(int damage)
- {
- if (damage < health)
- {
- this.health = health - damage;
- }
- }
- public int healthStats()
- {
- return health;
- }
- public int Hit()
- {
- return rand.Next(0,damage);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement