Update planet triggers for recent planet AI change
This commit is contained in:
parent
a74a1f3ec7
commit
ba79ab2e5e
@ -13,10 +13,10 @@ end
|
||||
|
||||
line = line:gsub("%(UFG%)", "")
|
||||
line = line:gsub(" +", ";")
|
||||
local startIdx, _, planet, system, gov, support = line:find("([^;]+);([^;]+);([^;]+);([^;]+)")
|
||||
local startIdx, _, planet, system, gov, support, military = line:find("([^;]+);([^;]+);([^;]+);([^;]+);([^;]+)")
|
||||
if not startIdx then
|
||||
gov = "None"
|
||||
startIdx, _, planet, system, support = line:find("([^;]+);([^;]+);([^;]+)")
|
||||
startIdx, _, planet, system, support, military = line:find("([^;]+);([^;]+);([^;]+);([^;]+)")
|
||||
end
|
||||
if not startIdx then
|
||||
echo("\n")
|
||||
|
@ -2,7 +2,9 @@ local systemName = matches[2]:match "^%s*(.-)%s*$"
|
||||
local xCoord = tonumber(matches[3])
|
||||
local yCoord = tonumber(matches[4])
|
||||
|
||||
lotj.galaxyMap.recordSystem(systemName, xCoord, yCoord)
|
||||
if xCoord >= -100 and xCoord <= 100 and yCoord >= -100 and yCoord <= 100 then
|
||||
lotj.galaxyMap.recordSystem(systemName, xCoord, yCoord)
|
||||
end
|
||||
|
||||
setTriggerStayOpen("gather-starsystems", 1)
|
||||
deleteLine()
|
||||
|
@ -9,7 +9,7 @@
|
||||
"fireLength": 1,
|
||||
"patterns": [
|
||||
{
|
||||
"pattern": "Planet\\s+Starsystem\\s+Governed By\\s+Popular Support",
|
||||
"pattern": "Planet\\s+Starsystem\\s+Governed By\\s+Opinion\\s+Military",
|
||||
"type": "regex"
|
||||
}
|
||||
],
|
||||
@ -36,8 +36,8 @@
|
||||
"type": "substring"
|
||||
},
|
||||
{
|
||||
"pattern": "--Planet Data: -------------------------------",
|
||||
"type": "substring"
|
||||
"pattern": "--Planet Data: -+",
|
||||
"type": "regex"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
@ -84,8 +84,8 @@
|
||||
"name": "planet-description-hdr",
|
||||
"patterns": [
|
||||
{
|
||||
"pattern": "--Planetary Information: ---------------------",
|
||||
"type": "substring"
|
||||
"pattern": "--General Details: -+",
|
||||
"type": "regex"
|
||||
}
|
||||
],
|
||||
"script": "gatherPlanetState.section = \"description\""
|
||||
@ -94,8 +94,8 @@
|
||||
"name": "planet-resources-hdr",
|
||||
"patterns": [
|
||||
{
|
||||
"pattern": "--Planetary Resources: -----------------------",
|
||||
"type": "substring"
|
||||
"pattern": "--Planetary Resources: -+",
|
||||
"type": "regex"
|
||||
}
|
||||
],
|
||||
"script": "gatherPlanetState.section = \"resources-basic\""
|
||||
|
Loading…
Reference in New Issue
Block a user