Equipment is being read from the database and displayed

This commit is contained in:
2019-06-01 04:50:23 +10:00
parent 29e86e4032
commit 13842a5da9
9 changed files with 343 additions and 130 deletions
+9 -9
View File
@@ -1,15 +1,15 @@
{
"Weapons": {
"Stick": { "cost": 50, "combatBoost": 0.02, "scientistsRequired": 1 },
"Dagger": { "cost": 75, "combatBoost": 0.03, "scientistsRequired": 2 },
"Sword": { "cost": 100, "combatBoost": 0.04, "scientistsRequired": 3 },
"Longsword": { "cost": 150, "combatBoost": 0.05, "scientistsRequired": 4 },
"Frying Pan": { "cost": 200, "combatBoost": 0.06, "scientistsRequired": 5 }
"Stick": { "cost": 50, "combatBoost": 0.02, "scientistsRequired": 1, "purchasable": true },
"Dagger": { "cost": 75, "combatBoost": 0.03, "scientistsRequired": 2, "purchasable": true },
"Sword": { "cost": 100, "combatBoost": 0.04, "scientistsRequired": 3, "purchasable": true },
"Longsword": { "cost": 150, "combatBoost": 0.05, "scientistsRequired": 4, "purchasable": true },
"Frying Pan": { "cost": 200, "combatBoost": 0.06, "scientistsRequired": 5, "purchasable": true }
},
"Armour": {
"Leather": { "cost": 75, "combatBoost": 0.02, "scientistsRequired": 2 },
"Gambeson": { "cost": 100, "combatBoost": 0.03, "scientistsRequired": 3 },
"Chainmail": { "cost": 150, "combatBoost": 0.04, "scientistsRequired": 4 },
"Platemail": { "cost": 200, "combatBoost": 0.05, "scientistsRequired": 5 }
"Leather": { "cost": 75, "combatBoost": 0.02, "scientistsRequired": 2, "purchasable": true },
"Gambeson": { "cost": 100, "combatBoost": 0.03, "scientistsRequired": 3, "purchasable": true },
"Chainmail": { "cost": 150, "combatBoost": 0.04, "scientistsRequired": 4, "purchasable": true },
"Platemail": { "cost": 200, "combatBoost": 0.05, "scientistsRequired": 5, "purchasable": true }
}
}