File size: 2,705 Bytes
0712d5f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | -- 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
|