]> icculus.org git repositories - divverent/nexuiz.git/blob - scmenu/creategame/game.menu
-Added Nex_Action_ResetData to options.qm.
[divverent/nexuiz.git] / scmenu / creategame / game.menu
1 // Property of Alientrap/AK
2 //
3 // creategame/game.menu
4 Item Layout Game
5 {
6         direction       [Nex_DefaultVertDirection]
7         size            '900 585'
8         origin          '450 0'
9         alignment       [AlignFirst]
10
11         DeriveTemplate Nex_Composition Nex_Option_EditBox
12         {
13                 DeriveTemplate Nex_Automation_Option_EditBox Automation
14                 {}
15                 DeriveTemplate TextButton Description
16                 {}
17                 DeriveTemplate EditBox EditBox
18                 {
19                         size    '260 12'
20                         action  Nex_Action_TestOnChange
21                         select  Nex_Action_TestOnSelect
22                 }
23         }
24
25         Derive Nex_Option_Switch Instagib
26         {
27                 text    "Instagib"
28                 target  "::Data::Game::Instagib::Switch"
29         }
30         Derive Nex_Option_Switch Rocketarena
31         {
32                 text    "Rocket Arena"
33                 target  "::Data::Game::RocketArena::Switch"
34         }
35         Derive Nex_Option_Switch Casings
36         {
37                 text    "Bullet Casings"
38                 target  "::Data::Game::Casings::Switch"
39         }
40         Derive Nex_Option_EditBox Health
41         {
42                 text    "Starting Health"
43                 target  "Data::Game::Health::Text"
44         }
45         Derive Nex_Option_EditBox Gravity
46         {
47                 text    "Level Gravity"
48                 target  "Data::Game::Gravity::Text"
49         }
50         Derive Nex_Option_EditBox Maxspeed
51         {
52                 text    "Player Maxspeed"
53                 target  "Data::Game::MaxSpeed::Text"
54         }
55         Derive Nex_Option_EditBox Gamespeed
56         {
57                 text    "Game Speed"
58                 target  "Data::Game::GameSpeed::Text"
59         }
60         Derive Nex_Option_EditBox Maxairspeed
61         {
62                 text    "Max Air Speed"
63                 target  "Data::Game::MaxAirSpeed::Text"
64         }
65         Derive Nex_Option_EditBox JumpHeight
66         {
67                 text    "Jump height"
68                 target  "Data::Game::JumpHeight::Text"
69         }
70         Derive Nex_Option_EditBox HealthRegeneration
71         {
72                 text    "Regeneration Speed"
73                 target  "Data::Game::HealthRegeneration::Text"
74         }
75         Derive Nex_Option_EditBox ArmorRott
76         {
77                 text    "Armor Rott Speed"
78                 target  "Data::Game::ArmorRott::Text"
79         }
80         Derive Nex_Option_EditBox SelfDamagePercent
81         {
82                 text    "Self Damage Percent"
83                 target  "Data::Game::SelfDamagePercent::Text"
84         }
85         Derive Nex_Option_EditBox WeaponSwitchDelay
86         {
87                 text    "Weapon Switch Delay"
88                 target  "Data::Game::WeaponSwitchDelay::Text"
89         }
90         Derive Nex_Option_EditBox Friction
91         {
92                 text    "Player Friction"
93                 target  "Data::Game::Friction::Text"
94         }
95         Derive Nex_Option_EditBox Accelerate
96         {
97                 text    "Player Accelerate"
98                 target  "Data::Game::Accelerate::Text"
99         }
100         Derive Nex_Line Seperator
101         {}
102         Derive TextButton Reset
103         {
104                 normal  "Reset to default"
105                 init    Nex_Action_ResetData
106                 target  "::Data::Game"
107         }
108 }