Skip to content

Instantly share code, notes, and snippets.

@ehudros
Last active August 29, 2015 14:07
Show Gist options
  • Save ehudros/976b794724a2127de12d to your computer and use it in GitHub Desktop.
Save ehudros/976b794724a2127de12d to your computer and use it in GitHub Desktop.
{
"planets": {
"Candy": {
"zones": {
"GoldProduction": {
"upgrades": [
{
"upgradeType": "GoldPerSecond",
"price": 1000,
"value": 1,
"cap": 3,
"description": "an upgrade"
},
{
"value": 2,
"price": 5000
},
{
"value": 3.5,
"price": 10000
}
]
},
"Special": {
"upgrades": [
{
"upgradeType": "GoldPerSecond",
"value": 10,
"price": 1000
},
{
"upgradeType": "GoldPerSecond",
"value": 20,
"price": 5000
},
{
"upgradeType": "GoldPerSecond",
"value": 30,
"price": 10000
}
]
},
"GoldStorage": {
"upgrades": [
{
"upgradeType": "MaxGold",
"value": 100000,
"price": 10000
},
{
"upgradeType": "MaxGold",
"value": 200000,
"price": 50000
},
{
"upgradeType": "MaxGold",
"value": 300000,
"price": 100000
}
]
},
"CreatureDen": {
"upgrades": [
{
"upgradeType": "Damage",
"value": 0.01,
"price": 10000
},
{
"upgradeType": "Damage",
"value": 0.02,
"price": 50000
},
{
"upgradeType": "Damage",
"value": 0.03,
"price": 100000
}
]
},
"Defense": {
"upgrades": [
{
"upgradeType": "HP",
"value": 10000,
"price": 100000
},
{
"upgradeType": "HP",
"value": 20000,
"price": 100000
},
{
"upgradeType": "HP",
"value": 30000,
"price": 100000
}
]
}
}
}
},
"creature": {
"levels": [
{
"xp": 0,
"damage": 10
},
{
"xp": 10,
"damage": 15
},
{
"xp": 100,
"damage": 30
}
]
}
}
{
"id" : "1",
"serverTime" : 100,
"planets" : [
{
"name" : "Spooky",
"zones" : {
"GoldProduction" : 0,
"GoldStorage" : 1,
"Defense" : 1,
"Creature" : 1,
"Special" : 1
}
},
{
"name" : "Candy",
"zones" : {
"GoldProduction" : 0,
"GoldStorage" : 1,
"Defense" : 1,
"Creature" : 1,
"Special" : 1
}
}
],
"goldBalance" : 540,
"gps" : 20,
"health" : 200,
"damage" : 150,
"lastGoldCollectionTime" : 1412494760,
"creatureXP" : 7800,
"creatureLevel" : 3,
"spinsBalance" : 4,
"spinsMax" : 4,
"spinRefillTime" : 400,
"energyBalance" : 4,
"energyMax" : 4,
"energyRefillTime" : 400,
"gemsBalance" : 4,
"activeBuffs" : [
{
"upgradeType" : "Damage",
"operator" : "Multiply",
"value" : 2,
"expiryTime" : 34533
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment