|
|
|
|
| local MutationConfig = {
|
| Hazards = {
|
| Lava = {
|
| Radius = 50,
|
| MutationChance = 0.5,
|
| ModifiedType = "Fireproof",
|
| ValueMult = 2.5,
|
| Material = Enum.Material.Neon,
|
| Color = Color3.fromRGB(255, 100, 0),
|
| },
|
| Toxic = {
|
| Radius = 60,
|
| MutationChance = 0.3,
|
| ModifiedType = "Glowing",
|
| ValueMult = 3.0,
|
| Material = Enum.Material.Neon,
|
| Color = Color3.fromRGB(0, 255, 100),
|
| },
|
| Frozen = {
|
| Radius = 45,
|
| MutationChance = 0.4,
|
| ModifiedType = "Frozen",
|
| ValueMult = 2.0,
|
| Material = Enum.Material.Ice,
|
| Color = Color3.fromRGB(150, 200, 255),
|
| },
|
| Crystalline = {
|
| Radius = 30,
|
| MutationChance = 0.15,
|
| ModifiedType = "Crystalline",
|
| ValueMult = 5.0,
|
| Material = Enum.Material.Glass,
|
| Color = Color3.fromRGB(200, 160, 255),
|
| },
|
| },
|
| }
|
|
|
| return MutationConfig
|
|
|