mirror of
https://github.com/Yawn-Wider/YWPolarisVore.git
synced 2026-07-13 09:05:39 +01:00
19 lines
704 B
Plaintext
19 lines
704 B
Plaintext
// Ok, technically not stones, but the snowbrick's function is similar to sandstone and marble
|
|
/obj/item/stack/material/snow
|
|
name = "snow"
|
|
desc = "The temptation to build a snowman rises."
|
|
icon_state = "sheet-snow"
|
|
drop_sound = 'sound/items/drop/gloves.ogg'
|
|
pickup_sound = 'sound/items/pickup/clothing.ogg'
|
|
default_type = "snow"
|
|
|
|
/obj/item/stack/material/snowbrick
|
|
name = "snow brick"
|
|
desc = "For all of your igloo building needs."
|
|
icon = 'icons/obj/stacks_yw.dmi' //YW Edit - new sprites
|
|
icon_state = "sheet-snowbrick"
|
|
default_type = "packed snow"
|
|
drop_sound = 'sound/items/drop/gloves.ogg'
|
|
pickup_sound = 'sound/items/pickup/clothing.ogg'
|
|
no_variants = FALSE //YW Addition - has variants
|