Set Character Step

Introduction

Sets the active character for the current event location, displaying their image in the event screen

Interface

interface SetCharacterStep {
  kind: 'setCharacter';
  character: string;
  condition?: string;
}

Properties

  • kind - Always 'setCharacter'

  • character - Character to set as active

  • condition (optional) - Conditional execution

Examples

{
  kind: 'setCharacter',
  character: 'WanderingMerchant'
}