Wir laden dich herzlich auf den Star Citizen Wiki Discord Server ein! Du kannst uns auch auf unserem neuen YouTube-Chanel finden!
Modul:Galactapedia/Data
Aus Star Citizen Wiki
local data = {}
--- Order of properties in the infobox
local propertyOrder = {
-- Person Stuff
'classification',
'affiliation',
'born',
'died',
'occupation',
'status',
'retirementDate',
-- Company stuff
'industry',
'founded',
'location',
'headquarters',
'products',
-- Animal Stuff
'indigenousTo',
'alsoFoundOn',
-- War
'participants',
'results',
-- Celestial
'parentBody',
'habitableNotHabitable',
'landingZones',
-- Show
'genre',
'datesActive',
'releaseDate',
-- Other
'dateS',
'manufacturer',
'role',
'type',
'description',
}
local propertyContent = {
[ 'Annually on 01 April' ] = 'Jährlich am 01. April',
[ 'Annually on February 11' ] = 'Jährlich am 11. Februar',
[ 'Armed military engagement' ] = 'Bewaffneter Militäreinsatz',
[ 'Armor manufacture' ] = 'Herstellung von Rüstungen',
[ 'Armor' ] = 'Rüstung',
[ 'Dean of Applied Science at Mentor University (2931-2947)' ] = 'Dekan für Angewandte Wissenschaft an der Mentor-Universität (2931-2947)',
[ 'Emblem of the United Empire of Earth Advocacy' ] = 'Emblem des Vereinigten Imperiums der Erde Advocacy',
[ 'Era' ] = 'Ära',
[ 'Human' ] = 'Mensch',
[ 'Humans' ] = 'Menschen',
[ 'Imperator of the United Empire of Earth (UEE)' ] = 'Imperator des Vereinigten Imperiums der Erde (UEE)',
[ 'on hiatus' ] = 'in Pause',
[ 'Personal armor' ] = 'Persönliche Rüstung',
[ 'Personal weapons' ] = 'Persönliche Waffen',
[ 'Racing' ] = 'Rennen',
[ 'Revolution' ] = 'Revolution',
[ 'Spacecraft manufacture' ] = 'Raumfahrzeug-Herstellung',
[ 'Spacecraft' ] = 'Raumschiff',
[ 'UEE State' ] = 'UEE-Staat',
[ 'UEEN base' ] = 'UEEN-Basis',
[ 'United Empire of Earth holiday' ] = 'United Empire of Earth Feiertag',
[ 'Vanduul invasion' ] = 'Vanduul-Invasion',
[ 'Vanduul, United Empire of Earth' ] = 'Vanduul, Vereinigtes Reich der Erde',
[ 'vehicle manufacture' ] = 'Fahrzeugbau',
[ 'Weaponized EMP systems for spacecraft' ] = 'Bewaffnete EMP-Systeme für Raumfahrzeuge',
[ 'Weapons manufacture' ] = 'Herstellung von Waffen',
}
--
local smwMapData = {
[ 'affiliation' ] = 'Volk',
[ 'manufacturer' ] = 'Hersteller',
[ 'occupation' ] = 'Beruf',
[ 'born' ] = 'Geburtsdatum',
[ 'died' ] = 'Todesdatum',
[ 'dateS' ] = 'Zeitpunkt',
[ 'founded' ] = 'Gründungsdatum',
[ 'releaseDate' ] = 'Veröffentlichung',
[ 'retirementDate' ] = 'Austritt',
[ 'location' ] = 'Ort',
}
data.propertyOrder = propertyOrder
data.propertyNames = propertyNames
data.propertyContent = propertyContent
data.smwMapData = smwMapData
return data