2024-05-16 17:57:51 +02:00
let tokenImg = "" ; // Put path to token image here, inbetween the quotation marks
if ( tokenImg )
{
if ( this . effect . getFlag ( "wfrp4e" , "transformed" ) )
{
await this . effect . setFlag ( "wfrp4e" , "transformed" , false ) ;
this . actor . getActiveTokens ( ) . forEach ( t => t . document . update ( { texture : { src : this . actor . prototypeToken . texture . src } } ) ) ;
}
else
{
await this . effect . setFlag ( "wfrp4e" , "transformed" , true ) ;
this . actor . getActiveTokens ( ) . forEach ( t => t . document . update ( { texture : { src : tokenImg } } ) ) ;
}
}
else
{
2024-05-17 09:19:48 +02:00
this . script . scriptNotification ( "Aucune image de Token configurée. Le chemin du token doit être configuré dans la première ligne de ce script." , "error" ) ;
2024-05-16 17:57:51 +02:00
}