Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
guilherme-gm committed Sep 16, 2024
1 parent fdd0418 commit 378d60f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
17 changes: 5 additions & 12 deletions db/re/skill_db.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2138,6 +2138,7 @@ skill_db: (
}
AttackType: "Weapon"
Element: "Ele_Weapon"
NumberOfHits: -3
DamageType: {
NoDamage: true
}
Expand All @@ -2147,6 +2148,8 @@ skill_db: (
SkillData1: 1_000 // weapon change block duration
CoolDown: 1_000
FixedCastTime: 350
AfterCastActDelay: 500
CoolDown: 1000
Requirements: {
SPCost: 24
WeaponTypes: {
Expand Down Expand Up @@ -2321,6 +2324,7 @@ skill_db: (
MaxLevel: 10
Range: -2
Hit: "BDT_MULTIHIT"
NumberOfHits: 2
SkillType: {
Enemy: true
}
Expand Down Expand Up @@ -11116,18 +11120,7 @@ skill_db: (
Lv9: 2400
Lv10: 2400
}
AfterCastActDelay: {
Lv1: 1100
Lv2: 1200
Lv3: 1300
Lv4: 1400
Lv5: 1500
Lv6: 1600
Lv7: 1700
Lv8: 1800
Lv9: 1900
Lv10: 2000
}
AfterCastActDelay: 500
SkillData1: {
Lv1: 20000
Lv2: 40000
Expand Down
3 changes: 2 additions & 1 deletion src/map/battle.c
Original file line number Diff line number Diff line change
Expand Up @@ -2107,6 +2107,7 @@ static int battle_calc_skillratio(int attack_type, struct block_list *src, struc
#ifdef RENEWAL
case KN_BRANDISHSPEAR:
skillratio += 300 + 100 * skill_lv + status_get_str(src);
// @TODO: Review str bonus. according to gbasso: rathena is using * 3 here, but IRO and other sites say it's str*5.
break;
#else
case KN_BRANDISHSPEAR:
Expand Down Expand Up @@ -4800,7 +4801,7 @@ static struct Damage battle_calc_weapon_attack(struct block_list *src, struct bl
#ifndef RENEWAL
case KN_BOWLINGBASH:
#endif
case MS_BOWLINGBASH:
case MS_BOWLINGBASH: // @TODO: Check if this is affected by rebalance
case MO_BALKYOUNG:
case TK_TURNKICK:
wd.blewcount=0;
Expand Down

0 comments on commit 378d60f

Please sign in to comment.