mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
Fix some incorrect xenoarch distance values. (#26030)
This commit is contained in:
committed by
GitHub
parent
3a8878a80b
commit
f551362663
@@ -73,7 +73,7 @@
|
||||
if (istype(W, /obj/item/device/measuring_tape))
|
||||
var/obj/item/device/measuring_tape/P = W
|
||||
user.visible_message("<span class='notice>[user] extends [P] towards [src].","<span class='notice'>You extend [P] towards [src].</span></span>")
|
||||
to_chat(user, "<span class='notice'>[bicon(P)] [src] has been excavated to a depth of [2*src.excavation_level]cm.</span>")
|
||||
to_chat(user, "<span class='notice'>[bicon(P)] [src] has been excavated to a depth of [src.excavation_level]cm.</span>")
|
||||
return
|
||||
|
||||
if (istype(W, /obj/item/weapon/pickaxe))
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
item_state = "excavationdrill"
|
||||
excavation_amount = 1
|
||||
toolspeed = 0.3
|
||||
desc = "Basic archaeological drill combining ultrasonic excitation and bluespace manipulation to provide extreme precision. The tip is adjustable from 1 to 30 cms."
|
||||
desc = "Basic archaeological drill combining ultrasonic excitation and bluespace manipulation to provide extreme precision. The tip is adjustable from 1 to 15 cms."
|
||||
toolsounds = list('sound/weapons/thudswoosh.ogg')
|
||||
drill_verb = "drilling"
|
||||
force = 15.0
|
||||
@@ -50,7 +50,7 @@
|
||||
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/xenoarch.dmi', "right_hand" = 'icons/mob/in-hand/right/xenoarch.dmi')
|
||||
item_state = "Dexcavationdrill"
|
||||
toolspeed = 0.15
|
||||
desc = "Advanced archaeological drill combining ultrasonic excitation and bluespace manipulation to provide extreme precision. The diamond tip is adjustable from 1 to 100 cms."
|
||||
desc = "Advanced archaeological drill combining ultrasonic excitation and bluespace manipulation to provide extreme precision. The diamond tip is adjustable from 1 to 50 cms."
|
||||
|
||||
/obj/item/weapon/pickaxe/excavationdrill/adv/attack_self(mob/user as mob)
|
||||
var/depth = round(input("Put the desired depth (1-50 centimeters).", "Set Depth", excavation_amount) as num)
|
||||
|
||||
Reference in New Issue
Block a user