diff --git a/code/game/objects/structures/props/rocks.dm b/code/game/objects/structures/props/rocks.dm new file mode 100644 index 00000000000..5d343c07449 --- /dev/null +++ b/code/game/objects/structures/props/rocks.dm @@ -0,0 +1,41 @@ +/obj/structure/prop/rock + name = "rock" + desc = "A hard place." + icon = 'icons/obj/flora/rocks.dmi' + icon_state = "basalt2" + +/obj/structure/prop/rock/sharp + icon_state = "basalt1" + +/obj/structure/prop/rock/flat + icon_state = "basalt3" + +/obj/structure/prop/rock/round + icon_state = "basalt4" + +/obj/structure/prop/rock/small + name = "small rocks" + icon_state = "lavarocks1" + density = FALSE + +/obj/structure/prop/rock/small/alt + icon_state = "lavarocks2" + +//Water-trim versions for placing in water + +/obj/structure/prop/rock/water + icon_state = "basalt_water2" + +/obj/structure/prop/rock/watersharp + icon_state = "basalt_water1" + +/obj/structure/prop/rock/waterflat + icon_state = "basalt_water3" + +/obj/structure/prop/rock/small/water + name = "submerged rocks" + icon_state = "waterrocks1" + density = FALSE + +/obj/structure/prop/rock/small/wateralt + icon_state = "waterrocks2" \ No newline at end of file diff --git a/icons/obj/flora/rocks.dmi b/icons/obj/flora/rocks.dmi index 12d4f2c8ee1..4713360313f 100644 Binary files a/icons/obj/flora/rocks.dmi and b/icons/obj/flora/rocks.dmi differ diff --git a/icons/obj/outcrop.dmi b/icons/obj/outcrop.dmi index bea3810fe8a..eacb7bc4fee 100644 Binary files a/icons/obj/outcrop.dmi and b/icons/obj/outcrop.dmi differ diff --git a/vorestation.dme b/vorestation.dme index 3b344e34912..bb70947253b 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -1536,6 +1536,7 @@ #include "code\game\objects\structures\props\projectile_lock.dm" #include "code\game\objects\structures\props\prop.dm" #include "code\game\objects\structures\props\puzzledoor.dm" +#include "code\game\objects\structures\props\rocks.dm" #include "code\game\objects\structures\props\swarm.dm" #include "code\game\objects\structures\props\transmitter.dm" #include "code\game\objects\structures\stool_bed_chair_nest\alien_nests.dm"