MAJOR: Strategic Planning - Pricing €10/€30, 10-Faza Model, Complete Faza 3-4

This commit is contained in:
2026-01-12 00:52:26 +01:00
parent 7264ec6fc0
commit 3d0e9154fa
511 changed files with 3673 additions and 155 deletions

View File

@@ -82,6 +82,42 @@ const MasterConfig = {
showFPS: false,
logAudio: false,
logSaves: true
},
// Game Start Configurations
startingConfig: {
// Standard Faza 1 Start
default: {
items: [
{ id: 'tool_axe_wood', count: 1 },
{ id: 'tool_pickaxe_wood', count: 1 },
{ id: 'food_bread', count: 5 },
{ id: 'seed_tomato', count: 5 },
{ id: 'seed_potato', count: 5 }
],
furniture: [
{ id: 'work_bench_tier1', x: 10, y: 10 }, // Upgrades: Tier1->Tier2->Tier3->Tier4
{ id: 'chest_wooden_basic', x: 12, y: 10 }
],
companions: []
},
// "Prvih 40" / Founders Pack
foundersPack: {
items: [
{ id: 'tool_axe_iron', count: 1 }, // Better tools
{ id: 'tool_pickaxe_iron', count: 1 },
{ id: 'food_stew', count: 10 }, // Better food
{ id: 'seed_corn', count: 10 },
{ id: 'seed_wheat', count: 10 },
{ id: 'seed_cannabis', count: 5 } // "Ganga" seeds
],
furniture: [
{ id: 'work_bench_tier2', x: 10, y: 10 }, // Founders start at Tier 2
{ id: 'chest_wooden_reinforced', x: 12, y: 10 }
],
companions: ['gronk_companion'] // Gronk enabled!
}
}
};