Mining Fixes II (#2517)

Seismic Charges are now much cheaper.
KA can now fit into suit storage and the explorer's belt.
Several more items can now fit into the explorer's belt.
KA's with multiple installed modkits can now properly be turned into a RIG module, which keeps said modkits.
RIG thermal drills now work properly.
Mining drones should now spawn with a jetpack.
Mining drone ore bags are now much larger, as they cannot drag crates.
This commit is contained in:
LordFowl
2017-05-28 16:53:27 -04:00
committed by skull132
parent 11edd7e548
commit a5d7d50a69
10 changed files with 38 additions and 23 deletions

View File

@@ -11,6 +11,7 @@
contained_sprite = 1
charge_meter = 0
fire_delay = 16
slot_flags = SLOT_BELT|SLOT_BACK
origin_tech = list(TECH_COMBAT = 2, TECH_MAGNET = 4, TECH_POWER = 4)
projectile_type = /obj/item/projectile/kinetic
fire_sound = 'sound/weapons/Kenetic_accel.ogg'

View File

@@ -450,12 +450,12 @@
sel_mode = 1
burst = 30
burst_delay = 1
fire_delay = 60
fire_delay = 20
self_recharge = 1
recharge_time = 1
charge_meter = 1
use_external_power = 1
charge_cost = 50
charge_cost = 200
/obj/item/weapon/gun/energy/vaurca/mountedthermaldrill/special_check(var/mob/user)
..()
@@ -468,10 +468,8 @@
"<span class='danger'>You hear a low pulsing roar!</span>"
)
is_charging = 1
sleep(30)
sleep(20)
is_charging = 0
if(!istype(user.get_active_hand(), src))
return
msg_admin_attack("[key_name_admin(user)] shot with \a [src.type] [key_name_admin(src)]'s target (<A HREF='?_src_=holder;adminplayerobservecoodjump=1;X=[src.x];Y=[src.y];Z=[src.z]'>JMP</a>)",ckey=key_name(user),ckey_target=key_name(src))
return 1