mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-20 19:44:46 +01:00
26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
/obj/item/melee/energy/sword/imperial
|
|
name = "energy gladius"
|
|
desc = "A broad, short energy blade. You'll be glad to have this in a fight."
|
|
icon_state = "impsword"
|
|
icon = 'icons/obj/weapons_vr.dmi'
|
|
item_icons = list(slot_l_hand_str = 'icons/mob/items/lefthand_melee_vr.dmi', slot_r_hand_str = 'icons/mob/items/righthand_melee_vr.dmi')
|
|
colorable = FALSE
|
|
lcolor = "#FFFFFF"
|
|
|
|
/obj/item/melee/energy/sword/altevian
|
|
name = "plasma blade cutter"
|
|
desc = "A device that's primarily used to cut through hull plating and interior structure, but also doubles as a deadly weapon. It's normally seen in the hands of altevian engineers as they carry out salvage work."
|
|
icon_state = "altevian-cutter"
|
|
item_state = "altevian-cutter"
|
|
icon = 'icons/obj/weapons_vr.dmi'
|
|
item_icons = list(slot_l_hand_str = 'icons/mob/items/lefthand_melee_vr.dmi', slot_r_hand_str = 'icons/mob/items/righthand_melee_vr.dmi')
|
|
colorable = FALSE
|
|
lcolor = "#FFFFFF"
|
|
|
|
/obj/item/melee/energy/sword/altevian/update_icon()
|
|
..()
|
|
if(active)
|
|
icon_state = "[initial(icon_state)]_active"
|
|
else
|
|
icon_state = initial(icon_state)
|