algorembrant's picture
Upload 88 files
0712d5f verified
-- src/ReplicatedStorage/Shared/QuestConfig.lua
local QuestConfig = {
Quests = {
ChopFirstTree = {
Title = "First Timber",
Description = "Chop down your first tree segment.",
Type = "Chop",
Target = 1,
Reward = {Cash = 100},
Icon = "rbxassetid://0", -- placeholder
},
Chop10Trees = {
Title = "Getting Started",
Description = "Chop 10 tree segments.",
Type = "Chop",
Target = 10,
Reward = {Cash = 500},
Icon = "rbxassetid://0",
},
Chop50Trees = {
Title = "Lumberjack",
Description = "Chop 50 tree segments.",
Type = "Chop",
Target = 50,
Reward = {Cash = 2500},
Icon = "rbxassetid://0",
},
Chop200Trees = {
Title = "Master Forester",
Description = "Chop 200 tree segments.",
Type = "Chop",
Target = 200,
Reward = {Cash = 10000},
Icon = "rbxassetid://0",
},
SellFirstWood = {
Title = "First Sale",
Description = "Sell wood at the market for the first time.",
Type = "Sell",
Target = 1,
Reward = {Cash = 200},
Icon = "rbxassetid://0",
},
Earn5000 = {
Title = "Money Maker",
Description = "Earn a total of $5,000 from selling wood.",
Type = "EarnCash",
Target = 5000,
Reward = {Cash = 1000},
Icon = "rbxassetid://0",
},
Earn50000 = {
Title = "Timber Tycoon",
Description = "Earn a total of $50,000.",
Type = "EarnCash",
Target = 50000,
Reward = {Cash = 10000},
Icon = "rbxassetid://0",
},
BuildFirstStructure = {
Title = "Builder",
Description = "Construct your first building.",
Type = "Build",
Target = 1,
Reward = {Cash = 300},
Icon = "rbxassetid://0",
},
Build10Structures = {
Title = "Architect",
Description = "Construct 10 buildings.",
Type = "Build",
Target = 10,
Reward = {Cash = 3000},
Icon = "rbxassetid://0",
},
ExploreAllBiomes = {
Title = "Explorer",
Description = "Visit every biome in the world.",
Type = "Explore",
Target = 8, -- number of biomes
Reward = {Cash = 5000},
Icon = "rbxassetid://0",
},
ProcessFirstPlank = {
Title = "Mill Worker",
Description = "Process a log into a plank at the sawmill.",
Type = "Process",
Target = 1,
Reward = {Cash = 150},
Icon = "rbxassetid://0",
},
BuyFirstItem = {
Title = "First Purchase",
Description = "Buy an item from the shop.",
Type = "Purchase",
Target = 1,
Reward = {Cash = 100},
Icon = "rbxassetid://0",
},
},
-- Quest ordering (which quests unlock first)
StarterQuests = {"ChopFirstTree", "SellFirstWood", "BuildFirstStructure", "BuyFirstItem"},
}
return QuestConfig