Module:Game Rating/Data: Difference between revisions

From Zelda Wiki, the Zelda encyclopedia
Jump to navigation Jump to search
(more data. phew)
mNo edit summary
Line 16: Line 16:
                     code= 'EC',
                     code= 'EC',
                     full= 'Early Childhood',
                     full= 'Early Childhood',
                },
                {
                    code= 'E10+',
                    full= 'Everyone 10+',
                 },
                 },
                 {
                 {
Line 30: Line 34:
                 },
                 },
                 {
                 {
                     code= 'A',
                     code= 'AO',
                     full= 'Adults Only',
                     full= 'Adults Only',
                 },
                 },

Revision as of 18:03, 5 November 2017

Lua error in Module:Game_Rating at line 131: attempt to index local 'region' (a nil value).


return {
    organizations= {
        ESRB= {
            fullName= 'Entertainment Software Rating Board',
            region= 'North America',
            ratings= {
                {
                    code= 'K-A',
                    full= 'Kids-to-Adult',
                },
                { 
                    code= 'RP',
                    full= 'Rating Pending',
                },
                {
                    code= 'EC',
                    full= 'Early Childhood',
                },
                {
                    code= 'E10+',
                    full= 'Everyone 10+',
                },
                {
                    code= 'E',
                    full= 'Everyone',
                },
                {
                    code= 'T',
                    full= 'Teen',
                },
                {
                    code= 'M',
                    full= 'Mature',
                },
                {
                    code= 'AO',
                    full= 'Adults Only',
                },
            },
        },
        PEGI= {
            fullName= 'Pan European Game Information',
            region= 'Europe',
            ratings= {'3', '7', '12', '16', '18'},
        },
        ELSPA= {
            fullName= 'Entertainment and Leisure Software Publishers Association',
            region= 'United Kingdom',
            ratings= {'3+', '11+', '15+', '18+'},
        }, 
        CERO= {
            fullName= 'Computer Entertainment Rating Organization',
            region= 'Japan',
            ratings= {'A', 'B', 'C', 'D', 'Z', 'All', '12', '15', '18'},
        }, 
        GRB= {
            fullName= 'Game Rating Board',
            region= 'South Korea',
            ratings= {
                {
                    code='A',
                    full='All',
                },
                '12', '15', '18',
                {
                    code='T',
                    full='Test',
                },
            },
        }, 
        CB= {
            fullName= 'Classification Board',
            region= 'Australia',
            ratings= {
                {
                    code= 'E',
                    full= 'Exempt from classification',
                },
                {
                    code= 'G',
                    full= 'General',
                },
                {
                    code= 'PG',
                    full= 'Parental guidance recommended',
                },
                {
                    code= 'M',
                    full= 'Recommended for mature audiences',
                },
                {
                    code= 'MA15+',
                    full= 'Restricted',
                },
            },
        }, 
        USK= {
            fullName= 'Unterhaltungssoftware Selbstkontrolle',
            region= 'Germany',
            ratings= {'0', '6', '12', '16', '18'},
        }, 
        DEJUS= {
            fullName= 'Department of Justice, Rating, Titles and Qualification',
            region= 'Brazil',
            ratings= {'L', '10', '12', '14', '16', '18'},
        }, 
        GSRMR= {
            fullName= 'Game Software Rating Management Regulations',
            region= 'Taiwan',
            ratings= {'O+', '6+', '12+', '15+', '18+'},
        },    
    },
}