1// =======================
2// NEEDLERGUN
3// =======================
4item needlergun
5{
6	name			"_Needler Gun"
7	model			"weapons/needlergun/needler"
8	weapon			true
9	type			"biggun"
10	animationindex	1
11	holdtwohanded	false
12	firetwohanded	true
13	shape			"1 0 4 1"
14	shape			"0 1 4 1"
15	center			"4 -0.5 0.2"
16	scale			1.2
17	ammo			240
18	reload			14
19	reloadsound		"weapons/reload-nail"
20	price			5000
21	size			45
22	is_primary		true
23	weight			6.0
24}
25
26item needlerheavy
27{
28	name			"_Heavy Needler Gun"
29	model			"weapons/needlerheavy/needlerheavy"
30	weapon			true
31	type			"biggun"
32	animationindex	1
33	holdtwohanded   false
34	firetwohanded	true
35	shape			"1 0 4 1"
36	shape			"0 1 4 1"
37	center			"10 -0.5 0.2"
38	scale			0.8
39	ammo			240
40	reload			18
41	reloadsound		"weapons/reload-nail"
42	price			5000
43	size			45
44	is_primary		true
45	weight			9.0
46}
47
48item needlergun_ammo
49{
50	name			"_Needler Gun Magazine"
51	model			"weapons/needlergun/needler_ammo"
52	type			"ammo"
53	animationindex	0
54	shape			"0 0 1 1"
55	center			"0 0 0"
56	scale			1.2
57	price			400
58	size			9
59	is_primary		true
60	dmgtype			"normal"
61	weight			1.0
62
63	weapon_mod
64	{
65		weapon needlergun
66		firedef
67		{
68			name		"_Short Burst"
69			skill		"assault"
70			projtl		needler-small
71			impact		bulletImpact
72			hitbody		null
73			firesnd		"weapons/bullet-needler-30x"
74			impsnd		"impact/nail-impact"
75			bodysnd 	"impact/nail-bodyimpact"
76			sndonce		true
77			speed		2000
78			spread		"1.6 1.6"
79			crouch		0.85
80			range		250
81			shots		30
82			delaybetweenshots	25
83			ammo		30
84			time		12
85			damage		"8 2"
86			dmgweight	"normal_needle"
87			reaction	true
88		}
89
90		firedef
91		{
92			name		"_Cannonade"
93			skill		"assault"
94			projtl		needler-small
95			impact		bulletImpact
96			hitbody		null
97			firesnd		"weapons/bullet-needler-90x"
98			impsnd		"impact/nail-impact"
99			bodysnd 	"impact/nail-bodyimpact"
100			sndonce		true
101			speed		2000
102			spread		"2 2"
103			crouch		0.85
104			range		250
105			shots		60
106			delaybetweenshots	25
107			ammo		60
108			time		16
109			damage		"8 2"
110			dmgweight	"normal_needle"
111			reaction	true
112		}
113		firedef
114		{
115			name		"_Needle Stream"
116			skill		"assault"
117			projtl		needler-small
118			impact		bulletImpact
119			hitbody		null
120			firesnd		"weapons/bullet-needler-120x"
121			impsnd		"impact/nail-impact"
122			bodysnd 	"impact/nail-bodyimpact"
123			sndonce		true
124			speed		2000
125			spread		"2.5 2.5"
126			crouch		0.85
127			range		250
128			shots		90
129			delaybetweenshots	25
130			ammo		90
131			time		20
132			damage		"8 2"
133			dmgweight	"normal_needle"
134			reaction	true
135		}
136	}
137
138	weapon_mod
139	{
140		weapon needlerheavy
141		firedef
142		{
143			name		"_Short Burst"
144			skill		"assault"
145			projtl		needler-heavy
146			impact		bulletImpact
147			hitbody		null
148			firesnd		"weapons/bullet-heavyneedler-30x"
149			impsnd		"impact/nail-impact"
150			bodysnd 	"impact/nail-bodyimpact"
151			sndonce		true
152			speed		2000
153			spread		"1.9 1.9"
154			crouch		0.85
155			range		250
156			shots		40
157			delaybetweenshots	25
158			ammo		40
159			time		14
160			damage		"8 2"
161			dmgweight	"normal_needle"
162			reaction	true
163		}
164
165		firedef
166		{
167			name		"_Cannonade"
168			skill		"assault"
169			projtl		needler-heavy
170			impact		bulletImpact
171			hitbody		null
172			firesnd		"weapons/bullet-heavyneedler-105x"
173			impsnd		"impact/nail-impact"
174			bodysnd 	"impact/nail-bodyimpact"
175			sndonce		true
176			speed		2000
177			spread		"2.5 2.5"
178			crouch		0.85
179			range		250
180			shots		80
181			delaybetweenshots	25
182			ammo		80
183			time		20
184			damage		"8 2"
185			dmgweight	"normal_needle"
186			reaction	true
187		}
188		firedef
189		{
190			name		"_Needle Stream"
191			skill		"assault"
192			projtl		needler-heavy
193			impact		bulletImpact
194			hitbody		null
195			firesnd		"weapons/bullet-heavyneedler-150x"
196			impsnd		"impact/nail-impact"
197			bodysnd 	"impact/nail-bodyimpact"
198			sndonce		true
199			speed		2000
200			spread		"3 3"
201			crouch		0.85
202			range		250
203			shots		120
204			delaybetweenshots	25
205			ammo		150
206			time		26
207			damage		"8 2"
208			dmgweight	"normal_needle"
209			reaction	true
210		}
211	}
212}
213