| |
|
| |
|
| | 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
|
| |
|