How to Make Cart Termination Skill affected by Card?

KTBRDGTT

New member
Messages
7
Points
0
Github
ktbrdgtt
Cart Termination example of skill that isn't affected by Cards, Acid Terror is also not affected by card.

How can it be affected by Cards like Turtle General, Hydra Card, etc., (Damage Modifier)

 
Hmm, i think the easiest way would be if you put in the cards you want this here: bonus2 bSkillAtk,WS_CARTTERMINATION,25;

The 25 is the bonus damage. 
Like here: db/pre or re/item.db

Id: 4035
    AegisName: "Hydra_Card"
    Name: "Hydra Card"
    Type: "IT_CARD"
    Buy: 20
    Weight: 10
    Loc: "EQP_WEAPON"
    Script: <" bonus2 bAddRace,RC_DemiPlayer,20; bonus2 bSkillAtk,WS_CARTTERMINATION,25; ">

 
Hmm, i think the easiest way would be if you put in the cards you want this here: bonus2 bSkillAtk,WS_CARTTERMINATION,25;

The 25 is the bonus damage. 
Like here: db/pre or re/item.db

Id: 4035
    AegisName: "Hydra_Card"
    Name: "Hydra Card"
    Type: "IT_CARD"
    Buy: 20
    Weight: 10
    Loc: "EQP_WEAPON"
    Script: <" bonus2 bAddRace,RC_DemiPlayer,20; bonus2 bSkillAtk,WS_CARTTERMINATION,25; ">
Yes, been using this already. (my 2nd choice since I dont know how to make skill affected by card)

but It would be better if is possible 💕

 
On your skill_db.conf
find 

{
Id: 485
Name: "WS_CARTTERMINATION"
Description: "Cart Termination"


and look for the this:
 

DamageType: {
IgnoreCards: true
}


It should be like this
 

DamageType: {
//IgnoreCards: true
}


after that restart the server.

 
Back
Top