diff --git a/code/datums/autolathe/tools_yw.dm b/code/datums/autolathe/tools_yw.dm new file mode 100644 index 0000000000..5ea8ef1c7a --- /dev/null +++ b/code/datums/autolathe/tools_yw.dm @@ -0,0 +1,7 @@ +/datum/category_item/autolathe/tools/ice_pick + name = "ice pick" + path =/obj/item/weapon/ice_pick + +/datum/category_item/autolathe/tools/shovel + name = "shovel" + path =/obj/item/weapon/shovel \ No newline at end of file diff --git a/maps/yw/cryogaia_things.dm b/maps/yw/cryogaia_things.dm index d876e0dc93..c4feac0b58 100644 --- a/maps/yw/cryogaia_things.dm +++ b/maps/yw/cryogaia_things.dm @@ -476,6 +476,7 @@ var/global/list/latejoin_tram = list() icon = 'icons/obj/items_yw.dmi' icon_state = "icepick" item_state = "icepick" + matter = list(DEFAULT_WALL_MATERIAL = 12000) //Same as a knife force = 15 //increasing force for icepick/axe, cause it's a freaking iceaxe. throwforce = 0 //end of Ice Pick diff --git a/vorestation.dme b/vorestation.dme index b28c1461de..9da36c2145 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -309,6 +309,7 @@ #include "code\datums\autolathe\medical_vr.dm" #include "code\datums\autolathe\tools.dm" #include "code\datums\autolathe\tools_vr.dm" +#include "code\datums\autolathe\tools_yw.dm" #include "code\datums\helper_datums\construction_datum.dm" #include "code\datums\helper_datums\events.dm" #include "code\datums\helper_datums\getrev.dm"