diff --git a/Data/Config/Regions.xml b/Data/Config/Regions.xml
index 4549ad7..44018eb 100644
--- a/Data/Config/Regions.xml
+++ b/Data/Config/Regions.xml
@@ -977,7 +977,23 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
// -------------------------------- MOONGATES ----------------------------------------
diff --git a/Data/Spawns/towns.map b/Data/Spawns/towns.map
index 6257763..a279a2d 100644
--- a/Data/Spawns/towns.map
+++ b/Data/Spawns/towns.map
@@ -108,7 +108,12 @@
*|mapmaker||||||2195|1633|5|1|0|0|4|4|1|1|0|0|0|0|0
*|healer||||||2125|1611|5|1|0|0|4|4|1|2|0|0|0|0|0
*|Architect||||||2005|1529|0|1|0|0|8|2|1|1|0|0|0|0|0
-
+*|Guard||||||1662|1746|0|1|0|0|4|4|1|1|0|0|0|0|0
+*|Guard||||||2113|1450|0|1|0|0|4|4|1|1|0|0|0|0|0
+*|Guard||||||2024|1586|0|1|0|0|4|4|1|1|0|0|0|0|0
+*|Guard||||||1853|1572|0|1|0|0|4|4|1|1|0|0|0|0|0
+*|Guard||||||1702|1607|0|1|0|0|4|4|1|1|0|0|0|0|0
+*|Guard||||||2158|1583|0|1|0|0|4|4|1|1|0|0|0|0|0
## BUCS DEN
*|weaver||||||2637|2256|10|1|0|0|2|2|1|1|0|0|0|0|0
*|weaponsmith||||||2687|2241|0|1|0|0|0|0|1|1|0|0|0|0|0
@@ -138,7 +143,6 @@
*|jester||||||2608|2207|20|1|0|0|1|1|1|1|0|0|0|0|0
*|bowyer||||||2625|2177|0|1|0|0|0|0|1|1|0|0|0|0|0
*|blacksmith||||||2069|1513|0|1|0|0|4|4|1|1|0|0|0|0|0
-
## COVE
*|guard||||||2718|1454|0|1|0|0|4|4|1|1|0|0|0|0|0
*|guard||||||2568|1431|0|1|0|0|4|4|1|1|0|0|0|0|0
diff --git a/Scripts/Mobiles/Animals/Birds/Chicken.cs b/Scripts/Mobiles/Animals/Birds/Chicken.cs
index 0da9eaf..1977757 100644
--- a/Scripts/Mobiles/Animals/Birds/Chicken.cs
+++ b/Scripts/Mobiles/Animals/Birds/Chicken.cs
@@ -27,7 +27,7 @@ namespace Server.Mobiles
SetSkill( SkillName.HandToHand, 5.0 );
Fame = 0;
- Karma = 150;
+ Karma = 0;
VirtualArmor = 2;
}
@@ -55,4 +55,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
-}
\ No newline at end of file
+}
diff --git a/Scripts/Mobiles/Animals/Birds/Eagle.cs b/Scripts/Mobiles/Animals/Birds/Eagle.cs
index 99dcb79..a24d560 100644
--- a/Scripts/Mobiles/Animals/Birds/Eagle.cs
+++ b/Scripts/Mobiles/Animals/Birds/Eagle.cs
@@ -55,4 +55,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
-}
\ No newline at end of file
+}
diff --git a/Scripts/Mobiles/Animals/Canines/Dog.cs b/Scripts/Mobiles/Animals/Canines/Dog.cs
index 3270d01..c42c04e 100644
--- a/Scripts/Mobiles/Animals/Canines/Dog.cs
+++ b/Scripts/Mobiles/Animals/Canines/Dog.cs
@@ -28,7 +28,7 @@ namespace Server.Mobiles
SetSkill( SkillName.HandToHand, 19.2, 31.0 );
Fame = 0;
- Karma = 300;
+ Karma = 0;
VirtualArmor = 12;
}
@@ -53,4 +53,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
-}
\ No newline at end of file
+}
diff --git a/Scripts/Mobiles/Animals/Cows/Bull.cs b/Scripts/Mobiles/Animals/Cows/Bull.cs
index 9727256..cd5538e 100644
--- a/Scripts/Mobiles/Animals/Cows/Bull.cs
+++ b/Scripts/Mobiles/Animals/Cows/Bull.cs
@@ -30,7 +30,7 @@ namespace Server.Mobiles
SetSkill( SkillName.HandToHand, 40.1, 57.5 );
Fame = 0;
- Karma = 600;
+ Karma = 0;
VirtualArmor = 28;
}
@@ -56,4 +56,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
-}
\ No newline at end of file
+}
diff --git a/Scripts/Mobiles/Animals/Cows/Cow.cs b/Scripts/Mobiles/Animals/Cows/Cow.cs
index 46d9b9d..2b01e8b 100644
--- a/Scripts/Mobiles/Animals/Cows/Cow.cs
+++ b/Scripts/Mobiles/Animals/Cows/Cow.cs
@@ -47,7 +47,7 @@ namespace Server.Mobiles
SetSkill( SkillName.HandToHand, 5.5 );
Fame = 0;
- Karma = 300;
+ Karma = 0;
VirtualArmor = 10;
}
@@ -124,4 +124,4 @@ namespace Server.Mobiles
}
}
}
-}
\ No newline at end of file
+}
diff --git a/Scripts/Mobiles/Animals/Felines/Cat.cs b/Scripts/Mobiles/Animals/Felines/Cat.cs
index 2a01f91..74b7fe0 100644
--- a/Scripts/Mobiles/Animals/Felines/Cat.cs
+++ b/Scripts/Mobiles/Animals/Felines/Cat.cs
@@ -29,7 +29,7 @@ namespace Server.Mobiles
SetSkill( SkillName.HandToHand, 5.0 );
Fame = 0;
- Karma = 150;
+ Karma = 0;
VirtualArmor = 8;
}
@@ -54,4 +54,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
-}
\ No newline at end of file
+}
diff --git a/Scripts/Mobiles/Animals/Goat.cs b/Scripts/Mobiles/Animals/Goat.cs
index bbff241..824c523 100644
--- a/Scripts/Mobiles/Animals/Goat.cs
+++ b/Scripts/Mobiles/Animals/Goat.cs
@@ -27,7 +27,7 @@ namespace Server.Mobiles
SetSkill( SkillName.HandToHand, 5.0 );
Fame = 0;
- Karma = 300;
+ Karma = 0;
VirtualArmor = 10;
}
@@ -54,4 +54,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
-}
\ No newline at end of file
+}
diff --git a/Scripts/Mobiles/Animals/Pig.cs b/Scripts/Mobiles/Animals/Pig.cs
index 5f20dce..330a595 100644
--- a/Scripts/Mobiles/Animals/Pig.cs
+++ b/Scripts/Mobiles/Animals/Pig.cs
@@ -27,7 +27,7 @@ namespace Server.Mobiles
SetSkill( SkillName.HandToHand, 5.0 );
Fame = 0;
- Karma = 150;
+ Karma = 0;
VirtualArmor = 12;
}
@@ -53,4 +53,4 @@ namespace Server.Mobiles
int version = reader.ReadInt();
}
}
-}
\ No newline at end of file
+}
diff --git a/Scripts/Mobiles/Animals/Sheep.cs b/Scripts/Mobiles/Animals/Sheep.cs
index 81f9e45..9321ceb 100644
--- a/Scripts/Mobiles/Animals/Sheep.cs
+++ b/Scripts/Mobiles/Animals/Sheep.cs
@@ -60,7 +60,7 @@ namespace Server.Mobiles
SetSkill( SkillName.HandToHand, 5.0 );
Fame = 0;
- Karma = 200;
+ Karma = 0;
VirtualArmor = 6;
}
@@ -99,4 +99,4 @@ namespace Server.Mobiles
}
}
}
-}
\ No newline at end of file
+}