]> git.xonotic.org Git - xonotic/xonotic.wiki.git/blob - Nades.md
Create Nades wiki guide
[xonotic/xonotic.wiki.git] / Nades.md
1 # Nades
2
3 Come in a variety of types. The offhand hook bind or drop weapon bind throws the grenade. Hold the throw key E to cook the nade. (*NOTE: If you have a Grappling Hook weapon with you, you will have to press the G key once to throw it and then press it again when you want to throw the nade. Due to development reasons, the Grappling Hook only can be used with the E key as the main key, so it was developed to avoid errors in the game.*) Press F8 to switch nade types.
4
5 # Nade types
6
7 ## Normal
8
9 ![Normal nade](uploads/49d1fa684ecd673367b4f3294195a37f/normal.png)
10 ![Normal boom](uploads/1b9a2ab2a1f5a3138b45d12830910c02/normalboom.png)
11
12 Frag grenade. Explodes.
13
14 ## Napalm
15
16 ![Napalm nade](uploads/a90778308bad9c09bf02be9cdb760f76/napalm.png)
17 ![Napalm boom](uploads/ca2ff9f964f1836eaa2550c5ab918c85/napalmboom.png)
18
19 Shoots several napalm globs in a circle around the nade. Touching these will ignite players and likely kill them.
20
21 ## Nitro
22
23 ![Nitro nade](uploads/7deb9e6cb017bcc91ab2e4687a358b6a/nitro.png)
24 ![Nitro boom](uploads/8195594de91adce2c8f62f9819c8e861/nitroboom.png)
25
26 Freezes enemies in a large radius. Lethal.
27
28 ## Translocate 
29
30 ![Translocate nade](uploads/dbc9799a7d5caa91d6172b21e61f205e/translocate.png)
31 ![Translocate boom](uploads/a686abf53ed2a7c0c39d264fce1a15bc/translocateboom.png)
32
33 Teleports the player to where the nade "explodes".
34
35 ## Spawn
36
37 ![Spawn nade](uploads/3042d31bb8a054ea7e177f6110570fb7/spawnnade.png)
38
39 Creates a spawn point that can be respawned on three times. It's useful when you need to go back in the point where you want to start after died, instead starting in the main points.
40
41 ## Healing
42
43 ![Healing nade](uploads/a6789a82865f41522bfaa150e9c2bbc8/healing.png)
44 ![Healing boom](uploads/5df5aca2975cb939a9f091574ea12d6f/healingboom.png)
45
46 Regenerates health in a large radius around the nade.
47
48 ## Entrap
49
50 ![Entrap nade](uploads/01d68ab92d511e0a8ee5c0e0905609ab/entrap.png)
51 ![Entrap boom](uploads/b88705357f80b8216aff7fd545baa94f/entrapboom.png)
52
53 Slows movement within a large radius for 12 seconds. Makes the balls' gravity fall faster when they are inside the orb. In the orb, you will see that the electro balls fall quicker inside and rockets / bullets are slowing down.
54
55 # Pokenade 
56
57 ![Monster nade](uploads/fbdb7eb49088219c3acc3095e4254a6a/monsternade.png)
58 ![Monster boom](uploads/6441f147f90aba34812ebc3cb733caa7/monsternadeboom.png)
59
60 Spawns a monster. Four monsters can be alive at one time. Options include:
61
62 ## Zombie
63
64 Medium speed melee attacker. Can be ridden for movement speed higher than running (but not as fast as strafe jumping).
65
66 ## Spider
67
68 High speed melee attacker. Drops 25 health on death.
69
70 ## Wyvern
71
72 Flying monster.
73
74 ## Shambler
75
76 Large, slow melee attacker. Drops 100 health on death.
77
78 ## Random
79
80 Spawns all of the above and a marine at random.
81
82 **More info about monsters are in [this link](Monsters) (Monsters page coming soon!).**
83
84 ## Notes for players and developers
85
86 If you are creating a server for yourself, to play with the nades, you need to activate the nades and it is recommended to set those variables:
87
88 `g_nades 1 // activate nades in the game`
89
90 `set g_nades_nade_damage 150 // normal nade explosion damage`
91
92 `set g_nades_bonus 1 // adding number of extra nades when it's obtained after time bonus`
93
94 `set g_nades_bonus_client_select 1`
95
96 `set g_nades_bonus_type 3 // limit of number of nades when a player had`
97
98 `set g_nades_bonus_score_time 5 // time when someone is scoring, makes adding fast one nade extra more`
99
100 `set g_nades_heal_foe -5 // when someone is not ally of the healing orb will take damage during a certain time if this is inside the orb`
101
102 `set g_nades_napalm_ball_damage 110 // napalm explosion damage`
103
104 `set g_nades_napalm_ball_lifetime 4 // napalm burning time after exploded`
105
106 `set g_nades_napalm_burntime 3 // napalm burn time when someone is burning with those flames`
107
108 `set g_nades_entrap_time 15 // entrap orb time`
109
110 `set g_nades_nade_refire 10`
111
112 `set g_nades_spawn_count 1`
113
114 `set g_nades_veil_radius 720 // veil orb radius size`
115
116 `set g_nades_veil_time 6 // veil orb time`
117
118 `set g_nades_ice_freeze_time 2 // How long the ice field will last`
119
120 `set g_nades_ice_health      1 // How much health the player will have after being unfrozen`
121
122 `set g_nades_ice_teamcheck   0 // Don't freeze teammates`
123
124 `set g_nades_ice_explode     1 // Whether the ice nade should explode again once the ice field dissipated`
125
126 After setting all this, it can be necessary to restart the server, use `restart` command to apply the changes. Instead doing this manually, you can put those variables in a *.cfg* file. Save the variables inside *nades.cfg* empty file and save it in *xonotic/data* folder. In the game, when you are playing in your own server, execute in the console: `exec nades.cfg` and restart if it's necessary.