File size: 2,890 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
-- src/ReplicatedStorage/Shared/NPCConfig.lua

local NPCConfig = {
	NPCs = {
		Lumberjack_Larry = {
			DisplayName = "Larry the Lumberjack",
			Position = Vector3.new(10, 3, -80),
			BodyColors = {
				HeadColor = Color3.fromRGB(234, 184, 146),
				TorsoColor = Color3.fromRGB(180, 40, 40),
				LeftArmColor = Color3.fromRGB(234, 184, 146),
				RightArmColor = Color3.fromRGB(234, 184, 146),
				LeftLegColor = Color3.fromRGB(50, 50, 130),
				RightLegColor = Color3.fromRGB(50, 50, 130),
			},
			Dialogue = {
				"Welcome to Timberbound Expeditions, partner!",
				"Grab your axe and start choppin' trees!",
				"Process logs at the sawmill for better prices.",
				"Watch out for the rain -- it ruins unprotected wood!",
			},
			QuestIds = {"ChopFirstTree", "Chop10Trees"},
			Role = "Guide",
		},
		Shopkeeper_Sue = {
			DisplayName = "Sue's Supply Shop",
			Position = Vector3.new(60, 3, -90),
			BodyColors = {
				HeadColor = Color3.fromRGB(234, 184, 146),
				TorsoColor = Color3.fromRGB(50, 150, 50),
				LeftArmColor = Color3.fromRGB(234, 184, 146),
				RightArmColor = Color3.fromRGB(234, 184, 146),
				LeftLegColor = Color3.fromRGB(90, 70, 50),
				RightLegColor = Color3.fromRGB(90, 70, 50),
			},
			Dialogue = {
				"Welcome to my shop! Take a look around.",
				"I've got axes, sawmills, and more!",
				"Drag items to the counter and talk to me to buy.",
			},
			QuestIds = {"BuyFirstItem"},
			Role = "Shopkeeper",
		},
		Market_Mike = {
			DisplayName = "Market Mike",
			Position = Vector3.new(0, 3, -110),
			BodyColors = {
				HeadColor = Color3.fromRGB(180, 140, 100),
				TorsoColor = Color3.fromRGB(200, 180, 50),
				LeftArmColor = Color3.fromRGB(180, 140, 100),
				RightArmColor = Color3.fromRGB(180, 140, 100),
				LeftLegColor = Color3.fromRGB(40, 40, 40),
				RightLegColor = Color3.fromRGB(40, 40, 40),
			},
			Dialogue = {
				"Bring your wood here and I'll buy it!",
				"Planks are worth more than raw logs.",
				"Market prices shift every few minutes. Sell smart!",
			},
			QuestIds = {"SellFirstWood", "Earn5000"},
			Role = "Buyer",
		},
		Explorer_Eva = {
			DisplayName = "Explorer Eva",
			Position = Vector3.new(-30, 3, -80),
			BodyColors = {
				HeadColor = Color3.fromRGB(210, 170, 130),
				TorsoColor = Color3.fromRGB(100, 70, 40),
				LeftArmColor = Color3.fromRGB(210, 170, 130),
				RightArmColor = Color3.fromRGB(210, 170, 130),
				LeftLegColor = Color3.fromRGB(60, 80, 50),
				RightLegColor = Color3.fromRGB(60, 80, 50),
			},
			Dialogue = {
				"This world is full of secrets!",
				"Different biomes have different tree types.",
				"Some rare woods glow in the dark... and they're worth a fortune!",
				"Have you found the volcanic region yet?",
			},
			QuestIds = {"ExploreAllBiomes"},
			Role = "Explorer",
		},
	},
}

return NPCConfig