Lunatic Item Menu. More specifically, this segment.
Code: # Text for Item Window def self.user_item_text(item, contents, item_rect, enable, select) result = [] back = [] # bg if select back.push( ["$bitmap[System, ItemSlot_Selected]", [item_rect.x, item_rect.y], 255, [0, 0, "bw", "bh"]], ) else back.push( ["$bitmap[System, ItemSlot_Normal]", [item_rect.x, item_rect.y], 255, [0, 0, "bw", "bh"]], ) end # Return result if item result = [ # [Text, [X, Y], [Width, Align], [R, G, B(, A)]], [FontName, FontSize, FontBold, FontItalic], ["$bitmap[Icons, #{item.name}]", [item_rect.x+1, item_rect.y+1], 255, [0, 0, "bw", "bh"]], ] end result = back + result result end