コード例 #1
0
ファイル: Actus.cs プロジェクト: Bedengus/ULF
 public static void Buff(Persona Ego)
 {
     Console.WriteLine("Inform the buff.");
     Σ.notoo = Console.ReadLine();
     if (β.Buff(Σ.notoo) != null)
     {
         if (Ego.RepertoireB.ContainsKey(Σ.notoo))
         {
             if (Ego.RepertoireB[Σ.notoo] != "E")
             {
                 Console.WriteLine("Inform the target.");
                 Σ.noton = Console.ReadLine();
             }
             else
             {
                 Σ.noton = "E";
             }
         }
         else
         {
             Console.WriteLine("You do not have that buff yet.");
         }
     }
     else
     {
         Console.WriteLine("That buff does not exist.");
     }
     Mechanicae.Laevo(Ego, β.Buff(Σ.notoo));
 }