# Conflicts:
#	code/_helpers/unsorted.dm
#	code/modules/events/event_container_vr.dm
#	icons/misc/title_vr.dmi
#	interface/skin.dmf
#	vorestation.dme
This commit is contained in:
Repede
2020-03-01 12:35:52 -05:00
432 changed files with 22074 additions and 5001 deletions

View File

@@ -5,6 +5,7 @@
name = "Coin"
desc = "A simple coin you can flip."
icon_state = "coin"
randpixel = 8
force = 0.0
throwforce = 0.0
w_class = ITEMSIZE_TINY
@@ -13,8 +14,7 @@
var/sides = 2
/obj/item/weapon/coin/New()
pixel_x = rand(0,16)-8
pixel_y = rand(0,8)-8
randpixel_xy()
/obj/item/weapon/coin/gold
name = "gold coin"

View File

@@ -45,7 +45,7 @@
if(ore_type) metals[ore_type] += T.resources[metal]
to_chat(user, "\icon[src] <span class='notice'>The scanner beeps and displays a readout.</span>")
to_chat(user, "[bicon(src)] <span class='notice'>The scanner beeps and displays a readout.</span>")
for(var/ore_type in metals)
var/result = "no sign"

View File

@@ -2,6 +2,7 @@
name = "small rock"
icon = 'icons/obj/mining.dmi'
icon_state = "ore2"
randpixel = 8
w_class = ITEMSIZE_SMALL
var/datum/geosample/geologic_data
var/material
@@ -113,8 +114,7 @@
material = null
/obj/item/weapon/ore/New()
pixel_x = rand(0,16)-8
pixel_y = rand(0,8)-8
randpixel_xy()
/obj/item/weapon/ore/attackby(obj/item/weapon/W as obj, mob/user as mob)
if(istype(W,/obj/item/device/core_sampler))