PokeBot/ai/yellow/strategies.lua

671 lines
15 KiB
Lua

local Strategies = require "ai.strategies"
local Combat = require "ai.combat"
local Control = require "ai.control"
local Battle = require "action.battle"
local Shop = require "action.shop"
local Textbox = require "action.textbox"
local Walk = require "action.walk"
local Bridge = require "util.bridge"
local Input = require "util.input"
local Memory = require "util.memory"
local Menu = require "util.menu"
local Player = require "util.player"
local Utils = require "util.utils"
local Inventory = require "storage.inventory"
local Pokemon = require "storage.pokemon"
local status = Strategies.status
local stats = Strategies.stats
local strategyFunctions = Strategies.functions
Strategies.flareon = true
-- TIME CONSTRAINTS
Strategies.timeRequirements = {
nidoran = function()
local timeLimit = 8
if Pokemon.inParty("pidgey") then
timeLimit = timeLimit + 0.67
end
return timeLimit
end,
mt_moon = function()
local timeLimit = 30
if stats.nidoran.attack > 15 and stats.nidoran.speed > 14 then
timeLimit = timeLimit + 0.25
end
if Pokemon.inParty("sandshrew") then
timeLimit = timeLimit + 0.25
end
return timeLimit
end,
trash = function()
return 55
end,
safari_carbos = function()
return 80
end,
}
-- HELPERS
local function depositPikachu()
if not Textbox.isActive() then
Player.interact("Up")
else
local pc = Memory.value("menu", "size")
if Memory.value("battle", "menu") ~= 19 then
local menuColumn = Menu.getCol()
if menuColumn == 5 then
Menu.select(Pokemon.indexOf("pikachu"))
elseif menuColumn == 10 then
Input.press("A")
elseif pc == 3 then
Menu.select(0)
elseif pc == 5 then
Menu.select(1)
else
Input.cancel()
end
else
Input.cancel()
end
end
end
local function takeCenter(pp, startMap, entranceX, entranceY, finishX)
local px, py = Player.position()
local currentMap = Memory.value("game", "map")
local sufficientPP = Pokemon.pp(0, "horn_attack") > pp
if currentMap == startMap then
if not sufficientPP then
if px ~= entranceX then
px = entranceX
else
py = entranceY
end
else
if px == finishX then
return true
end
px = finishX
end
else
if Pokemon.inParty("pikachu") then
if py > 5 then
py = 5
elseif px < 13 then
px = 13
elseif py ~= 4 then
py = 4
else
return depositPikachu()
end
else
if px ~= 3 then
if Menu.close() then
px = 3
end
elseif sufficientPP then
if Textbox.handle() then
py = 8
end
elseif py > 3 then
py = 3
else
strategyFunctions.confirm({dir="Up"})
end
end
end
Walk.step(px, py)
end
strategyFunctions.bicycle = function()
if Memory.value("battle", "menu") == 19 then
if Textbox.handle() then
return true
end
else
return Strategies.useItem({item="bicycle"})
end
end
-- STRATEGIES
-- dodgePalletBoy
strategyFunctions.shopViridianPokeballs = function()
return Shop.transaction{
buy = {{name="pokeball", index=0, amount=4}, {name="potion", index=1, amount=6}}
}
end
strategyFunctions.catchNidoran = function()
if not Control.canCatch() then
return true
end
local pokeballs = Inventory.count("pokeball")
local caught = Memory.value("player", "party_size") > 1
if pokeballs < (caught and 1 or 2) then
return Strategies.reset("Ran too low on PokeBalls", pokeballs)
end
if Battle.isActive() then
local isNidoran = Pokemon.isOpponent("nidoran")
if isNidoran and Memory.value("battle", "opponent_level") == 6 then
if Strategies.initialize() then
Bridge.pollForName()
end
end
status.tries = nil
if Memory.value("menu", "text_input") == 240 then
Textbox.name()
elseif Menu.hasTextbox() then
if isNidoran then
Input.press("A")
else
Input.cancel()
end
else
Battle.handle()
end
else
Pokemon.updateParty()
local hasNidoran = Pokemon.inParty("nidoran")
if hasNidoran then
Bridge.caught("nidoran")
return true
end
local timeLimit = Strategies.getTimeRequirement("nidoran")
local resetMessage = "find a suitable Nidoran"
if Strategies.resetTime(timeLimit, resetMessage) then
return true
end
local px, py = Player.position()
if py > 48 then
py = 48
elseif px < 9 then
px = 9
else
px = 8
end
Walk.step(px, py) --TODO DSum
end
end
-- leer
strategyFunctions.checkNidoStats = function()
local nidx = Pokemon.indexOf("nidoran")
if Pokemon.index(nidx, "level") == 8 then
local att = Pokemon.index(nidx, "attack")
local def = Pokemon.index(nidx, "defense")
local spd = Pokemon.index(nidx, "speed")
local scl = Pokemon.index(nidx, "special")
Bridge.stats(att.." "..def.." "..spd.." "..scl)
stats.nidoran = {
attack = att,
defense = def,
speed = spd,
special = scl,
}
local statDiff = (16 - att) + (15 - spd) + (13 - scl)
local resets = att < 15 or spd < 14 or scl < 12 --RISK
local nidoranStatus = "Att: "..att..", Def: "..def..", Speed: "..spd..", Special: "..scl
if resets then
return Strategies.reset("Bad Nidoran - "..nidoranStatus)
end
-- if def < 12 then
-- statDiff = statDiff + 1
-- end
local superlative
local exclaim = "!"
if statDiff == 0 then
if def == 14 then
superlative = "God"
exclaim = "! Kreygasm"
else
superlative = "Perfect"
end
elseif att == 16 and spd == 15 then
if statDiff == 1 then
superlative = "Great"
elseif statDiff == 2 then
superlative = "Good"
else
superlative = "Okay"
end
elseif statDiff == 1 then
superlative = "Good"
elseif statDiff == 2 then
superlative = "Okay"
exclaim = "."
else
superlative = "Min stat"
exclaim = "."
end
Bridge.chat(superlative.." Nidoran"..exclaim.." "..nidoranStatus)
return true
end
end
strategyFunctions.centerViridian = function()
return takeCenter(15, 2, 13, 25, 18)
end
strategyFunctions.fightBrock = function()
local curr_hp = Pokemon.info("nidoran", "hp")
if curr_hp == 0 then
return Strategies.death()
end
if Battle.isActive() then
status.canProgress = true
local __, turnsToKill, turnsToDie = Combat.bestMove()
if turnsToDie and turnsToDie < 2 and Inventory.contains("potion") then
Inventory.use("potion", "nidoran", true)
else
local bideTurns = Memory.value("battle", "opponent_bide")
if bideTurns > 0 then
local onixHP = Memory.double("battle", "opponent_hp")
if status.tries == 0 then
status.tries = onixHP
status.startBide = bideTurns
end
if turnsToKill then
local forced
if turnsToKill < 2 or status.startBide - bideTurns > 1 then
-- elseif turnsToKill < 3 and status.startBide == bideTurns then
elseif onixHP == status.tries then
forced = "leer"
end
Battle.fight(forced)
else
Input.cancel()
end
else
status.tries = 0
strategyFunctions.leer({{"onix", 13}})
end
end
elseif status.canProgress then
return true
elseif Textbox.handle() then
Player.interact("Up")
end
end
strategyFunctions.centerMoon = function()
return takeCenter(5, 15, 11, 5, 12)
end
strategyFunctions.centerCerulean = function(data)
local ppRequired = 15
if data.first then
local currentMap = Memory.value("game", "map")
if currentMap == 3 then
if Pokemon.pp(0, "horn_attack") > ppRequired then
local px, py = Player.position()
if py > 8 then
return strategyFunctions.dodgeCerulean({left=true})
end
end
if not strategyFunctions.dodgeCerulean({}) then
return false
end
end
end
return takeCenter(ppRequired, 3, 19, 17, 19)
end
-- reportMtMoon
strategyFunctions.acquireCharmander = function()
if Strategies.initialize() then
if Pokemon.inParty("sandshrew", "paras") then
return true
end
end
local acquiredCharmander = Pokemon.inParty("charmander")
if Textbox.isActive() then
if Menu.getCol() == 15 then
local accept = Memory.raw(0x0C3A) == 239
Input.press(accept and "A" or "B")
else
Input.cancel()
end
return false
end
local px, py = Player.position()
if acquiredCharmander then
if py ~= 8 then
py = 8
else
return true
end
else
if px ~= 6 then
px = 6
elseif py > 6 then
py = 6
else
Player.interact("Up")
return false
end
end
Walk.step(px, py)
end
-- jingleSkip
strategyFunctions.shopVermilionMart = function()
if Strategies.initialize() then
Strategies.setYolo("vermilion")
end
return Shop.transaction {
sell = sellArray,
buy = {{name="super_potion",index=1,amount=8}, {name="repel",index=5,amount=3}}
}
end
strategyFunctions.trashcans = function()
if not status.canIndex then
status.canIndex = 1
status.progress = 1
status.direction = 1
end
local trashPath = {
-- {next location, check, mid, pair, finish, end} {waypoints}
{nd=2, {1,12}, "Up", {3,12}, "Up", {3,12}}, {{4,12}},
{nd=3, {4,11}, "Right", {4,6}, {1,6}, "Down", {1,6}},
{nd=1, {4,9}, "Left", {4,7}, "Left", {4,7}},
{nd=1, {4,7}, "Right", {4,6}, {1,6}, "Down", {1,6}}, {{4,6}},
{nd=0, {1,6}, "Down", {3,6}, "Down", {3,6}}, {{4,6}}, {{4,8}},
{nd=0, {7,8}, "Down", {7,8}, "Up", {7,8}}, {{8,8}},
{nd=0, {8,7}, "Right", {8,7}, "Left", {8,7}},
{nd=0, {8,11}, "Right", {8,9}, "Right",{8,9}}, {{8,12}},
}
local totalPathCount = #trashPath
local unlockProgress = Memory.value("progress", "trashcans")
if Textbox.isActive() then
if not status.canProgress then
status.canProgress = true
local px, py = Player.position()
if unlockProgress < 2 then
status.tries = status.tries + 1
if status.unlocking then
status.unlocking = false
local flipIndex = status.canIndex + status.nextDelta
local flipCan = trashPath[flipIndex][1]
status.flipIndex = flipIndex
if px == flipCan[1] and py == flipCan[2] then
status.nextDirection = status.direction * -1
status.canIndex = flipIndex
status.progress = 1
else
status.flipIndex = flipIndex
status.direction = 1
status.nextDirection = status.direction * -1
status.progress = status.progress + 1
end
else
status.canIndex = Utils.nextCircularIndex(status.canIndex, status.direction, totalPathCount)
status.progress = nil
end
else
status.unlocking = true
status.progress = status.progress + 1
end
end
Input.cancel()
elseif unlockProgress == 3 then
return Strategies.completeCans()
else
if status.canIndex == status.flipIndex then
status.flipIndex = nil
status.direction = status.nextDirection
end
local targetCan = trashPath[status.canIndex]
local targetCount = #targetCan
local canProgression = status.progress
if not canProgression then
canProgression = 1
status.progress = 1
else
local reset
if canProgression < 1 then
reset = true
elseif canProgression > targetCount then
reset = true
end
if reset then
status.canIndex = Utils.nextCircularIndex(status.canIndex, status.direction, totalPathCount)
status.progress = nil
return strategyFunctions.trashcans()
end
end
local action = targetCan[canProgression]
if type(action) == "string" then
status.nextDelta = targetCan.nd
Player.interact(action)
else
status.canProgress = false
local px, py = Player.position()
local dx, dy = action[1], action[2]
if px == dx and py == dy then
status.progress = status.progress + 1
return strategyFunctions.trashcans()
end
Walk.step(dx, dy)
end
end
end
-- announceFourTurn
-- redbarCubone
strategyFunctions.deptElevator = function()
if Textbox.isActive() then
status.canProgress = true
Menu.select(4, false, true)
else
if status.canProgress then
return true
end
Player.interact("Up")
end
end
strategyFunctions.shopBuffs = function()
local xAccs = Strategies.flareon and 10 or 11
local xSpeeds = Strategies.flareon and 7 or 6
return Shop.transaction{
direction = "Right",
sell = {{name="nugget"}},
buy = {{name="x_accuracy", index=0, amount=xAccs}, {name="x_attack", index=3, amount=3}, {name="x_speed", index=5, amount=xSpeeds}, {name="x_special", index=6, amount=5}},
}
end
-- shopVending
-- giveWater
-- shopExtraWater
-- shopPokeDoll
-- shopTM07
-- shopRepels
strategyFunctions.lavenderRival = function()
if Battle.isActive() then
status.canProgress = true
if Strategies.prepare("x_accuracy") then
Battle.automate()
end
elseif status.canProgress then
return true
else
Input.cancel()
end
end
-- digFight
-- pokeDoll
-- drivebyRareCandy
-- silphElevator
strategyFunctions.silphRival = function()
if Battle.isActive() then
if Strategies.initialize() then
status.canProgress = true
end
if Strategies.prepare("x_accuracy") then
-- Strategies.prepare("x_speed")
local forced, prepare
local opponentName = Battle.opponent()
if opponentName == "sandslash" then
local __, __, turnsToDie = Combat.bestMove()
if turnsToDie and turnsToDie < 2 then
forced = "horn_drill"
else
prepare = true
end
elseif opponentName == "magneton" then
prepare = true
elseif opponentName ~= "kadabra" then
forced = "horn_drill" --TODO necessary?
end
if not prepare or Strategies.prepare("x_speed") then
Battle.automate(forced)
end
end
elseif status.canProgress then
Control.ignoreMiss = false
return true
else
Textbox.handle()
end
end
-- playPokeflute
strategyFunctions.tossTM34 = function()
if not Inventory.contains("carbos") then
return true
end
return Strategies.tossItem("tm34")
end
strategyFunctions.fightKoga = function()
if Battle.isActive() then
if Strategies.prepare("x_accuracy") then
status.canProgress = true
local forced = "horn_drill"
local opponent = Battle.opponent()
if opponent == "venonat" then
if Memory.double("battle", "opponent_hp") == 0 then
status.secondVenonat = true
end
if status.secondVenonat or Combat.isSleeping() then
if not Strategies.prepare("x_speed") then
return false
end
end
end
Battle.automate(forced)
end
elseif status.canProgress then
Strategies.deepRun = true
Control.ignoreMiss = false
return true
else
Textbox.handle()
end
end
strategyFunctions.fightSabrina = function()
if Battle.isActive() then
status.canProgress = true
if Strategies.prepare("x_accuracy", "x_speed") then
-- local forced = "horn_drill"
-- local opponent = Battle.opponent()
-- if opponent == "venonat" then
-- end
Battle.automate(forced)
end
elseif status.canProgress then
Strategies.deepRun = true
Control.ignoreMiss = false
return true
else
Textbox.handle()
end
end
-- dodgeGirl
-- cinnabarCarbos
-- PROCESS
function Strategies.initGame(midGame)
if not STREAMING_MODE then
-- Strategies.setYolo("")
if Pokemon.inParty("nidoking") then
local attDv, defDV, spdDv, sclDV = Pokemon.getDVs("nidoking")
p(attDv, defDV, spdDv, sclDV)
stats.nidoran = {
attack = 55,
defense = 45,
speed = 50,
special = 45,
level4 = true,
attackDV = attDv,
defenseDV = defDV,
speedDV = spdDv,
specialDV = sclDV,
}
else
stats.nidoran = {
attack = 16,
defense = 12,
speed = 15,
special = 13,
level4 = true,
}
end
end
end
function Strategies.completeGameStrategy()
status = Strategies.status
end
function Strategies.resetGame()
status = Strategies.status
stats = Strategies.stats
Strategies.flareon = true
end
return Strategies