Tweak prices

This commit is contained in:
2024-02-13 11:25:07 +01:00
parent 3dfe496d52
commit fc219b6a33
2 changed files with 18 additions and 18 deletions

View File

@@ -177,15 +177,15 @@ void getEntityCost(EntityType type, i32 cost[RES_COUNT]) {
}
switch (type) {
case ENTITY_WORKER:
cost[RES_FOOD] = 50;
cost[RES_FOOD] = 20;
break;
case ENTITY_SOLDIER:
cost[RES_FOOD] = 50;
cost[RES_GOLD] = 50;
cost[RES_FOOD] = 10;
cost[RES_GOLD] = 20;
break;
case ENTITY_WARRIOR:
cost[RES_FOOD] = 200;
cost[RES_GOLD] = 100;
cost[RES_FOOD] = 20;
cost[RES_GOLD] = 50;
break;
default:;
}