diff --git a/modules/markers-generator.js b/modules/markers-generator.js index 03f16335..852e9e26 100644 --- a/modules/markers-generator.js +++ b/modules/markers-generator.js @@ -215,11 +215,12 @@ window.Markers = (function () { addMarker("hill_monster", "👹", 50, 50, 12); const cell = ra(hills); const id = appendMarker(cell, "hill_monster"); + const subject = ra(["Locals", "Old folks", "Old books", "Tipplers"]); const species = ra(["Ogre", "Troll", "Cyclopes", "Giant", "Monster", "Troll", "Beast", "Dragon", "Undead", "Ghoul", "Vampire"]); - const modus = ra(["steals their cattle", "doesn't mind eating children", "doesn't mind of human flesh", "keeps the region at bay"]); + const modusOperandi = ra(["steals their cattle", "doesn't mind eating children", "doesn't mind of human flesh", "keeps the region at bay", "eats their kids", "abducts young women"]); const toponym = Names.getCulture(cells.culture[cell]); const name = `${toponym} ${species}`; - const legend = `Locals tell tales of an old ${species} who inhabits ${toponym} hills and ${modus}`; + const legend = `${subject} tell tales of an old ${species} who inhabits ${toponym} hills and ${modusOperandi}`; notes.push({id, name, legend}); } } diff --git a/modules/ui/tools.js b/modules/ui/tools.js index 3880f2bb..420e8544 100644 --- a/modules/ui/tools.js +++ b/modules/ui/tools.js @@ -427,7 +427,7 @@ function regenerateMarkers(event) { }) .remove(); - Markers.generate(); + Markers.generate(number); if (!layerIsOn("toggleMarkers")) toggleMarkers(); } }