Change Texture Frame

class Example extends Phaser.Scene
{
    constructor ()
    {
        super();
    }

    preload ()
    {
        this.load.setBaseURL('https://cdn.phaserfiles.com/v385');
        this.load.atlas('assets', 'assets/atlas/tweenparts.png', 'assets/atlas/tweenparts.json');
    }

    create ()
    {
        const chest = this.add.image(400, 600, 'assets', 'blue-open').setOrigin(0.5, 1);
        //  After 2 seconds the frame will change to 'blue-open'

        this.tweens.add({
            targets: chest,
            texture: [ 'assets', 'blue-closed' ],
            duration: 500,
            repeat: -1,
            yoyo: true,
            y: chest.y - 50,
            scaleY: 1.2,
            ease: 'Back.out'
        });
    }
}

const config = {
    type: Phaser.AUTO,
    width: 800,
    height: 600,
    backgroundColor: '#2d2d2d',
    parent: 'phaser-example',
    scene: Example
};

const game = new Phaser.Game(config);