diff options
Diffstat (limited to 'src/game/bg_misc.c')
-rw-r--r-- | src/game/bg_misc.c | 66 |
1 files changed, 65 insertions, 1 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c index 1f9f5187..77265f7e 100644 --- a/src/game/bg_misc.c +++ b/src/game/bg_misc.c @@ -809,7 +809,7 @@ TA: human defense item { "team_human_mcu", "sound/items/holdable.wav", - { "models/bitems/adef1.md3", 0, 0, 0 }, + { "models/powerups/ammo/plasmaam.md3", 0, 0, 0 }, "icons/teleporter", //icon "Human MCU", //pickup 0, @@ -819,6 +819,38 @@ TA: human defense item "" //sounds }, +/*QUAKED team_human_reactor (0 0 1) (-16 -16 -16) (16 16 16) +TA: human power item +*/ + { + "team_human_reactor", + "sound/items/holdable.wav", + { "models/powerups/ammo/bfgam.md3", 0, 0, 0 }, + "icons/teleporter", //icon + "Human Reactor", //pickup + 0, + IT_BUILDABLE, + BA_H_REACTOR, + "", //precache + "" //sounds + }, + +/*QUAKED team_human_repeater (0 0 1) (-16 -16 -16) (16 16 16) +TA: human power item +*/ + { + "team_human_repeater", + "sound/items/holdable.wav", + { "models/powerups/ammo/railgunam.md3", 0, 0, 0 }, + "icons/teleporter", //icon + "Human Repeater", //pickup + 0, + IT_BUILDABLE, + BA_H_REPEATER, + "", //precache + "" //sounds + }, + /*QUAKED upgrade_torch (0 0 1) (-16 -16 -16) (16 16 16) */ { @@ -972,6 +1004,38 @@ buildableAttributes_t bg_buildableList[ ] = EV_NONE, -1, qfalse + }, + { + BA_H_REACTOR, + "reactor", + "team_human_reactor", + { -15, -15, -15 }, + { 15, 15, 15 }, + 1000, + 50, + 50, + 150, + MOD_HSPAWN, + BIT_HUMANS, + EV_NONE, + -1, + qfalse + }, + { + BA_H_REPEATER, + "repeater", + "team_human_repeater", + { -15, -15, -15 }, + { 15, 15, 15 }, + 1000, + 50, + 50, + 150, + MOD_HSPAWN, + BIT_HUMANS, + EV_NONE, + -1, + qfalse } }; |