Dragor fluff items, Aronai fluff item fixes

Also fixes *flip to not print an error message (emotes must have messages that they display) and redoes how vials start with reagents to make it easier to code them. Also swapping genders as a promethean won't randomize your hair anymore. That was silly, and relevant to Dragor's thing.
This commit is contained in:
Arokha Sieyes
2017-03-04 16:04:43 -05:00
parent 14f5ca3524
commit 4f06a18057
9 changed files with 95 additions and 78 deletions
@@ -370,10 +370,30 @@
desc = "Some serious drywall work, coming up!"
//-----------------------KHI Common----------------------------------
// // // Pistols
/obj/item/weapon/gun/projectile/khi/process_chambered()
if (!chambered) return
qdel(chambered) //Devours ammo rather than fires it.
/obj/item/weapon/gun/projectile/khi/update_icon()
..()
if(ammo_magazine)
icon_state = "[initial(icon_state)]"
else
icon_state = "[initial(icon_state)]-empty"
// // // Automatics
/obj/item/weapon/gun/projectile/automatic/khi/process_chambered()
if (!chambered) return
qdel(chambered) //Devours ammo rather than fires it.
/obj/item/weapon/gun/projectile/automatic/khi/update_icon()
..()
if(ammo_magazine)
icon_state = "[initial(icon_state)]"
else
icon_state = "[initial(icon_state)]-empty"
//-----------------------KHI Pistol----------------------------------
/obj/item/weapon/gun/projectile/khi/pistol
name = "alien pistol"