Skip to content

Commit

Permalink
Biesel Blaster Revolver (#14928)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben10083 committed Oct 22, 2022
1 parent 819debb commit b179231
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion code/modules/background/citizenship/human.dm
Expand Up @@ -42,7 +42,7 @@
/obj/item/storage/box/tcfl_pamphlet = 1,
/obj/item/device/versebook/biesel = 1, //constitution
/obj/item/stamp/biesel = 1,
/obj/item/gun/energy/pistol = 1
/obj/item/gun/energy/blaster/revolver = 1
)


Expand Down
13 changes: 2 additions & 11 deletions code/modules/projectiles/guns/energy/blaster.dm
Expand Up @@ -54,18 +54,9 @@
fire_sound = 'sound/weapons/laserstrong.ogg'
projectile_type = /obj/item/projectile/energy/blaster
max_shots = 8
w_class = ITEMSIZE_NORMAL

/obj/item/gun/energy/blaster/revolver/verb/spin_cylinder()
set name = "Spin cylinder"
set desc = "Fun when you're bored out of your skull."
set category = "Object"
var/mob/living/carbon/human/user
if(istype(usr,/mob/living/carbon/human))
user = usr
else
return
w_class = ITEMSIZE_SMALL

/obj/item/gun/energy/blaster/revolver/unique_action(mob/living/user)
user.visible_message(SPAN_WARNING("\The [user] spins the cylinder of \the [src]!"), SPAN_WARNING("You spin the cylinder of \the [src]!"), SPAN_NOTICE("You hear something metallic spin and click."))
playsound(src.loc, 'sound/weapons/revolver_spin.ogg', 100, 1)

Expand Down
15 changes: 15 additions & 0 deletions html/changelogs/Ben10083 - BieselBigIron.yml
@@ -0,0 +1,15 @@
# Your name.
author: Ben10083

# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True

# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- rscadd: "Biesel Consulars now are given a blaster revolver for self-defence."
- tweak: "Blaster Revolver now considered small."
- tweak: "Blaster Revolver cylinder spin now under unique action."

0 comments on commit b179231

Please sign in to comment.