Is it possible to make the Victim transparent?

Questions about configurations, etc

Moderator: Moderator

Semeshotasrule
Posts: 5
Joined: Fri Jun 25, 2021 4:36 am

Is it possible to make the Victim transparent?

Post by Semeshotasrule »

I want to make an aggressor move that makes the victim transparent.
But as far as my beginners brain can tell. It might not be possible.
I'm thinking if it's possible to make a [helper statedef] or something of the like to help turn on transparency for the opponent sprites. But i'm not sure how.
Last edited by Semeshotasrule on Thu Sep 14, 2023 9:04 am, edited 1 time in total.
Semeshotasrule
Posts: 5
Joined: Fri Jun 25, 2021 4:36 am

Re: Is it possible to make the Victim transparent?

Post by Semeshotasrule »

Apparently when you add a command trigger type of trans state meant for the opponent to change into. The command you use to make the opponent transparent has to be used by the opponent itself.

[Example]: If the aggressor move makes the target go into this state in the aggressor code,
[State 6064]
type = Trans
trigger1 = command = "holdfwd"
trans = addalpha
alpha = 160, 200
----------------------------------------------------
Then the opponent will turn transparent when the opponent uses the "holdfwd" command.

Anyone got any idea on how to make it, So the player has to press the command, To make the opponent transparent?
Last edited by Semeshotasrule on Thu Sep 14, 2023 9:05 am, edited 1 time in total.
Semeshotasrule
Posts: 5
Joined: Fri Jun 25, 2021 4:36 am

Re: Is it possible to make the Victim transparent?

Post by Semeshotasrule »

I've worked it out!
And all my idiot brain needed to do was google it~

;Adding this in the victim side animation of the aggressor code, Will make the opponent transparent when the player presses "holdfwd".
;------------------------------
[State 6064]
type = Trans
trigger1 = enemy,command = "holdfwd"
trans = addalpha
alpha = 160, 200
;------------------------------

Yay~!
Tetchi
Posts: 348
Joined: Mon Sep 13, 2021 11:17 pm
Location: México
Contact:

Re: Is it possible to make the Victim transparent?

Post by Tetchi »

In effect, the opponent should not take any action (since he is the victim, in this situation) the way to apply it as you describe is an alternative, there is the possibility of another way, but the one you describe is possibly what is necessary for what you require. .
Image
http://tetchi2015.blog.2nt.com
Zeb2345 wrote: Sun Aug 28, 2022 5:33 pmthe fucking master
UmbreonLover wrote: Sun Aug 28, 2022 1:57 amneeds to be rewards with...
UmbreonLover
Posts: 307
Joined: Wed Jan 26, 2022 12:03 am

Re: Is it possible to make the Victim transparent?

Post by UmbreonLover »

I don't see a point in having the victim becoming transparent...
Not just that, but the victim also needs a special rule in order to prevent themselves to be Transparent the whole match
I visit this forum when I remember I exist!
Post Reply