diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-11 20:59:12 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-11 20:59:12 +0000 |
commit | e05a8b8263a62fd5645db1251e80fc78cec4e9d3 (patch) | |
tree | 6e6ff01566ea33512007397e41574fc227c51a0b | |
parent | 2a99ea9509dddcdafc85cc8348c44a5bd5d4e3eb (diff) | |
download | hercules-e05a8b8263a62fd5645db1251e80fc78cec4e9d3.tar.gz hercules-e05a8b8263a62fd5645db1251e80fc78cec4e9d3.tar.bz2 hercules-e05a8b8263a62fd5645db1251e80fc78cec4e9d3.tar.xz hercules-e05a8b8263a62fd5645db1251e80fc78cec4e9d3.zip |
- CG_MOONLIT is no longer castable in WoE grounds.
- Changed the default of enable_baseatk to 9 (player + homun)
- Changed the default of enable_perfect_flee to 1 (players only)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8708 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | conf-tmpl/Changelog.txt | 3 | ||||
-rw-r--r-- | conf-tmpl/battle/battle.conf | 4 | ||||
-rw-r--r-- | db/Changelog.txt | 2 | ||||
-rw-r--r-- | db/skill_nocast_db.txt | 1 | ||||
-rw-r--r-- | src/map/battle.c | 2 |
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; |