X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Feffects%2Feffectinfo.inc;h=090d2b111902b66247a52978b1c404598a5b4c1a;hb=c859a2a87cbeb3dd30f402782cf7e59d132b1b81;hp=3713e9a1abc80601fe7aece807abd579a1714790;hpb=db39fc1518a9f7e66e8f8dc6bffac7fe9c65a442;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/effects/effectinfo.inc b/qcsrc/common/effects/effectinfo.inc index 3713e9a1a..090d2b111 100644 --- a/qcsrc/common/effects/effectinfo.inc +++ b/qcsrc/common/effects/effectinfo.inc @@ -2,6 +2,7 @@ // use `cl_particles_reloadeffects` to reload effects without restarting engine // use `chase_active 1` and `cl_lockview 1` to see effects from different perspectives // `dumpeffectinfo` currently doesn't work so edit effectinfo.txt manually, just try to keep the files in sync +// always add new effects to the bottom of the list // `tex` are indices into particles/particlefont.tga (see particles/particlefont-template.tga for numbers) // the first index is inclusive, second exclusive (so `tex 0 8` will use images 0 though 7) @@ -9086,3 +9087,24 @@ SUB(TE_TEI_G3_HIT) { MY(trailspacing) = 40; MY(type) = "smoke"; } + +// respawn ghosts effect +DEF(respawn_ghost); +SUB(respawn_ghost) { + MY(count) = 75; + MY(type) = "static"; + MY(color_min) = "0xA0A0A0"; + MY(color_max) = "0xFFFFFF"; + MY(size_min) = 2; + MY(size_max) = 2; + MY(alpha_min) = 32; + MY(alpha_max) = 64; + MY(alpha_fade) = 128; + MY(airfriction) = 1; + MY(liquidfriction) = 4; + MY(originoffset) = '0 0 -8'; + MY(originjitter) = '28 28 16'; + MY(velocityjitter) = '0 0 256'; +} + +// always add new effects to the bottom of the list. And keep this comment in the bottom line of this file!