SHOW_WINDOW = true# Width of the message window.WINDOW_WIDTH = 400 # Spacing below the window. If multiple windows are displayed, older ones get pushed up. WINDOW_SPACING = 10# If set to true, the icon of the discovered item/skill will be shown in front of the message.WINDOW_ICON = true# Text to be shown. All message codes can be used (though the window has a fixed height of 1 line).WINDOW_TEXT = " \\C[2]%s\\C[0] discovered!"# Delay (in frames), before the window fades away and the rate at which it fades.WINDOW_FADE_DELAY = 120WINDOW_FADE_RATE = 10# Horizontal and vertical padding around the message.WINDOW_PADDING_X = 5WINDOW_PADDING_Y = 5# The window background is rendered as a gradient between these colors:WINDOW_COLOR_1 = Color.new(0, 0, 0, 255)WINDOW_COLOR_2 = Color.new(0, 0, 0, 0)