Update job table

This commit is contained in:
2021-11-08 21:29:05 +01:00
parent eb61db0030
commit 661ce7c94d
4 changed files with 765 additions and 611 deletions

View File

@ -1,7 +1,7 @@
package.path = package.path .. ";luajson/?.lua"
local JSON = require"json"
local enjsonf = "../../WFRP4e-FoundryVTT/lang/en.json.NEW"
local enjsonf = "../../WFRP4e-FoundryVTT/lang/en.json"
local frjsonf = "../fr.json"
local fp = io.open(enjsonf, "r")
@ -11,11 +11,20 @@ fp:close()
fp = io.open(frjsonf, "r")
local frtags = JSON.decode( fp:read("*a") )
fp:close()
local todisplay = {}
for tag, value in pairs(entags) do
if not frtags[tag] then
print('"'..tag..'":"'.. value..'",')
todisplay[#todisplay+1] = { tag=tag, value=value }
end
end
table.sort(todisplay, function (a, b)
return a.tag < b.tag
end
)
for _, tagDef in pairs(todisplay) do
print('"'.. tagDef.tag ..'":"'.. tagDef.value..'",')
end