summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--conf-tmpl/Changelog.txt3
-rw-r--r--conf-tmpl/battle/battle.conf4
-rw-r--r--db/Changelog.txt2
-rw-r--r--db/skill_nocast_db.txt1
-rw-r--r--src/map/battle.c2
5 files changed, 9 insertions, 3 deletions
diff --git a/conf-tmpl/Changelog.txt b/conf-tmpl/Changelog.txt
index 090b90f2f..6165e9134 100644
--- a/conf-tmpl/Changelog.txt
+++ b/conf-tmpl/Changelog.txt
@@ -1,5 +1,8 @@
Date Added
+2006/09/11
+ * Changed the default of enable_baseatk to 9 (player + homun) [Skotlex]
+ * Changed the default of enable_perfect_flee to 1 (players only) [Skotlex]
2006/09/09
* Removed noteleport flags from Geffenia maps [Playtester]
2006/09/08
diff --git a/conf-tmpl/battle/battle.conf b/conf-tmpl/battle/battle.conf
index a653bd22d..30a136ee8 100644
--- a/conf-tmpl/battle/battle.conf
+++ b/conf-tmpl/battle/battle.conf
@@ -31,10 +31,10 @@
// Who should have a baseatk value (makes str affect damage)? (Note 4)
-enable_baseatk: 11
+enable_baseatk: 9
// Who can have perfect flee? (Note 4)
-enable_perfect_flee: 5
+enable_perfect_flee: 1
// Who can have critical attacks? (Note 4)
// (Note that there are some skills that always do critical hit regardless of this)
diff --git a/db/Changelog.txt b/db/Changelog.txt
index 90b600023..f55778153 100644
--- a/db/Changelog.txt
+++ b/db/Changelog.txt
@@ -19,6 +19,8 @@
-----
=========================
+09/11
+ * CG_MOONLIT is no longer castable in WoE grounds. [Skotlex]
09/10
* Removed NPC_Powerup from Dimik [Playtester]
* More accurate guess on Strouf's dex [Playtester]
diff --git a/db/skill_nocast_db.txt b/db/skill_nocast_db.txt
index 538933c87..9efbe48fb 100644
--- a/db/skill_nocast_db.txt
+++ b/db/skill_nocast_db.txt
@@ -29,6 +29,7 @@
150,4 //TF_BACKSLIDING
361,4 //HP_ASSUMPTIO
362,4 //HP_BASILICA
+395,4 //CG_MOONLIT
491,4 //CR_CULTIVATION
//mixed
diff --git a/src/map/battle.c b/src/map/battle.c
index bce72d52e..7b90f2ff5 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -3839,7 +3839,7 @@ void battle_set_defaults() {
battle_config.enable_critical=BL_PC;
battle_config.mob_critical_rate=100;
battle_config.critical_rate=100;
- battle_config.enable_baseatk = BL_ALL;
+ battle_config.enable_baseatk = BL_PC;
battle_config.enable_perfect_flee = BL_PC|BL_PET;
battle_config.cast_rate=100;
battle_config.delay_rate=100;