From 42e9332a6c224d8a9ac0cb020dfd85742f4ae6e8 Mon Sep 17 00:00:00 2001 From: Jackz Date: Tue, 11 May 2021 16:01:44 -0500 Subject: [PATCH] Add feedthetrolls.cfg troll list --- .gitignore | 1 + data/feedthetrolls.cfg | 167 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 168 insertions(+) create mode 100644 data/feedthetrolls.cfg diff --git a/.gitignore b/.gitignore index 1e45ac3..00ccc59 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ !scripting !scripting/include !gamedata/ +!data/ template.config.js .* scripting/sm_give.sp diff --git a/data/feedthetrolls.cfg b/data/feedthetrolls.cfg new file mode 100644 index 0000000..2f1dffa --- /dev/null +++ b/data/feedthetrolls.cfg @@ -0,0 +1,167 @@ +//"modifiers" key has three flags: +// s - single, r - repeat / event, c - constant +//add letters together: sr -> single & repeat + +"Trolls" +{ + "Reset" + { + "id" "reset" + "description" "Resets the user, removes all troll effects" + "modifiers" "s" + } + + "SlowSpeed" + { + "id" "slow" + "description" "Sets player speed to 0.8x of normal speed" + "modifiers" "c" + } + + "Higher Gravity" + { + "id" "highergrav" + "description" "Sets player gravity to 1.3x of normal gravity" + "modifiers" "c" + } + + "Half Primary Ammo" + { + "id" "half" + "description" "Cuts their primary reserve ammo in half" + "modifiers" "s" + } + + "UziRules" + { + "id" "uzirules" + "description" "Picking up a weapon gives them a UZI instead" + "modifiers" "c" + } + + "Disable Primary" + { + "id" "disable" + "description" "Player cannot pickup any weapons, only melee/pistols" + "modifiers" "c" + } + + "Slow Drain" + { + "id" "drain" + "description" "Player slowly loses health" + "modifiers" "c" + } + + "Clumsy" + { + "id" "clumsy" + "description" "Player drops axe periodically or on demand" + "modifiers" "sr" + } + + "iCantspellNoMore" + { + "id" "nospell" + "description" "Chat messages letter will randomly changed with wrong letters " + "modifiers" "r" + } + + "CameTooEarly" + { + "id" "cametooearly" + "description" "When they shoot, random chance they empty whole clip" + "modifiers" "r" + } + + "KillMeSoftly" + { + "id" "killsoftly" + "description" "Make player eat or waste pills whenever possible" + "modifiers" "sr" + } + + "ThrowItAll" + { + "id" "throwitall" + "description" "Player throws all their items at nearby player, periodically" + "modifiers" "sr" + } + + "Gun Jam" + { + "id" "gunjam" + "description" "On reload, small chance their gun gets jammed - Can't reload." + "modifiers" "r" + } + + "No Pickup" + { + "id" "nopickup" + "description" "Prevents a player from picking up ANY (new) item. Use ThrowItAll to make them drop" + "modifiers" "c" + } + + "Swarm" + { + "id" "swarm" + "description" "Swarms a player with zombies. Requires l4d2_swarm plugin" + "modifiers" "sr" + } + + "Honk" + { + "id" "honk" + "description" "honk" + "modifiers" "c" + } + + "Special Magnet" + { + "id" "specialmagnet" + "description" "Attracts ALL specials to any alive target with this troll enabled" + "modifiers" "c" + } + + "Tank Magnet" + { + "id" "tankmagnet" + "description" "Attracts ALL tanks to any alive target with this troll enabled" + "modifiers" "c" + } + + "No Shove" + { + "id" "noshove" + "description" "Prevents a player from shoving" + "modifiers" "c" + } + + "Damage Taken Boost" + { + "id" "damageboost" + "description" "Makes a player take more damage than normal" + "modifiers" "c" + } + + "Temp. Quick Drain" + { + "id" "quickdrain" + "description" "Makes a player's temporarily health drain very quickly" + "modifiers" "c" + } + + "Vomit Player" + { + "id" "vomit" + "description" "Shortcut to sm_vomitplayer. vomits the player." + "modifiers" "s" + } + + "Vocalize Gag" + { + "id" "gag" + "description" "Prevents player from sending any vocalizations (even automatic)" + "modifiers" "c" + } +} \ No newline at end of file