I'm not sure Critical Vulnerability works right. The original T&T was about how to make any attack made against the battler inflicted with the state be a critical hit, but that notetag looks like it's supposed to make any attack made by the battler a critical hit instead.
When I tried testing it out in the sample project, it didn't seem to do anything at all.
How to implement every possible Yanfly Tips & Tricks effect in MZ with VisuStella plugins
● ARCHIVED · READ-ONLY
-
-
I may have overlooked something, I'll check it in the morning.I'm not sure Critical Vulnerability works right. The original T&T was about how to make any attack made against the battler inflicted with the state be a critical hit, but that notetag looks like it's supposed to make any attack made by the battler a critical hit instead.
When I tried testing it out in the sample project, it didn't seem to do anything at all. -
Edit: I commented the same thing from RisenAngel, but only later I saw his comment, sorry, but I have the same doubt as him about critical vulnerability
-
Does anyone know what happened to the yanfly.moe wiki website? It's been down for at least 3 days and I'm trying to get on there so I can compare and get more information on the Tips and Tricks that have been recently put out. Thanks.
-
http://www.yanfly.moe/wiki/Category:RPG_Maker_MV_Plugin_Tips_&_Tricks works fine for me.Does anyone know what happened to the yanfly.moe wiki website? It's been down for at least 3 days and I'm trying to get on there so I can compare and get more information on the Tips and Tricks that have been recently put out. Thanks.
-
http://www.yanfly.moe/wiki/Category:RPG_Maker_MV_Plugin_Tips_&_Tricks works fine for me.
Hmmm....must be a problem with my computer (or internet) then...I can get on every other website just fine but yanfly's always has a "problem loading page" pop up even if I try again multiple times, your link does the same.
Thanks for at least verifying that it is on my end somehow, still don't understand why that is happening but I'll take it from here. Thanks. -
Okay, I think I originally misunderstood what Critical Vulnerability was for. Adapting the original functionality will take a bit.
-
I feel bad bringing these up, but uh, two things.
I do really appreciate the addition of Stockpile as a potential solution for stacking state-based buff/debuffs. Unfortunately, it's not actually stacking the buff for me beyond the first application.
I used your Stockpile code exactly as you have it. I tested this with an Attack Buff state set to * 200% and used it an enemy with 10 ATK, which Libra then shows it has grown to 20 ATK as expected. However, subsequent applications of the state keeps the ATK at 20 (should be 40) even though the state counter goes up.
The second thing, I'm also having difficulty with Gravity.
Gravity will work as intended when used on any enemy, in consistently inflicting dmg equal to half of their current HP. However it also does this against a boss with the Boss category. I've checked to make sure that the boss has the passive state (even assigned the Boss state an icon to be certain of) and made sure that the name of the category is identical between the formula, state, and boss it is applied to. Yet it keeps halving the boss's HP even still.
I tried remaking the skill with notetags to see if that would make any difference. I got the halving effect to work with notetags, but unfortunately it still affects bosses the same.
Code:<JS Pre-Damage> if (target.hasStateCategory('boss')) { value = a.mat * 6; } else { value = b.hp * 0.5; } </JS Pre-Damage>
I don't know what could be the issue with both of these. -
EDIT: Nevermind. Sorry.I feel bad bringing these up, but uh, two things.
I do really appreciate the addition of Stockpile as a potential solution for stacking state-based buff/debuffs. Unfortunately, it's not actually stacking the buff for me beyond the first application.
I used your Stockpile code exactly as you have it. I tested this with an Attack Buff state set to * 200% and used it an enemy with 10 ATK, which Libra then shows it has grown to 20 ATK as expected. However, subsequent applications of the state keeps the ATK at 20 (should be 40) even though the state counter goes up.
The second thing, I'm also having difficulty with Gravity.
Gravity will work as intended when used on any enemy, in consistently inflicting dmg equal to half of their current HP. However it also does this against a boss with the Boss category. I've checked to make sure that the boss has the passive state (even assigned the Boss state an icon to be certain of) and made sure that the name of the category is identical between the formula, state, and boss it is applied to. Yet it keeps halving the boss's HP even still.
I tried remaking the skill with notetags to see if that would make any difference. I got the halving effect to work with notetags, but unfortunately it still affects bosses the same.
Code:<JS Pre-Damage> if (target.hasStateCategory('boss')) { value = a.mat * 6; } else { value = b.hp * 0.5; } </JS Pre-Damage>
I don't know what could be the issue with both of these. -
I'll pick this up with you on Discord.I feel bad bringing these up, but uh, two things.
I do really appreciate the addition of Stockpile as a potential solution for stacking state-based buff/debuffs. Unfortunately, it's not actually stacking the buff for me beyond the first application.
I used your Stockpile code exactly as you have it. I tested this with an Attack Buff state set to * 200% and used it an enemy with 10 ATK, which Libra then shows it has grown to 20 ATK as expected. However, subsequent applications of the state keeps the ATK at 20 (should be 40) even though the state counter goes up.
The second thing, I'm also having difficulty with Gravity.
Gravity will work as intended when used on any enemy, in consistently inflicting dmg equal to half of their current HP. However it also does this against a boss with the Boss category. I've checked to make sure that the boss has the passive state (even assigned the Boss state an icon to be certain of) and made sure that the name of the category is identical between the formula, state, and boss it is applied to. Yet it keeps halving the boss's HP even still.
I tried remaking the skill with notetags to see if that would make any difference. I got the halving effect to work with notetags, but unfortunately it still affects bosses the same.
Code:<JS Pre-Damage> if (target.hasStateCategory('boss')) { value = a.mat * 6; } else { value = b.hp * 0.5; } </JS Pre-Damage>
I don't know what could be the issue with both of these. -
Nice work!
Though I was wondering for applying the Aura (such as Trueshot Aura) is there a way to apply it to battle members only, instead of all party members? -
-
-
Cagnazzo's Tsunami (state)
JavaScript:
<JS On Add State>
user.clearActions();
let text = '<CENTER>' + user.name() + ' will unleash \\c[4]Tsunami\\c[0] in 3 turns.';
SceneManager._scene._logWindow._lines.push(text);
text = '<CENTER>Attack ' + user.name() + ' with \\c[6]Lightning\\c[0] to cancel it!';
SceneManager._scene._logWindow._lines.push(text);
SceneManager._scene._logWindow.refresh();
</JS On Add State>
Hi Trihan, do you know is there a way to let the text in logWindow be waiting for sometime? Now it is too fast to see it. I try to use SceneManager._scene._logWindow.addText(text), but it still can not be control the wait time. -
Is this it?Cagnazzo's Tsunami (state)
JavaScript:
<JS On Add State>
user.clearActions();
let text = '<CENTER>' + user.name() + ' will unleash \\c[4]Tsunami\\c[0] in 3 turns.';
SceneManager._scene._logWindow._lines.push(text);
text = '<CENTER>Attack ' + user.name() + ' with \\c[6]Lightning\\c[0] to cancel it!';
SceneManager._scene._logWindow._lines.push(text);
SceneManager._scene._logWindow.refresh();
</JS On Add State>
Hi Trihan, do you know is there a way to let the text in logWindow be waiting for sometime? Now it is too fast to see it. I try to use SceneManager._scene._logWindow.addText(text), but it still can not be control the wait time.
-
If the skill that applies the aura is only usable in battle, what would the difference be?Nice work!
Though I was wondering for applying the Aura (such as Trueshot Aura) is there a way to apply it to battle members only, instead of all party members? -
What a fantastic resource! Do you have any plans to release a sample project containing these, either paid or otherwise? Just asking! :)
-
I appreciate you so much for this, I was wondering if you could also post the information on the Penta Slash effects. I've been trying to replicate the back-flips towards the end of the move but I can't seem to figure it out. :(
-
Okay so if an enemy uses Bide and my party members kill said enemy. An explosion animation will play and then the enemy would become a Zombie (Undead basically) and attacks against it will deal NaN damage.
That is until I removed this line:
enemy.gainHp(-damage);
Now they die and the battle ends as normal, not sure if that line was important somewhere but hey it works! -
Is it possible to make Mana Burn work with TP rather than MP?