-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50444f7
commit 0152096
Showing
3 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
//Finger Guns *blows smoke off his finger tips* | ||
/datum/emote/living/carbon/fingergun | ||
key = "fingergun" | ||
key_third_person = "fingerguns" | ||
hands_use_check = TRUE | ||
cooldown = 1 SECONDS | ||
|
||
/datum/emote/living/carbon/fingergun/run_emote(mob/user, params, type_override, intentional) | ||
. = ..() | ||
if(!.) | ||
return | ||
var/obj/item/gun/ballistic/fingergun_emote/N = new(user) | ||
if(user.put_in_hands(N)) | ||
to_chat(user, span_notice("You fold your hand into a finger gun.")) | ||
user.manual_emote("folds thier hand into a finger gun.") | ||
else | ||
qdel(N) | ||
to_chat(user, span_warning("You're incapable of readying a finger gun in your current state.")) | ||
|
||
/obj/item/ammo_casing/caseless/fingergun_bullet | ||
name = "imaginary bullet" | ||
desc = "Bullets are not real idiot." | ||
projectile_type = /obj/projectile/bullet/fingergun_bullet | ||
item_flags = DROPDEL | ||
caliber = "bulletsarenotrealyouidiot" | ||
custom_materials = list() | ||
harmful = FALSE | ||
|
||
/obj/projectile/bullet/fingergun_bullet | ||
name = "imaginary bullet" | ||
desc = "Bullets are not real idiot." | ||
icon = 'monkestation/icons/obj/weapons/guns/fingergun_emote.dmi' | ||
icon_state = "projectile" | ||
damage = 0 | ||
hitsound_wall = "" | ||
impact_effect_type = null | ||
|
||
/obj/item/ammo_box/magazine/fingergun_emote | ||
name = "finger gun magazine" | ||
desc = "You should not be seeing this..." | ||
ammo_type = /obj/item/ammo_casing/caseless/fingergun_bullet | ||
caliber = "bulletsarenotrealyouidiot" | ||
max_ammo = 8 | ||
|
||
/obj/item/gun/ballistic/fingergun_emote | ||
name = "finger gun" | ||
desc = "This is how real men fight." | ||
icon = 'monkestation/icons/obj/weapons/guns/fingergun_emote.dmi' | ||
icon_state = "item" | ||
inhand_icon_state = "nothing" | ||
item_flags = DROPDEL | HAND_ITEM | ||
force = 0 | ||
throwforce = 0 | ||
load_sound_volume = 0 | ||
rack_sound_volume = 0 | ||
lock_back_sound_volume = 0 | ||
eject_sound_volume = 0 | ||
bolt_drop_sound_volume = 0 | ||
dry_fire_sound = "" | ||
pinless = TRUE | ||
clumsy_check = FALSE | ||
trigger_guard = TRIGGER_GUARD_ALLOW_ALL | ||
gun_flags = NONE | ||
mag_type = /obj/item/ammo_box/magazine/fingergun_emote | ||
spawnwithmagazine = TRUE | ||
internal_magazine = TRUE | ||
bolt_type = BOLT_TYPE_NO_BOLT | ||
|
||
/obj/item/gun/ballistic/fingergun_emote/fire_sounds() | ||
usr.say("'s hand flying upwards with recoil*BANG!") | ||
|
||
/obj/item/gun/ballistic/fingergun_emote/attack_self() | ||
return | ||
|
||
/obj/item/gun/ballistic/fingergun_emote/attackby() | ||
return | ||
|
||
/obj/item/gun/ballistic/fingergun_emote/eject_magazine() | ||
return |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters