Advertisement
elena1234

MuOnline

Oct 10th, 2020 (edited)
627
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.55 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace MuOnline
  6. {
  7.     class MainClass
  8.     {
  9.         public static void Main()
  10.         {
  11.             List<string> dungeonsRooms = Console.ReadLine().Split('|').ToList();
  12.             int health = 100;
  13.             int bitcoins = 0;
  14.  
  15.             for (int i = 0; i < dungeonsRooms.Count; i++)
  16.             {
  17.                 string[] commandArray = dungeonsRooms[i].Split().ToArray();
  18.  
  19.                 if (commandArray[0] == "potion")
  20.                 {
  21.                     int numberForHelth = int.Parse(commandArray[1]);
  22.                     int currentHelth = health;
  23.                     health = currentHelth + numberForHelth;
  24.                     if (health > 100)
  25.                     {
  26.                         health = 100;
  27.                     }
  28.                    if (health <100)
  29.                     {
  30.                         Console.WriteLine($"You healed for {numberForHelth} hp.");
  31.                         Console.WriteLine($"Current health: {health} hp.");
  32.                     }
  33.                     else if  (health == 100)
  34.                     {
  35.                         Console.WriteLine($"You healed for {100 - currentHelth} hp.");
  36.                         Console.WriteLine($"Current health: {health} hp.");
  37.                     }
  38.                 }
  39.  
  40.                 else if (commandArray[0] == "chest")
  41.                 {
  42.                     int numberForBitcoins = int.Parse(commandArray[1]);
  43.                     bitcoins = bitcoins + numberForBitcoins;
  44.                     Console.WriteLine($"You found {numberForBitcoins} bitcoins.");
  45.                 }
  46.  
  47.                 else
  48.                 {
  49.                     string monster = commandArray[0];
  50.                     int attackOfTheMonster = int.Parse(commandArray[1]);
  51.  
  52.                     health = health - attackOfTheMonster;
  53.                     if (health > 0)
  54.                     {
  55.                         Console.WriteLine($"You slayed {monster}.");
  56.                     }
  57.                     else if(health<=0)
  58.                     {
  59.                         Console.WriteLine($"You died! Killed by {monster}.");
  60.                         Console.WriteLine($"Best room: {i + 1}");
  61.                         return;
  62.                     }
  63.                 }
  64.             }
  65.                 Console.WriteLine($"You've made it!", "Bitcoins: {bitcoins}", "Health: {health}");
  66.                 Console.WriteLine($"Bitcoins: {bitcoins}");
  67.                 Console.WriteLine($"Health: {health}");
  68.           }
  69.  
  70.        }
  71.     }
  72.  
  73.  
  74.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement