Esempio n. 1
0
 override public void Enter(minerAI miner)
 {
     if (miner.GetLocation() != (int)Locations.bank)
     {
         miner.ChangeLocation((int)Locations.bank);
     }
     Debug.Log("Hi banker! I'd like to deposit these sweet old nuggets!");
     // Execute(miner);
 }
Esempio n. 2
0
 override public void Enter(minerAI miner)
 {
     if (miner.GetLocation() != (int)Locations.goldmine)
     {
         miner.ChangeLocation((int)Locations.goldmine);
     }
     Debug.Log("Let's start digging!");
     //Execute(miner);
 }
Esempio n. 3
0
 override public void Enter(minerAI miner)
 {
     if (miner.GetLocation() != (int)Locations.saloon)
     {
         miner.ChangeLocation((int)Locations.saloon);
     }
     Debug.Log("Let's see what this saloon has to offer! My throat is running dry!");
     //Execute(miner);
 }
Esempio n. 4
0
    override public void Enter(minerAI miner)
    {
        if (miner.GetLocation() != (int)Locations.home)
        {
            miner.ChangeLocation((int)Locations.home);
        }
        Debug.Log("Home sweet hom..Finally some rest...time for bed!");

        // Execute(miner);
    }