(9-28a) Alternative Mongolia Nerfs

Status
Not open for further replies.
Should probably mention in the text that the Food goes to the Capital.
That isn't mentioned in the current UA either. I think it's clear, as bully gold already goes to the capital.
 
Sponsored, with actual path finder implementation if I had time (and the algorithm is correct).
They don't understand the current Ordo, so it's sidegrade for the AI.

I'm not sure how exactly the path finder was implemented (Google AI is very confused), but here's my idea to find the shortest path from A0 to B:
  1. Find all tiles that can restore moves within reach (A1, A2, ...)
    • Will need to do this recursively since you can use each of them once
  2. Find the shortest path from each Ai to B, without considering move restores.
  3. Get the one with the lowest cost (An to B). Our desired path should be A0 → An → B.
Note that AI won't be worse than the current iteration even if there's no additional path finder support.
 
Status
Not open for further replies.
Back
Top Bottom