Merge pull request #5344 from NigglyWiggly/Megabusters

Megabusters
This commit is contained in:
clusterfack
2015-07-13 19:45:37 -05:00
8 changed files with 43 additions and 2 deletions

View File

@@ -292,4 +292,33 @@ obj/item/weapon/gun/energy/laser/retro
if(!power_supply) return 0
power_supply.give(100)
update_icon()
return 1
return 1
/obj/item/weapon/gun/energy/megabuster
name = "Mega-buster"
desc = "An arm-mounted buster toy!"
icon_state = "megabuster"
item_state = null
w_class = 2.0
projectile_type = "/obj/item/projectile/energy/megabuster"
charge_states = 0
charge_cost = 5
fire_sound = 'sound/weapons/megabuster.ogg'
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/megabusters.dmi', "right_hand" = 'icons/mob/in-hand/right/megabusters.dmi')
/obj/item/weapon/gun/energy/megabuster/proto
name = "Proto-buster"
icon_state = "protobuster"
/obj/item/weapon/gun/energy/mmlbuster
name = "Buster Cannon"
desc = "An antique arm-mounted buster cannon."
icon_state = "mmlbuster"
item_state = null
w_class = 2.0
charge_states = 0
projectile_type = "/obj/item/projectile/energy/buster"
charge_cost = 25
fire_sound = 'sound/weapons/mmlbuster.ogg'
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/megabusters.dmi', "right_hand" = 'icons/mob/in-hand/right/megabusters.dmi')

View File

@@ -108,4 +108,16 @@
scramble(1, H, 100) // Scramble all UIs
scramble(null, H, 5) // Scramble SEs, 5% chance for each block
H.apply_effect((rand(50, 250)),IRRADIATE)
H.apply_effect((rand(50, 250)),IRRADIATE)
/obj/item/projectile/energy/buster
name = "buster shot"
icon_state = "buster"
nodamage = 0
damage = 20
damage_type = BURN
/obj/item/projectile/energy/megabuster
name = "buster pellet"
icon_state = "megabuster"
nodamage = 1

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 546 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

BIN
sound/weapons/mmlbuster.ogg Normal file

Binary file not shown.