Skip to content

Commit

Permalink
Add NationCategory enum
Browse files Browse the repository at this point in the history
Adds a NationCategory enum for referencing all the possible World Census nation categories.
  • Loading branch information
anjo0803 committed Apr 12, 2024
1 parent 862baeb commit 0a0e87c
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
36 changes: 36 additions & 0 deletions src/enums.js
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,42 @@ exports.Influence = [
'Hermit'
];

/**
* World Census classifications of nations.
* @enum {string}
* @readonly
*/
exports.NationCategory = {
ANARCHY: 'Anarchy',
AUTHORITARIAN_DEMOCRACY: 'Authoritarian Democracy',
BENEVOLENT_DICTATORSHIP: 'Benevolent Dictatorship',
CAPITALIST_PARADISE: 'Capitalist Paradise',
CAPITALIZT: 'Capitalizt',
CIVIL_RIGHTS_LOVEFEST: 'Civil Rights Lovefest',
COMPULSORY_CONSUMERIST: 'Compulsory Consumerist State',
CONSERVATIVE_DEMOCRACY: 'Conservative Democracy',
CORPORATE_BORDELLO: 'Corporate Bordello',
CORPORATE_POLICE: 'Corporate Police State',
CORRUPT_DICTATORSHIP: 'Corrupt Dictatorship',
DEMOCRATIC_SOCIALISTS: 'Democratic Socialists',
FATHER_KNOWS_BEST: 'Father Knows Best State',
FREE_MARKET_PARADISE: 'Free Market Paradise',
INOFFENSIVE: 'Inoffensive Centrist Democracy',
IRON_FIST_CONSUMERISTS: 'Iron Fist Consumerists',
IRON_FIST_SOCIALISTS: 'Iron Fist Socialists',
LEFT_COLLEGE: 'Left-Leaning College State',
LEFT_UTOPIA: 'Left-wing Utopia',
LIBERAL_DEMOCRATIC_SOCIALISTS: 'Liberal Democratic Socialists',
LIBERTARIAN_POLICE: 'Libertarian Police State',
MORALISTIC: 'Moralistic Democracy',
MOTHER_KNOWS_BEST: 'Mother Knows Best State',
NYT: 'New York Times Democracy',
PSYCHOTIC_DICTATORSHIP: 'Psychotic Dictatorship',
RIGHT_UTOPIA: 'Right-wing Utopia',
SCANDINAVIAN: 'Scandinavian Liberal Paradise',
TYRANNY_BY_MAJORITY: 'Tyranny by Majority'
}

/**
* Special characteristics notable about a nation.
* @enum {string}
Expand Down
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ exports.DispatchSubcategory = ENUMS.DispatchSubcategory;
exports.DispatchSearchMode = ENUMS.DispatchSearchMode;
exports.HappeningsFilter = ENUMS.HappeningsFilter;
exports.Influence = ENUMS.Influence;
exports.NationCategory = ENUMS.NationCategory;
exports.Notable = ENUMS.Notable;
exports.NoticeIcon = ENUMS.NoticeIcon;
exports.NoticeType = ENUMS.NoticeType;
Expand Down

0 comments on commit 0a0e87c

Please sign in to comment.