const PROVINCES = [ "Andhra", "Bengal", "Gondwana", "Gujarat", "Jaunpur", "Karnataka", "Madhyadesh", "Maharashtra", "Malwa", "Orissa", "Rajput Kingdoms", "Sindh", "Tamilakam", "Delhi", "Mountain Passes", "Punjab", ] const print = console.log print('') print('') print('') const COLORS = { DS: "black", BK: "cyan", VE: "yellow", mongols: "red", } let x = -700, y = 100 function advancex() { x += 150 } function advancey() { x -= 150 * 4 y += 100 } for (let s of PROVINCES) { // faction holdings - 100x80 ellipse print(`${s}`) for (let f of [ "DS", "BK", "VE", "mongols" ]) { print(``) advancex() } advancey() } print('')