-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
monkestation/code/game/objects/items/rayne_corp/chest_lantern
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/obj/item/flashlight/lantern/rayne | ||
name = "lantern" | ||
icon_state = "lantern" | ||
inhand_icon_state = "lantern" | ||
lefthand_file = 'icons/mob/inhands/equipment/mining_lefthand.dmi' | ||
righthand_file = 'icons/mob/inhands/equipment/mining_righthand.dmi' | ||
desc = "A lantern that hangs off the shoulder providing some warmth and lighting. It is stamped with a Rayne Corp" | ||
light_outer_range = 5// luminosity when on | ||
light_system = OVERLAY_LIGHT | ||
icon = 'icons/obj/lighting.dmi' | ||
dir = WEST | ||
icon_state = "flashlight" | ||
inhand_icon_state = "flashlight" | ||
worn_icon_state = "flashlight" | ||
slot_flags = ITEM_SLOT_NECK | ||
light_system = OVERLAY_LIGHT_DIRECTIONAL | ||
/// The sound the light makes when it's turned on | ||
var/sound_on = 'sound/weapons/magin.ogg' | ||
/// The sound the light makes when it's turned off | ||
var/sound_off = 'sound/weapons/magout.ogg' | ||
/// Is the light turned on or off currently | ||
var/on = FALSE | ||
var/start_on = FALSE |