Exemple #1
0
        public void Auctumnum(Persona Ego)
        {
            Console.WriteLine("Harvest how?");
            Σ.notou = Console.ReadLine();

            switch (Σ.notou)
            {
            case "Cut":
                do
                {
                    Console.WriteLine("Unto what?");
                    Σ.notod = Console.ReadLine();
                    for (int u = 0; u < this.praesto.Length; u++)
                    {
                        if (this.praesto[u] != null)
                        {
                            if (this.praesto[u] == Σ.notod)
                            {
                                if (Mechanicae.Conditio(Ego, ULF.Opes.Origo(this.praesto[u]).conditio))
                                {
                                    Ego.ArchAdd(ULF.Opes.Origo(this.praesto[u]).Auctumnum());
                                    Agrum.Centuria[0] += ULF.Opes.Origo(this.praesto[u]).chronus;
                                    Adventum.Verso(Ego);

                                    this.spawawn[u]  = ULF.Opes.Origo(this.praesto[u]).chronus *10;
                                    this.spawawnd[u] = Agrum.Centuria[9];

                                    this.praesto[u] = null;
                                }
                                else
                                {
                                    Console.WriteLine("As you heard somewhere the ressource is there, but you lack the skills to harvest it.");
                                }
                                break;
                            }
                        }
                    }
                    Console.WriteLine("Cut More?");
                    Σ.notod = Console.ReadLine();
                } while (Σ.notod.ToLower() == "y" || Σ.notod.ToLower() == "yes");
                break;

            case "Mine":
                //call
                break;

            default:
                Console.WriteLine("That action is, like, not even real.");
                break;
            }
        }
Exemple #2
0
 public void Opes(Persona Ego)
 {
     Console.WriteLine("Amid the wilderness... ");
     for (int u = 0; u < this.praesto.Length; u++)
     {
         if (this.praesto[u] != null)
         {
             if (Mechanicae.Conditio(Ego, ULF.Opes.Origo(this.praesto[u]).conditio))
             {
                 Console.WriteLine("You recognize... " + ULF.Opes.Origo(this.praesto[u]).Depictium);
             }
         }
     }
     Console.WriteLine("\nAnd that is about it.");
     Agrum.Centuria[0] += 600;
     Adventum.Verso(Ego);
 }