summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2008-11-20 17:17:13 +0100
committerYorhel <git@yorhel.nl>2008-11-20 17:17:13 +0100
commit8b4c450ae8acd8f6896ec5234dcfde4ecced12fb (patch)
tree10e32f510a11248ace1751fc36e8c39eb158c88f /data
parentbaf137aeaf9255059dbd8e64b4150ce392498419 (diff)
Added release list to VN pages
Diffstat (limited to 'data')
-rw-r--r--data/global.pl29
1 files changed, 29 insertions, 0 deletions
diff --git a/data/global.pl b/data/global.pl
index 3644e021..950d1577 100644
--- a/data/global.pl
+++ b/data/global.pl
@@ -144,6 +144,35 @@ our %S = (
[ 'Full story', 1 ],
[ 'Other', 0 ],
],
+ age_ratings => {
+ -1 => 'Unknown',
+ 0 => 'All ages',
+ map { $_ => $_.'+' } 6..18
+ },
+ release_types => [
+ 'Complete',
+ 'Partial',
+ 'Trial'
+ ],
+ platforms => {
+ win => 'Windows',
+ lin => 'Linux',
+ mac => 'Mac OS',
+ dvd => 'DVD Player',
+ gba => 'Game Boy Advance',
+ msx => 'MSX',
+ nds => 'Nintendo DS',
+ nes => 'Famicom',
+ psp => 'Playstation Portable',
+ ps1 => 'Playstation 1',
+ ps2 => 'Playstation 2',
+ ps3 => 'Playstation 3',
+ drc => 'Dreamcast',
+ sfc => 'Super Nintendo',
+ wii => 'Nintendo Wii',
+ xb3 => 'Xbox 360',
+ oth => 'Other'
+ },
);