mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-26 20:57:06 +01:00
instruments in loadout (#6800)
This commit is contained in:
@@ -55,6 +55,9 @@ var/list/gear_datums = list()
|
||||
if(!description)
|
||||
var/obj/O = path
|
||||
description = initial(O.desc)
|
||||
if(!name)
|
||||
var/obj/O = path
|
||||
name = initial(O.name)
|
||||
if(isnull(display_name))
|
||||
display_name = name
|
||||
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
/datum/loadout_entry/instrument
|
||||
abstract_type = /datum/loadout_entry/instrument
|
||||
category = LOADOUT_CATEGORY_INSTRUMENTS
|
||||
slot = SLOT_ID_HANDS
|
||||
|
||||
/datum/loadout_entry/instrument/violin
|
||||
path = /obj/item/instrument/violin
|
||||
|
||||
/datum/loadout_entry/instrument/piano_synth
|
||||
path = /obj/item/instrument/piano_synth
|
||||
|
||||
/datum/loadout_entry/instrument/guitar
|
||||
path = /obj/item/instrument/guitar
|
||||
|
||||
/datum/loadout_entry/instrument/eguitar
|
||||
path = /obj/item/instrument/eguitar
|
||||
|
||||
/datum/loadout_entry/instrument/glockenspiel
|
||||
path = /obj/item/instrument/glockenspiel
|
||||
|
||||
/datum/loadout_entry/instrument/accordion
|
||||
path = /obj/item/instrument/accordion
|
||||
|
||||
/datum/loadout_entry/instrument/trumpet
|
||||
path = /obj/item/instrument/trumpet
|
||||
|
||||
/datum/loadout_entry/instrument/saxophone
|
||||
path = /obj/item/instrument/saxophone
|
||||
|
||||
/datum/loadout_entry/instrument/trombone
|
||||
path = /obj/item/instrument/trombone
|
||||
|
||||
/datum/loadout_entry/instrument/recorder
|
||||
path = /obj/item/instrument/recorder
|
||||
|
||||
/datum/loadout_entry/instrument/banjo
|
||||
path = /obj/item/instrument/banjo
|
||||
|
||||
Reference in New Issue
Block a user