Skip to content

Instantly share code, notes, and snippets.

@ZhangYiJiang
Created August 10, 2012 10:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZhangYiJiang/3313374 to your computer and use it in GitHub Desktop.
Save ZhangYiJiang/3313374 to your computer and use it in GitHub Desktop.
Glitch Upgrades data and scraper
// Replace all dashes with spaces and uppercase first letter of each word
function humanize (str) {
return str.replace(/\-/g, ' ').replace(/\w\S*/g, function(txt){
return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
});
}
// Split up URL pathnames into components
function parseUrl (url) {
// Remove trailing slashes
url = url.replace(/\/*$/, '');
// We only need the path name
if (url.match(/:\/\//)) {
url = url.replace(/^.*:\/\//, '');
}
return url.split('/').slice(1);
}
function scrape (data) {
var html = $(data).find('div.sub-contents');
minLevel = false,
minTank = false,
skillPrereq = false,
questPrereq = false,
upgradePrereq = [],
achievementPrereq = [];
html.find('li.item-note').each(function(){
var text = $(this).text().trim(),
a = $(this).find('a');
if (text.match(/level/i)) {
minLevel = +text.match(/Level (\d+)/)[1];
} else if (text.match(/quest/i)) {
questPrereq = $(this).find('strong').text().trim();
} else if (text.match(/energy\ tank\ size/i)) {
minTank = +text.match(/least (\d+)/)[1];
} else if (text.match(/skill/i)) {
skillPrereq = humanize(parseUrl(a.attr('href'))[2]);
} else if (text.match(/achievement/i)) {
achievementPrereq.push(a.text());
} else if (text.match(/upgrade/i)) {
upgradePrereq.push(a.text());
}
});
return {
name: html.find('h1.first').text(),
image: html.find('img.upgrade-card').attr('src'),
description: html.find('p.enc-description').text(),
category: html.find('h4.category-nav-back a').text(),
price: parseInt(html.find('li.item-price-img strong').text(), 10),
prereq: {
level: minLevel,
tank: minTank,
skill: skillPrereq,
upgrade: upgradePrereq,
achievement: achievementPrereq,
quest: questPrereq
}
};
}
function init() {
var lastLoadTime = 0;
var queue = async.queue(function (task, callback){
$.ajax({
url: task.url,
success: function(d){
data[task.name] = scrape(d);
},
complete: function(){
callback();
}
});
}, 1);
$('.upgrade-cards a').each(function(){
var url = this.href,
name = parseUrl(this.href)[2];
if (!data[name]) {
queue.push({
url: url,
name: name
});
}
});
}
var data = {};
// We use async.js for it's queue function
// Documentation: https://github.com/caolan/async#queue
$.getScript("https://raw.github.com/caolan/async/master/lib/async.js", init);
{
"intermediate-admixing-imagination-1": {
"name": "Beaker Geek",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/106_1340040610_l.png",
"description": "Tune up your Beaker skills for a chance of an Imagination bonus when making powders.",
"category": "Alchemy",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Intermediate Admixing",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"intermediate-admixing-imagination-2": {
"name": "Beaker Genius",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/107_1340040612_l.png",
"description": "Tweak that Beaker for a better chance of a bigger Imagination bonus when making powders.",
"category": "Alchemy",
"price": 5000,
"prereq": {
"level": false,
"tank": false,
"skill": "Intermediate Admixing",
"upgrade": [
"Beaker Geek"
],
"achievement": [],
"quest": false
}
},
"alchemy-1-imagination": {
"name": "Compound Interest",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/6_1340040411_l.png",
"description": "Earn bonus Imagination from making compounds. How compounding!",
"category": "Alchemy",
"price": 400,
"prereq": {
"level": false,
"tank": false,
"skill": "Alchemy 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"distilling-corn": {
"name": "Corn Hoocher",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/78_1340040557_l.png",
"description": "Special Hooch process that lets you squeeze 20% more hooch out of every ear of Corn you stuff into your Hopper.",
"category": "Alchemy",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Distilling",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"element-handling-bonus-1": {
"name": "Elemental Shake",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/80_1340040560_l.png",
"description": "Learn the secret Elemental Pouch Shake. This maneuver helps Elements mingle, so they can be fruitful and multiply until they fill the pouch.",
"category": "Alchemy",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Element Handling",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"distilling-grain": {
"name": "Grain Hoocher",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/79_1340040559_l.png",
"description": "Old-time Hooch secret that lets you squeeze 20% more hooch out of every bit of Grain you pop into your Hopper.",
"category": "Alchemy",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Distilling",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"distilling-potato": {
"name": "Potato Hoocher",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/77_1340040555_l.png",
"description": "Lost art of Hooch that lets you squeeze 20% more hooch out of every Potato you cram into your Hopper.",
"category": "Alchemy",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Distilling",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"potionmaking-imagination": {
"name": "Potent Potions",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/142_1340040681_l.png",
"description": "Upgrade your potionmaking skills for a chance of bonus imagination when using a Cauldron.",
"category": "Alchemy",
"price": 1500,
"prereq": {
"level": false,
"tank": false,
"skill": "Potionmaking 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"alchemy-2-imagination": {
"name": "Rub 'er Up",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/7_1340040413_l.png",
"description": "Forbidden, carnal knowledge of Plain Metal that grants you a chance of bonus Imagination when rubbing it with the Alchemical Tongs. Yeah, that's the spot...",
"category": "Alchemy",
"price": 600,
"prereq": {
"level": false,
"tank": false,
"skill": "Alchemy 2",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"element-handling-bonus-2": {
"name": "Super Elemental Shake",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/81_1340040562_l.png",
"description": "Even more bonus elements produced by a nice, long shake in the pouch!",
"category": "Alchemy",
"price": 4000,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Elemental Shake"
],
"achievement": [],
"quest": false
}
},
"tincturing-imagination": {
"name": "Tincture Time",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/161_1340040719_l.png",
"description": "Gives a chance for bonus Imagination when using a Tincturing Kit.",
"category": "Alchemy",
"price": 1200,
"prereq": {
"level": false,
"tank": false,
"skill": "Tincturing",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"fox-brushing-bonus": {
"name": "Bristling Bonus",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/220_1340040820_l.png",
"description": "Boost your Brushing skills so you can get more Fiber when you use the Fox Brush!",
"category": "Animals",
"price": 1500,
"prereq": {
"level": false,
"tank": false,
"skill": "Fox Brushing",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"herdkeeping-butterfy-stick": {
"name": "Butterfly Control Freak",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/253_1340040873_l.png",
"description": "Control the range a Butterfly'll fly around a Butterfly Stick!",
"category": "Animals",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Herdkeeping",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"herdkeeping-chicken-stick": {
"name": "Chicken Control Freak",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/254_1340040874_l.png",
"description": "Control the range a Chicken'll wander around a Chicken Stick!",
"category": "Animals",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Herdkeeping",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"sloth-bonus-snails": {
"name": "Friend of Metal",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/223_1340040825_l.png",
"description": "By purchasing this upgrade, you confirm your allegiance to Metal. In appreciation (or perhaps disgust), Sloths will occasionally spit Snails down at you when you walk past their trees.",
"category": "Animals",
"price": 750,
"prereq": {
"level": false,
"tank": false,
"skill": "Animal Kinship 3",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"animal-kinship-grain": {
"name": "Grain Attraction",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/268_1340040896_l.png",
"description": "Each normal squeeze of a chicken will net you 10 grain and the grain-doubling applies to super harvests too. Huge!",
"category": "Animals",
"price": 15000,
"prereq": {
"level": 21,
"tank": false,
"skill": "Animal Kinship 7",
"upgrade": [
"Super Animal Harvest III"
],
"achievement": [],
"quest": false
}
},
"remoteherdkeeping-production-2": {
"name": "Happier Herd",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/149_1340040696_l.png",
"description": "Improve your Remote Herdkeeping skills further, so your herd produces 20% more!",
"category": "Animals",
"price": 7500,
"prereq": {
"level": 16,
"tank": false,
"skill": "Remote Herdkeeping",
"upgrade": [
"Happy Herd"
],
"achievement": [],
"quest": false
}
},
"herdkeeping-animal-sadness-1": {
"name": "Happy Animals",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/104_1340040606_l.png",
"description": "Improve the happiness of your domestic animals, so you can pack 10% more of them on your land.",
"category": "Animals",
"price": 3000,
"prereq": {
"level": false,
"tank": false,
"skill": "Herdkeeping",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"remoteherdkeeping-production-1": {
"name": "Happy Herd",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/148_1340040694_l.png",
"description": "Improve your Remote Herdkeeping skills, so your herd produces 10% more!",
"category": "Animals",
"price": 4000,
"prereq": {
"level": 10,
"tank": false,
"skill": "Remote Herdkeeping",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"herdkeeping-pig-stick": {
"name": "Piggy Control Freak",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/252_1340040871_l.png",
"description": "Control the range a Piggy'll roam around a Pig Stick!",
"category": "Animals",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Herdkeeping",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"animal-kinship-super-harvest-1": {
"name": "Super Animal Harvest I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/14_1340040429_l.png",
"description": "Love to squeeze, milk and nibble? Earn an occasional 2X Super Harvest with this upgrade.",
"category": "Animals",
"price": 200,
"prereq": {
"level": false,
"tank": false,
"skill": "Animal Kinship 4",
"upgrade": [],
"achievement": [
"Hen Hugger",
"Piggy Nibbler",
"Butterfly Whisperer"
],
"quest": false
}
},
"animal-kinship-super-harvest-2": {
"name": "Super Animal Harvest II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/15_1340040431_l.png",
"description": "This upgrade allows you to earn an occasional 3X Super Harvest.",
"category": "Animals",
"price": 400,
"prereq": {
"level": false,
"tank": false,
"skill": "Animal Kinship 4",
"upgrade": [
"Super Animal Harvest I"
],
"achievement": [
"Hen Hugger Deluxe",
"Bacon Biter",
"Apprentice Lepidopteral Manipulator"
],
"quest": false
}
},
"animal-kinship-super-harvest-3": {
"name": "Super Animal Harvest III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/16_1340040433_l.png",
"description": "This upgrade allows you to earn an occasional 4X Super Harvest, Animal Lober!",
"category": "Animals",
"price": 750,
"prereq": {
"level": false,
"tank": false,
"skill": "Animal Kinship 7",
"upgrade": [
"Super Animal Harvest II"
],
"achievement": [
"Hen Hugger Supremalicious",
"Ham Hocker",
"Practical Lepidopteral Manipulator"
],
"quest": false
}
},
"herdkeeping-animal-sadness-2": {
"name": "Super Happy Animals",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/105_1340040608_l.png",
"description": "Squeeze 20% more happy animals onto your land. So many happy animals, it's wild!",
"category": "Animals",
"price": 5000,
"prereq": {
"level": false,
"tank": false,
"skill": "Herdkeeping",
"upgrade": [
"Happy Animals"
],
"achievement": [],
"quest": false
}
},
"animal-husbandry-twin-animals-1": {
"name": "Twinsies I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/8_1340040415_l.png",
"description": "Sometimes the stork knocks twice. This upgrade will give you (or rather, a Chicken) a chance to incubate two animals from one seasoned egg.",
"category": "Animals",
"price": 600,
"prereq": {
"level": false,
"tank": false,
"skill": "Animal Husbandry",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"animal-husbandry-twin-animals-2": {
"name": "Twinsies II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/9_1340040417_l.png",
"description": "This upgrade will better the Chicken's chances of incubating two animals from one seasoned egg.",
"category": "Animals",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Twinsies I"
],
"achievement": [],
"quest": false
}
},
"master-chef-imagination": {
"name": "Better Pot",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/67_1340040535_l.png",
"description": "Truly experience the Awesome Pot, which gives you a chance for bonus Imagination when cooking with it.",
"category": "Cooking",
"price": 1200,
"prereq": {
"level": false,
"tank": false,
"skill": "Master Chef 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"recipe-task-limit-drink-1": {
"name": "Boisterous Bartender I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/261_1340040885_l.png",
"description": "Fiddle with your blender and cocktail shaker to make drinks in batches 50% larger than standard batch sizes.",
"category": "Cooking",
"price": 4000,
"prereq": {
"level": 12,
"tank": false,
"skill": "Blending 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"recipe-task-limit-drink-2": {
"name": "Boisterous Bartender II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/262_1340040886_l.png",
"description": "Fiddle with your blender and cocktail shaker to make drinks in batches twice as large as standard batch sizes.",
"category": "Cooking",
"price": 8000,
"prereq": {
"level": 20,
"tank": false,
"skill": "Cocktail Crafting 1",
"upgrade": [
"Boisterous Bartender I"
],
"achievement": [],
"quest": false
}
},
"recipe-task-limit-food-1": {
"name": "Captain Cook I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/255_1340040876_l.png",
"description": "Tamper with your cooking devices to make food in batches which are 50% larger than standard batch sizes.",
"category": "Cooking",
"price": 5000,
"prereq": {
"level": 15,
"tank": false,
"skill": "Cheffery 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"recipe-task-limit-food-2": {
"name": "Captain Cook II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/256_1340040877_l.png",
"description": "Tamper with your cooking devices to make food in batches which are twice as large as standard batch sizes.",
"category": "Cooking",
"price": 10000,
"prereq": {
"level": 20,
"tank": false,
"skill": "Master Chef 1",
"upgrade": [
"Captain Cook I"
],
"achievement": [],
"quest": false
}
},
"blending-imagination": {
"name": "Creative Blending",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/62_1340040524_l.png",
"description": "Imaginatively delicious! Gives you a chance of bonus Imagination when using a Blender.",
"category": "Cooking",
"price": 400,
"prereq": {
"level": false,
"tank": false,
"skill": "Blending 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"grilling-less-imagination": {
"name": "Grilliant",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/66_1340040533_l.png",
"description": "Advance your skill with the Famous Pugilist Grill for a chance of bonus Imagination when using it.",
"category": "Cooking",
"price": 800,
"prereq": {
"level": false,
"tank": false,
"skill": "Grilling 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"cheffery-tool-wear": {
"name": "It's Teflon Time",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/56_1340040513_l.png",
"description": "Time to coat your Frying Pan in a thin layer of mysteriously resilient goo. Sure, it's pretty - but it also extends the pan's lifespan by 50%!",
"category": "Cooking",
"price": 250,
"prereq": {
"level": false,
"tank": false,
"skill": "Cheffery 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"cheffery-imagination": {
"name": "Pantastic",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/63_1340040526_l.png",
"description": "Beef up your Frying Pan skills for a chance to earn bonus Imagination every time you fry somethin' up. Mmm, it's gonna be tasty!",
"category": "Cooking",
"price": 400,
"prereq": {
"level": false,
"tank": false,
"skill": "Cheffery 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"grilling-tool-wear": {
"name": "Resilient Grill",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/59_1340040519_l.png",
"description": "Extend your Famous Pugilist Grill's lifespan by 50%. It sure can take a beating now!",
"category": "Cooking",
"price": 435,
"prereq": {
"level": false,
"tank": false,
"skill": "Grilling 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"saucery-imagination": {
"name": "Saucy Pan",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/68_1340040537_l.png",
"description": "Become a sauce expert, so you sometimes earn bonus Imagination when using the Saucepan. Sweet or sour? You decide!",
"category": "Cooking",
"price": 400,
"prereq": {
"level": false,
"tank": false,
"skill": "Saucery 2",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"cocktail-crafting-imagination": {
"name": "Shake Things Up",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/64_1340040528_l.png",
"description": "Upgrade your Cocktail Shaker for a chance to earn bonus Imagination when using it. Even more reason to throw a party!",
"category": "Cooking",
"price": 800,
"prereq": {
"level": false,
"tank": false,
"skill": "Cocktail Crafting 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"cocktail-crafting-tool-wear": {
"name": "Shaken, not Stirred",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/57_1340040515_l.png",
"description": "All the party, half the hangover. This upgrade extends your Cocktail Shaker's lifespan by 50%.",
"category": "Cooking",
"price": 375,
"prereq": {
"level": false,
"tank": false,
"skill": "Cocktail Crafting 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"blending-tool-wear": {
"name": "Sharper Blades",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/55_1340040512_l.png",
"description": "Blending lots of drinks? Tired of repairing the damage? Extend your Blender's lifespan by 50%.",
"category": "Cooking",
"price": 250,
"prereq": {
"level": false,
"tank": false,
"skill": "Blending 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"master-chef-tool-wear": {
"name": "Stronger Pot",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/60_1340040521_l.png",
"description": "Reduce the depletion of your Awesome Pot by 50%.",
"category": "Cooking",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": "Master Chef 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"saucery-tool-wear": {
"name": "Stronger, Saucier Pan",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/61_1340040522_l.png",
"description": "Reduce wear and tear on your Saucepan by 50%.",
"category": "Cooking",
"price": 330,
"prereq": {
"level": false,
"tank": false,
"skill": "Saucery 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ezcooking-less-imagination": {
"name": "Sweet Knife Skills",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/65_1340040531_l.png",
"description": "Improve your chopping skills so you occasionally get extra Imagination when you use the Knife and Board. Tear it UP!",
"category": "Cooking",
"price": 200,
"prereq": {
"level": false,
"tank": false,
"skill": "Ez Cooking 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ezcooking-tool-wear": {
"name": "Tempered Steel",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/58_1340040517_l.png",
"description": "Toughen up your Knife & Board, for a 50% longer lifespan.",
"category": "Cooking",
"price": 125,
"prereq": {
"level": false,
"tank": false,
"skill": "Ez Cooking 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"quoin-multiplier": {
"name": "Increase Your Quoin Multiplier",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/2_1340040403_l.png",
"description": "Your Quoin Multiplier increases the benefit from each quoin you come across.",
"category": "Core-Stats",
"price": null,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"energy-tank": {
"name": "Energy Tank Increase",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/1_1340040401_l.png",
"description": "Life's a lot less fun on an empty tank: make yours bigger!",
"category": "Core-Stats",
"price": null,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"brain-capacity": {
"name": "Increase your Brain Capacity",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/3_1340040405_l.png",
"description": "Your brain capacity determines how fast you learn skills: when you're over capacity, learning slows down.",
"category": "Core-Stats",
"price": null,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"jellisac-hands-speed-2": {
"name": "Amazing Scooper",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/272_1340040903_l.png",
"description": "You're so fast in jellisac scooping, it seems like it doesn't take any time at all!",
"category": "Gathering",
"price": 20000,
"prereq": {
"level": 35,
"tank": false,
"skill": "Jellisac Hands",
"upgrade": [
"Fast Scooper"
],
"achievement": [
"Goo-Getter"
],
"quest": false
}
},
"barnacle-scraping-drop-1": {
"name": "Barnacular Drops",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/230_1340040836_l.png",
"description": "Hey scrapey! Purchase this upgrade for a chance to score awesome drops when scraping Barnacles.",
"category": "Gathering",
"price": 1500,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [
"Amateur Decrustifier"
],
"quest": false
}
},
"gardening-harvest-bean": {
"name": "Beenier Harvest",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/94_1340040586_l.png",
"description": "Advanced knowledge of Bean Trees, which gives you the chance of a whopping 4X harvest.",
"category": "Gathering",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Tree Hugger III"
],
"achievement": [
"Bean Counter"
],
"quest": false
}
},
"bubbletuning-imagination": {
"name": "Bubble-licioius",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/166_1340040728_l.png",
"description": "Some might argue that tuning Bubbles is a frivolous pastime. But what do they know? With this upgrade, you'll occasionally earn extra Imagination when using your Bubble Tuner... and show them who's boss!",
"category": "Gathering",
"price": 300,
"prereq": {
"level": false,
"tank": false,
"skill": "Bubble Tuning",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"gardening-harvest-bubble": {
"name": "Bubblier Harvest",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/89_1340040576_l.png",
"description": "Arcane knowledge of Bubble Trees, which gives you the chance of a whopping 4X harvest.",
"category": "Gathering",
"price": 800,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Tree Hugger III"
],
"achievement": [
"Better Bubble Farmer"
],
"quest": false
}
},
"bog-specialization-dig-peat-bog-twice": {
"name": "Dig a Bog Twice A Day",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/267_1340040894_l.png",
"description": "Through a deeper familiarity with bog mechanics, you are now able to dig a single Peat Bog twice in one game day.",
"category": "Gathering",
"price": 10000,
"prereq": {
"level": 15,
"tank": false,
"skill": "Bog Specialization",
"upgrade": [],
"achievement": [
"Compulsive Re-Peater"
],
"quest": false
}
},
"gardening-harvest-egg": {
"name": "Eggier Harvest",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/92_1340040583_l.png",
"description": "Inspired understanding of Egg Plants, which gives you the chance of a whopping 4X harvest.",
"category": "Gathering",
"price": 1200,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Tree Hugger III"
],
"achievement": [
"Egg Poacher"
],
"quest": false
}
},
"jellisac-hands-speed-1": {
"name": "Fast Scooper",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/271_1340040901_l.png",
"description": "Decrease the time it takes you to scoop a jellisac down to a single second!",
"category": "Gathering",
"price": 5000,
"prereq": {
"level": false,
"tank": false,
"skill": "Jellisac Hands",
"upgrade": [],
"achievement": [
"Slime Harvester"
],
"quest": false
}
},
"barnacle-scraping-speed-1": {
"name": "Fast Scraper",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/273_1340040905_l.png",
"description": "Cut down the time it takes you to scrape barnacles in half, to 2 seconds.",
"category": "Gathering",
"price": 8000,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [
"Amateur Decrustifier"
],
"quest": false
}
},
"gardening-harvest-fruit": {
"name": "Fruitier Harvest",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/91_1340040581_l.png",
"description": "Flowering realization about the nature of Fruit Trees, which gives you the chance of a whopping 4X harvest.",
"category": "Gathering",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Tree Hugger III"
],
"achievement": [
"Mid-Management Fruit Tree Harvester"
],
"quest": false
}
},
"fruitchanging-imagination": {
"name": "Fruity Goodness",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/167_1340040730_l.png",
"description": "Upgrade your knowledge of all things fruity, so that you occasionally get extra Imagination from Changing Fruit. You go, girl!",
"category": "Gathering",
"price": 250,
"prereq": {
"level": false,
"tank": false,
"skill": "Fruit Changing",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"gardening-harvest-gas": {
"name": "Gassier Harvest",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/93_1340040584_l.png",
"description": "Ethereal inclinations regarding Gas Plants, which gives you the chance of a whopping 4X harvest.",
"category": "Gathering",
"price": 1200,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Tree Hugger III"
],
"achievement": [
"Hobbyist Gas Fancier"
],
"quest": false
}
},
"bogspecialization-more-peat": {
"name": "Getting Pretty Peaty",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/53_1340040508_l.png",
"description": "A strange, transformational flash of inspiration that allows you to dig up 5 blocks of Peat in one digging.",
"category": "Gathering",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Bog Specialization",
"upgrade": [],
"achievement": [
"Re-Peater"
],
"quest": false
}
},
"jellisac-hands-drop-1": {
"name": "Jellisacular Drops",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/231_1340040838_l.png",
"description": "Purchase this upgrade for a chance to score an awesome drop when scooping Jellisacs. Gooey!",
"category": "Gathering",
"price": 1500,
"prereq": {
"level": false,
"tank": false,
"skill": "Jellisac Hands",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"gardening-harvest-paper": {
"name": "Papery Harvest",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/96_1340040590_l.png",
"description": "Long-lost note on the wonders of Paper Trees, which increases your chance of bonus Paper when you harvest.",
"category": "Gathering",
"price": 750,
"prereq": {
"level": false,
"tank": false,
"skill": "Arborology 3",
"upgrade": [],
"achievement": [
"Paper Plucker"
],
"quest": false
}
},
"bogspecialization-dig-peat-drop": {
"name": "Peaty Expectations",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/52_1340040506_l.png",
"description": "This upgrade grants you a deeper understanding of digging, which gives you a chance of finding something special when you Dig a Peat Bog!",
"category": "Gathering",
"price": 1500,
"prereq": {
"level": false,
"tank": false,
"skill": "Bog Specialization",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"gassifying-imagination": {
"name": "Sassy Gassifier",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/168_1340040732_l.png",
"description": "Get to know the Gassifier better for a chance of bonus Imagination when using it.",
"category": "Gathering",
"price": 400,
"prereq": {
"level": false,
"tank": false,
"skill": "Gasmogrification",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"gardening-harvest-spice": {
"name": "Spicier Harvest",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/90_1340040579_l.png",
"description": "Scintillating insight into the wonders of Spice Plants, which gives you the chance of a whopping 4X harvest.",
"category": "Gathering",
"price": 800,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Tree Hugger III"
],
"achievement": [
"Intermediate Spice Collector"
],
"quest": false
}
},
"spicemilling-imagination": {
"name": "Spicy Times",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/169_1340040734_l.png",
"description": "This upgrade gives you a chance for bonus Imagination when using the Spice Mill. Grind it out!",
"category": "Gathering",
"price": 200,
"prereq": {
"level": false,
"tank": false,
"skill": "Spice Milling",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"recipe-task-limit-transmog-1": {
"name": "Tireless Transmogrifier I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/264_1340040890_l.png",
"description": "Tune up your transmogrifying tools (Fruit Changing Machine, Spice Mill, Gassifier and Bubble Tuner) to transmogrify in batches 50% larger than factory specs.",
"category": "Gathering",
"price": 3000,
"prereq": {
"level": 8,
"tank": false,
"skill": "Fruit Changing",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"recipe-task-limit-transmog-2": {
"name": "Tireless Transmogrifier II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/265_1340040891_l.png",
"description": "Tune up your transmogrifying tools (Fruit Changing Machine, Spice Mill, Gassifier and Bubble Tuner) to transmogrify in batches twice as large as factory specs.",
"category": "Gathering",
"price": 6000,
"prereq": {
"level": 16,
"tank": false,
"skill": false,
"upgrade": [
"Tireless Transmogrifier I"
],
"achievement": [],
"quest": false
}
},
"gardening-tree-super-harvest-1": {
"name": "Tree Hugger I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/86_1340040571_l.png",
"description": "Gives you a chance of 2X Super Harvest with all trees except Paper and Wood Tree.",
"category": "Gathering",
"price": 200,
"prereq": {
"level": false,
"tank": false,
"skill": "Arborology 3",
"upgrade": [],
"achievement": [
"Novice Precipitator",
"OK-But-Needs-Improvement Tree Hugger"
],
"quest": false
}
},
"gardening-tree-super-harvest-2": {
"name": "Tree Hugger II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/87_1340040573_l.png",
"description": "Further boost your chances of a 2X Super Harvest with all trees except Paper and Wood Tree.",
"category": "Gathering",
"price": 400,
"prereq": {
"level": false,
"tank": false,
"skill": "Arborology 3",
"upgrade": [
"Tree Hugger I"
],
"achievement": [
"Second-Rate Rainmaker",
"Decent Tree Hugger"
],
"quest": false
}
},
"gardening-tree-super-harvest-3": {
"name": "Tree Hugger III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/88_1340040574_l.png",
"description": "Not boosted enough? Bump that chance for a 2X Super Tree Harvest just a little more...",
"category": "Gathering",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": "Arborology 5",
"upgrade": [
"Tree Hugger II"
],
"achievement": [
"First-Rate Rainmaker",
"Getting-There Tree Hugger"
],
"quest": false
}
},
"gardening-harvest-wood": {
"name": "Woodier Harvest",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/95_1340040588_l.png",
"description": "Reduces the energy required to harvest wood from 20 to 12, AND Hatchet wear from 5 to 3 per chopping. What a bargain!",
"category": "Gathering",
"price": 750,
"prereq": {
"level": false,
"tank": false,
"skill": "Arborology 3",
"upgrade": [],
"achievement": [
"Timber Jack"
],
"quest": false
}
},
"soil-appreciation-bean-grow-1": {
"name": "Bean Growing Expert I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/159_1340040715_l.png",
"description": "Beans planted and petted mature into trees a little faster.",
"category": "Growing",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Soil Appreciation 3",
"upgrade": [],
"achievement": [
"Whiz-Bang Plantifier"
],
"quest": false
}
},
"soil-appreciation-bean-grow-2": {
"name": "Bean Growing Expert II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/160_1340040717_l.png",
"description": "Beans planted and petted mature into trees even more quickly.",
"category": "Growing",
"price": 4000,
"prereq": {
"level": false,
"tank": false,
"skill": "Soil Appreciation 5",
"upgrade": [
"Bean Growing Expert I"
],
"achievement": [
"Johnny Anyseed"
],
"quest": false
}
},
"croppery-growing-drop-1": {
"name": "Big Crop Bonus",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/72_1340040545_l.png",
"description": "When you Water, Plant, or Clear a plot in a Crop Garden, you have a small chance of finding something interesting.",
"category": "Growing",
"price": 600,
"prereq": {
"level": false,
"tank": false,
"skill": "Croppery 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"croppery-growing-drop-2": {
"name": "Bigger Crop Bonus",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/73_1340040547_l.png",
"description": "When you Water, Plant, or Clear a plot in a Crop Garden, your chance of finding a bonus item is bigger. Bigger... yeah!",
"category": "Growing",
"price": 1200,
"prereq": {
"level": false,
"tank": false,
"skill": "Croppery 2",
"upgrade": [
"Big Crop Bonus"
],
"achievement": [],
"quest": false
}
},
"botany-imagination": {
"name": "Creative Seasoner",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/54_1340040510_l.png",
"description": "Gives you a chance of bonus Imagination when you use a Bean Seasoner.",
"category": "Growing",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": "Botany",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"soil-appreciation-dirt-pile-1": {
"name": "Dirty",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/157_1340040712_l.png",
"description": "You can now dig one Dirt Pile 4 times a day! Whew!",
"category": "Growing",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Soil Appreciation 2",
"upgrade": [],
"achievement": [
"Shovel Jockey"
],
"quest": false
}
},
"soil-appreciation-dirt-pile-2": {
"name": "Extra Dirty",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/158_1340040714_l.png",
"description": "Increase your ability to dig one Dirt Pile to a whopping 5 times a day!",
"category": "Growing",
"price": 4000,
"prereq": {
"level": false,
"tank": false,
"skill": "Soil Appreciation 5",
"upgrade": [
"Dirty"
],
"achievement": [
"Dirt Monkey"
],
"quest": false
}
},
"croppery-time-1": {
"name": "Growth Spurt",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/75_1340040551_l.png",
"description": "Why wait for mother nature? This upgrade makes your crops grow 10% faster.",
"category": "Growing",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Croppery 2",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"croppery-super-harvest-2": {
"name": "Harvesting Fiend",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/70_1340040541_l.png",
"description": "This upgrade grants a chance of a 4X Super Harvest of crops! FOUR EXXXX!",
"category": "Growing",
"price": 800,
"prereq": {
"level": false,
"tank": false,
"skill": "Croppery 3",
"upgrade": [
"Harvesting Fool"
],
"achievement": [
"Amateur Agronomist"
],
"quest": false
}
},
"croppery-super-harvest-1": {
"name": "Harvesting Fool",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/69_1340040539_l.png",
"description": "This upgrade grants a chance of a 3X Super Harvest of crops!",
"category": "Growing",
"price": 400,
"prereq": {
"level": false,
"tank": false,
"skill": "Croppery 3",
"upgrade": [],
"achievement": [
"So-So Sower"
],
"quest": false
}
},
"lightgreenthumb-pet-drop-2": {
"name": "Heavier Petting",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/112_1340040620_l.png",
"description": "An even bigger chance of a special item when you pet trees.",
"category": "Growing",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Light Green Thumb 3",
"upgrade": [
"Heavy Petting"
],
"achievement": [],
"quest": false
}
},
"lightgreenthumb-tool-wear": {
"name": "Heavy Flow",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/205_1340040796_l.png",
"description": "Reduces the wear and tear on your Watering Can or Irrigator 9000 by 50%.",
"category": "Growing",
"price": 200,
"prereq": {
"level": false,
"tank": false,
"skill": "Light Green Thumb 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"lightgreenthumb-pet-drop-1": {
"name": "Heavy Petting",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/111_1340040619_l.png",
"description": "A chance of getting a special item when you pet trees.",
"category": "Growing",
"price": 600,
"prereq": {
"level": false,
"tank": false,
"skill": "Light Green Thumb 2",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"croppery-time-2": {
"name": "Hella Growth Spurt",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/76_1340040553_l.png",
"description": "It's time for a change! Your voice might crack, but your crops will grow 20% faster!",
"category": "Growing",
"price": 5000,
"prereq": {
"level": false,
"tank": false,
"skill": "Croppery 3",
"upgrade": [
"Growth Spurt"
],
"achievement": [],
"quest": false
}
},
"hoeing-more-img-more-wear": {
"name": "Hoe Down",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/229_1340040834_l.png",
"description": "More aggressive hoeing gives you more Imagination but wears your Hoe (or High Class Hoe) down faster.",
"category": "Growing",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Soil Appreciation 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"herbalism-shucking-1": {
"name": "Seedy Powers",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/102_1340040600_l.png",
"description": "75% chance of doubled seeds when shucking herbs.",
"category": "Growing",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": "Herbalism 3",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"herbalism-super-harvest-1": {
"name": "Special Herbs",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/232_1340040839_l.png",
"description": "Increase your chances of a 3X Super Harvest to 20%.",
"category": "Growing",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Herbalism 3",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"herbalism-time-2": {
"name": "Speedier Herbs",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/101_1340040599_l.png",
"description": "Shorten the growth time for your herbs by 20%.",
"category": "Growing",
"price": 5000,
"prereq": {
"level": false,
"tank": false,
"skill": "Herbalism 3",
"upgrade": [
"Speedy Herbs"
],
"achievement": [],
"quest": false
}
},
"herbalism-time-1": {
"name": "Speedy Herbs",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/100_1340040597_l.png",
"description": "Got a strong craving for Herbs? Shorten their growth time by 10%. But remember, faster delivery doesn't mean they'll last longer...",
"category": "Growing",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Herbalism 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"herbalism-shucking-2": {
"name": "Super Seedy Powers",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/103_1340040603_l.png",
"description": "Always get double seeds when shucking herbs.",
"category": "Growing",
"price": 1600,
"prereq": {
"level": false,
"tank": false,
"skill": "Herbalism 3",
"upgrade": [
"Seedy Powers"
],
"achievement": [],
"quest": false
}
},
"herbalism-super-harvest-2": {
"name": "Super Special Herbs",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/233_1340040841_l.png",
"description": "Increase your chances of a 3X Super Harvest to 30%.",
"category": "Growing",
"price": 750,
"prereq": {
"level": false,
"tank": false,
"skill": "Herbalism 3",
"upgrade": [
"Special Herbs"
],
"achievement": [
"Mixed Herbalist"
],
"quest": false
}
},
"garden-clearing-time": {
"name": "Tendy Gonzales",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/278_1340040917_l.png",
"description": "You know the way of the hoe, and you are not afraid to use it: clear a weedy garden plot in just one solitary second. Bang!",
"category": "Growing",
"price": 15000,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [
"Not-So-Grim Reaper",
"Aggressive Agrarian"
],
"quest": false
}
},
"lightgreenthumb-water-drop-2": {
"name": "Thirst Quencher",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/114_1340040624_l.png",
"description": "An even bigger chance of a special item when you water trees.",
"category": "Growing",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Light Green Thumb 3",
"upgrade": [
"Well Watered"
],
"achievement": [],
"quest": false
}
},
"garden-watering-time": {
"name": "Watering Whiz",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/277_1340040915_l.png",
"description": "Your long tenure in gardening grants you the ability to water a garden plot in a single second. Breathtaking.",
"category": "Growing",
"price": 15000,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [
"Not-So-Grim Reaper",
"Aggressive Agrarian"
],
"quest": false
}
},
"lightgreenthumb-water-drop-1": {
"name": "Well Watered",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/113_1340040622_l.png",
"description": "A chance of getting a special item when you water trees.",
"category": "Growing",
"price": 600,
"prereq": {
"level": false,
"tank": false,
"skill": "Light Green Thumb 2",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"mining-expert-beryl": {
"name": "Beryl Expert",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/137_1340040670_l.png",
"description": "Wow! You're such an expert, you can now get 15% more Beryl from mining!",
"category": "Industrial",
"price": 4000,
"prereq": {
"level": false,
"tank": false,
"skill": "Mining 2",
"upgrade": [],
"achievement": [
"Creditable Delver"
],
"quest": false
}
},
"blockmaking-save-fuel-1": {
"name": "Better Blockmaker",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/50_1340040502_l.png",
"description": "Study the intricacies of Urth, resulting in 20% less fuel spent when using a Blockmaker.",
"category": "Industrial",
"price": 750,
"prereq": {
"level": false,
"tank": false,
"skill": "Blockmaking",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"blockmaking-save-fuel-2": {
"name": "Betterer Blockmaker",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/51_1340040504_l.png",
"description": "Further illumination of the mysteries of Urth, resulting in 40% fuel savings when using a Blockmaker.",
"category": "Industrial",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Blockmaking",
"upgrade": [
"Better Blockmaker"
],
"achievement": [],
"quest": false
}
},
"toolcrafting-bonus-tool": {
"name": "Bonus Tool From Spare Parts",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/165_1340040726_l.png",
"description": "Take all those spare parts left over from assembling your new tool and occasionally make an extra tool with them.",
"category": "Industrial",
"price": 5000,
"prereq": {
"level": false,
"tank": false,
"skill": "Tinkering 5",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"mining-expert-dullite": {
"name": "Dullite Expert",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/136_1340040667_l.png",
"description": "Check you out, Dullite expert. You can now get 15% more Dullite from mining!",
"category": "Industrial",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Mining 1",
"upgrade": [],
"achievement": [
"OK Hewer"
],
"quest": false
}
},
"fuelmaking-imagination": {
"name": "Fuel Efficiency",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/85_1340040569_l.png",
"description": "Bestow upon yourself a series of deep, keen insights into the nature of Fuel. With this knowledge, you'll occasionally earn more Imagination when using your Fuelmaker.",
"category": "Industrial",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Fuelmaking",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"luscious-loomer": {
"name": "Luscious Loomer",
"image": "http://c2.glitch.bz/upgrades/2012-07-18/311_1342654295_l.png",
"description": "Amplify your Loomer to make String, General Fabric and Rugs in batches that are 2.5 times as large as standard batch sizes.",
"category": "Industrial",
"price": 3000,
"prereq": {
"level": 15,
"tank": false,
"skill": "Fiber Arts 2",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"recipe-task-limit-machines-1": {
"name": "Mad Machinist I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/258_1340040880_l.png",
"description": "Overclock your machines to make things in batches 50% larger than specified by factory settings.",
"category": "Industrial",
"price": 5000,
"prereq": {
"level": 15,
"tank": false,
"skill": "Engineering 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"recipe-task-limit-machines-2": {
"name": "Mad Machinist II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/259_1340040882_l.png",
"description": "Overclock your machines to make things in batches twice as large as those specified by factory settings.",
"category": "Industrial",
"price": 10000,
"prereq": {
"level": 20,
"tank": false,
"skill": false,
"upgrade": [
"Mad Machinist I"
],
"achievement": [],
"quest": false
}
},
"metalmaking-music": {
"name": "Making Metal",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/129_1340040653_l.png",
"description": "Plays metal music while you make metal.",
"category": "Industrial",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Metalworking",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"mining-time-1": {
"name": "Manic Mining I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/132_1340040659_l.png",
"description": "Toil less, mine more! Speed up your mining time by 10%.",
"category": "Industrial",
"price": 2000,
"prereq": {
"level": 7,
"tank": false,
"skill": "Mining 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"mining-time-2": {
"name": "Manic Mining II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/133_1340040660_l.png",
"description": "Toil less, mine more! Speed up your mining time by 25%.",
"category": "Industrial",
"price": 5000,
"prereq": {
"level": 10,
"tank": false,
"skill": "Mining 2",
"upgrade": [
"Manic Mining I"
],
"achievement": [],
"quest": false
}
},
"mining-time-3": {
"name": "Manic Mining III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/134_1340040663_l.png",
"description": "Toil less, mine more! Speed up your mining time by 50%.",
"category": "Industrial",
"price": 10000,
"prereq": {
"level": 12,
"tank": false,
"skill": "Mining 4",
"upgrade": [
"Manic Mining II"
],
"achievement": [],
"quest": false
}
},
"engineering-assemble-machine": {
"name": "Master Assembler",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/84_1340040566_l.png",
"description": "Channel the mysteries of Alph and assemble any machine in one swift action, given that you have the required parts. Hint: Start with the Machine Stand.",
"category": "Industrial",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Engineering 1",
"upgrade": [
"Speedy Assembler"
],
"achievement": [],
"quest": false
}
},
"engineering-disassemble-machine": {
"name": "Master Exploder",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/269_1340040898_l.png",
"description": "Disassemble any machine with one swift action.",
"category": "Industrial",
"price": 800,
"prereq": {
"level": false,
"tank": false,
"skill": "Engineering 1",
"upgrade": [
"Speedy Assembler"
],
"achievement": [],
"quest": false
}
},
"mining-expert-metal-rock": {
"name": "Metal Rock Expert",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/135_1340040665_l.png",
"description": "You're so Metal!! You can now get 15% more Metal Rock from mining!",
"category": "Industrial",
"price": 3000,
"prereq": {
"level": false,
"tank": false,
"skill": "Mining 3",
"upgrade": [],
"achievement": [
"Creditable Delver"
],
"quest": false
}
},
"metalmaking-imagination": {
"name": "Pedal to the Metal",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/130_1340040655_l.png",
"description": "Expand your expertise of Metal for a chance of bonus Imagination when using a Metal Machine.",
"category": "Industrial",
"price": 1250,
"prereq": {
"level": false,
"tank": false,
"skill": "Metalworking",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"refining-time-1": {
"name": "Refined Speed",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/143_1340040683_l.png",
"description": "Reduce your crushing time by 20%.",
"category": "Industrial",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Refining 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"refining-drop-1": {
"name": "Refinery",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/145_1340040690_l.png",
"description": "Do you love to grind? This upgrade gives you a rare chance for a surprise item when Crushing rocks or barnacles with a Grinder.",
"category": "Industrial",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": "Refining 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"mining-high-capacity-rock": {
"name": "Rock Whisperer",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/139_1340040674_l.png",
"description": "Ore summoner! Rock wizard! Choose this and Dullite, Beryl & Sparkly rocks alike have a 50% better chance of respawning as mega-capacity rocks when you deplete them.",
"category": "Industrial",
"price": 4000,
"prereq": {
"level": 9,
"tank": false,
"skill": "Mining 3",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"mining-expert-sparkly": {
"name": "Sparkly Expert",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/138_1340040672_l.png",
"description": "Shiny happy Sparkly! Your expert status can earn you 15% more Sparkly from mining!",
"category": "Industrial",
"price": 5000,
"prereq": {
"level": 10,
"tank": false,
"skill": "Mining 4",
"upgrade": [],
"achievement": [
"Serious Scrabbler"
],
"quest": false
}
},
"engineering-reduce-time": {
"name": "Speedy Assembler",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/83_1340040564_l.png",
"description": "Reduce the time it takes you to assemble any machine part.",
"category": "Industrial",
"price": 100,
"prereq": {
"level": false,
"tank": false,
"skill": "Engineering 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"fiber-arts-bonus-1": {
"name": "Spellbound Spindle",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/221_1340040822_l.png",
"description": "A magical incantation that gives you a chance of spinning String instead of Thread with your Spindle.",
"category": "Industrial",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Fiber Arts 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"smelting-tool-wear": {
"name": "Strong Smelter",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/152_1340040702_l.png",
"description": "Reduce wear and tear on your Smelter by 50%.",
"category": "Industrial",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Smelting",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"refining-time-2": {
"name": "Super Refined Speed",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/144_1340040687_l.png",
"description": "Reduce your crushing time by 40%.",
"category": "Industrial",
"price": 4000,
"prereq": {
"level": 10,
"tank": false,
"skill": "Refining 2",
"upgrade": [
"Refined Speed"
],
"achievement": [],
"quest": false
}
},
"refining-drop-2": {
"name": "Super Refinery",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/147_1340040692_l.png",
"description": "Improve your grinding ability further for a better chance of a special surprise when Crushing rocks or barnacles with a Grinder.",
"category": "Industrial",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Refining 2",
"upgrade": [
"Refinery"
],
"achievement": [],
"quest": false
}
},
"smelting-energy": {
"name": "The Green Smelt",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/150_1340040698_l.png",
"description": "Smelting costs 3 energy instead of 5 per Plain Metal Ingot.",
"category": "Industrial",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": "Smelting",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"tinkering-repairing-gives-mood": {
"name": "Tink Happy Thoughts",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/270_1340040899_l.png",
"description": "Repairing tools improves your mood, bit for bit.",
"category": "Industrial",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Tinkering 4",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"toolcrafting-imagination-2": {
"name": "Tinker Plus",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/163_1340040722_l.png",
"description": "Gives an even better chance for more bonus Imagination when crafting tools with your Tinkertool.",
"category": "Industrial",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": "Tinkering 4",
"upgrade": [
"Tinker Time"
],
"achievement": [],
"quest": false
}
},
"toolcrafting-imagination-1": {
"name": "Tinker Time",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/162_1340040720_l.png",
"description": "Gives a chance for bonus Imagination when crafting tools with your Tinkertool.",
"category": "Industrial",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Tinkering 4",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"mining-drop-1": {
"name": "Truly Outrageous I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/224_1340040826_l.png",
"description": "Study Gem structure for a 4% chance of a bonus Gem when you mine.",
"category": "Industrial",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": "Mining 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"mining-drop-2": {
"name": "Truly Outrageous II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/225_1340040828_l.png",
"description": "Continue your investigation of Gems for a 5% chance of a bonus Gem when you mine.",
"category": "Industrial",
"price": 1250,
"prereq": {
"level": false,
"tank": false,
"skill": "Mining 2",
"upgrade": [
"Truly Outrageous I"
],
"achievement": [],
"quest": false
}
},
"mining-drop-3": {
"name": "Truly Outrageous III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/226_1340040829_l.png",
"description": "Deepen your knowledge of crystalline formations for a 6% chance of a bonus Gem when you mine.",
"category": "Industrial",
"price": 1500,
"prereq": {
"level": false,
"tank": false,
"skill": "Mining 3",
"upgrade": [
"Truly Outrageous II"
],
"achievement": [],
"quest": false
}
},
"mining-drop-4": {
"name": "Truly Outrageous IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/227_1340040831_l.png",
"description": "Unlock the deepest secrets of precious jewels for an 8% chance of a bonus Gem when you mine.",
"category": "Industrial",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Mining 4",
"upgrade": [
"Truly Outrageous III"
],
"achievement": [],
"quest": false
}
},
"smelting-drop": {
"name": "Who Smelt It?",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/151_1340040700_l.png",
"description": "Gives you a chance of a surprise item when smelting Metal Rocks with the Smelter.",
"category": "Industrial",
"price": 1500,
"prereq": {
"level": false,
"tank": false,
"skill": "Smelting",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"fiber-arts-bonus-2": {
"name": "Wondrous Weave",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/222_1340040823_l.png",
"description": "An ancient weaving technique that gives you a rare chance of making thrice the Fabric when using a Loomer.",
"category": "Industrial",
"price": 3500,
"prereq": {
"level": false,
"tank": false,
"skill": "Fiber Arts 2",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"meditative-arts-focus-1": {
"name": "Clear Mind",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/116_1340040628_l.png",
"description": "Upgrade your meditation duration by 20%. Focusssssss.",
"category": "Intellectual",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": "Meditative Arts 1",
"upgrade": [],
"achievement": [],
"quest": "Blue Ocean"
}
},
"meditative-arts-focus-2": {
"name": "Clearer Mind",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/117_1340040629_l.png",
"description": "Bump your meditation duration by 50%. Oooohhhmmmm.",
"category": "Intellectual",
"price": 3000,
"prereq": {
"level": false,
"tank": false,
"skill": "Meditative Arts 2",
"upgrade": [
"Clear Mind"
],
"achievement": [],
"quest": false
}
},
"meditative-arts-max-relax": {
"name": "Double Max Relax",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/122_1340040638_l.png",
"description": "Get double the benefits when you Max Relax!",
"category": "Intellectual",
"price": 4000,
"prereq": {
"level": 10,
"tank": false,
"skill": "Meditative Arts 2",
"upgrade": [
"Tune Out The Chatter Meditation",
"Clearer Mind"
],
"achievement": [
"Ace of Om"
],
"quest": false
}
},
"meditative-arts-imagination": {
"name": "Enlightenment",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/118_1340040631_l.png",
"description": "Deepen your understanding of the Focusing Orb, so you sometimes earn bonus Imagination when using the Orb.",
"category": "Intellectual",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Meditative Arts 3",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"focused-meditation-imagination": {
"name": "Focused Imagination",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/121_1340040636_l.png",
"description": "Channels your focus for a chance of bonus Imagination when using the Orb for Focused Meditation.",
"category": "Intellectual",
"price": 1000,
"prereq": {
"level": false,
"tank": false,
"skill": "Focused Meditation",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"meditative-arts-less-distraction-2": {
"name": "Mantra Meditation",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/211_1340040806_l.png",
"description": "Outgoing chat messages will no longer distract you while meditating.",
"category": "Intellectual",
"price": 1500,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Tune Out The Chatter Meditation"
],
"achievement": [],
"quest": false
}
},
"meditative-arts-daily-limit-1": {
"name": "Mightier Meditation",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/119_1340040633_l.png",
"description": "Upgrade your daily meditation limit by 25%.",
"category": "Intellectual",
"price": 2500,
"prereq": {
"level": false,
"tank": false,
"skill": "Meditative Arts 2",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"meditative-arts-daily-limit-2": {
"name": "Mightier Meditation II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/120_1340040635_l.png",
"description": "Upgrade your daily meditation limit by another 25%, to 50%.",
"category": "Intellectual",
"price": 6000,
"prereq": {
"level": 10,
"tank": false,
"skill": "Meditative Arts 3",
"upgrade": [
"Mightier Meditation"
],
"achievement": [],
"quest": false
}
},
"piety-shrine-prime-bonus-1": {
"name": "Shrine On I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/140_1340040676_l.png",
"description": "When you prime a Shrine in a battle with the Rook, all donations do 25% more damage.",
"category": "Intellectual",
"price": 3000,
"prereq": {
"level": false,
"tank": false,
"skill": "Piety 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"piety-shrine-prime-bonus-2": {
"name": "Shrine On II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/141_1340040679_l.png",
"description": "When you prime a Shrine in a battle with the Rook, all donations do 50% more damage.",
"category": "Intellectual",
"price": 6000,
"prereq": {
"level": 10,
"tank": false,
"skill": "Piety 1",
"upgrade": [
"Shrine On I"
],
"achievement": [],
"quest": false
}
},
"transcendental-benefits-1": {
"name": "Transcendental Benefits I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/126_1340040646_l.png",
"description": "Increase the benefits of your radiation to other players by 25%.",
"category": "Intellectual",
"price": 3000,
"prereq": {
"level": false,
"tank": false,
"skill": "Transcendental Radiation 1",
"upgrade": [],
"achievement": [
"Ace of Om"
],
"quest": false
}
},
"transcendental-benefits-2": {
"name": "Transcendental Benefits II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/127_1340040648_l.png",
"description": "Increase the benefits of your radiation to other players by another 25%, to a total of 50%.",
"category": "Intellectual",
"price": 5000,
"prereq": {
"level": 10,
"tank": false,
"skill": "Transcendental Radiation 1",
"upgrade": [
"Transcendental Benefits I"
],
"achievement": [
"Harmony Hound"
],
"quest": false
}
},
"transcendental-imagination": {
"name": "Transcendental Highway",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/217_1340040815_l.png",
"description": "Further your Transcendental Radiation studies for a chance to earn bonus Imagination when you Radiate.",
"category": "Intellectual",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Transcendental Radiation 2",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"transcendental-daily-limit": {
"name": "Transcendental Radiation Daily Limit",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/128_1340040650_l.png",
"description": "Increase your total limit for daily radiation by a third.",
"category": "Intellectual",
"price": 3000,
"prereq": {
"level": false,
"tank": false,
"skill": "Transcendental Radiation 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"transcendental-radius-1": {
"name": "Transcendental Radius I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/123_1340040640_l.png",
"description": "Radiate 50% further during Transcendental Radiation.",
"category": "Intellectual",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Transcendental Radiation 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"transcendental-radius-2": {
"name": "Transcendental Radius II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/124_1340040642_l.png",
"description": "Radiate 100% further during Trancendental Radiation.",
"category": "Intellectual",
"price": 4000,
"prereq": {
"level": false,
"tank": false,
"skill": "Transcendental Radiation 1",
"upgrade": [
"Transcendental Radius I"
],
"achievement": [],
"quest": false
}
},
"transcendental-radius-3": {
"name": "Transcendental Radius III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/125_1340040644_l.png",
"description": "Radiate to everyone in the location during Transcendental Radiation",
"category": "Intellectual",
"price": 8000,
"prereq": {
"level": 10,
"tank": false,
"skill": "Transcendental Radiation 2",
"upgrade": [
"Transcendental Radius II"
],
"achievement": [],
"quest": false
}
},
"meditative-arts-less-distraction": {
"name": "Tune Out The Chatter Meditation",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/115_1340040626_l.png",
"description": "Incoming chat messages will no longer distract you while meditating.",
"category": "Intellectual",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": "Meditative Arts 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"instant-resurrection": {
"name": "Get Out of Hell Free Card",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/213_1340040809_l.png",
"description": "Get out of Hell instantly, with full health. Lucky devil!!",
"category": "Keepables",
"price": null,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"reshuffle": {
"name": "Reshuffle",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/212_1340040807_l.png",
"description": "Reshuffle the Deck, above and beyond your one free daily reshuffle.",
"category": "Keepables",
"price": null,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ticket-to-abysmal-thrill": {
"name": "Ticket to Abysmal Thrill",
"image": "http://c2.glitch.bz/upgrades/2012-08-04/320_1344126504_l.png",
"description": "Activate this card to dive to the depths of Abysmal Thrill and test your skills at quoin getting.",
"category": "Keepables",
"price": 25,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ticket-to-arbor-hollow": {
"name": "Ticket To Arbor Hollow",
"image": "http://c2.glitch.bz/upgrades/2012-07-02/279_1341268785_l.png",
"description": "Follow a trail of quoins to the tops of tall trees. Then collect more as you plunge back down!",
"category": "Keepables",
"price": 25,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ticket-to-beam-me-down": {
"name": "Ticket To Beam Me Down",
"image": "http://c2.glitch.bz/upgrades/2012-08-04/315_1344126686_l.png",
"description": "Activate this card to start your descent. Feel the wind in your hair, grab some quoins and maybe get a little help from some unidentifiable friends.",
"category": "Keepables",
"price": 25,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ticket-to-bippity-bop": {
"name": "Ticket to Bippity Bop",
"image": "http://c2.glitch.bz/upgrades/2012-08-08/321_1344469704_l.png",
"description": "Activate this card to bounce your way through a fluffy sky scape of joy! you'll probably get some quoins out of it too.",
"category": "Keepables",
"price": 25,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ticket-to-cloud-flight": {
"name": "Ticket To Cloud Flight",
"image": "http://c2.glitch.bz/upgrades/2012-07-02/283_1341268793_l.png",
"description": "Leap into the sky above the tree-tops, and collect quoins as you fly through the air!",
"category": "Keepables",
"price": 25,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ticket-to-cloud-rings": {
"name": "Ticket To Cloud Rings",
"image": "http://c2.glitch.bz/upgrades/2012-08-04/317_1344126825_l.png",
"description": "Activate this card to blast through all the cloud rings, collecting quoins as you go. Don't forget to enjoy the view a bit.",
"category": "Keepables",
"price": 25,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ticket-to-mountain-scaling": {
"name": "Ticket to Mountain Scaling",
"image": "http://c2.glitch.bz/upgrades/2012-08-04/318_1344126882_l.png",
"description": "Activate this card to traverse the tippity top of the mountains and try not to fall down into the clouds.",
"category": "Keepables",
"price": 25,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ticket-to-radial-heights": {
"name": "Ticket To Radial Heights",
"image": "http://c2.glitch.bz/upgrades/2012-07-02/280_1341268799_l.png",
"description": "Fly about the evening sky, discovering a spiral of stars. Extra care earns you a special message!",
"category": "Keepables",
"price": 25,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ticket-to-sky-plunge": {
"name": "Ticket To Sky Plunge",
"image": "http://c2.glitch.bz/upgrades/2012-07-02/281_1341268806_l.png",
"description": "Take the plunge! A fast drop through soft, morning clouds. Can you collect every quoin?",
"category": "Keepables",
"price": 25,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ticket-to-starlit-night": {
"name": "Ticket To Starlit Night",
"image": "http://c2.glitch.bz/upgrades/2012-07-02/282_1341268776_l.png",
"description": "Ever wonder what stars sound like? Collect quoins as you float in the night-time sky.",
"category": "Keepables",
"price": 25,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"learntime-alchemy-1": {
"name": "Alchemy Learning Speed I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/170_1340040735_l.png",
"description": "Speed up the learning times for Alchemy skills (Alchemy, Element Handling, Intermediate Admixing, Crystallography, Distilling, Tincturing, Potionmaking) by 2%.",
"category": "Learning",
"price": 400,
"prereq": {
"level": 4,
"tank": false,
"skill": "Element Handling",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"learntime-alchemy-2": {
"name": "Alchemy Learning Speed II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/171_1340040737_l.png",
"description": "Speed up the learning times for Alchemy skills (Alchemy, Element Handling, Intermediate Admixing, Crystallography, Distilling, Tincturing, Potionmaking) by 5%.",
"category": "Learning",
"price": 1250,
"prereq": {
"level": 6,
"tank": false,
"skill": false,
"upgrade": [
"Alchemy Learning Speed I"
],
"achievement": [],
"quest": false
}
},
"learntime-alchemy-3": {
"name": "Alchemy Learning Speed III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/172_1340040739_l.png",
"description": "Speed up the learning times for Alchemy skills (Alchemy, Element Handling, Intermediate Admixing, Crystallography, Distilling, Tincturing, Potionmaking) by 10%.",
"category": "Learning",
"price": 5000,
"prereq": {
"level": 8,
"tank": false,
"skill": false,
"upgrade": [
"Alchemy Learning Speed II"
],
"achievement": [],
"quest": false
}
},
"learntime-alchemy-4": {
"name": "Alchemy Learning Speed IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/173_1340040741_l.png",
"description": "Speed up the learning times for Alchemy skills (Alchemy, Element Handling, Intermediate Admixing, Crystallography, Distilling, Tincturing, Potionmaking) by 15%.",
"category": "Learning",
"price": 10000,
"prereq": {
"level": 12,
"tank": false,
"skill": false,
"upgrade": [
"Alchemy Learning Speed III"
],
"achievement": [],
"quest": false
}
},
"learntime-alchemy-5": {
"name": "Alchemy Learning Speed V",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/174_1340040743_l.png",
"description": "Speed up the learning times for Alchemy skills (Alchemy, Element Handling, Intermediate Admixing, Crystallography, Distilling, Tincturing, Potionmaking) by 20%.",
"category": "Learning",
"price": 20000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Alchemy Learning Speed IV"
],
"achievement": [],
"quest": false
}
},
"learntime-animal-1": {
"name": "Animal Learning Speed I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/175_1340040745_l.png",
"description": "Speed up the learning times for Animal skills (Animal Kinship, Animal Husbandry, Fox Brushing, Herdkeeping, Remote Herdkeeping) by 2%.",
"category": "Learning",
"price": 400,
"prereq": {
"level": 4,
"tank": false,
"skill": "Animal Kinship 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"learntime-animal-2": {
"name": "Animal Learning Speed II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/176_1340040747_l.png",
"description": "Speed up the learning times for Animal skills (Animal Kinship, Animal Husbandry, Fox Brushing, Herdkeeping, Remote Herdkeeping) by 5%.",
"category": "Learning",
"price": 1250,
"prereq": {
"level": 6,
"tank": false,
"skill": false,
"upgrade": [
"Animal Learning Speed I"
],
"achievement": [],
"quest": false
}
},
"learntime-animal-3": {
"name": "Animal Learning Speed III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/177_1340040749_l.png",
"description": "Speed up the learning times for Animal skills (Animal Kinship, Animal Husbandry, Fox Brushing, Herdkeeping, Remote Herdkeeping) by 10%.",
"category": "Learning",
"price": 5000,
"prereq": {
"level": 8,
"tank": false,
"skill": false,
"upgrade": [
"Animal Learning Speed II"
],
"achievement": [],
"quest": false
}
},
"learntime-animal-4": {
"name": "Animal Learning Speed IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/178_1340040751_l.png",
"description": "Speed up the learning times for Animal skills (Animal Kinship, Animal Husbandry, Fox Brushing, Herdkeeping, Remote Herdkeeping) by 15%.",
"category": "Learning",
"price": 10000,
"prereq": {
"level": 12,
"tank": false,
"skill": false,
"upgrade": [
"Animal Learning Speed III"
],
"achievement": [],
"quest": false
}
},
"learntime-animal-5": {
"name": "Animal Learning Speed V",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/179_1340040753_l.png",
"description": "Speed up the learning times for Animal skills (Animal Kinship, Animal Husbandry, Fox Brushing, Herdkeeping, Remote Herdkeeping) by 20%.",
"category": "Learning",
"price": 20000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Animal Learning Speed IV"
],
"achievement": [],
"quest": false
}
},
"learntime-cooking-1": {
"name": "Cooking Learning Speed I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/180_1340040754_l.png",
"description": "Speed up the learning times for Cooking skills (EZ Cooking, Cheffery, Grilling, Master Chef, Saucery, Blending, Cocktail Crafting) by 2%.",
"category": "Learning",
"price": 400,
"prereq": {
"level": 4,
"tank": false,
"skill": "Ez Cooking 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"learntime-cooking-2": {
"name": "Cooking Learning Speed II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/181_1340040756_l.png",
"description": "Speed up the learning times for Cooking skills (EZ Cooking, Cheffery, Grilling, Master Chef, Saucery, Blending, Cocktail Crafting) by 5%.",
"category": "Learning",
"price": 1250,
"prereq": {
"level": 6,
"tank": false,
"skill": false,
"upgrade": [
"Cooking Learning Speed I"
],
"achievement": [],
"quest": false
}
},
"learntime-cooking-3": {
"name": "Cooking Learning Speed III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/182_1340040757_l.png",
"description": "Speed up the learning times for Cooking skills (EZ Cooking, Cheffery, Grilling, Master Chef, Saucery, Blending, Cocktail Crafting) by 10%.",
"category": "Learning",
"price": 5000,
"prereq": {
"level": 8,
"tank": false,
"skill": false,
"upgrade": [
"Cooking Learning Speed II"
],
"achievement": [],
"quest": false
}
},
"learntime-cooking-4": {
"name": "Cooking Learning Speed IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/183_1340040759_l.png",
"description": "Speed up the learning times for Cooking skills (EZ Cooking, Cheffery, Grilling, Master Chef, Saucery, Blending, Cocktail Crafting) by 15%.",
"category": "Learning",
"price": 10000,
"prereq": {
"level": 12,
"tank": false,
"skill": false,
"upgrade": [
"Cooking Learning Speed III"
],
"achievement": [],
"quest": false
}
},
"learntime-cooking-5": {
"name": "Cooking Learning Speed V",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/184_1340040760_l.png",
"description": "Speed up the learning times for Cooking skills (EZ Cooking, Cheffery, Grilling, Master Chef, Saucery, Blending, Cocktail Crafting) by 20%.",
"category": "Learning",
"price": 20000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Cooking Learning Speed IV"
],
"achievement": [],
"quest": false
}
},
"learntime-gathering-1": {
"name": "Gathering Learning Speed I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/190_1340040771_l.png",
"description": "Speed up the learning times for Gathering skills (Arborology, Bog Specialization, Jellisac Hands, Fruit Changing, Spice Milling, Gasmogrification, Bubble Tuning) by 2%.",
"category": "Learning",
"price": 400,
"prereq": {
"level": 4,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"learntime-gathering-2": {
"name": "Gathering Learning Speed II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/191_1340040772_l.png",
"description": "Speed up the learning times for Gathering skills (Arborology, Bog Specialization, Jellisac Hands, Fruit Changing, Spice Milling, Gasmogrification, Bubble Tuning) by 5%.",
"category": "Learning",
"price": 1250,
"prereq": {
"level": 6,
"tank": false,
"skill": false,
"upgrade": [
"Gathering Learning Speed I"
],
"achievement": [],
"quest": false
}
},
"learntime-gathering-3": {
"name": "Gathering Learning Speed III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/192_1340040774_l.png",
"description": "Speed up the learning times for Gathering skills (Arborology, Bog Specialization, Jellisac Hands, Fruit Changing, Spice Milling, Gasmogrification, Bubble Tuning) by 10%.",
"category": "Learning",
"price": 5000,
"prereq": {
"level": 8,
"tank": false,
"skill": false,
"upgrade": [
"Gathering Learning Speed II"
],
"achievement": [],
"quest": false
}
},
"learntime-gathering-4": {
"name": "Gathering Learning Speed IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/193_1340040775_l.png",
"description": "Speed up the learning times for Gathering skills (Arborology, Bog Specialization, Jellisac Hands, Fruit Changing, Spice Milling, Gasmogrification, Bubble Tuning) by 15%.",
"category": "Learning",
"price": 10000,
"prereq": {
"level": 12,
"tank": false,
"skill": false,
"upgrade": [
"Gathering Learning Speed III"
],
"achievement": [],
"quest": false
}
},
"learntime-gathering-5": {
"name": "Gathering Learning Speed V",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/194_1340040777_l.png",
"description": "Speed up the learning times for Gathering skills (Arborology, Bog Specialization, Jellisac Hands, Fruit Changing, Spice Milling, Gasmogrification, Bubble Tuning) by 20%.",
"category": "Learning",
"price": 20000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Gathering Learning Speed IV"
],
"achievement": [],
"quest": false
}
},
"learntime-growing-1": {
"name": "Growing Learning Speed I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/185_1340040762_l.png",
"description": "Speed up the learning times for Growing skills (Botany, Light Green Thumb, Soil Appreciation, Croppery, Herbalism) by 2%.",
"category": "Learning",
"price": 400,
"prereq": {
"level": 4,
"tank": false,
"skill": "Light Green Thumb 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"learntime-growing-2": {
"name": "Growing Learning Speed II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/186_1340040764_l.png",
"description": "Speed up the learning times for Growing skills (Botany, Light Green Thumb, Soil Appreciation, Croppery, Herbalism) by 5%.",
"category": "Learning",
"price": 1250,
"prereq": {
"level": 6,
"tank": false,
"skill": false,
"upgrade": [
"Growing Learning Speed I"
],
"achievement": [],
"quest": false
}
},
"learntime-growing-3": {
"name": "Growing Learning Speed III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/187_1340040766_l.png",
"description": "Speed up the learning times for Growing skills (Botany, Light Green Thumb, Soil Appreciation, Croppery, Herbalism) by 10%.",
"category": "Learning",
"price": 5000,
"prereq": {
"level": 8,
"tank": false,
"skill": false,
"upgrade": [
"Growing Learning Speed II"
],
"achievement": [],
"quest": false
}
},
"learntime-growing-4": {
"name": "Growing Learning Speed IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/188_1340040768_l.png",
"description": "Speed up the learning times for Growing skills (Botany, Light Green Thumb, Soil Appreciation, Croppery, Herbalism) by 15%.",
"category": "Learning",
"price": 10000,
"prereq": {
"level": 12,
"tank": false,
"skill": false,
"upgrade": [
"Growing Learning Speed III"
],
"achievement": [],
"quest": false
}
},
"learntime-growing-5": {
"name": "Growing Learning Speed V",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/189_1340040769_l.png",
"description": "Speed up the learning times for Growing skills (Botany, Light Green Thumb, Soil Appreciation, Croppery, Herbalism) by 20%.",
"category": "Learning",
"price": 20000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Growing Learning Speed IV"
],
"achievement": [],
"quest": false
}
},
"learntime-industrial-1": {
"name": "Industrial Learning Speed I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/195_1340040779_l.png",
"description": "Speed up the learning times for Industrial skills (Mining, Refining, Tinkering, Engineering, Blockmaking, Furnituremaking, Fiber Arts, and similar skills) by 2%.",
"category": "Learning",
"price": 400,
"prereq": {
"level": 4,
"tank": false,
"skill": "Tinkering 1",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"learntime-industrial-2": {
"name": "Industrial Learning Speed II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/196_1340040780_l.png",
"description": "Speed up the learning times for Industrial skills (Mining, Refining, Tinkering, Engineering, Blockmaking, Furnituremaking, Fiber Arts, and similar skills) by 5%.",
"category": "Learning",
"price": 1250,
"prereq": {
"level": 6,
"tank": false,
"skill": false,
"upgrade": [
"Industrial Learning Speed I"
],
"achievement": [],
"quest": false
}
},
"learntime-industrial-3": {
"name": "Industrial Learning Speed III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/197_1340040782_l.png",
"description": "Speed up the learning times for Industrial skills (Mining, Refining, Tinkering, Engineering, Blockmaking, Furnituremaking, Fiber Arts, and similar skills) by 10%.",
"category": "Learning",
"price": 5000,
"prereq": {
"level": 8,
"tank": false,
"skill": false,
"upgrade": [
"Industrial Learning Speed II"
],
"achievement": [],
"quest": false
}
},
"learntime-industrial-4": {
"name": "Industrial Learning Speed IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/198_1340040785_l.png",
"description": "Speed up the learning times for Industrial skills (Mining, Refining, Tinkering, Engineering, Blockmaking, Furnituremaking, Fiber Arts, and similar skills) by 15%.",
"category": "Learning",
"price": 10000,
"prereq": {
"level": 12,
"tank": false,
"skill": false,
"upgrade": [
"Industrial Learning Speed III"
],
"achievement": [],
"quest": false
}
},
"learntime-industrial-5": {
"name": "Industrial Learning Speed V",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/199_1340040786_l.png",
"description": "Speed up the learning times for Industrial skills (Mining, Refining, Tinkering, Engineering, Blockmaking, Furnituremaking, Fiber Arts, and similar skills) by 20%.",
"category": "Learning",
"price": 20000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Industrial Learning Speed IV"
],
"achievement": [],
"quest": false
}
},
"learntime-intellectual-1": {
"name": "Intellectual Learning Speed I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/200_1340040788_l.png",
"description": "Speed up the learning times for Intellectual skills (Bureaucratic Arts, Meditative Arts, Teleportation, Eyeballery, Penpersonship, Piety and similar skills) by 2%.",
"category": "Learning",
"price": 400,
"prereq": {
"level": 4,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"learntime-intellectual-2": {
"name": "Intellectual Learning Speed II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/201_1340040790_l.png",
"description": "Speed up the learning times for Intellectual skills (Bureaucratic Arts, Meditative Arts, Teleportation, Eyeballery, Penpersonship, Piety and similar skills) by 5%.",
"category": "Learning",
"price": 1250,
"prereq": {
"level": 6,
"tank": false,
"skill": false,
"upgrade": [
"Intellectual Learning Speed I"
],
"achievement": [],
"quest": false
}
},
"learntime-intellectual-3": {
"name": "Intellectual Learning Speed III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/202_1340040791_l.png",
"description": "Speed up the learning times for Intellectual skills (Bureaucratic Arts, Meditative Arts, Teleportation, Eyeballery, Penpersonship, Piety and similar skills) by 10%.",
"category": "Learning",
"price": 5000,
"prereq": {
"level": 8,
"tank": false,
"skill": false,
"upgrade": [
"Intellectual Learning Speed II"
],
"achievement": [],
"quest": false
}
},
"learntime-intellectual-4": {
"name": "Intellectual Learning Speed IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/203_1340040793_l.png",
"description": "Speed up the learning times for Intellectual skills (Bureaucratic Arts, Meditative Arts, Teleportation, Eyeballery, Penpersonship, Piety and similar skills) by 15%.",
"category": "Learning",
"price": 10000,
"prereq": {
"level": 12,
"tank": false,
"skill": false,
"upgrade": [
"Intellectual Learning Speed III"
],
"achievement": [],
"quest": false
}
},
"learntime-intellectual-5": {
"name": "Intellectual Learning Speed V",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/204_1340040794_l.png",
"description": "Speed up the learning times for Intellectual skills (Bureaucratic Arts, Meditative Arts, Teleportation, Eyeballery, Penpersonship, Piety and similar skills) by 20%.",
"category": "Learning",
"price": 20000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Intellectual Learning Speed IV"
],
"achievement": [],
"quest": false
}
},
"unlearning-time-2": {
"name": "Speedier Unlearning",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/210_1340040804_l.png",
"description": "Reduce your Unlearning Time by 50%.",
"category": "Learning",
"price": 7500,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Speedy Unlearning"
],
"achievement": [],
"quest": false
}
},
"unlearning-time-1": {
"name": "Speedy Unlearning",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/209_1340040803_l.png",
"description": "Reduce your Unlearning Time by 25%.",
"category": "Learning",
"price": 5000,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Unlearning Ability"
],
"achievement": [],
"quest": false
}
},
"unlearning-ability": {
"name": "Unlearning Ability",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/208_1340040801_l.png",
"description": "Need to free up your brain for better skills? You can now unlearn a skill at the same rate that it took to learn it.",
"category": "Learning",
"price": 3000,
"prereq": {
"level": 10,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"appreciation-of-food-variety": {
"name": "Appreciation of Food Variety",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/310_1342480954_l.png",
"description": "Each crafted meal which you have not eaten for a full game day (four real hours) grants 25% of its energy value as an iMG bonus. Bonus doubled if you have not eaten it for 30 game days.",
"category": "Perks",
"price": 500,
"prereq": {
"level": 3,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"jump-triple-1": {
"name": "Baby Triple Jump",
"image": "http://c2.glitch.bz/upgrades/2012-07-29/30_1343588626_l.png",
"description": "This is the \"starter\" Triple Jump. Try it on for size! Usage instructions: jump right after you land three times in a row and … boing!",
"category": "Perks",
"price": 100,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Mappery"
],
"achievement": [],
"quest": false
}
},
"bargain-driver": {
"name": "Bargain Driver",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/303_1342464745_l.png",
"description": "Drive that bargain! Vendor prices lowered by 5%.",
"category": "Perks",
"price": 5000,
"prereq": {
"level": 13,
"tank": false,
"skill": false,
"upgrade": [
"Beginner Haggler"
],
"achievement": [],
"quest": false
}
},
"snapshottery-basic-filter-pack": {
"name": "Basic Filter Pack",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/276_1340040914_l.png",
"description": "Upgrade your camera with the Boost, B&W and Historic filters to spiff up your Snaps!",
"category": "Perks",
"price": 300,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery"
],
"achievement": [],
"quest": false
}
},
"beginner-haggler": {
"name": "Beginner Haggler",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/302_1342464723_l.png",
"description": "Get haggling! Vendor prices are lowered by 2%.",
"category": "Perks",
"price": 2000,
"prereq": {
"level": 9,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"jump-triple-3": {
"name": "Big 'Un Triple Jump",
"image": "http://c2.glitch.bz/upgrades/2012-07-30/32_1343715141_l.png",
"description": "Oh my - what a Triple Jump it is. Boundless and bountiful! Can you handle it?",
"category": "Perks",
"price": 15000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Medium Triple Jump"
],
"achievement": [],
"quest": false
}
},
"camera-mode": {
"name": "Camera Mode",
"image": "http://c2.glitch.bz/upgrades/2012-07-26/287_1343333175_l.png",
"description": "Camera mode gives you the ability to peek around the level a bit without moving. When you're in Camera Mode, arrow keys pan the camera around your location. Easy — and it works great with Zoomability!",
"category": "Perks",
"price": 75,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"High Jumper II"
],
"achievement": [],
"quest": false
}
},
"encyclopeddling": {
"name": "Encyclopeddling",
"image": "http://c2.glitch.bz/upgrades/2012-07-26/289_1343366696_l.png",
"description": "The universe of Glitch is deep and broad (and a little bit tubby). Getting to know it all can be hard. Encyclopeddling aids the process of discovery by giving you instant info on each new item.",
"category": "Perks",
"price": 90,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Mappery"
],
"achievement": [],
"quest": false
}
},
"fast-talker": {
"name": "Fast Talker",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/306_1342464530_l.png",
"description": "Get more for what you paid for. Vendor buyback prices are 2% higher.",
"category": "Perks",
"price": 10000,
"prereq": {
"level": 11,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"quest-reward-bonus-1": {
"name": "Fit for a King I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/40_1340040481_l.png",
"description": "Improve your Quest rewards by 2%.",
"category": "Perks",
"price": 200,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"quest-reward-bonus-2": {
"name": "Fit for a King II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/41_1340040484_l.png",
"description": "Improve your Quest rewards by 4%.",
"category": "Perks",
"price": 400,
"prereq": {
"level": 7,
"tank": false,
"skill": false,
"upgrade": [
"Fit for a King I"
],
"achievement": [],
"quest": false
}
},
"quest-reward-bonus-3": {
"name": "Fit for a King III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/42_1340040486_l.png",
"description": "Improve your Quest rewards by 6%.",
"category": "Perks",
"price": 600,
"prereq": {
"level": 9,
"tank": false,
"skill": false,
"upgrade": [
"Fit for a King II"
],
"achievement": [],
"quest": false
}
},
"quest-reward-bonus-4": {
"name": "Fit for a King IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/43_1340040488_l.png",
"description": "Improve your Quest rewards by 8%.",
"category": "Perks",
"price": 800,
"prereq": {
"level": 12,
"tank": false,
"skill": false,
"upgrade": [
"Fit for a King III"
],
"achievement": [],
"quest": false
}
},
"quest-reward-bonus-5": {
"name": "Fit for a King V",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/44_1340040490_l.png",
"description": "Improve your quest rewards by 10%.",
"category": "Perks",
"price": 1200,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Fit for a King IV"
],
"achievement": [],
"quest": false
}
},
"giants-beloved-1": {
"name": "Giants' Beloved I",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/291_1342470850_l.png",
"description": "Open your mind. 10% greater chance of receiving Giant Love from an Icon.",
"category": "Perks",
"price": 5000,
"prereq": {
"level": 20,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"giants-beloved-2": {
"name": "Giants' Beloved II",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/292_1342470896_l.png",
"description": "Open your heart. Altogether 20% greater chance of receiving Giant Love from an Icon.",
"category": "Perks",
"price": 12000,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Giants' Beloved I"
],
"achievement": [],
"quest": false
}
},
"giants-beloved-3": {
"name": "Giants' Beloved III",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/293_1342470909_l.png",
"description": "Open your third eye. A total of 30% greater chance of receiving Giant Love from an Icon.",
"category": "Perks",
"price": 25000,
"prereq": {
"level": 32,
"tank": false,
"skill": false,
"upgrade": [
"Giants' Beloved II"
],
"achievement": [],
"quest": false
}
},
"harry-the-haggler": {
"name": "Harry the Haggler",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/305_1342464775_l.png",
"description": "Value is your new middle name! Vendor prices lowered by 10%.",
"category": "Perks",
"price": 15000,
"prereq": {
"level": 21,
"tank": false,
"skill": false,
"upgrade": [
"Price Dropper"
],
"achievement": [],
"quest": false
}
},
"jump-1": {
"name": "High Jumper I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/23_1340040449_l.png",
"description": "Only a simple boost from the merest beginner jump — however, this upgrade allows you to easily clear those pesky mushroom tops.",
"category": "Perks",
"price": 3,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"jump-2": {
"name": "High Jumper II",
"image": "http://c2.glitch.bz/upgrades/2012-07-25/24_1343247712_l.png",
"description": "This is a comfortable jump height. Not too small, certainly: it's just about right!",
"category": "Perks",
"price": 6,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Walk Speed I"
],
"achievement": [],
"quest": false
}
},
"jump-3": {
"name": "High Jumper III",
"image": "http://c2.glitch.bz/upgrades/2012-07-30/25_1343715099_l.png",
"description": "This is the jump you've been waiting for: an incredible \"little bit\" higher than the classic Glitchen jump height! BOING!",
"category": "Perks",
"price": 15000,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Big 'Un Triple Jump"
],
"achievement": [],
"quest": false
}
},
"iconically-thrifty-1": {
"name": "Iconically Thrifty I",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/294_1342470923_l.png",
"description": "Giants recognize your pious efforts. Tithing Icons now costs 3% less than normal.",
"category": "Perks",
"price": 1000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"iconically-thrifty-2": {
"name": "Iconically Thrifty II",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/295_1342470942_l.png",
"description": "Continued worship produces results. Tithing Icons now costs 5% less than normal.",
"category": "Perks",
"price": 3000,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Iconically Thrifty I"
],
"achievement": [],
"quest": false
}
},
"iconically-thrifty-3": {
"name": "Iconically Thrifty III",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/296_1342470957_l.png",
"description": "Your radiant worship is paying off. Tithing Icons now costs 10% less than normal.",
"category": "Perks",
"price": 10000,
"prereq": {
"level": 25,
"tank": false,
"skill": false,
"upgrade": [
"Iconically Thrifty II"
],
"achievement": [],
"quest": false
}
},
"iconically-thrifty-4": {
"name": "Iconically Thrifty IV",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/297_1342470982_l.png",
"description": "Membership is its own reward. As a bonus, tithing now costs a whopping 20% less than normal.",
"category": "Perks",
"price": 35000,
"prereq": {
"level": 31,
"tank": false,
"skill": false,
"upgrade": [
"Iconically Thrifty III"
],
"achievement": [],
"quest": false
}
},
"levitation-time": {
"name": "Levitate Longer",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/109_1340040615_l.png",
"description": "Levitate longer pretty much explains it. You'll be able to levitate for a longer period of time. Capiche?",
"category": "Perks",
"price": 2000,
"prereq": {
"level": false,
"tank": false,
"skill": "Levitation",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"levitation-physics": {
"name": "Levitate with Style",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/110_1340040617_l.png",
"description": "This upgrade makes your hang time longer when you Levitate.",
"category": "Perks",
"price": 5000,
"prereq": {
"level": false,
"tank": false,
"skill": "Levitation",
"upgrade": [],
"achievement": [],
"quest": false
}
},
"mappery": {
"name": "Mappery",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/285_1342465282_l.png",
"description": "Mappery is a generous dose of spatial knowhow: a minimap of your current location and a searchable area map which allows you to set destinations and get street-by-street directions.",
"category": "Perks",
"price": 20,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"High Jumper I"
],
"achievement": [],
"quest": false
}
},
"jump-triple-2": {
"name": "Medium Triple Jump",
"image": "http://c2.glitch.bz/upgrades/2012-07-30/31_1343715184_l.png",
"description": "A bigger Triple Jump - adequate, but not necessarily amazing.",
"category": "Perks",
"price": 1500,
"prereq": {
"level": 10,
"tank": false,
"skill": false,
"upgrade": [
"Baby Triple Jump"
],
"achievement": [],
"quest": false
}
},
"achievement-reward-bonus-1": {
"name": "Overachiever I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/45_1340040492_l.png",
"description": "Get 2% more rewards from each Achievement you earn. One less thing for the bucket list!",
"category": "Perks",
"price": 250,
"prereq": {
"level": 4,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"achievement-reward-bonus-2": {
"name": "Overachiever II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/46_1340040494_l.png",
"description": "More goodies for you, goodie two-shoes. Earn 4% more rewards from each Achievement.",
"category": "Perks",
"price": 500,
"prereq": {
"level": 6,
"tank": false,
"skill": false,
"upgrade": [
"Overachiever I"
],
"achievement": [],
"quest": false
}
},
"achievement-reward-bonus-3": {
"name": "Overachiever III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/47_1340040496_l.png",
"description": "Dang! You're so achieving, your report card is jealous. Earn 6% more rewards from each Achievement.",
"category": "Perks",
"price": 750,
"prereq": {
"level": 8,
"tank": false,
"skill": false,
"upgrade": [
"Overachiever II"
],
"achievement": [],
"quest": false
}
},
"achievement-reward-bonus-4": {
"name": "Overachiever IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/48_1340040498_l.png",
"description": "It's not the journey, it's the destination! Earn 8% more rewards from each Achievement.",
"category": "Perks",
"price": 1000,
"prereq": {
"level": 11,
"tank": false,
"skill": false,
"upgrade": [
"Overachiever III"
],
"achievement": [],
"quest": false
}
},
"achievement-reward-bonus-5": {
"name": "Overachiever V",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/49_1340040500_l.png",
"description": "Time to find a new obsession, Type A. With this upgrade, you'll earn 10% more rewards from each Achievement.",
"category": "Perks",
"price": 1500,
"prereq": {
"level": 14,
"tank": false,
"skill": false,
"upgrade": [
"Overachiever IV"
],
"achievement": [],
"quest": false
}
},
"ancestral-lands-time-1": {
"name": "Prepared For Ancestral Nostalgia I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/274_1340040910_l.png",
"description": "Be prepared for the onset of the Ancestral Nostalgia: gain an extra minute to spend in the Ancestral lands (in the regions of Baqala, Xalanga, Choru or Zhambu).",
"category": "Perks",
"price": 12000,
"prereq": {
"level": 18,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": "Baqalic Caesura"
}
},
"ancestral-lands-time-2": {
"name": "Prepared For Ancestral Nostalgia II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/275_1340040912_l.png",
"description": "Gain a second extra minute to spend in the Ancestral lands for a total of twelve glorious minutes.",
"category": "Perks",
"price": 25000,
"prereq": {
"level": 25,
"tank": false,
"skill": false,
"upgrade": [
"Prepared For Ancestral Nostalgia I"
],
"achievement": [],
"quest": false
}
},
"price-dropper": {
"name": "Price Dropper",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/304_1342464759_l.png",
"description": "Keep pushing that line! Vendor prices lowered by 7%.",
"category": "Perks",
"price": 8000,
"prereq": {
"level": 17,
"tank": false,
"skill": false,
"upgrade": [
"Bargain Driver"
],
"achievement": [],
"quest": false
}
},
"daily-quoin-limit-1": {
"name": "Quoiner the Market I",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/34_1340040470_l.png",
"description": "Expand your daily quoin limit from 100 to 110.",
"category": "Perks",
"price": 1500,
"prereq": {
"level": 10,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"daily-quoin-limit-2": {
"name": "Quoiner the Market II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/35_1340040472_l.png",
"description": "Expand your daily quoin limit by another 10 coins to 120.",
"category": "Perks",
"price": 2000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Quoiner the Market I"
],
"achievement": [],
"quest": false
}
},
"daily-quoin-limit-3": {
"name": "Quoiner the Market III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/36_1340040474_l.png",
"description": "Upgrade your daily quoin limit by another 10 coins to 130. That's alotta quoins!",
"category": "Perks",
"price": 2500,
"prereq": {
"level": 20,
"tank": false,
"skill": false,
"upgrade": [
"Quoiner the Market II"
],
"achievement": [],
"quest": false
}
},
"daily-quoin-limit-4": {
"name": "Quoiner the Market IV",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/37_1340040476_l.png",
"description": "Bump your quoin limit to 140. Almost at the max...",
"category": "Perks",
"price": 3500,
"prereq": {
"level": 25,
"tank": false,
"skill": false,
"upgrade": [
"Quoiner the Market III"
],
"achievement": [],
"quest": false
}
},
"daily-quoin-limit-5": {
"name": "Quoiner the Market V",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/38_1340040478_l.png",
"description": "Max quoin limit: 150 a day. Quoin-a-riffic!",
"category": "Perks",
"price": 5000,
"prereq": {
"level": 30,
"tank": false,
"skill": false,
"upgrade": [
"Quoiner the Market IV"
],
"achievement": [],
"quest": false
}
},
"rube-chance-to-meet": {
"name": "Rube Radar",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/5_1340040409_l.png",
"description": "Double your chances of meeting The Rube.",
"category": "Perks",
"price": 5000,
"prereq": {
"level": 14,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"rube-better-items": {
"name": "Rube's Favorite",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/4_1340040407_l.png",
"description": "You're nobody's chump! The Rube will no longer offer you cheap items after this upgrade.",
"category": "Perks",
"price": 5000,
"prereq": {
"level": 10,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"skill-learning": {
"name": "Skill Learning Brain",
"image": "http://c2.glitch.bz/upgrades/2012-07-25/288_1343272552_l.png",
"description": "Enables the learning of new skills and bestows a skill learning brain with an initial capacity for 20 skills.",
"category": "Perks",
"price": 500,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Mappery"
],
"achievement": [],
"quest": false
}
},
"snapshottery-filter-ancient": {
"name": "Snaps Filter Ancient",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/245_1340040859_l.png",
"description": "Upgrade your camera with the Ancient filter to age your Snaps!",
"category": "Perks",
"price": 150,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery",
"Basic Filter Pack"
],
"achievement": [],
"quest": false
}
},
"snapshottery-filter-beryl": {
"name": "Snaps Filter Beryl",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/243_1340040856_l.png",
"description": "Upgrade your camera with the Beryl filter to blue-tint your Snaps!",
"category": "Perks",
"price": 150,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery",
"Basic Filter Pack"
],
"achievement": [],
"quest": false
}
},
"snapshottery-filter-chilliwack": {
"name": "Snaps Filter Chilliwack",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/237_1340040849_l.png",
"description": "Upgrade your camera with the Chilliwack filter to chill out your Snaps!",
"category": "Perks",
"price": 150,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery",
"Basic Filter Pack"
],
"achievement": [],
"quest": false
}
},
"snapshottery-filter-dither": {
"name": "Snaps Filter Dither",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/238_1340040850_l.png",
"description": "Upgrade your camera with the Dither filter for printed looking Snaps!",
"category": "Perks",
"price": 150,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery",
"Basic Filter Pack"
],
"achievement": [],
"quest": false
}
},
"snapshottery-filter-firefly": {
"name": "Snaps Filter Firefly",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/244_1340040857_l.png",
"description": "Upgrade your camera with the Firefly filter for taking glow-y Snaps!",
"category": "Perks",
"price": 150,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery",
"Basic Filter Pack"
],
"achievement": [],
"quest": false
}
},
"snapshottery-filter-holga": {
"name": "Snaps Filter Holga",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/248_1340040864_l.png",
"description": "Upgrade your camera with the Holga filter to vignette your Snaps!",
"category": "Perks",
"price": 150,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery",
"Basic Filter Pack"
],
"achievement": [],
"quest": false
}
},
"snapshottery-filter-outline": {
"name": "Snaps Filter Outline",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/251_1340040870_l.png",
"description": "Upgrade your camera with the Outline filter for drawn-looking Snaps!",
"category": "Perks",
"price": 150,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery",
"Basic Filter Pack"
],
"achievement": [],
"quest": false
}
},
"snapshottery-filter-piggy": {
"name": "Snaps Filter Piggy",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/242_1340040854_l.png",
"description": "Upgrade your camera with the Piggy filter to pinken-up your Snaps!",
"category": "Perks",
"price": 150,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery",
"Basic Filter Pack"
],
"achievement": [],
"quest": false
}
},
"snapshottery-filter-shift": {
"name": "Snaps Filter Shift",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/250_1340040868_l.png",
"description": "Upgrade your camera with the Shift filter to color-shift your Snaps!",
"category": "Perks",
"price": 150,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery",
"Basic Filter Pack"
],
"achievement": [],
"quest": false
}
},
"snapshottery-filter-vintage": {
"name": "Snaps Filter Vintage",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/241_1340040853_l.png",
"description": "Upgrade your camera with the Vintage filter for old-time Snaps!",
"category": "Perks",
"price": 150,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Snapshottery",
"Basic Filter Pack"
],
"achievement": [],
"quest": false
}
},
"snapshotting": {
"name": "Snapshottery",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/216_1340040813_l.png",
"description": "Gives you the ability to use your Camera to take pictures (or Snaps) and share them with the world!",
"category": "Perks",
"price": 500,
"prereq": {
"level": 5,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"periodic-mood-loss-reduced-1": {
"name": "Steady On, Mood Loser",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/234_1340040844_l.png",
"description": "A reduction in your periodic mood loss: mood drops from peak highs are 1/6th slower than the natural rate.",
"category": "Perks",
"price": 7500,
"prereq": {
"level": false,
"tank": 600,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"periodic-mood-loss-reduced-2": {
"name": "Steady On, Mood Loser II",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/235_1340040845_l.png",
"description": "A reduction in your periodic mood loss: mood drops from peak highs are 1/3rd slower than the natural rate.",
"category": "Perks",
"price": 15000,
"prereq": {
"level": false,
"tank": 1200,
"skill": false,
"upgrade": [
"Steady On, Mood Loser"
],
"achievement": [],
"quest": false
}
},
"periodic-mood-loss-reduced-3": {
"name": "Steady On, Mood Loser III",
"image": "http://c2.glitch.bz/upgrades/2012-06-18/236_1340040847_l.png",
"description": "A reduction in your periodic mood loss: natural mood drops from peak highs are only half as fast as the natural rate.",
"category": "Perks",
"price": 35000,
"prereq": {
"level": false,
"tank": 2000,
"skill": false,
"upgrade": [
"Steady On, Mood Loser II"
],
"achievement": [],
"quest": false
}
},
"the-real-rube": {
"name": "The Real Rube",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/308_1342464628_l.png",
"description": "Practically new, you say? Vendor buyback prices are 7% higher.",
"category": "Perks",
"price": 50000,
"prereq": {
"level": 19,
"tank": false,
"skill": false,
"upgrade": [
"Wheeler Dealer"
],
"achievement": [],
"quest": false
}
},
"trade-channel": {
"name": "Trade Channelling",
"image": "http://c2.glitch.bz/upgrades/2012-07-12/284_1342132389_l.png",
"description": "Gives access to the \"Trade Channel\" a game-wide chat channel for buyers to find those selling the things they want to buy, and also the same thing but the other way around.",
"category": "Perks",
"price": 200,
"prereq": {
"level": 3,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"ultimate-closer": {
"name": "Ultimate Closer",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/309_1342464647_l.png",
"description": "Flip it, baby! Vendor buyback prices are 10% higher.",
"category": "Perks",
"price": 100000,
"prereq": {
"level": 23,
"tank": false,
"skill": false,
"upgrade": [
"The Real Rube"
],
"achievement": [],
"quest": false
}
},
"walk-speed-1": {
"name": "Walk Speed I",
"image": "http://c2.glitch.bz/upgrades/2012-07-10/17_1341911853_l.png",
"description": "Truly the minimum acceptable walk speed. Anything else is maddening. You really MUST get this upgrade.",
"category": "Perks",
"price": 2,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"walk-speed-2": {
"name": "Walk Speed II",
"image": "http://c2.glitch.bz/upgrades/2012-07-25/18_1343247706_l.png",
"description": "A decently brisk speed, though still slightly slower than the average mature Glitch.",
"category": "Perks",
"price": 6,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [],
"achievement": [],
"quest": false
}
},
"walk-speed-3": {
"name": "Walk Speed III",
"image": "http://c2.glitch.bz/upgrades/2012-07-10/19_1341911870_l.png",
"description": "This is the tin standard — the most common walking speed, the one the Giants intended as the speed at which a Glitch walks.",
"category": "Perks",
"price": 250,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Walk Speed II"
],
"achievement": [
"Junior OK Explorer"
],
"quest": false
}
},
"walk-speed-4": {
"name": "Walk Speed IV",
"image": "http://c2.glitch.bz/upgrades/2012-07-30/20_1343715220_l.png",
"description": "Snappy walk speed that puts you slightly ahead of the pack. Just slightly. But, enough to notice.",
"category": "Perks",
"price": 20000,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Walk Speed III"
],
"achievement": [
"Rambler, First Class"
],
"quest": false
}
},
"wheeler-dealer": {
"name": "Wheeler Dealer",
"image": "http://c2.glitch.bz/upgrades/2012-07-16/307_1342464606_l.png",
"description": "Who said it was used? Vendor buyback prices are 5% higher.",
"category": "Perks",
"price": 25000,
"prereq": {
"level": 15,
"tank": false,
"skill": false,
"upgrade": [
"Fast Talker"
],
"achievement": [],
"quest": false
}
},
"zoomability": {
"name": "Zoomability",
"image": "http://c2.glitch.bz/upgrades/2012-07-26/286_1343333176_l.png",
"description": "Zooming … how does one live without it?! Zoomability let's you zoom your view of the game in and out to get the whole picture. Works very well with Camera Mode!",
"category": "Perks",
"price": 75,
"prereq": {
"level": false,
"tank": false,
"skill": false,
"upgrade": [
"Walk Speed II"
],
"achievement": [],
"quest": false
}
}
}
@FunniestGuy
Copy link

go pico yeah yeah go pico go

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment