mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 16:10:02 +01:00
Pickup, Drop and Equip sounds (#8861)
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
var/perunit
|
||||
var/apply_colour //temp pending icon rewrite
|
||||
drop_sound = 'sound/items/drop/axe.ogg'
|
||||
pickup_sound = 'sound/items/pickup/axe.ogg'
|
||||
|
||||
/obj/item/stack/material/Initialize()
|
||||
. = ..()
|
||||
@@ -99,6 +100,7 @@
|
||||
default_type = MATERIAL_SANDSTONE
|
||||
icon_has_variants = TRUE
|
||||
drop_sound = 'sound/items/drop/boots.ogg'
|
||||
pickup_sound = 'sound/items/pickup/boots.ogg'
|
||||
|
||||
/obj/item/stack/material/sandstone/full/Initialize()
|
||||
. = ..()
|
||||
@@ -110,6 +112,7 @@
|
||||
icon_state = "sheet-marble"
|
||||
default_type = MATERIAL_MARBLE
|
||||
drop_sound = 'sound/items/drop/boots.ogg'
|
||||
pickup_sound = 'sound/items/pickup/boots.ogg'
|
||||
|
||||
/obj/item/stack/material/marble/full/Initialize()
|
||||
. = ..()
|
||||
@@ -121,6 +124,7 @@
|
||||
icon_state = "sheet-diamond"
|
||||
default_type = MATERIAL_DIAMOND
|
||||
drop_sound = 'sound/items/drop/glass.ogg'
|
||||
pickup_sound = 'sound/items/pickup/glass.ogg'
|
||||
|
||||
/obj/item/stack/material/diamond/full/Initialize()
|
||||
. = ..()
|
||||
@@ -143,6 +147,7 @@
|
||||
default_type = MATERIAL_PHORON
|
||||
icon_has_variants = TRUE
|
||||
drop_sound = 'sound/items/drop/glass.ogg'
|
||||
pickup_sound = 'sound/items/pickup/glass.ogg'
|
||||
|
||||
/obj/item/stack/material/phoron/full/Initialize()
|
||||
. = ..()
|
||||
@@ -156,6 +161,7 @@
|
||||
default_type = MATERIAL_PLASTIC
|
||||
icon_has_variants = TRUE
|
||||
drop_sound = 'sound/items/drop/card.ogg'
|
||||
pickup_sound = 'sound/items/pickup/card.ogg'
|
||||
|
||||
/obj/item/stack/material/plastic/full/Initialize()
|
||||
. = ..()
|
||||
@@ -268,6 +274,7 @@
|
||||
icon_state = "sheet-wood"
|
||||
default_type = MATERIAL_WOOD
|
||||
drop_sound = 'sound/items/drop/wooden.ogg'
|
||||
pickup_sound = 'sound/items/pickup/wooden.ogg'
|
||||
|
||||
/obj/item/stack/material/wood/full/Initialize()
|
||||
. = ..()
|
||||
@@ -300,7 +307,8 @@
|
||||
icon_state = "sheet-cloth"
|
||||
default_type = MATERIAL_CLOTH
|
||||
icon_has_variants = TRUE
|
||||
drop_sound = 'sound/items/drop/clothing.ogg'
|
||||
drop_sound = 'sound/items/drop/cloth.ogg'
|
||||
pickup_sound = 'sound/items/pickup/cloth.ogg'
|
||||
|
||||
/obj/item/stack/material/cloth/full/Initialize()
|
||||
. = ..()
|
||||
@@ -322,7 +330,8 @@
|
||||
name = "cardboard"
|
||||
icon_state = "sheet-card"
|
||||
default_type = MATERIAL_CARDBOARD
|
||||
drop_sound = 'sound/items/drop/box.ogg'
|
||||
drop_sound = 'sound/items/drop/cardboardbox.ogg'
|
||||
pickup_sound = 'sound/items/pickup/cardboardbox.ogg'
|
||||
|
||||
/obj/item/stack/material/cardboard/full/Initialize()
|
||||
. = ..()
|
||||
@@ -336,6 +345,7 @@
|
||||
default_type = MATERIAL_LEATHER
|
||||
icon_has_variants = TRUE
|
||||
drop_sound = 'sound/items/drop/leather.ogg'
|
||||
pickup_sound = 'sound/items/pickup/leather.ogg'
|
||||
|
||||
/obj/item/stack/material/leather/full/Initialize()
|
||||
. = ..()
|
||||
@@ -348,6 +358,7 @@
|
||||
default_type = MATERIAL_GLASS
|
||||
icon_has_variants = TRUE
|
||||
drop_sound = 'sound/items/drop/glass.ogg'
|
||||
pickup_sound = 'sound/items/pickup/glass.ogg'
|
||||
|
||||
/obj/item/stack/material/glass/full/Initialize()
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user