Sync with lates doom + fix elfe sylvain

This commit is contained in:
sladecraven 2021-12-25 12:24:14 +01:00
parent d844cc5079
commit 317a2c4116
7 changed files with 60 additions and 9 deletions

View File

@ -0,0 +1,17 @@
{
"label": "Tables (Archives Vol. I)",
"entries": [
{
"id": "Career - Wood Elf (Toriour)",
"name": "Career - Wood Elf (Toriour)"
},
{
"id": "Random Euphemisms - Noun",
"name": "Random Euphemisms - Noun"
},
{
"id": "Random Euphemisms - Participle",
"name": "Random Euphemisms - Participle"
}
]
}

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
{ {
"label": "Tables (Enemy In Shadows)", "label": "Tables (Ennemi dans l'Ombre)",
"entries": [ "entries": [
{ {
"id": "Beast Head - Khorne", "id": "Beast Head - Khorne",

View File

@ -0,0 +1,29 @@
{
"label": "Tables (Middenheim)",
"entries": [
{
"id": "Athletics - Middenball",
"name": "Athletics - Middenball"
},
{
"id": "Brutality - Middenball",
"name": "Brutality - Middenball"
},
{
"id": "Career - Human (Middenheimer)",
"name": "Career - Human (Middenheimer)"
},
{
"id": "Career - Human (Middenlander)",
"name": "Career - Human (Middenlander)"
},
{
"id": "Career - Human (Nordlander)",
"name": "Career - Human (Nordlander)"
},
{
"id": "Middenball Random Events",
"name": "Middenball Random Events"
}
]
}

View File

@ -46,7 +46,7 @@
"94-97": "Nain", "94-97": "Nain",
"98-98": "Gnome", "98-98": "Gnome",
"99-99": "Haut Elfe", "99-99": "Haut Elfe",
"100-100": "Elfe des Bois" "100-100": "Elfe Sylvain"
} }
} }
] ]

View File

@ -2,7 +2,7 @@
"name": "WH4-fr-translation", "name": "WH4-fr-translation",
"title": "WFRP4e - Core Module en français.", "title": "WFRP4e - Core Module en français.",
"description": "Traduction Française pour Warhammer v4.", "description": "Traduction Française pour Warhammer v4.",
"version": "5.0.6", "version": "5.0.7",
"minimumCoreVersion" : "0.8.0", "minimumCoreVersion" : "0.8.0",
"compatibleCoreVersion": "9", "compatibleCoreVersion": "9",
"author": "LeRatierBretonnien", "author": "LeRatierBretonnien",

View File

@ -2,7 +2,7 @@
package.path = package.path .. ";luajson/?.lua" package.path = package.path .. ";luajson/?.lua"
local JSON = require"json" local JSON = require"json"
local path_in = "../tables/winds.json" local path_in = "../tables/doom2.json"
local f1 = io.open(path_in, "r") local f1 = io.open(path_in, "r")
local strjson = f1:read("*a") local strjson = f1:read("*a")
f1:close() f1:close()
@ -15,7 +15,7 @@ for idx, row in pairs(tabData.rows) do
local max = row.range[2] local max = row.range[2]
local field = tostring(min).."-"..tostring(max) local field = tostring(min).."-"..tostring(max)
--results[field] = "<b>"..row.name.."</b>:"..row.description --results[field] = "<b>"..row.name.."</b>:"..row.description
results[field] = row.modifier results[field] = row.description
print(field, row.name) print(field, row.name)
--end --end
end end