Zelda Wiki

Want to contribute to this wiki?
Sign up for an account, and get started!

Come join the Zelda Wiki community Discord server!

READ MORE

Zelda Wiki
Advertisement

For information on editing module data in general, see Guidelines:Modules/Data.

Schema
Data
organizations
Information on video game rating organizations.
<string>
fullName
Full name of the rating organization.
region
The rating organization's jurisdiction.
ratings
A collection of all the content ratings the organization has.
recordstring
code
The rating code.
full
What the the rating code stands for officially.
The rating code just as a string.

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= 'E',
                    full= 'Everyone',
                },
                {
                    code= 'E10+',
                    full= 'Everyone 10+',
                },
                {
                    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', '3+', '4+', '6+', '7+', '11+', '12+', '15+', '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',
                },
            },
        }, 
        GRAC= {
            fullName= 'Game Rating and Administration Committee',
            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',
                },
                'G8+',
            },
        }, 
        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'},
        }, 
        RARS= {
            fullName= 'Russian Age Rating System',
            region= 'Russia',
            ratings= {'0+', '6+', '12+', '16+', '18+'},
        }, 
        GSRMR= {
            fullName= 'Game Software Rating Management Regulations',
            region= 'Taiwan',
            ratings= {'O+', '6+', '12+', '15+', '18+'},
        },
        FPB= {
            fullName= 'Film and Publication Board',
            region= 'South Africa',
            ratings= {'PG', '7-9 PG', '10-12 PG', '13', '16', '18'},
        },
        GCAM= {
            fullName= 'General Commission for Audiovisual Media',
            region= 'Saudi Arabia',
            ratings= {
            	'3', '7', '12', '16', '18',
            	{
                    code='tbc',
                    full='To be classified',
                },
            },
        },
        NMC= {
            fullName= 'National Media Council',
            region= 'United Arab Emirates',
            ratings= {'3', '7', '12', '16', '18', '21'},
        },
    },
}
Advertisement