Advertisement
Spocoman

02. MuOnline

Nov 3rd, 2023
1,046
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.55 KB | None | 0 0
  1. using System;
  2.  
  3. namespace MuOnline
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int health = 100, bitcoins = 0;
  10.             var rooms = Console.ReadLine().Split('|').ToList();
  11.  
  12.             for (int i = 0; i < rooms.Count(); i++)
  13.             {
  14.                 var tokens = rooms[i].Split(' ');
  15.                 string command = tokens[0];
  16.                 int amount = int.Parse(tokens[1]);
  17.  
  18.                 if (command == "potion")
  19.                 {
  20.                     if (health + amount > 100)
  21.                     {
  22.                         amount = 100 - health;
  23.                     }
  24.                     health += amount;
  25.  
  26.                     Console.WriteLine($"You healed for {amount} hp.\nCurrent health: {health} hp.");
  27.                 }
  28.                 else if (command == "chest")
  29.                 {
  30.                     bitcoins += amount;
  31.                     Console.WriteLine($"You found {amount} bitcoins.");
  32.                 }
  33.                 else
  34.                 {
  35.                     health -= amount;
  36.  
  37.                     if (health <= 0)
  38.                     {
  39.                         Console.WriteLine($"You died! Killed by {command}.\nBest room: {i + 1}");
  40.                         break;
  41.                     }
  42.                     Console.WriteLine($"You slayed {command}.");
  43.                 }
  44.  
  45.             }
  46.  
  47.             if (health > 0)
  48.             {
  49.                 Console.WriteLine($"You've made it!\nBitcoins: {bitcoins}\nHealth: {health}");
  50.             }
  51.         }
  52.     }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement