KOL - Label - El Vibrato Punchcards

By AmandaKerik Last update Mar 26, 2008 — Installed 267 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name          KOL - Label - El Vibrato Punchcards
// @description	  Puts the function of the card after it in the list.
// @author        Amanda Kerik
// @homepage      http://userscripts.org/scripts/show/24372
// @version       0.1
// @include       http://127.0.0.1/*
// @include       http://*kingdomofloathing.com/*
// ==/UserScript==
var css24372 = 'select[name*="item"] option[value="3153"]:after {content: " (FLOOR)" !important; font-weight: bold !important;}' +
'select[name*="item"] option[value="3147"]:after {content: " (REPAIR)" !important; font-weight: bold !important;}' +
'select[name*="item"] option[value="3156"]:after {content: " (SPHERE)" !important; font-weight: bold !important;}' +
'select[name*="item"] option[value="3146"]:after {content: " (ATTACK)" !important; font-weight: bold !important;}' +
'select[name*="item"] option[value="3148"]:after {content: " (BUFF)" !important; font-weight: bold !important;}' +
'select[name*="item"] option[value="3151"]:after {content: " (TARGET)" !important; font-weight: bold !important;}' +
'select[name*="item"] option[value="3150"]:after {content: " (BUILD)" !important; font-weight: bold !important;}' +
'select[name*="item"] option[value="3155"]:after {content: " (WALL)" !important; font-weight: bold !important;}' +
'select[name*="item"] option[value="3154"]:after {content: " (DRONE)" !important; font-weight: bold !important;}' +
'select[name*="item"] option[value="3149"]:after {content: " (MODIFY)" !important; font-weight: bold !important;}' +
'select[name*="item"] option[value="3152"]:after {content: " (SELF)" !important; font-weight: bold !important;}';
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css24372);
} else if (typeof addStyle != "undefined") {
	addStyle(css24372);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css24372));
		heads[0].appendChild(node); 
	}
}