mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-04 22:42:37 +00:00
14 lines
327 B
Plaintext
14 lines
327 B
Plaintext
/obj/effect/mineral
|
|
name = "mineral vein"
|
|
icon = 'icons/obj/mining.dmi'
|
|
desc = "Shiny."
|
|
mouse_opacity = 0
|
|
density = 0
|
|
anchored = 1
|
|
|
|
/obj/effect/mineral/New(var/newloc, var/mineral/M)
|
|
..(newloc)
|
|
name = "[M.display_name] deposit"
|
|
icon_state = "rock_[M.name]"
|
|
var/turf/T = get_turf(src)
|
|
layer = T.layer+0.1 |