v3mt
Version:
A CLI toolkit for managing and deploying Victoria 3 mods, including sending mod files to the game, launching the game, and more.
12 lines (11 loc) • 347 B
JavaScript
import Logger from '../../../utils/logger/logger.js';
import sleep from '../../../utils/sleep.js';
import outro from '../data/outro.js';
export default async function displayOutro() {
// Victoria 3
const lines = outro.setup_complete.split('\n');
for (const line of lines) {
Logger.text(line);
await sleep(100);
}
}