How can I make my own attack which deals damage AND decreases the users Defense?
If I want to deal damage on the enemie I have to switch the Attack to 'One Enemie'
but If I want to decrease the defense of the user of the attack I have to switch it on 'User'
How can I switch it, that it will deal dmg AND decrease the users defense?
How can I create this kind of Attack?
● ARCHIVED · READ-ONLY
-
-
You'll need to add ruby commands to the damage formula. There is a topic on how to use the damage formula that shows you a lot of different commands to add other effects to a skill, search for it in the forum here.
-
Could you send me the link?You'll need to add ruby commands to the damage formula. There is a topic on how to use the damage formula that shows you a lot of different commands to add other effects to a skill, search for it in the forum here.
Im new on this forum and I cant find anything :/ -
I've moved this thread to VX Ace Support (tech support is for program-not-running type of problems, not "how to do xyz in the editor"). Please be sure to post your threads in the correct forum next time. Thank you.
A simple search for "damage formula" in the forum search box revealed heaps of threads. The one Andar is referring to was at the bottom of the first page.
http://forums.rpgmakerweb.com/index.php?/topic/1143-how-to-make-the-most-of-custom-formulae-part-1/ -
a simple damage formula:
a.add_state(state_id);damaging_damage_formula_here
so like if my defense state is state 10, and I want it to deal 5x atk as damage
Code:a.add_state(10);a.atk*5