Sync with lates doom + fix elfe sylvain
This commit is contained in:
		
							
								
								
									
										17
									
								
								compendium/wfrp4e-archives1.archives1-tables.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								compendium/wfrp4e-archives1.archives1-tables.json
									
									
									
									
									
										Normal 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
											
										
									
								
							| @@ -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", | ||||||
|   | |||||||
							
								
								
									
										29
									
								
								compendium/wfrp4e-middenheim.middenheim-tables.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								compendium/wfrp4e-middenheim.middenheim-tables.json
									
									
									
									
									
										Normal 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" | ||||||
|  | 		} | ||||||
|  | 	] | ||||||
|  | } | ||||||
| @@ -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"     | ||||||
| 		  } | 		  } | ||||||
|     } |     } | ||||||
| 	] | 	] | ||||||
|   | |||||||
| @@ -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", | ||||||
|   | |||||||
| @@ -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 | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user