-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.lua
More file actions
55 lines (48 loc) · 1.11 KB
/
Config.lua
File metadata and controls
55 lines (48 loc) · 1.11 KB
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
local Config = {}
-- Spielinformationen
Config.GameName = "Roblox Mega Abenteuer"
Config.DebugMode = true
Config.Version = "1.0.0"
-- DataStore-Schlüssel
Config.DataStoreKey = "PlayerData"
-- Standard-Spielerwerte
Config.DefaultSettings = {
Coins = 0,
Level = 1,
XP = 0,
Health = 100,
Mana = 50,
Inventory = {},
EquippedItems = {
Weapon = nil,
Armor = nil,
},
Settings = {
Music = true,
SFX = true,
Language = "de",
}
}
-- Teleport-Zielorte (z. B. für Portale oder Schnellreisen)
Config.TeleportLocations = {
Spawn = Vector3.new(0, 5, 0),
Shop = Vector3.new(100, 5, -50),
Arena = Vector3.new(-75, 5, 120),
SecretCave = Vector3.new(250, 20, -200),
BossLair = Vector3.new(-300, 10, 500),
}
-- Kampfkonfiguration
Config.Combat = {
DefaultDamage = 10,
CriticalMultiplier = 2,
KnockbackStrength = 50,
AttackCooldown = 0.8,
AllowFriendlyFire = false,
}
-- UI/UX Einstellungen
Config.UI = {
ButtonColor = Color3.fromRGB(40, 170, 255),
Font = Enum.Font.FredokaOne,
TransitionTime = 0.25
}
return Config