]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/turrets/turret/plasma_dual.qc
Merge branch 'master' into Mirio/balance
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / turrets / turret / plasma_dual.qc
1 #include "plasma_dual.qh"
2
3 #ifdef IMPLEMENTATION
4
5 #ifdef SVQC
6
7 spawnfunc(turret_plasma_dual) { if (!turret_initialize(this, TUR_PLASMA_DUAL)) delete(this); }
8
9 METHOD(DualPlasmaTurret, tr_attack, void(DualPlasmaTurret thistur, entity it))
10 {
11     if (g_instagib) {
12         FireRailgunBullet (it, it.tur_shotorg, it.tur_shotorg + it.tur_shotdir_updated * MAX_SHOT_DISTANCE, 10000000000,
13                            800, 0, 0, 0, 0, DEATH_TURRET_PLASMA.m_id);
14
15
16         Send_Effect(EFFECT_VORTEX_MUZZLEFLASH, it.tur_shotorg, it.tur_shotdir_updated * 1000, 1);
17
18         // teamcolor / hit beam effect
19         vector v = WarpZone_UnTransformOrigin(WarpZone_trace_transform, trace_endpos);
20         WarpZone_TrailParticles(NULL, particleeffectnum(EFFECT_VAPORIZER(it.team)), it.tur_shotorg, v);
21     } else {
22         SUPER(PlasmaTurret).tr_attack(thistur, it);
23     }
24     it.tur_head.frame += 1;
25 }
26 METHOD(DualPlasmaTurret, tr_think, void(DualPlasmaTurret thistur, entity it))
27 {
28     if ((it.tur_head.frame != 0) && (it.tur_head.frame != 3))
29         it.tur_head.frame = it.tur_head.frame + 1;
30
31     if (it.tur_head.frame > 6)
32         it.tur_head.frame = 0;
33 }
34
35 #endif
36 #endif