A Godot v4 game about working in an office
extends BattlerAI

const DEFAULT_CHANCE = 0.75

func choose_action(actor: Battler, battlers: Array = []):
	await get_tree().idle_frame
	return actor.actions.get_child(0)