Files
Aurora.3/code/game/objects/items/weapons/twohanded.dm
Daelith.Rhedynfre@gmail.com b373917cba -The Offhand icon no longer appears on the ground when dropped (For whatever reason)
-Singularity beacon now costs 7 points instead of 3. This is due to the item being EXTREMELY powerful, being released every round, and still allowing players to pick up one or two other good items.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1994 316c924e-a436-60f5-8080-3fe189b3f50e
2011-08-08 17:17:21 +00:00

28 lines
862 B
Plaintext

/*##################################################################
##################### TWO HANDED WEAPONS BE HERE~ -Agouri :3 ########
####################################################################*/
///General Offhand object properties///
////////////FIREAXE!//////////////
/obj/item/weapon/fireaxe/update_icon() //Currently only here to fuck with the on-mob icons.
icon_state = text("fireaxe[]",wielded)
return
/obj/item/weapon/fireaxe/pickup(mob/user)
wielded = 0
name = "Fire Axe (Unwielded)"
/obj/item/weapon/fireaxe/attack_self(mob/user as mob)
if( istype(user,/mob/living/carbon/monkey) )
user << "\red It's too heavy for you to fully wield"
return
//welp, all is good, now to see if he's trying do twohandedly wield it or unwield it
..()
/obj/item/weapon/offhand/dropped(mob/user as mob)
del(src)