Clear Team Up Step
The Clear Team Up Step removes all current team-up partners, returning the player to solo status. It provides closure to collaborative experiences and manages transitions where allies must part ways.
Interface
interface ClearTeamUpStep {
kind: 'clearTeamUp';
condition?: string;
}
Properties
kind
- Always 'clearTeamUp'
condition
(optional) - Flag expression for conditional execution
Examples
Mission Completion
[
{
kind: 'text',
text: 'With the mission complete, your companions bid you farewell.',
},
{
kind: 'clearTeamUp',
},
];