JS-2000 Shotgun: Difference between revisions

From PZwiki
No edit summary
No edit summary
Line 5: Line 5:
|weapontype = Ranged  
|weapontype = Ranged  
|ammo = [[Shotgun shells]]
|ammo = [[Shotgun shells]]
|weight = 25
|weight = 3
}}
}}


Line 11: Line 11:
A noisy ranged [[weapon]], the shotgun is a powerful firearm that will attract [[zombie]]s from a large distance to the [[player]] when fired. It fires [[shotgun shells]], which fire pellets in a spread pattern that with the potential to kill multiple targets in the direction of fire. The shotgun will generally kill zombies in one to two hits; the closer a target is to the player, the more damage is inflicted. [[Shotgun shells]] are required to use the shotgun, but do not have to be in the secondary slot and can remain in your inventory. Only one shotgun shell is fired at a time.
A noisy ranged [[weapon]], the shotgun is a powerful firearm that will attract [[zombie]]s from a large distance to the [[player]] when fired. It fires [[shotgun shells]], which fire pellets in a spread pattern that with the potential to kill multiple targets in the direction of fire. The shotgun will generally kill zombies in one to two hits; the closer a target is to the player, the more damage is inflicted. [[Shotgun shells]] are required to use the shotgun, but do not have to be in the secondary slot and can remain in your inventory. Only one shotgun shell is fired at a time.


The shotgun is the ideal weapon for quickly killing a large group of zombies and blasting an escape route, but due to its noise, it is only advisable to use it in the most dire of situations. Its heavy weight also makes it impractical to carry everywhere you go, so the shotgun should be used strategically as needed.
The shotgun is the ideal weapon for quickly killing a large group of zombies and blasting an escape route, but due to its noise, it is only advisable to use it in the most dire of situations. Its heavy weight also makes it impractical to carry everywhere you go, so the shotgun should be carried strategically as needed.


Since zombies are attracted to the noise the shotgun makes, it may also be used to lure a horde of zombies away from areas the player wishes to approach.
Since zombies are attracted to the noise the shotgun makes, it may also be used to lure a horde of zombies away from areas the player wishes to approach.
Line 34: Line 34:
Type = Weapon,
Type = Weapon,
DisplayName = Shotgun,
DisplayName = Shotgun,
Icon = Shotgun2,
SubCategory        =          Firearm,
Icon = Shotgun2,
IsAimedFirearm = true,
IsAimedFirearm = true,
Ranged = true,
Ranged = true,
Line 41: Line 42:
MinDamage = 1.8,
MinDamage = 1.8,
MaxRange = 8.0,
MaxRange = 8.0,
SwingAnim = Rifle,
MinRange = 0.61,
    SwingAnim = Rifle,
WeaponSprite = Shotgun,
WeaponSprite = Shotgun,
SwingSound = shotgun,
SwingSound = shotgun,
IdleAnim = Idle_Weapon2,
IdleAnim = Idle_Weapon2,
RunAnim = Run_Weapon2,
RunAnim = Run_Weapon2,
AimingMod = 2.0,  
AimingMod = 2.0,
ProjectileCount = 12,
ProjectileCount = 6,
SoundVolume = 200,
SoundVolume = 200,
SoundRadius = 200,
SoundRadius = 200,
AngleFalloff = true,
AngleFalloff = true,
ToHitModifier = 10.0,
MaxHitCount = 5,
    ToHitModifier = 10.0,
NPCSoundBoost = 1.5,
NPCSoundBoost = 1.5,
Weight = 25,
Weight = 3,
WeaponWeight = 1.8,
WeaponWeight = 1.8,
DoorDamage = 20,
DoorDamage = 20,

Revision as of 14:26, 4 May 2013


Template:Weapons

Description

A noisy ranged weapon, the shotgun is a powerful firearm that will attract zombies from a large distance to the player when fired. It fires shotgun shells, which fire pellets in a spread pattern that with the potential to kill multiple targets in the direction of fire. The shotgun will generally kill zombies in one to two hits; the closer a target is to the player, the more damage is inflicted. Items are required to use the shotgun, but do not have to be in the secondary slot and can remain in your inventory. Only one shotgun shell is fired at a time.

The shotgun is the ideal weapon for quickly killing a large group of zombies and blasting an escape route, but due to its noise, it is only advisable to use it in the most dire of situations. Its heavy weight also makes it impractical to carry everywhere you go, so the shotgun should be carried strategically as needed.

Since zombies are attracted to the noise the shotgun makes, it may also be used to lure a horde of zombies away from areas the player wishes to approach.


Obtaining

Shotguns can usually be found in various containers and cabinets, including crates and wardrobes. Shotgun shells can be found in kitchen cabinets or wardrobes.

Occasionally, a competent player may be able to loot a shotgun along with shells off of hostile NPCs.

Crafting

Name Recipe Description












Code

item Shotgun
{
	Type				=			Weapon,
		DisplayName			=			Shotgun,
		SubCategory         =           Firearm,
		Icon				=			Shotgun2,
		IsAimedFirearm 		=			true,
		Ranged				=			true,
		MinAngle			=			0.88,
		MaxDamage			=			2.3,
		MinDamage			=			1.8,
		MaxRange 			= 			8.0,
		MinRange 			= 			0.61,
    	SwingAnim			=			Rifle,
		WeaponSprite		=			Shotgun,
		SwingSound			=			shotgun,
		IdleAnim			=			Idle_Weapon2,
		RunAnim				=			Run_Weapon2,
		AimingMod			=			2.0,
		ProjectileCount		=			6,
		SoundVolume			=			200,
		SoundRadius			=			200,
		AngleFalloff		=			true,
		MaxHitCount 		=			5,
    	ToHitModifier		=			10.0,
		NPCSoundBoost 		=			1.5,
		Weight				=			3,
		WeaponWeight 		=			1.8,
		DoorDamage			=			20,
		MinimumSwingTime 	= 			2.0,
		SwingTime			=			2.0,
		SwingAmountBeforeImpact = 		0.0,
		PushBackMod			=			0.3,
		SplatNumber			=			5,
		KnockdownMod		=			8.0,
		KnockBackOnNoDeath 	=	 		true,
		SplatBloodOnNoDeath = 			true,
		ImpactSound			=			null,
		RangeFalloff		=			true,
		UseEndurance		=			false,
		ShareDamage			=			false,
		AmmoType			=			ShotgunShells,
		ConditionLowerChanceOneIn = 	5,
		ConditionMax 			  = 	150,
		MultipleHitConditionAffected = 	false,
}

Template:Navbox/Weapons