zombiesurvival-evolved/gamemodes/zombiesurvival/entities/weapons/weapon_zs_flashbomb/shared.lua
William Moodhe e9da54c2f9 ZS updates for 2014-2018
Too many changes to list.
2018-05-01 18:32:59 -04:00

16 lines
472 B
Lua

SWEP.PrintName = "Flash Bomb"
SWEP.Description = "Deals no damage but stuns all zombies around the flash, especially if they're looking at it."
SWEP.Base = "weapon_zs_basethrown"
SWEP.ViewModel = "models/weapons/cstrike/c_eq_flashbang.mdl"
SWEP.WorldModel = "models/weapons/w_eq_flashbang.mdl"
SWEP.Primary.Ammo = "flashbomb"
SWEP.Primary.Sound = Sound("weapons/pinpull.wav")
SWEP.MaxStock = 12
function SWEP:Precache()
util.PrecacheSound("weapons/pinpull.wav")
end