mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Hulks can't use guns. Hopefully this encourages them to actually go around punching things instead of having their magic stun immunity shield while playing normally.
Alien queen regen is now 5 instead of 15. Will this fix aliens? No. But it will make it so they're not immortal in the mean time. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4676 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
health = 250
|
health = 250
|
||||||
icon_state = "alienq_s"
|
icon_state = "alienq_s"
|
||||||
nopush = 1
|
nopush = 1
|
||||||
heal_rate = 15
|
heal_rate = 5
|
||||||
plasma_rate = 20
|
plasma_rate = 20
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -62,6 +62,11 @@
|
|||||||
if (!user.IsAdvancedToolUser())
|
if (!user.IsAdvancedToolUser())
|
||||||
user << "\red You don't have the dexterity to do this!"
|
user << "\red You don't have the dexterity to do this!"
|
||||||
return
|
return
|
||||||
|
if(istype(user, /mob/living))
|
||||||
|
var/mob/living/M = user
|
||||||
|
if (HULK in M.mutations)
|
||||||
|
M << "\red Your meaty finger is much too large for the trigger guard!"
|
||||||
|
return
|
||||||
|
|
||||||
add_fingerprint(user)
|
add_fingerprint(user)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user